@media screen and (max-width:540px) {
    .page-jump-container {
        display: none;
    }
    .pagination-box {
        margin: 1.2rem !important;
    }
}
@media screen and (min-width:576px) {
    .container {
        max-width: 540px;
    }
}
@media screen and (min-width:768px) {
    .container {
        max-width: 720px;
    }
}
@media screen and (min-width:992px) {
    .container {
        max-width: 960px;
    }
}
@media screen and (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}
@media screen and (min-width:1260px) {
    .container {
        max-width: 1200px;
    }
}

:root {
    --color: #da1212;
    --bgColor: #f4f4f4;
    --a: #1890ff;
}

* {
    padding: 0;
    margin: 0;
}

html, body {
    font-size: 16px;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bgColor);
}

a {
    color: #333;
    cursor: pointer;
    text-decoration: none;
}
a:hover  {
    color: var(--color);
    text-decoration: underline;
}
a.main-bg-color:hover {
    color: inherit;
}
a.text-decoration {
    text-decoration: underline;
}
a.text-dec-none {
    text-decoration: none;
}
a.link-none:hover {
    color: inherit;
    text-decoration: none;
}
a.main-link {
    color: var(--color);
    text-decoration: underline;
}

.main-color {
    color: var(--color);
}
.main-bg-color {
    color: #fff;
    background-color: var(--color);
    border: none;
}
.main-border-color {
    color: var(--color);
    border: 1px solid var(--color);
}
.bgcolor {
    background-color: var(--bgColor);
}
button[disabled], button[disabled="disabled"] {
    background-color: #ccc;
}

.imgLoadFail {
    width: 100%;
    height: 100%;
}

#msg-alert-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 0;
}
/* .msg-alert {
    color: #fff;
    padding: 15px 15px 15px 20px;
    border-radius: 4px;
    min-width: 380px;
    box-sizing: border-box;
    background-color: #909399;
    box-shadow: 1px 1px 2px rgba(170, 170, 170, 0.6);
    margin-bottom: 15px;
    margin-left: -50%;
    max-width: 100%;
    word-break: break-word;
}
.msg-alert.msg-warning {
    background-color: #e6a23c;
}
.msg-alert.msg-error {
    background-color: #f56c6c;
}
.msg-alert.msg-success {
    background-color: #67c23a;
} */
.msg-alert {
    color: #909399;
    padding: 15px 15px 15px 20px;
    border-radius: 4px;
    width: 420px;
    box-sizing: border-box;
    background-color: #edf2fc;
    margin: 15px auto 0;
    max-width: 80%;
    word-break: break-word;
    border-width: 1px;
    border-style: solid;
    border-color: #ddd;
    display: flex;
    align-items: center;
    font-size: 0.92rem;
    position: relative;
}
.msg-alert.right-link:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    right: 10px;
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    transform: rotate(-45deg);
}
.msg-alert.alert-in-page {
    margin: 0 auto;
    width: 94%;
    max-width: 100%;
    padding: 10px;
}
.msg-alert.alert-in-page + .msg-alert.alert-in-page {
    margin-top: 10px;
}
.msg-alert > i {
    margin-right: 6px;
}
.msg-alert.msg-warning {
    background-color: #fdf6ec;
    border-color: #fcdbaa;
    color: #E6A23C;
}
.msg-alert.right-link.msg-warning:after {
    border-color: #E6A23C;
}
.msg-alert.msg-error {
    background-color: #fef0f0;
    border-color: #efa3a3;
    color: #F56C6C;
}
.msg-alert.right-link.msg-error:after {
    border-color: #F56C6C;
}
.msg-alert.msg-success {
    background-color: #f0f9eb;
    border-color: #67c23a;
    color: #67C23A;
}
.msg-alert.right-link.msg-success:after {
    border-color: #67c23a;
}
.msg-alert.msg-info {
    background-color: #e6f7ff;
    border-color: #91d5ff;
    color: #539bc7;
}
.msg-alert.right-link.msg-info:after {
    border-color: #539bc7;
}

.animation-down {
    animation: downin 0.3s;
}
.animation-up {
    animation: upout 0.3s forwards;
}
.animation-up2 {
    animation: upout2 0.3s forwards;
}

.animation-hide {
    animation: hide 0.3s forwards;
}

@keyframes downin {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes upout {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}
@keyframes upout2 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        margin-top: -52px;
    }
}
@keyframes hide {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    40% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.2);
        opacity: 0;
    }
}

