/* 表格固定样式 */
.data-content>.el-table {
    width: 100%;
    height: 100%;
    color: #111111 !important;
    --el-table-border-color: #B7D1EB !important;
}

/* 表格内边框 */
.data-content>.el-table td.el-table__cell,
.data-content>.el-table th.el-table__cell.is-leaf {
    font-size: 14px !important;
    height: 52px !important;
    padding: 0 !important;
    line-height: 32px !important;
    border-bottom: 1px solid #B7D1EB !important;
}

/* 表格边框 */
.el-table--border .el-table__cell {
    border-right: 1px solid #B7D1EB !important;
}

/* 表格头部文本样式 */
.data-content>.el-table thead th {
    font-weight: 400;
}

/* 表格头部文本颜色 */
.data-content>.el-table thead {
    color: #111111;
}

/* 表格头部背景样式 */
.data-content>.el-table th.el-table__cell {
    background: #F5F6FA !important;
}

/* 弹窗表格头部背景样式 */
.dialog-content>.el-table th.el-table__cell,
.dialog-content>.el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell,
.el-table.is-scrolling-right th.el-table-fixed-column--right {
    background: #ECF2FF !important;
}

.dialog-content .table-border {
    --el-table-border-color: #B7D1EB !important;
}

/* 弹窗表格内边框 */
.dialog-content>.table-border td.el-table__cell,
.dialog-content>.table-border th.el-table__cell.is-leaf {
    border-bottom: 1px solid #B7D1EB !important;
}

/* 复选框，单选框选中颜色 */
.el-checkbox__input.is-checked .el-checkbox__inner,
.el-radio__input.is-checked .el-radio__inner {
    background: var(--default-color) !important;
    border-color: var(--default-color) !important;
}

/* 分页器选中颜色 */
.el-pagination.is-background .btn-next.is-active,
.el-pagination.is-background .btn-prev.is-active,
.el-pagination.is-background .el-pager li.is-active {
    background: var(--default-color) !important;
}

.el-radio__input.is-checked+.el-radio__label {
    color: var(--default-color) !important;
}

/* 筛选框内选择框/搜索框/时间筛选框边框颜色修改 */
.filter-content .el-input__wrapper,
.filter-content .el-date-editor.el-input__wrapper,
.filter-content .el-date-editor.el-input__wrapper {
    box-shadow: 0 0 0 1px #B7D1EB inset;
}