@charset "UTF-8";
.table-responsive{
    overflow-y: hidden;
}
 /*重置样式*/
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding: 0 8px;
    height: 36px;
    vertical-align: middle;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border-color: #bbb;
}
.table {
    border-color: #bbb;
}
.table th {
    background: #ddd;
    font-weight: normal;
}
.table td,
.table th {
    line-height: 17px;
    text-align: left;
}
.table th.text-center {
    text-align: center;
}

.table-header {
    border:1px solid #bbb;
    border-bottom: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 10px 10px;
    background: #fff;
}
.header-btn-box {
    display: flex;
}
.header-btn-box .ant-btn {
    margin-right: 8px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgb(255, 255, 255);
}
.table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(37, 64, 143, 0.05);
}
.table-withNoDataTip {
    background-repeat: no-repeat;
    background-size: 153px;
    background-position: center center;
    background-image: url("/img/noDataTip.png");
}
.table-responsive {
    border: 1px solid #bbb;
    background-color: #fff;
}
.table-responsive table,
/*.table-fix-wrapper table,*/
/*.table-head-wrapper table,*/
/*.table-column-wrapper table,*/
.table-data-wrapper table {
    margin: -1px 0 0 -1px;
}

.toolbar-box {
    display: flex;
    align-items: center;
    /*font-size: 14px;*/
    /*line-height: 20px;*/
    /*height: 30px;*/
    cursor: pointer;
    color: #333;
}
.tool-btn-box {
    /*display: flex;*/
    /*align-items: center;*/
    padding: 2px 8px;
    /*border: none;*/
}
/*.tool-btn:before {*/
/*    padding-right: 4px;*/
/*}*/
.tool-btn-box:hover {
    background: rgba(0, 102, 255, 0.15);
    border-radius: 4px;
}
.toolbar-box button {
    padding: 0;
    border: none;
}
.pagination {
    margin: 0;
}
.ant-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px !important;
}
.ant-pagination li {
    min-width: 32px;
    text-align: center;
    list-style: none;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    height: 32px;
    margin-right: 8px;
    line-height: 30px;
    vertical-align: middle;
}
.ant-pagination li.active {
    /*border-color: #25408F;
    color: #25408F;*/
    background-color: #25408F;;
}
.ant-pagination li:hover {
    border-color: #25408F;
    color: #25408F;
}
.ant-pagination li.active a {
    color: #FFFFFF;
}
.ant-pagination li a {
    color: #333;
}

/*树类型的table样式 ------------------------------------------*/
.tree-table {
    text-align: left;
    border-collapse: collapse;
    width: 100%;
}
.tree-table .col1 {
    background: rgba(37, 64, 143, 0.05);
    text-align: center;
}
.tree-table .col2 {
    background: #f8f8f8;
}
.tree-table .title {
    background: #eee;
    text-align: center;
}
.tree-table.reverse .title {
    text-align: left;
}
.tree-table .label,
.tree-table .col1,
.tree-table .col2,
.tree-table .title {
    padding: 0 10px;
}
.tree-table .txt,
.tree-table .datainp {
    border: none;
    width: 100%;
    border-radius: 0;
    height: 100%;
    /*background: transparent;*/
}
.tree-table td,
.tree-table th {
    height: 36px;
    vertical-align: middle;
    border: 1px solid #bbb;
    padding-top: 0;
    padding-bottom: 0;
}
.tree-table input[readonly],
.tree-table select:disabled {
    color: #333;
}

/*头像模块 --------------------------------------------------------*/
.avatar-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 10px 15px;
}
.avatar-box img {
    height: 150px;
    width: 120px;
    margin-bottom: 10px;
}
.avatar-box .ant-input {
    display: inline-block;
    width: auto;
}
.avatar-box input[type="file"] {
    display: none;
}

