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;
}

/* 滚动条 */

.view-content {
    height: 100%;
    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;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.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;
}

.cursor-pointer {
    cursor: pointer;
}

/* ----------------------------------------------------------- */
/* 单页基础样式 */

.view-content {
    height: 100%;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.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;
}

/* 单页基础样式 */
/* ----------------------------------------------------------- */
/* 刷新按钮 */
.refresh-icon {
    color: var(--brand-color) !important;
    font-size: 20px !important;
    transition: all 2s;
    cursor: pointer;
}

/* 刷新按钮 */
/* ----------------------------------------------------------- */
/* 顶部选择器基础样式 */
.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;
}

/* 顶部选择器基础样式 */
/* ----------------------------------------------------------- */
/* 表单提交选择器/输入框基础样式 */
.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%;
}

/* 表单提交选择器/输入框基础样式 */
/* ----------------------------------------------------------- */
/* 按钮基础样式 */
.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: #fff !important;
}

.el-button-warning {
    background: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: #fff !important;
}

.el-button-success {
    background: var(--success-color) !important;
    border-color: var(--success-color) !important;
    color: #fff !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;
}

/* 弹窗基础样式 */
/* ----------------------------------------------------------------- */
.tooltip-font {
    font-size: 14px;
    line-height: 24px;
}

/* ----------------------------------------------------------- */
/* 边距 */
.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;
}

/* 边距 */
/* ----------------------------------------------------------- */
/* 筛选框隐藏功能 */
.filter-icon {
    color: var(--brand-color) !important;
    font-size: 22px !important;
    transition: all 0.5s;
}

.hide-filter-icon {
    transform: rotateX(180deg);
}

.hide-filter-content {
    transition: all 0.5s;
    height: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

/* 筛选框隐藏功能 */
/* ----------------------------------------------------------- */