body {
    /*font-family: Microsoft Yahei;*/
    font-family: "Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;
}

.btn{
    padding-left: 30px;
    padding-right: 30px;
}

.btn-primary {
    background-color: #2386EE;
}

/* 清除浮动 */
.clear::after {
    content: "";
    display: block;
    clear: both;
}

.scroll-box {
    overflow: auto;
}
.scroll-box::-webkit-scrollbar{
    width:8px;
    height: 8px;
}
.scroll-box::-webkit-scrollbar-track{
    background: #FFF;
    border-radius:4px;
}
.scroll-box::-webkit-scrollbar-thumb{
    background: #BCC2D2;
    border-radius:4px;
}

.table, .table p {
    margin: 0;
}
.table thead {
    background-color: #EBF0F8;
}
.table>thead>tr>th {
    border: none;
}
.table tbody tr:hover {
    background-color: #ECF5FF !important;
}
.table thead tr th:not(:last-child) p {
    border-right: 1px solid #BCC2D2;
}
.table thead tr th:first-child,
.table tbody tr th:first-child,
.table tbody tr td:first-child{
    padding-left: 20px;
}
.table tbody tr th,
.table tbody tr td{
    border: none;
    padding: 12px 8px;
    vertical-align: middle;
}
/* 偶数行*/
.table-striped>tbody>tr:nth-of-type(even) {
    background-color: #F4F7FB;
}
/* 基数行*/
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: rgba(255,255,255,1);
}
.table.table-striped a {
    text-decoration: none;
    cursor: pointer;
}

.th-64px {
    min-width: 64px;
}
.th-90px {
    min-width: 90px;
}
.th-98px {
    min-width: 98px;
}
.th-126px {
    min-width: 126px;
}
.th-128px {
    min-width: 128px;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    flex-direction: row;
}


#loading-mask {
    position:fixed;
    z-index:2;
    left:0;
    top:0;
    right:0;
    width:100%;
    height:100%;
    display:none;
    background: rgba(0, 0, 0, 0.2);
}
#loading-mask img {
    position: absolute;
    width:50px;
    height:50px;
    top: calc(50vh - 25px);
    left: calc(50vw - 25px);
}

#loading-mask .tips {
    position: absolute;
    font-size: 24px;
    top: calc(50vh - 66px);
    left: calc(50vw - 135px);
    color: rgba(0, 134, 241, 1);
}