.w100 {
    width: 100%;
}
.column {
    flex-direction: column;
}
.inline-block {
    display: inline-block;
}
.flex {
    display: flex;
}
.flex1 {
    flex: 1;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-y-center {
    display: flex;
    align-items: center;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.keyword-mark {
    display: inline-block;
    padding: 2px 4px;
    font-weight: normal;
    font-size: 12px;
    transform: translateY(-2px);
    margin-right: 4px;
}
.keyword-mark2 {
    display: inline-block;
    padding: 1px 4px;
    margin: 0 4px;
    border-radius: 4px;
    box-shadow: 0.4px 0.4px 4px #ccc;
    font-size: 0.9rem;
}
.vip-box {
    display: inline-flex;
    align-items: center;
    border-width: 2px;
    border-style: solid;
    border-color: var(--color);
    border-radius: 4px;
    height: 1.36rem;
}
.vip-name {
    display: inline-flex;
    align-items: center;
    background-color: var(--color);
    color: #fff;
    padding: 1px 4px 1px 3px;
    flex: 1;
    font-size: 0.9rem;
    z-index: 2;
}
img.vip-icon {
    width: 10px;
    height: 15px;
    margin-right: 6px;
    animation: vipicon 12s linear infinite;
    /* Safari 与 Chrome: */
    -webkit-animation: vipicon 12s linear infinite;
}
.vip-date {
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    color: var(--color);
    font-size: 0.9rem;
    font-weight: bold;
}
.vip-box.small {
    height: 1.24rem;
}
.vip-box.small .vip-name, .vip-box.small .vip-data {
    font-size: 0.82rem;
}
@keyframes vipicon 
{
    20% {
        margin-left: 0px;
        transform: rotate(0);
    }
    30% {
        transform-origin: center;
        transform: rotate(-45deg);
    }
    42% {
        transform-origin: center;
        transform: rotate(360deg);
        margin-left: 0;
    }
    66% { margin-left: 0; }
    70% { 
        margin-left: -16px;
        transform: rotate(360deg);
    }
    86% { 
        margin-left: -16px;
        transform: rotate(0deg);
    }
    92% { margin-left: 0; }
}
@-webkit-keyframes vipicon /* Safari 与 Chrome */
{
    20% {
        margin-left: 0px;
        transform: rotate(0);
    }
    30% {
        transform-origin: center;
        transform: rotate(-45deg);
    }
    42% {
        transform-origin: center;
        transform: rotate(360deg);
        margin-left: 0;
    }
    66% { margin-left: 0; }
    70% { 
        margin-left: -16px;
        transform: rotate(360deg);
    }
    82% { 
        margin-left: -16px;
        transform: rotate(0deg);
    }
    92% { margin-left: 0; }
}

.fs-12 {
    font-size: 0.75rem;
}
.fs-14 {
    font-size: 0.875rem;
}
.fs-18 {
    font-size: 1.125rem;
}
.fs-24 {
    font-size: 1.5rem;
}
.fs-bold {
    font-weight: bold;
}
.fc-dark-66, .fc-666 {
    color: #666;
}
.fc-dark-99, .fc-999 {
    color: #999;
}
.fc-aaa {
    color: #aaa;
}
.fc-bbb {
    color: #bbb;
}
.fc-ccc {
    color: #ccc;
}
.mt-10px {
    margin-top: 10px;
}
.mb-10px {
    margin-bottom: 10px;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mt-8 {
    margin-top: 2rem;
}
.mt-10 {
    margin-top: 2.5rem;
}
.mt-12 {
    margin-top: 3rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mb-10 {
    margin-bottom: 2.5rem;
}
.mb-12 {
    margin-bottom: 3rem;
}
.offset-2 {
    margin-left: 0.5rem;
}
.offset-4 {
    margin-left: 1rem;
}
.offset-6 {
    margin-left: 1.5rem;
}
.offset-8 {
    margin-left: 2rem;
}

.title-font-24 {
    font-size: 1.5rem;
    font-weight: bold;
}
.title-font-30 {
    font-size: 1.875rem;
    font-weight: bold;
}

.main-content {
    min-height: 26rem;
}

.layui-laydate {
    z-index: 890 !important;
}

._btn-group-box {
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.divider-vertical {
    position: relative;
    top: -0.06em;
    display: inline-block;
    height: 0.9em;
    margin: 0 8px;
    vertical-align: middle;
    border-top: 0;
    border-left: 1px solid rgba(0,0,0,.2);
}
._btn-group-box .divider-vertical {
    margin: 0;
}

.container {
    margin: 0 auto;
}
.margin-text {
    padding: 0 0.5rem;
    margin: 0 0.5rem;
}

.no-data {
    padding: 2rem 0;
    text-align: center;
    color: #999;
}

.toggle-menu {
    position: relative;
    /* cursor: pointer; */
    margin: 0 0.6rem;
    vertical-align: middle;
    align-items: center;
    display: inline-flex;
}
.toggle-menu > .tm-icon, .tm-childs-row > .tm-icon {
    background: url(/resources/imgs/down.svg) no-repeat center;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-size: 100%;
    transform: rotate(180deg);
    margin: 0 6px;
}
.toggle-menu:hover > .tm-icon, .tm-childs-row:hover > .tm-icon {
    transform: rotate(0deg);
    transition: transform 0.3s;
    background-image: url(/resources/imgs/down-activate.svg);
}
.tm-childs {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0,0,0,.18824);
    line-height: 1.8rem;
    padding: 1rem;
    top: 100%;
    z-index: 49;
    max-height: 36rem;
    overflow: auto;
}
.tm-childs > .toggle-menu {
    display: flex;
    margin-left: -1rem;
    padding-left: 1rem;
}
.tm-childs > .toggle-menu:hover > .tm-childs-row {
    color: #fff;
}
.tm-childs > .toggle-menu:hover {
    background-color: var(--color);
}
.tm-childs-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
    white-space: nowrap;
    display: block;
}
.toggle-menu:hover > .tm-childs {
    display: block;
}
.toggle-menu:hover > .tm-childs.multiple {
    display: flex;
}
.tm-childs-block {
    border-left: 1px solid #eee;
    padding: 0 1rem;
    min-width: 4.6rem;
}
.tm-childs > .tm-childs-block:first-of-type {
    border-left: none;
    padding-left: 0;
}
.tm-childs-row {
    display: flex;
    white-space: nowrap;
    font-size: 0.875rem;
    align-items: center;
    justify-content: space-between;
    color: #333;
    cursor: pointer;
}
.tm-childs-row > a:first-of-type {
    /* min-width: 7rem; */
    margin-right: 1.6rem;
}
.tm-childs-row > a:nth-child(2n) {
    margin-left: 1.6rem;
}
/* .tm-childs-row > span {
    min-width: 7rem;
} */

.toggle-menu:hover > .tm-multiple-column {
    display: flex;
}
.tm-multiple-column {
    display: none;
    position: absolute;
    line-height: 1.8rem;
    top: 100%;
    z-index: 49;
}
.tm-column-childs {
    background-color: #fff;
    box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0,0,0,.18824);
    line-height: 1.8rem;
    padding: 1rem;
    margin-right: 4px;
    max-height: 36rem;
    max-width: 14rem;
    overflow: auto;
}

.tm-childs-m-bg {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    flex-direction: column;
    display: none;
    z-index: 50;
}
/* .toggle-menu:hover > .tm-childs-m-bg {
    display: flex;
} */
.tm-childs-m-top {
    flex: 1;
    background-color: rgba(0,0,0,0.2);
}
.tm-childs-m, .tm-multiple-column-m {
    box-shadow: 0 0.1875rem 0.4375rem 0 rgb(0 0 0 / 19%);
    line-height: 2rem;
    border-top: 1px solid #ccc;
    background-color: #fff;
    padding: 1rem;
    max-height: 70%;
}
.tm-multiple-column-m {
    margin-right: -4px;
    padding: 0;
    display: flex;
}
.tm-multiple-column-m .tm-column-childs {
    flex: 1;
    max-width: 100%;
    line-height: 2rem;
}

.path_row {
    padding: 1rem 0;
    color: #666;
    font-size: 0.875rem;
}

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

.position-left {
    left: 0;
}
.position-right {
    right: 0;
}

.text-center {
    text-align: center;
}
.text-overflow {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}
.text-overflow2 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

._btn {
    padding: 10px 24px;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    box-sizing: border-box;
    align-items: center;
}
._btn[disabled="disabled"] {
    background-color: #ccc;
}
._btn.border {
    border: 1px solid #ccc;
}
._btn.round {
    border-radius: 6px;
}
._btn.border-main {
    border: 1px solid var(--color);
}
._btn+._btn {
    margin-left: 10px;
}
._btn.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
._btn.small {
    padding: 4px 12px;
    font-size: 14px;
}

.must:after {
    content: "*";
    padding-left: 6px;
    /* padding-right: 6px; */
    vertical-align: middle;
    color: #e8928b;
}

.all-load-out {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    color: #ccc;
    font-size: 0.875rem;
    padding-bottom: 1rem;
}
.not-data-box {
    padding: 2rem 1rem;
    text-align: center;
    color: #ccc;
    width: 100%;
    box-sizing: border-box;
}

/* ===================== 分页 start ===================== */
.pagination-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem;
}
.btn-page {
    display: inline-block;
    padding: 5px;
    border: 1px solid #aaa;
    background-color: #fff;
    margin: 5px;
    cursor: pointer;
    color: #000000d9;
    min-width: 32px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    border-radius: 4px;
    box-shadow: 0 0 2px #eee;
}
.btn-page.page-ellipsis-prev, .btn-page.page-ellipsis-next {
    border: none;
    background-color: transparent;
    color: #666;
    cursor: default;
    margin: 0;
}
.btn-page.page-now {
    color: var(--color);
    border-color: var(--color);
}
.btn-page.now-page {
    color: #fff;
    background-color: var(--color);
    border: var(--color);
}
.btn-page.hide {
    display: none;
}
.btn-page.disable, .btn-page.loading {
    color: #bbb;
    cursor: default;
    border-color: #ddd;
    box-shadow: none;
}
.btn-page.now-page.loading {
    background-color: #bbb;
    color: #fff;
}
.btn-page:hover {
    text-decoration: none;
}
.page-jump-container {
    margin-left: 14px;
    color: #666;
}
input.page-jump-input {
    padding: 5px;
    font-size: 0.92rem;
    border: 1px solid #ccc;
    box-sizing: border-box;
    height: 32px;
    width: 50px;
    border-radius: 4px;
}
/* ===================== 分页 end ===================== */

/* ===================== model start ===================== */
.model-bg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    z-index: 888;
}
.model-box {
    background-color: #fff;
    max-height: 88%;
    width: 38rem;
    max-width: 90%;
    display: flex;
    flex-direction: column;
}
.model-head {
    padding: 1.4rem 1rem 0 1.4rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.24rem;
    min-height: 2rem;
}
.model-main-content {
    line-height: 1.6rem;
    overflow: auto;
    flex: 1;
}
.model-body {
    padding: 1.4rem;
    color: #333;
    flex: 1;
    overflow: auto;
    display: flex;
    flex-direction: column;
}
.model-gray-bg {
    padding: 1rem;
    background-color: #eee;
    margin-bottom: 2rem;
}
.model-gray-row {
    display: flex;
    align-items: center;
    line-height: 2rem;
}
.model-gray-row > img.show-image {
    width: 6rem;
    max-height: 7rem;
    margin-right: 1rem;
}
.model-gray-row > .label {
    min-width: 100px;
    display: inline-block;
    text-align: right;
    margin-right: 1rem;
    color: #999;
    white-space: nowrap;
}
.model-content-row {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}
.model-content-row:last-of-type {
    margin-bottom: 0;
}
.content-row-left {
    min-width: 6rem;
    margin-right: 1rem;
    text-align: right;
}
.content-row-right {
    flex: 1;
    width: 0;
    position: relative;
}
.content-row-right > input {
    height: 36px;
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    color: #555;
    font-size: 1rem;
    background-color: transparent;
    border-radius: 0;
}
.content-row-right > input[disabled], .content-row-right > input[disabled="disabled"] {
    background-color: #f4f4f4;
}
.content-row-right > select, .content-row-right select.full {
    height: 36px;
    width: 100%;
    border: 1px solid #ccc;
    padding: 0 4px;
    background-color: transparent;
    font-size: 1rem;
    border-radius: 0;
}
.content-row-right > textarea {
    width: 100%;
    height: 7rem;
    display: block;
    border: 1px solid #ddd;
    padding: 6px;
    box-sizing: border-box;
    font-size: 0.875rem;
    color: #666;
}
.content-row-right > input:focus, .content-row-right > textarea:focus {
    outline: none;
}
.btn-model-close {
    display: inline-block;
    font-size: 1.2rem;
    color: #999;
    padding: 4px 12px;
    cursor: pointer;
    line-height: 1.2rem;
    transform: scaleX(1.2);
}
.btn-model-close:hover {
    color: #666;
}
.model-btn {
    display: inline-block;
    min-width: 80px;
    text-align: center;
    margin-left: 1rem;
    padding: 10px;
    box-sizing: border-box;
    letter-spacing: 1px;
    cursor: pointer;
}
/* ===================== model end ===================== */

