/* 自适应表格 */
.adaptive-table {
  display: block;
  position: relative;
}


.adaptive-table,
.adaptive-table nz-spin,
.adaptive-table nz-spin .ant-spin-container,
.adaptive-table nz-spin .ant-spin-container .ant-table,
.adaptive-table nz-spin .ant-spin-container .ant-table .ant-table-content,
.adaptive-table nz-spin .ant-spin-container .ant-table .ant-table-content .ant-table-scroll {
  height: 100%;
}

.adaptive-table nz-spin .ant-spin-container .ant-table,
.adaptive-table nz-spin .ant-spin-container .ant-table .ant-table-content .ant-table-scroll {
  display: flex;
  flex-direction: column;
}

.adaptive-table .ant-table-header {
  flex: 0 0 auto;
  background: #fff; /*updated by wl */
      overflow: unset !important;/*updated by wl */
    margin-bottom: 0px !important;/*updated by wl */
}

.adaptive-table .ant-table-body {
  background: #1c1c1c !important;
  flex: 1 1 auto;
}

.adaptive-table .ant-table-footer {
  font-size: 12px;
  padding: 5px 10px;
  line-height: 24px;
  background-color: #fff;/*updated by wl */
  color: #333333 !important;/*updated by wl */
 /* border-top: 0px solid #e8e8e8;*/
}

/*added by wl */
.ant-table-footer::before {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #d9d9d9; /*updated by wl */
    content: '';
}
 /*added by wl 翻页文本disable时颜色 */
.ant-pagination-disabled a {
    color: rgba(0,0,0,.65) !important;
}
 /*added by wl 未选中分页文本颜色 */
.ant-pagination-item  a {
	color: #7c8491;
}
.ant-pagination-next a, .ant-pagination-prev a {
	color: #333 !important;
}




.adaptive-table .ant-table-footer .ant-pagination-prev,
.adaptive-table .ant-table-footer .ant-pagination-next {
 /* border: 1px solid #d9d9d9;*/
  background: #eef0f4;/*updated by wl previous #c6c6c6*/
  padding: 0 14px;/*updated by wl */
}

.adaptive-table .ant-table-footer .ant-pagination-prev,
.adaptive-table .ant-table-footer .ant-pagination-next,
.adaptive-table .ant-table-footer .ant-pagination-item {
  height: 24px;
  line-height: 24px;
  font-size: 12px;
}
.ant-pagination-item{
	border: 1px solid #2c3036; /*updated by wl */
	background-color: #1c1c1c; /*updated by wl */

}

/* added by wl */
.adaptive-table .table-handler {
    padding: 7px;
    margin-top: -16px;
    margin-bottom: -6px;
    background-color: #242629;
    overflow: hidden;
}
/* added by wl */
.ant-btn {
    /* color: #333; */
    color: #7c8491;
    background-color: #2c3036;
    /* border-color: #d9dfe3; */
    border-color: #2c3036;
    border-radius: 4px;
    margin-right: 4px;
    height: 34px;
	font-size: 12px;
    line-height: 1.42857143;
    padding: 6px 12px;
}

/* added by wl */
.ant-table-thead>tr>th {
    color: #e3e2e2;
    font-weight: 500;
    text-align: left;
    background-color: #1c1c1c;
    border-bottom: 1px solid #e8e8e8;
	/*
    transition: background .3s ease;
    */
}
/* added by wl */
.ant-table-tbody>tr:nth-child(odd) {
    background: #242629;
    border: 1px inset #242629;
}

.adaptive-table .table-handler .ant-collapse>.ant-collapse-item {
  border-bottom: none;
  margin: -24px -16px 0;
}

.adaptive-table .table-handler [nz-form] nz-form-label {
  padding-bottom: 0;
}

.adaptive-table .table-handler nz-form-item {
  margin-bottom: 2px;
}

.adaptive-table .table-handler input[type="number"]::-webkit-outer-spin-button,
.adaptive-table .table-handler input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
