html {
    /* 浏览器默认字体大小16px,所以62.5% 实际为 10px，也就是说rem的单位开始以10px作为相对大小 */
    font-size: 62.5%;
    height: 155.9rem;
}

/* 滚动条 */
::-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;
}

/* 滚动条 */

.page-content {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.flex-column {
    display: flex;
    flex-direction: column !important;
}

.flex-row {
    display: flex;
    flex-direction: row !important;
}

.text_right {
    text-align: left;
}

.text_center {
    text-align: center;
}

.text-bold {
    font-weight: 550;
}

.text-hidden {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-pointer {
    cursor: pointer;
}

/* ----------------------------------------------------------- */
/* 单页基础样式 */
.page-content {
    display: flex;
    flex-direction: column;
}

.filter-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    box-sizing: border-box;
}

.data-content {
    width: 100%;
    flex: 1;
    box-sizing: border-box;
    overflow: hidden;
}

.paging-content {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* 轻提示内容类 */
.custom-el-popper {
    font-size: 12px !important;
    line-height: 22px !important;
}

/* 单页基础样式 */
/* ----------------------------------------------------------- */
/* 刷新按钮 */
.refresh-icon {
    color: var(--default-color) !important;
    font-size: 20px !important;
    transition: all 2s;
}

/* 刷新按钮 */
/* ----------------------------------------------------------- */
/* 顶部选择器基础样式 */
.filter-content .item-select {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.filter-content .select-title {
    padding: 0 10px 0 0;
    color: #131523;
    font-size: 14px;
    white-space: nowrap;
}

.filter-content .el-select {
    width: 100px;
    border: 0;
    font-size: 14px !important;
}

.filter-content .el-select-mini {
    width: 100px;
}

.filter-content .search {
    width: 200px;
}

::v-deep(.time-select) {
    width: 300px;
}

/* 顶部选择器基础样式 */
/* ----------------------------------------------------------- */
/* 表单提交选择器/输入框基础样式 */
.input-content {
    width: 100%;
    margin-top: 10px;
}

.input-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.input-item .item-title {
    color: #7E84A3;
    font-size: 14px;
    line-height: 42px;
}

.input-item .el-select {
    width: 100%;
}

/* 表单提交选择器/输入框基础样式 */
/* ----------------------------------------------------------- */
/* 按钮基础样式 */
.default-button {
    border-color: var(--default-color) !important;
    background: var(--default-color) !important;
    color: #ffffff !important;
}

.error-button {
    background: var(--error-color) !important;
    border-color: var(--error-color) !important;
    color: #fff !important;
}

.warning-button {
    background: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: #fff !important;
}

.success-button {
    background: var(--success-color) !important;
    border-color: var(--success-color) !important;
    color: #fff !important;
}

.hui-button {
    background: var(--grey-color) !important;
    border-color: var(--grey-color) !important;
    color: #fff !important;
}

/* 按钮基础样式 */
/* ----------------------------------------------------------- */
/* 弹窗基础样式 */
.clean-popup .el-dialog__header,
.clean-popup .el-message-box__header {
    padding: 0;
    height: 0;
    margin: 0;
}
.dialog-popup {
    padding: 0 !important;
}
.dialog-popup .el-dialog__footer {
    padding: 20px !important;
}
.dialog-popup .el-message-box__btns {
    padding: 15px !important;
}
.dialog-popup .el-message-box__content {
    padding: 15px !important;
}
.dialog-popup .el-dialog__header,
.dialog-popup .el-message-box__header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    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;
}
.clean-popup,
.clean-popup .el-dialog__body {
    padding: 0 !important;
}

.dialog-popup .el-dialog__body {
    padding: 0;
    max-height: 625px;
    min-height: 150px;
    overflow: auto;
}

.dialog-content {
    padding: 0 20px;
    box-sizing: border-box;
}

.my-header {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.my-header .title-class {
    color: #5A607F;
    font-size: 16px;
}

.dialog-footer .cancel {
    color: var(--default-color);
    background: #ffffff;
}

.dialog-footer .affirm {
    border-color: var(--default-color);
    background: var(--default-color);
    color: #ffffff;
}

/* 弹窗基础样式 */
/* ----------------------------------------------------------- */
/* ---抽屉基础样式--- */
.drawer-modal {
    position: absolute !important;
}

.drawer-popup .el-drawer__header {
    margin: 0;
    padding: 20px 24px;
}

.drawer-popup .el-drawer__body {
    padding: 0;
}

.drawer-popup .drawer-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.drawer-popup .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-popup .drawer-header .buttons .el-button {
    border-radius: 8px;
}

.drawer-hide-icon {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    border-radius: 4px;
    background: #A1A7C4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-view-icon {
    display: flex;
    align-items: center;
}

.drawer-view-icon .el-icon {
    color: #333333;
    font-size: 20px;
    transform: rotate(-90deg);
}

/* ---抽屉基础样式--- */
/* ---弹窗结构样式--- */
.popup-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.popup-content>.content {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.popup-content .footer {
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
}

/* 边距 */
.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

/* 边距 */
/* ----------------------------------------------------------- */