/* 表格固定样式 */
.data-content>.el-table {
    width: 100%;
    height: 100%;
    border: 1px solid #B7D1EB;
    border-radius: 4px;
    color: #111111 !important;
}


/* 表格内边框 */
.data-content>.el-table td.el-table__cell,
.data-content>.el-table th.el-table__cell.is-leaf {
    border-bottom: 1px solid #B7D1EB !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-table--border .el-table__cell {
    border-right: 1px solid #B7D1EB !important;
}

/* 设定单行文本行高防止纯文本表格单行过低表现 */
.el-table .cell {
    line-height: 32px !important;
}

/* 取消鼠标悬浮在el-table-row上的背景色改变 */
/* .data-content>.el-table .hover-row {
    background-color: inherit !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;
}

/* 复选框，单选框选中颜色 */
.el-checkbox__input.is-checked .el-checkbox__inner,
.el-radio__input.is-checked .el-radio__inner {
    background: var(--brand-color) !important;
    border-color: var(--brand-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(--brand-color) !important;
}

.el-radio__input.is-checked+.el-radio__label {
    color: var(--brand-color) !important;
}