/* ===================== table start ===================== */
table.table-bordered {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}
table.table-bordered th {
    border: 1px solid #ddd;
    padding: 6px;
}
table.gray-thead th {
    background-color: #aaa;
    color: #fff;
    white-space: nowrap;
}
table.table-bordered td {
    border: 1px solid #ddd;
    padding: 6px;
}
.center {
    text-align: center;
}
/* ===================== table end ===================== */

.btn-send-code {
    color: #fff;
    padding: 0 10px;
    min-width: 5rem;
    text-align: center;
    height: 2rem;
    line-height: 2rem;
    border-radius: 4px;
    font-size: 0.94rem;
    cursor: pointer;
}
.btn-send-code.disable {
    background-color: #999;
}

.circle-close {
    display: inline-block;
    position: relative;
    background-color: #333;
    min-width: 1rem;
    min-height: 1rem;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
}
.circle-close:before, .circle-close:after {
    content: "";
    width: 54%;
    height: 6%;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 23%;
    top: 50%;
    min-height: 2px;
}
.circle-close.light {
    background-color: #fff;
}
.circle-close.light:before, .circle-close.light:after {
    background-color: #999;
}
.circle-close:before {
    transform: translateY(-50%) rotate(-45deg);
}
.circle-close:after {
    transform: translateY(-50%) rotate(45deg);
}

