/* 滚动条 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #0003;
    border-radius: 10px;
    transition: all .2s ease-in-out;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* 单页基础样式 */

.view-content {
    height: 100%;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 4px;
}

.filter-content {
    width: 100%;
    height: auto;
    padding: 20px 0 !important;
    box-sizing: border-box;
}

.data-content {
    width: 100%;
    flex: 1;
    padding: 0 !important;
    box-sizing: border-box;
    overflow: hidden;
}

.paging-content {
    width: 100%;
    height: 60px;
    display: flex;
    padding: 0 !important;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
}

/* 单页基础样式 */

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.text-hide {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cursor-pointer {
    cursor: pointer;
}

.el-button-brand {
    border-color: var(--brand-color) !important;
    background: var(--brand-color) !important;
    color: #FFFFFF !important;
}

.el-button-error {
    background: var(--error-color) !important;
    border-color: var(--error-color) !important;
    color: #FFFFFF !important;
}

.el-button-warning {
    background: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: #FFFFFF !important;
}

.el-button-success {
    background: var(--success-color) !important;
    border-color: var(--success-color) !important;
    color: #FFFFFF !important;
}

.update-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("/static/button-icon/update-button.png");
}

.delete-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("/static/button-icon/delete-button.png");
}

.up-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("/static/button-icon/up-button.png");
}

.down-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("/static/button-icon/down-button.png");
}

.send-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("/static/button-icon/send-button.png");
}

.success-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("/static/button-icon/success-button.png");
}

.close-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("/static/button-icon/close-button.png");
}

.audit-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("/static/button-icon/audit-button.png");
}

.view-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("/static/button-icon/view-button.png");
}

.bl-icon-button+.bl-icon-button {
    margin-left: 10px;
}

/* ----------------------------------------------------------- */
/* 边距 */

/* 刷新按钮 */
.refresh-button {
    width: 40px;
    height: 32px;
    color: #FFFFFF !important;
    font-size: 18px !important;
    border-color: #606266 !important;
    background: #606266 !important;
}

/* 刷新按钮 */
/* ----------------------------------------------------------- */
/* 顶部选择器基础样式 */
.filter-content .filter-cell {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;
}

.filter-content .filter-cell:first-child {
    margin-top: 0;
}

.filter-content .item-select {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.filter-content .select-title {
    padding: 0 10px 0 0;
    color: #111111;
    font-size: 14px;
    white-space: nowrap;
}

.filter-content .el-select {
    width: 120px;
    border: 0;
}

.filter-content .filter-mini {
    width: 100px;
}

.filter-content .search {
    width: 200px;
}

.filter-content .times {
    width: 200px !important;
}

/* 顶部选择器基础样式 */
/* ----------------------------------------------------------- */
/* 格式化弹窗基础样式 */
.dialog-popup {
    padding: 0 !important;
}

.dialog-popup .el-dialog__header,
.dialog-popup .el-message-box__header {
    background: #F5F7FC !important;
    padding: 0 25px;
    margin: 0;
    height: 45px;
    box-sizing: border-box;
    color: #5A607F;
}

.dialog-popup .el-message-box__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.dialog-popup .el-message-box__close {
    color: #F0142F !important;
}

.dialog-popup .el-dialog__body {
    padding: 0;
    max-height: 700px;
    min-height: 150px;
    overflow: auto;
}

.dialog-content {
    padding: 0 15px;
    box-sizing: border-box;
}

.dialog-popup .el-dialog__footer,
.dialog-popup .el-message-box__content,
.dialog-popup .el-message-box__btns {
    padding: 15px;
}

.popup-header {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.popup-header .title-class {
    color: #5A607F;
    font-size: 15px;
}

/* 弹窗基础样式 */
/* ----------------------------------------------------------------- */
.margin-clear {
    margin: 0 !important;
}

.padding-clear {
    padding: 0 !important;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* 边距 */
/* ----------------------------------------------------------- */