/*纵向表格 */
.table_vertical_list {
    border-collapse: collapse;
    width: 500px;
    margin: 0 auto;
}

.table_vertical_list td {
    border: 1px solid #6699cc;
    padding: 5px;
    color: #606266;
    width: 49%;
}

/* 假的按钮 */
.btn_false {
    padding: 9px 15px;
    font-size: 12px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #dcdfe6;
    color: #606266;
}

.no_scroll::-webkit-scrollbar {
    display: none;
}

.form_dialog {
    background: lightblue;
    padding: 10px;
    overflow: hidden;
}

.form_title {
    padding-left: 20px;
    background: lightblue;
    overflow: hidden;
    padding-top: 20px;
}

.form_page {
    margin-top: 20px;
    background: #f0f0f0;
    background: lightblue;
    padding: 5px 0;
    color: black;
    text-align: center
}

.container{
    position: relative;
}

.no_data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.no_scroll::-webkit-scrollbar {
  display: none;
}

.pointer {
    cursor: pointer;
}

/* flex start*/
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-direction-column {
    flex-direction: column;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.justify-content-space-around {
    justify-content: space-around;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.flex-wrap-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-wrap {
    flex-wrap: wrap;
}

/* flex end */