.circle-close[data-theme="border"] {
    background-color: #fff;
}
.circle-close[data-theme="border"]:before, .circle-close[data-theme="border"]:after {
    background-color: var(--color);
}

/* 文章样式 */
.news-bg {
    background-color: #fff;
    padding: 20px;
}
.news-content {
    color: #464646;
    line-height: 2rem;
}
.news-content img, .news-content video {
    max-width: 100%;
    display: inline-block;
}
.news-content p {
    margin-bottom: 10px;
}
.news-content a {
    color: var(--a);
}
.news-content table {
    border-spacing: 0;
    border-collapse: collapse;
}
.news-content table td, .news-content table th {
    border: 1px solid #ccc;
}

/* tab-n */
.tab-title-box {
    display: flex;
    align-items: center;
}
.tab-title-item {
    padding: 2px 0;
    margin: 0 8px;
    font-size: 1rem;
    color: #464646;
    cursor: pointer;
    white-space: nowrap;
}
.tab-title-box.small > .tab-title-item {
    margin: 0 4px;
}
.tab-title-box.big > .tab-title-item {
    margin: 0 10px;
}
.tab-title-box > .tab-title-item:first-of-type {
    margin-left: 0;
}
.tab-title-box > .tab-title-item:last-of-type {
    margin-right: 0;
}
.tab-title-item.selected {
    font-size: 1.26rem;
    border-bottom: 3px solid var(--color);
    font-weight: bold;
    color: #222;
}
.tab-title-item.inline-block {
    background-color: #999;
    padding: 6px;
    color: #fff;
}
.tab-title-item.selected.inline-block {
    font-size: 1rem;
    border-bottom: none;
    background-color: var(--color);
}
.tab-body-item {
    display: none;
    margin-top: 10px;
    display: none;
}
.tab-body-item.selected {
    display: flex;
}

