/*通用*/
[v-clock] {
    display: none;
}

.clear:after {
    clear: both;
    display: block;
    content: "";
}

.clear {
    zoom: 1;
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.color-gray {
    color: var(--color-gray);
    border-color: var(--color-gray);
}

.color-blue {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.color-origin {
    border-color: var(--color-origin);
    color: var(--color-origin);
}

.color-red {
    border-color: var(--color-red);
    color: var(--color-red);
}

.color-green {
    border-color: var(--color-green);
    color: var(--color-green);
}

.display-inline-block {
    display: inline-block;
}

.user-select-none {
    user-select: none;
}

.cursor-pointer {
    cursor: pointer;
}

.white-space-nowrap {
    white-space: nowrap;
}


/*全局*/

body, button, dd, dl, dt, h1, h2, h3, h4, h5, h6, hr, input, li, ol, p, pre, td, textarea, th, ul, body, button, input, select, textarea {
    color: var(--elementFontColor);
}

/*主体*/

.page-width {
    max-width: var(--pageMainWidth);
    margin: 0 auto;
}

/*盒子*/

.fill-box {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.flex-direction-column {
    flex-direction: column;
}

.flex-direction-row-reverse {
    flex-direction: row-reverse;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.flex-wrap-wrap {
    flex-wrap: wrap;
}

.flex-justify-space-between {
    display: flex;
    justify-content: space-between;
}

.flex-justify-end {
    justify-content: flex-end;
}

.align-self-flex-start {
    align-self: flex-start;
}

.align-self-center {
    align-self: center;
}

.flex-1 {
    flex: 1
}

.position-relative {
    position: relative;
}

.position-fixed-center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.overflow-hidden {
    overflow: hidden;
}

/*块级*/
.area-14 {
    width: 14px;
    height: 14px;
}

.area-18 {
    width: 18px;
    height: 18px;
}

.area-20 {
    width: 20px;
    height: 20px;
}

.area-24 {
    width: 24px;
    height: 24px;
}

.area-40 {
    width: 40px;
    height: 40px;
}

.area-48 {
    width: 48px;
    height: 48px;
}

.area-60 {
    width: 60px;
    height: 60px;
}

.area-80 {
    width: 80px;
    height: 80px;
}

.area-100 {
    width: 100px;
    height: 100px;
}

.area-100-30 {
    width: 100px;
    height: 30px;
}

/*宽度*/
.width-80-percent {
    width: 80%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.width-100-percent {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.width-40 {
    width: 40px;
}

.width-50 {
    width: 60px;
}

.width-60 {
    width: 60px;
}

.width-80 {
    width: 80px;
}

.width-100 {
    width: 100px;
}

.width-120 {
    width: 120px;
}

.width-140 {
    width: 140px;
}

.width-160 {
    width: 160px;
}

.width-200 {
    width: 200px;
}

.width-300 {
    width: 300px;
}

.width-340 {
    width: 340px;
}

.width-400 {
    width: 400px;
}

.width-600 {
    width: 600px;
}

.width-800 {
    width: 800px;
}

.max-width-200 {
    max-width: 200px;
}

.max-width-600 {
    max-width: 600px;
}

/*高度*/
.min-height-44 {
    min-height: 44px;
}

.min-height-66 {
    min-height: 66px;
}

.height-160 {
    height: 160px;
}

.height-200 {
    height: 200px;
}

.height-300 {
    height: 300px;
}

.height-80-percent {
    height: 80%;
}

/*背景*/
.background-100-percent {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/*字号*/
.font-size-12 {
    font-size: 12px;
}

.font-size-13 {
    font-size: 13px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-18 {
    font-size: 18px;
}

.font-size-24 {
    font-size: 24px;
}

.font-size-32 {
    font-size: 32px;
}

/*字宽*/
.font-weight-normal {
    font-weight: normal;
}

.font-weight-bold {
    font-weight: 700;
}

/*行高*/
.line-height-1-dot-5 {
    line-height: 1.5;
}

.line-height-1-dot-8 {
    line-height: 1.8;
}

.line-height-2 {
    line-height: 2;
}

.line-height-2-dot-2 {
    line-height: 2.2;
}

.line-height-2-dot-4 {
    line-height: 2.4;
}

.line-height-2-dot-5 {
    line-height: 2.5;
}

.line-height-2-dot-8 {
    line-height: 2.8;
}

/*字向*/
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

/*padding*/
.padding-0 {
    padding: 0;
}

.padding-4-20 {
    padding: 4px 20px;
}

.padding-6-20 {
    padding: 6px 20px;
}

.padding-8-10 {
    padding: 8px 10px;
}

.padding-10-0-20 {
    padding: 10px 0 20px;
}

.padding-20 {
    padding: 20px;
}

.padding-24 {
    padding: 24px;
}

.padding-24-0 {
    padding: 24px 0;
}

.padding-30-40 {
    padding: 30px 40px;
}

.padding-40 {
    padding: 40px;
}

.padding-40-0 {
    padding: 40px 0;
}

.padding-40-20 {
    padding: 40px 20px;
}

.padding-40-80 {
    padding: 40px 80px;
}

.padding-0-20 {
    padding: 0 20px;
}

.padding-0-24 {
    padding: 0 24px;
}

.padding-0-26 {
    padding: 0 26px;
}

.padding-0-30 {
    padding: 0 30px;
}

.padding-0-40 {
    padding: 0 40px;
}

.padding-10-40 {
    padding: 10px 40px;
}

.padding-20-40 {
    padding: 20px 40px;
}

.padding-0-80 {
    padding: 0 80px;
}

.padding-20-0 {
    padding: 20px 0;
}

.padding-80-0 {
    padding: 80px 0;
}

.padding-0-40-40 {
    padding: 0 40px 40px;
}

.padding-20-40-40 {
    padding: 20px 40px 40px;
}

.padding-top-4 {
    padding-top: 4px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

/*margin*/
.margin-10-0 {
    margin: 10px 0;
}

.margin-20-0 {
    margin: 20px 0;
}

.margin-40-0 {
    margin: 40px 0;
}

.margin-40-0-0 {
    margin: 40px 0 0;
}

.margin-40-0-20 {
    margin: 40px 0 20px;
}

.margin-60-0 {
    margin: 60px 0;
}

.margin-0-10 {
    margin: 0 10px;
}

.margin-0-20 {
    margin: 0 20px;
}

.margin-0-40 {
    margin: 0 40px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-left-40 {
    margin-left: 40px;
}

.margin-left-60 {
    margin-left: 60px;
}

.margin-right-4 {
    margin-right: 4px;
}

.margin-right-6 {
    margin-right: 6px;
}

.margin-right-10 {
    margin-right: 10px;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-right-40 {
    margin-right: 40px;
}

.margin-right-100 {
    margin-right: 100px;
}

.margin-bottom-4 {
    margin-bottom: 4px;
}

.margin-bottom-6 {
    margin-bottom: 6px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-16 {
    margin-bottom: 16px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-24 {
    margin-bottom: 24px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

/*元素下所有子项外边距20px*/
.box-all-self-bottom-20 > * {
    margin-bottom: 20px;
}

/*theme-盒子*/

.body-theme-default {
    background-color: var(--bodyBackgroundColor);
}

.body-theme-default .content-box {
    margin-top: 10px;
    min-height: calc(100vh - 80px - 10px);
    display: flex;
}

.body-theme-default .main-box {
    flex: 1;
    padding-bottom: 20px;
}

.body-theme-default .body-background-color {
    background-color: var(--bodyBackgroundColor);
}

.body-theme-default .content-background-color {
    background-color: var(--contentBackgroundColor);
}

/*theme-input*/

.theme-layout .layer-input {
    display: flex;
    align-items: center;
}

.theme-layout .layer-input .input-text {
    flex: 1;
    color: #333333;
    padding: 10px 10px;
    width: 100%;
    min-height: 21px;
}

.theme-layout .layer-input-8-10 .input-text {
    padding: 8px 10px;
}

.theme-layout .layer-input .input-textarea {
    resize: none;
    width: 100%;
}

.theme-layout .layer-input .input-text[readonly] {
    background-color: #f5f7fa;
    border-color: #e4e7ed;
    color: #c0c4cc;
}

.theme-layout .layer-input .input-text[disabled] {
    background-color: #f5f7fa;
    border-color: #e4e7ed;
    color: #c0c4cc;
    cursor: not-allowed;
}

.theme-layout .border-1-solid-d8d8d8 {
    border: 1px solid #d8d8d8;
}

.theme-layout .border-bottom-1-solid-d8d8d8 {
    border-bottom: 1px solid #d8d8d8;
}

.theme-layout .input-require:before {
    content: "*";
    color: #f56c6c;
    margin-right: 4px;
}

/*theme-link-block*/
.theme-layout .link-default {
    color: var(--buttonDefaultFontColor);
    background: #FFFFFF;
    border: 1px solid var(--buttonDefaultBorderColor);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    border-radius: 4px;
    user-select: none;
}

.theme-layout .link-default:hover {
    color: var(--buttonDefaultFontColorHover);
    background: var(--buttonDefaultBackGroundColorHover);
    border: 1px solid var(--buttonDefaultBorderColorHover);
}

.theme-layout .link-primary {
    background: var(--buttonPrimaryFontColor);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 4px;
    user-select: none;
}

.theme-layout .link-primary:hover {
    background: var(--buttonPrimaryFontColorHover);
    color: #fff;
}

.theme-layout .link-primary-secondary {
    background-color: var(--buttonPrimarySecondaryFontColor);
    opacity: 0.7;
    display: block;
    padding: 0 28px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.theme-layout .link-primary-secondary:hover {
    background-color: var(--buttonPrimarySecondaryBackgroundColorHover);
    opacity: 1;
}

.theme-layout .link-warning {
    background: var(--buttonWarningFontColor);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 4px;
    user-select: none;
}

.theme-layout .link-warning:hover {
    background: var(--buttonWarningFontColorHover);
}

.theme-layout .link-danger {
    background: var(--buttonDangerFontColor);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 4px;
    user-select: none;
}

.theme-layout .link-danger:hover {
    background: var(--buttonDangerFontColorHover);
}

.theme-layout .link-disabled {
    opacity: 0.3;
}

/*theme-link-text*/
.theme-layout .link-text-default {
    color: var(--buttonDefaultFontColor);
    user-select: none;
}

.theme-layout .link-text-default:hover {
    color: var(--buttonDefaultFontColorHover);
}

.theme-layout .link-text-primary {
    color: var(--buttonPrimaryFontColor);
    user-select: none;
}

.theme-layout .link-text-primary:hover {
    color: var(--buttonPrimaryFontColorHover);
}

.theme-layout .link-text-danger {
    color: var(--buttonDangerFontColor);
    user-select: none;
}

.theme-layout .link-text-danger:hover {
    color: var(--buttonDangerFontColorHover);
}

/*theme-button*/
.theme-layout .operate-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-layout .operate-box > * {
    margin-right: 40px;
}

.theme-layout .operate-box > *:last-child {
    margin-right: 0;
}

.theme-layout .operate-cancel {
    color: var(--buttonPrimaryFontColor);
    background: #fff;
    border: 1px solid var(--buttonPrimaryFontColor);
    border-radius: 4px;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 600;
}

.theme-layout .operate-confirm {
    color: #ffffff;
    background: var(--buttonPrimaryFontColor);
    border: 1px solid var(--buttonPrimaryFontColor);
    border-radius: 4px;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 600;
}

/*theme-table-common*/
.theme-layout .table-common-wrap {
    overflow: auto;
}

.theme-layout .table-common-wrap-max-width {
    width: calc(100vw - 200px - 90px);
    max-width: calc(1200px - 200px - 90px);
}

.theme-layout .table-common-wrap-border {
    border: 1px solid #ebebeb;
    border-radius: 3px;
    transition: .2s;
}

.theme-layout .table-common-wrap-border:hover {
    box-shadow: 0 0 8px 0 rgba(232, 237, 250, .6), 0 2px 4px 0 rgba(232, 237, 250, .5);
}

.theme-layout .table-common-box {
    min-width: 100%;
}

.theme-layout .table-common-box th, .theme-layout .table-common-box td {
    padding: 12px 0;
    min-width: 0;
    box-sizing: border-box;
    text-overflow: ellipsis;
    vertical-align: middle;
    position: relative;
    text-align: left;
    border-bottom: 1px solid #ebeef5;
}

.theme-layout .table-common-box tr {
    background-color: #fff;
}

.theme-layout .table-common-box th {
    border-bottom: 1px solid #ebeef5;
    overflow: hidden;
    user-select: none;
    background-color: #fff;
    transition: background-color .25s ease;
    color: #909399;
    font-weight: 500;
}

.theme-layout .table-common-box tr:last-child td {
    border-bottom: 0;
}

.theme-layout .table-common-box td {
    color: #606266;
}

.theme-layout .table-common-box tr:hover td {
    background-color: #f5f7fa;
}

.theme-layout .table-common-box .cell {
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
    line-height: 23px;
    padding-left: 10px;
    padding-right: 10px;
}

.theme-layout .table-common-box th .cell {
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    vertical-align: middle;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}

/*theme-title*/
.theme-layout .title-20 {
    font-size: 20px;
    font-weight: 600;
}

.theme-layout .title-16 {
    font-size: 16px;
    font-weight: 600;
}

/*list-box-common*/
.theme-layout .list-box-common {
}

.theme-layout .list-item-common {
    display: flex;
    border-bottom: 1px dashed #dedede;
    padding: 20px 20px;
    margin-bottom: 20px;
    background-color: #f1f1f1;
    border-radius: 4px;
}

.theme-layout .list-item-common:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/*theme-line*/
.theme-layout .solid-line {
    width: 100%;
    border-bottom: 1px solid #D8D8D8;
}

.theme-layout .dotted-line {
    width: 100%;
    border-bottom: 1px dashed #D8D8D8;
}

/*theme-border*/
.theme-layout .border-1-solid-primary {
    border: 1px solid var(--buttonPrimaryFontColor);
}

.theme-layout .border-1-solid-primary:hover {
    border: 1px solid var(--buttonPrimaryFontColorHover);
}

/*theme-border-radio*/
.theme-layout .border-radio-4 {
    border-radius: 4px;
}

.theme-layout .border-radio-100-percent {
    border-radius: 100%;
}

/*theme-breadcrumb*/
.breadcrumb-common-box {
    line-height: 40px;
}

.breadcrumb-common-box .breadcrumb-common-single-name {
    color: #606266;
}

.breadcrumb-common-box .breadcrumb-common-single-name a {
    font-weight: 700;
    text-decoration: none;
    transition: color .2s cubic-bezier(.645, .045, .355, 1);
    color: #303133;
}

.breadcrumb-common-box .breadcrumb-common-single-name a:hover {
    color: var(--active-color);
    cursor: pointer;
}

.breadcrumb-common-box .breadcrumb-common-single-separator {
    margin: 0 9px;
    font-weight: 700;
    color: #c0c4cc;
}

.breadcrumb-common-box .breadcrumb-common-single:last-child .breadcrumb-common-single-separator {
    display: none;
}

/*vue-select*/
.v-select-common .vs__selected-options {
    padding: 5px 2px;
}

.v-select-common .vs__dropdown-toggle {
    border-radius: 0;
}

/*vue2-datepicker common*/
.mx-datepicker-common.mx-datepicker {
    width: 100%;
}

.mx-datepicker-common .mx-input {
    height: 38px;
    border-radius: 0;
    box-shadow: none;
}

@media screen and(-ms-high-contrast: active),(-ms-high-contrast: none) {
    .page-width {
        width: 1200px;
        margin: 0 auto;
    }

    .theme-layout .link-primary {
        background: #3B70FF;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-weight: 500;
        color: #FFFFFF;
        border-radius: 4px;
        user-select: none;
    }

    .theme-layout .link-primary:hover {
        background: #2460ff;
    }
}

#editor-container {
    word-break: break-word;
}

.w-e-text-container [data-slate-editor] pre > code {
    white-space: pre-wrap;
}