/* form */
.formRow {
    position: relative;
    border-top: 1px solid #eee;
    display: flex;
    background-color: #fff;
    padding: 8px 12px;
    font-size: 0.92rem;
    color: #444;
    min-height: 48px;
    box-sizing: border-box;
}
.formRow:first-of-type {
    border-top: none;
}
.formLabel {
    font-size: 0.92rem;
    padding-right: 10px;
    min-width: 5rem;
    margin-top: 6px;
}
.formInput {
    width: 100%;
    padding: 5px;
    font-size: 0.92rem;
    border: 1px solid #ccc;
    box-sizing: border-box;
    height: 34px;
}
select.formInput {
    background-color: #fff;
}
textarea.formInput {
    height: 6rem;
}
.prefixIcon {
    padding-left: 34px;
}
.formInput:focus {
    outline: none;
}
.inputPrefixIcon {
    position: absolute;
    left: 8px;
    top: 14px;
    color: #aaa;
    font-size: 20px;
}
.formSubmit {
    display: block;
    width: 76%;
    margin: 3rem auto 2rem;
    height: 2.8rem;
    line-height: 2.8rem;
    font-size: 1.1rem;
    border-radius: 1.5rem;
    border: none;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

/* foot tabs */
.tab-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background-color: #fff;
    box-shadow: 0 -1px 2px #ccc;
    min-height: 3.4rem;
    z-index: 5;
}
.tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.1rem;
    position: relative;
}
.tab-icon-box {
    width: 2rem;
    height: 2rem;
    margin-top: 0.2rem;
    text-align: center;
    line-height: 2rem;
    font-size: 1.52rem;
    color: #aaa;
}
.tab-icon-box > img {
    max-width: 2rem;
    max-height: 2rem;
}
.tab-title {
    padding: 0.2rem;
    font-size: 0.75rem;
    color: #aaa;
}
.tab-item.selected, .tab-item.selected .tab-title, .tab-item.selected .tab-icon-box {
    color: var(--color);
}
.tab-box.split > .tab-item+.tab-item {
    border-left: 1px solid #eee;
}

.head-row {
    display: flex;
    height: 4rem;
    background-color: #fff;
    align-items: center;
}
.head-row.shadow {
    box-shadow: 0 2px 4px rgba(0,0,0,0.16);
    z-index: 2;
}
.head-row.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.head-row-left, .head-row-right {
    padding: 4px 10px;
    min-width: 4rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.head-row-left {
    font-size: 1.6rem;
}
.head-row-right {
    text-align: right;
}
.head-row-body {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
}

.head-top-margin {
    margin-top: 4rem;
    height: 10px;
}

.more-status-row {
    padding: 1rem 0;
    text-align: center;
    color: #ccc;
}

.page-loading, .mask-bg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-loading:after {
    content: attr(data-txt);
    position: absolute;
    color: #fff;
    font-size: 1.6rem;
    text-shadow: 1px 1px 4px #000;
}
.page-loading2 {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255,255,255,0.7);
}
.page-loading2:after {
    content: "";
    position: absolute;
    color: #fff;
    font-size: 1.6rem;
    background-color: var(--color);
    min-width: 4rem;
    min-height: 4rem;
    line-height: 4rem;
    text-align: center;
    border-radius: 1rem;
    animation: load-animation 5s infinite;
}
.mask-body {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 4;
}
.close-box {
    position: absolute;
    right: 15px;
    width: 20px;
    text-align: center;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

.btn-scroll-top {
    transition: all 0.4s;
    position: fixed;
    bottom: 4.6rem;
    right: 1rem;
    width: 0;
    height: 0;
    line-height: 2.4rem;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    box-shadow: none;
    opacity: 0.88;
    cursor: pointer;
    overflow: hidden;
    z-index: 9;
}
.btn-scroll-top.show {
    width: 2.4rem;
    height: 2.4rem;
    box-shadow: 0 0 6px 2px #666;
}


@keyframes load-animation {
    0% {
        transform: rotate(0deg) scale(1);
        background-color: var(--color);
        border-radius: 50%;
    }
    70% {
        transform: rotate(180deg) scale(0.6);
        background-color: #666;
        border-radius: 6px;
    }
    100% {
        transform: rotate(360deg) scale(1);
        background-color:var(--color);
        border-radius: 50%;
    }
}

/* ===================== wangEditor start ===================== */
.editor-container {
    color: #464646;
    line-height: 2.14rem;
    padding: 1rem;
    margin: 10px 0;
    overflow-x: auto;
}
.editor-content-view {
    /* border: 1px solid #ccc;
    padding: 10px;
    margin-top: 30px;
    overflow-x: auto; */
}
.editor-content-view p,
.editor-content-view li {
    white-space: pre-wrap; /* 保留空格 */
}
.editor-content-view blockquote {
    border-left: 8px solid #d0e5f2;
    padding: 10px 10px;
    margin: 10px 0;
    background-color: #f1f1f1;
}
.editor-content-view code {
    font-family: monospace;
    background-color: #eee;
    padding: 3px;
    border-radius: 3px;
}
.editor-content-view pre>code {
    display: block;
    padding: 10px;
}
.editor-content-view table {
    border-collapse: collapse;
}
.editor-content-view td,
.editor-content-view th {
    border: 1px solid #ccc;
    min-width: 50px;
    height: 20px;
}
.editor-content-view th {
    background-color: #f1f1f1;
}
/* ===================== wangEditor end ===================== */
