html {
    display: flex;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    font-family: "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, Verdana, sans-serif, "WenQuanYi Micro Hei", "\5B8B\4F53";
    font-size: 14px;
    line-height: 1.618;
    color: #75798A;
    background-color: #f6f6f6;
    overflow-y: scroll;
    margin-right:calc(-1 * (100vw - 100%));
}

body * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-callout: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
}

a:not(.ori) {
    color: inherit;
    text-decoration: inherit;

}

a.o:not(.ori) {
    transition: opacity 0.2s;
}

a.o:not(.ori):hover {
    opacity: 0.75;
}
.hr {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
    border-bottom: solid 2px rgba(0,0,0,0.05);
}
.hr.thin{
    margin-top:10px;
    margin-bottom:10px;
}
.form{
    display: block;
    padding: 25px;
}
.formCol{
    margin-bottom:10px;
}
.formCol.disabled{
    opacity: 0.382;
    pointer-events: none;
}
.formCol.disabled .formLabel::after{
    content:attr(data-disabled);
    font-size:12px;
    font-weight: normal;
    color:#9fa4b7;
    
}
.formLabel{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #4f525e;
    padding:15px;
    padding-bottom:7px;
}
.formLabel i{
    display: flex;
    justify-content: center;
    width: 1em;
    margin-right: 0.5em;
    color: #4f525e;
    font-size: 26px;
    position: relative;
}
.formLabel i i{
    position: absolute;
    right: -75%;
    top: -25%;
    text-shadow:0 2px 0 #F9F9F9,0 -2px 0 #F9F9F9,2px 0 #F9F9F9,-2px 0 #F9F9F9;
}
.formInfo{
    padding: 10px 15px;
}
input[type=text],
input[type=tel],
input[type=email],
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=number],
textarea,
select,
input[type=password]::placeholder {
    font-size: inherit;
    font-family: inherit;
    color: #767989;

}
input[type=text]:not(.ori),
input[type=tel]:not(.ori),
input[type=email]:not(.ori),
input[type=date]:not(.ori),
input[type=time]:not(.ori),
input[type=datetime-local]:not(.ori),
input[type=number]:not(.ori),
input[type=file]:not(.ori),
textarea:not(.ori),
select:not(.ori),
input[type=password]:not(.ori) {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    outline: none;
    border-radius: 7px;
    border: none;
    border: solid 1px #dfdfdf;
    font-size: 14px;
    transition: border-color 0.2s;  
}
select:not(.ori){
    appearance: none;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: calc(100% - 15px) center;
    padding-right:45px;
    background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path xmlns="http://www.w3.org/2000/svg" d="M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z" style="fill: rgb(118 121 137);"/></svg>')
}
textarea:not(.ori){
    min-height: 150px;
    padding:15px;
    resize:vertical;
    display: block;
}
input[type=file]:not(.ori){
    height: auto !important;
    padding: 12px 12px !important;
    background-color: #ffffff;
}
input[type=text]:not(.ori):focus,
input[type=tel]:not(.ori):focus,
input[type=email]:not(.ori):focus,
input[type=date]:not(.ori):focus,
input[type=number]:not(.ori):focus,
textarea:not(.ori):focus,
input[type=password]:not(.ori):focus {
    border-color: var(--themeColor);
}
.radio-group,.checkbox-group{
    display: flex;
    flex-direction: column;
    border: solid 1px #dfdfdf;
    border-radius: 7px;
    padding:7px;
    background-color: #FFFFFF;
}
span.formbuilder-required {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.83em;
    padding: 0 0.48em;
    color: #dd3030;
}

.image_zoom_mask{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: 9999;
    background-color: rgba(0,0,0,0.75);
}
.image_zoom_img{
    position: relative;
    max-width: 100%;
    max-height: 100%;
    z-index: 5;
}
.image_zoom_btns{
    position: absolute;
    display: flex;
    right:10px;
    top:10px;
    z-index: 10;
}
.image_zoom_btns > *{
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.25);
    color:#fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin:5px;
    border-radius: 5px;
    transition: all 0.2s;
}
.image_zoom_btns > *:hover{
    background: rgba(255,255,255,0.45);
}
.formbuilder-radio input:not(.ori),.formbuilder-checkbox input:not(.ori){
    display: none;
}
.formbuilder-radio label,.formbuilder-checkbox label{
    display: block;
    padding:15px;
    cursor: pointer;
}
.formbuilder-radio input[type=radio]:checked + label,.formbuilder-checkbox input[type=checkbox]:checked + label{
    background-color: var(--themeColor);
    border-radius: 7px;
    color: #ffffff;
}
.formbuilder-radio input[type=radio] + label::before{
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    display: inline-block;
    margin-right:10px;
    transform: scale(1.382);
}
.formbuilder-radio input[type=radio]:checked + label::before{
    content: '\f058';
    font-weight: 900;
}
.formbuilder-checkbox input[type=checkbox] + label::before{
    content: '\f0c8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    display: inline-block;
    margin-right:10px;
    transform: scale(1.382);
}
.formbuilder-checkbox input[type=checkbox]:checked + label::before{
    content: '\f14a';
    font-weight: 900;
}
.rendered-form .form-group{
    margin-bottom:15px;
}
.withIcon {
    padding-right: 46px !important;
}

.inputBlock,
.captchaBlock {
    position: relative;
}
.flexFull{
    display: flex;
    flex-wrap: nowrap !important;
}
.flexFull>*{
    width: 100%;
    
}
.radioBlock,.checkboxBlock{
    display: flex;
    flex-direction: column;
    border: solid 1px #dfdfdf;
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    padding: 7px
}
.radioBlock input,.checkboxBlock input{
    display: none;
}
.radioLabel,.checkboxLabel{
    display: flex;
    align-items: flex;
    padding:14px;
}
.radioLabel i,.checkboxLabel i{
    font-size: 18px;
    margin-right:0.5em;
}
.radioBlock label,.checkboxBlock label{
    cursor: pointer;
    overflow: hidden;
}
.radioBlock label{
    border-radius: 7px;
}
.checkboxBlock:not(.row) label:first-child{
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.checkboxBlock:not(.row) label:last-child{
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
.radioLabel::before,.checkboxLabel::before{
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}
.radioBlock input:checked + .radioLabel,.checkboxBlock input:checked + .checkboxLabel{
    background-color: var(--themeColor);
    color:#fff;
}
.radioLabel::before,.checkboxLabel::before{
    content:'';
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin-right:10px;
    height: 22px;
    width: 22px;
    background: #fff;
    color:#fff;
    box-shadow: inset 1px 1px 0 2px rgba(0 0 0 / 10%);
    flex-shrink: 0;
}
.radioLabel::before{
    border-radius: 22px;
    box-shadow: inset 1px 1px 0 2px rgba(0 0 0 / 10%),inset 0 0 0 7px #fff;
}
.checkboxLabel::before{
    border-radius: 5px;
}
.radioBlock input:checked + .radioLabel::before{
    background: #606574;
}
.checkboxBlock input:checked + .checkboxLabel::before{
    content:'\f00c';
    color: #606574;
}
.radioBlock.row,.checkboxBlock.row{
    flex-direction: row;
}
.radioBlock.row label,.checkboxBlock.row label{
    width: 100%;
}
.checkboxBlock.row label:first-child{
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}
.checkboxBlock.row label:last-child{
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}
.radioBlock.noInput .radioLabel,.checkboxBlock.noInput .checkboxLabel{
    justify-content: center;
}
.radioBlock.noInput .radioLabel::before,.checkboxBlock.noInput .checkboxLabel::before{
    display:none;
}
select.form-control{
    height: auto !important;
    min-height: 50px;
}
.inputBlock .inputIcon {
    position: absolute;
    width: 46px;
    height: 100%;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3f3f3f;
    opacity: 0.2;
    font-size: 18px;
    transition: all 0.2s;
    pointer-events: none;
    z-index: 1;
}

input.withIcon:focus+.inputIcon,
.inputIcon.active {
    color: var(--themeColor);
    opacity: 1;
}

input[type=checkbox]:not(.ori) {
    display: none;
}

input[type=checkbox]:not(.ori)+.checkbox {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-size: 17px;
    margin-right: 7px;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background-color: #fff;
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 15%);
}

input[type=checkbox]:not(.ori):checked+.checkbox {
    background: var(--themeColor);
}

input[type=checkbox]:not(.ori):checked+.checkbox::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    font-size: 14px;
}

*.cus:not(.ori) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 50px;
    width: 100%;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    cursor: pointer;
    background: #ffffff;
    color: #75798A;
    font-size: 14px;
    transition: all 0.2s;
    outline: none;
}

.btnGp {
    display: flex;
}

.btnGp>* {
    width: 100%;
    border-radius: 0 !important;
}

.btnGp>*:first-child {
    border-top-left-radius: 7px !important;
    border-bottom-left-radius: 7px !important;
}

.btnGp>*:last-child {
    border-top-right-radius: 7px !important;
    border-bottom-right-radius: 7px !important;
}

*.cus.primary{
    background: var(--themeColor);
    color: #ffffff;
}

*.cus.danger{
    background: #db5b5b;
    color: #ffffff;
}

*.cus.health{
    background: #66A64B;
    color: #ffffff;
}

*.cus:not(.ori):hover {
    filter: brightness(0.95);
}

*.cus:not(.ori):active {
    filter: brightness(0.9);
}

.buttonIcon {
    font-size: 18px;
    height: 18px;
    width: 18px;
    line-height: 18px;
    margin-right: 10px;
}

button.cus.loading,button.cus.forbid,a.cus.forbid {
    filter: grayscale(1);
    pointer-events: none;
    opacity: 0.618;
}

button.cus.loading .buttonIcon i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: conic-gradient(rgb(255 255 255 / 0%), rgb(255 255 255));
}

button.cus.loading .buttonIcon i::before {
    content: '';
    display: flex;
    width: 74%;
    height: 74%;
    border-radius: 100%;
    background: var(--themeColor);
}

button.cus.loading .buttonIcon i {
    animation: loadingRotate 1s infinite;
}

.captchaImage {
    position: absolute;
    height: calc(100% - 2px);
    top: 1px;
    right: 1px;
    border-radius: 0 7px 7px 0;
    border-left: solid 1px #dfdfdf;
    width: fit-content;
}

.captchaImage img {
    display: block;
    height: 100%;
    cursor: pointer;
}

.flex {
    display: flex;
}

.withStroke {
    color: #fff !important;
    text-shadow: 1px 1px 0 #75798A, -1px -1px 0 #75798A, 1px -1px 0 #75798A, -1px 1px 0 #75798A, 1px 0px 0 #75798A, -1px -0px 0 #75798A, 0px -1px 0 #75798A, 01px 1px 0 #75798A;
}

.withStroke-n{
    color:#fff !important;
    -webkit-text-stroke: 0.17em #4f525d;
    position: relative;
}
.withStroke-n::after{
    position: absolute;
    content: attr(data-icon);
    -webkit-text-stroke: 0;
}
.coverMask {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.coverMaskWindow {
    position: relative;
    padding: 25px;
    background-color: rgb(255 255 255);
    border: solid 1px #E5E5E5;
    border-radius: 7px;
    max-width: 360px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    transform: scale(0.95);
    margin: 10px;
}

.coverMaskWindow-title {
    margin: -25px;
    margin-bottom: 25px;
    padding: 15px 25px;
    border-bottom: solid 1px #E5E5E5;
    font-weight: 700;
}

.coverMask.show {
    opacity: 1;
    visibility: visible;
}

.coverMask.show .coverMaskWindow {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.mainNav,
.mainNav_pad {
    height: 60px;
    flex-shrink: 0;
}

.mainNav {
    display: flex;
    position: fixed;
    width: 100%;
    background-color: rgba(255 255 255 / 100%);
    box-shadow: 0 0 10px 0 rgba(0 0 0 / 10%);
    z-index: 1000;
}

.mainNav * {
    user-select: none;
}

.mainNav-inline {
    width: 100%;
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.mainNav-mainArea {
    display: flex;
    height: 100%;
    width: 100%;
}

.mainNav-logoArea {
    height: 100%;
}

.mainLogo-link {
    display: block;
    height: 100%;
    padding: 15px 0;
    position: relative;
    color: inherit;
}

.mainLogo-img {
    display: block;
    height: 100%;
}

.mainLogo-regIcon {
    position: absolute;
    font-size: 12px;
    right: -14px;
    top: 15px;
}
.mainNav-navArea{
    width: 100%;
}
.wideNav {
    display: flex;
    height: 100%;
    align-items: center;
    margin: 0 20px 0 40px;
    position: relative;
    left: 0;
    transition: left 0.5s;
}

.wideNav-hr {
    position: relative;
    margin-top: -1px;
    border-top: solid 1px #f2f3f7;
}

.wideNav a {
    color: inherit;
    text-decoration: inherit;
}

.wideNav>.wideNav-item {
    display: flex;
    padding: 10px 0px;
    position: relative;
}

.wideNav>.wideNav-item.leaveMother{
    margin-left:auto;
}

.wideNav-item-subnav {
    position: absolute;
    top: 100%;
    left: 0;
}

.wideNav>.wideNav-item>.wideNav-item-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 20px;
    height: 100%;
    transition: background-color 0.2s, box-shadow 0.2s, color 0.2s;
    margin: 3px;
    border-radius: 20px;
}

.wideNav>.wideNav-item.haveSub.active>.wideNav-item-label {
    background-color: rgb(137 142 162 / 15%);
}

.wideNav>.wideNav-item:hover>.wideNav-item-label {
    color: #898EA2;
}

.wideNav>.wideNav-item.haveSub>.wideNav-item-label::after {
    display: flex;
    align-items: center;
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    opacity: 0.5;
    height: 1em;
}

.wideNav>.wideNav-item.haveSub.active>.wideNav-item-label::after {
    content: '\f0d8';
}

.wideNav>.wideNav-item.haveSub>.wideNav-item-label>.wideNav-item-label-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1em;
    width: 1em;
    margin-right: 10px;
}

.wideNav-item-subnav {
    min-width: 200px;
    background-color: #ffffff;
    box-shadow: 0 1px 6px 0 rgb(0 0 0 / 10%);
    border-radius: 7px;
}

.wideNav-item-subnav .wideNav-item-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    padding: 0 25px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.wideNav-item-label-left {
    display: flex;
    align-items: center;
}

.wideNav-item-subnav .wideNav-item-label .wideNav-item-label-left,
.wideNav-item-subnav .wideNav-item-label .wideNav-item-label-right {
    display: flex;
    align-items: center;
}

.wideNav-item-subnav .wideNav-item-label .wideNav-item-label-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1em;
    width: 1em;
    margin-left: 5px;
    margin-right: 10px;
}

.wideNav-item-label-right .wideNav-item-label-icon {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.wideNav-item-subnav .wideNav-item-label .wideNav-item-label-icon .cc {

    filter: drop-shadow(0 18px #74798b);
    transform: translateY(-18px)
}

.wideNav-item-label-text {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.wideNav-item-label-text * {
    white-space: nowrap;
}

.wideNav-item-label-badge {
    font-size: 12px;
    border-radius: 4px;
    font-style: normal;
    background: #EBEDF3;
    margin: 0;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -1px;
    margin-right: 4px;
    height: 18px;
    color: #74798b;
    white-space: nowrap;
    font-weight: 700;
}

.wideNav-item-subnav .wideNav-item.active:not(.held)>.wideNav-item-label,
.wideNav-item-subnav .wideNav-item:hover>.wideNav-item-label {
    background-color: #F7F8F9;
}

.wideNav-item-subnav .haveSub>.wideNav-item-label .wideNav-item-label-right::after {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 15px;
    opacity: 0.5;
}

.wideNav>.wideNav-item.haveSub>.wideNav-item-subnav {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-11px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.wideNav>.wideNav-item.haveSub.active>.wideNav-item-subnav {
    opacity: 1;
    visibility: visible;
    transform: translateY(-6px);
}

.wideNav-item.disabled {
    color: #aeb4b7;
    cursor: none;
    pointer-events: none;
}

.wideNav-item-subnav .wideNav-item {
    position: relative;
}

.wideNav-item-subnav .wideNav-item:first-child>.wideNav-item-label {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.wideNav-item-subnav .wideNav-item:last-child>.wideNav-item-label {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.wideNav-item-subnav .wideNav-item-subnav {
    position: absolute;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translatex(-15px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.wideNav-item-subnav .wideNav-item.haveSub.active>.wideNav-item-subnav {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.wideNav-eventSearch {}

.mainSearch {
    display: flex;
    margin: 10px;
    height: auto !important;
    padding: 0 !important;
}

.mainSearch form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.mainSearch form * {
    display: block;
}

.mainSearch form input {
    height: 35px;
    padding: 0 15px;
    outline: none;
    border: none;
    background-color: #F7F8F9;
    border-radius: 35px;
    padding-right: 35px;
    transition: background-color 0.2s;
    width: 100%;
    color: inherit;
    font-family: inherit;
}

.mainSearch form input:focus {
    background-color: #edf0f3;
}

.mainSearch form button {
    position: absolute;
    right: 0;
    outline: none;
    background: none;
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 14px;
    color: #74798B;
}

.mainSearch form button:hover {
    color: #8f95ac
}

.mainNav-userArea {
    display: flex;
    height: 100%;
    align-items: center;
}

.mainNav-userArea>* {
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
}

.mainNav-userArea-avatar {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    cursor: pointer;
    transition: filter 0.2s;
    background-color: rgb(137 142 162 / 15%);
    position: relative;
}

.mainNav-userArea-avatar.haveNotice::after {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    right: 0px;
    top: 2px;
    border-radius: 100%;
    background-color: #f44336;
    z-index: 2;
}

.mainNav-userArea-avatar:hover {
    filter: brightness(0.95);
}

.mainNav-userArea-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.2s, filter 0.2s;
    border-radius: 100%;
}

.mainNav-userArea-avatar.active img {
    transform: scale(0.83);
    filter: brightness(0.85);
}

.mainNav-userArea-panel {
    position: absolute;
    border-radius: 7px;
    background-color: #fff;
    box-shadow: 0 1px 6px 0 rgb(0 0 0 / 10%);
    transform: translateY(-10px);
    opacity: 0;
    top: calc(100% - 7px);
    right: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 102;
    pointer-events: none;
    overflow: hidden;
    width: 250px;
}

.mainNav-userArea-avatar.active+.mainNav-userArea-panel {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mainNav-userArea-profilesHead {
    display: flex;
    align-items: center;
    padding: 25px;
    padding-bottom: 20px;
}

.mainNav-userArea-panelAvatar {
    width: 69px;
    height: 69px;
    border-radius: 100%;
    position: relative;
    padding: 2px;
}

.mainNav-userArea-panelAvatar.vip,
.mainNav-userArea-panelAvatar.vip::after {
    background: #e75d53;
}

.mainNav-userArea-panelAvatar.vip::after {
    display: flex;
    justify-content: center;
    align-items: center;
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;

    right: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    color: #fff;
    font-size: 14px;
}

.mainNav-userArea-panelAvatar.vip::before {
    content: attr(data-vip);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 900;
    position: absolute;
    background: #484744;
    border-radius: 7px;
    z-index: 2;
    height: 20px;
    width: 48px;
    bottom: -3px;
    font-size: 12px;
    left: calc(50% - 24px);
    transform: skewX(-5deg) scale(0.85);
    letter-spacing: 1px;
}

.mainNav-userArea-panelAvatar-link {
    display: flex;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
}

.mainNav-userArea-panelAvatar-link::after {
    content: '\f044';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.382);
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: 100%;
}

.mainNav-userArea-panelAvatar-link:hover::after {
    opacity: 1;
}

.mainNav-userArea-profilesHead-left {
    padding-right: 15px
}

.mainNav-userArea-profilesHead-right {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    height: 100%;
    width: calc(100% - 75px);
}

.mainNav-userArea-panelNickname {
    width: 100%;
    height: 14px;
    line-height: 14px;
}

.mainNav-userArea-panelNickname-link {
    display: flex;
    color: #707485;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
}

.mainNav-userArea-panelNickname-link span {
    display: flex;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.mainNav-userArea-panelNickname-link span::after {
    content: '';
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1em;
    background: linear-gradient(270deg, rgba(255 255 255 / 100%), rgba(255 255 255 / 0%));
}

.mainNav-userArea-panelStatus {
    font-size: 12px;
    margin-top: 5px;
}

.mainNav-userArea-myCredit {
    display: flex;
    align-items: center;
}

.mainNav-userArea-myCredit i {
    margin-right: 5px;
    font-size: 16px;
    color: #8bc34a;
}

.mainNav-userArea-myCredit span {
    height: 16px;
    line-height: 16px;
}

.mainNav-userArea-myCredit .creditScore {
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 2px;
    margin-left: 4px;
    transform: translateY(1px);
    color: #8bc34a;
}


.mainUserPanel_notice {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 15px;
    border-radius: 99px;
    background-color: #f4f4f4;
    transition: filter .3s;
    margin-top: 5px;
    font-size: 12px;
}

.mainUserPanel_noticeLink {
    color: #aeb4b7;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20px;
    line-height: 20px;
    white-space: nowrap;
}

.haveNotice+.mainNav-userArea-panel .mainUserPanel_notice {
    background-color: #ff5722
}

.haveNotice+.mainNav-userArea-panel .mainUserPanel_notice .mainUserPanel_noticeLink {
    color: #fff;
}

.mainUserPanel_noticeLink i {
    margin-right: 5px;
}

.mainNav-userArea-rowBtns {
    display: flex;
}

.mainNav-userArea-rowBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.mainNav-userArea-rowBtn::before {
    content: '';
    display: block;
    position: absolute;
    background-image: linear-gradient(180deg, #f7f8f9, #FFFFFF);
    top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.2s;
}

.mainNav-userArea-rowBtn:hover::before {
    opacity: 1;
}

.mainNav-userArea-rowBtn-icon {
    position: relative;
}

.mainNav-userArea-rowBtn-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 20px;
    height: 20px;
    width: 20px;
}

.mainNav-userArea-rowBtn-label {
    position: relative;
    font-size: 14px;
    line-height: 14px;
    height: 14px;
    margin-top: 4px;
}


.mainNav-userArea-fullWidthBtn {
    position: relative;
}

.bagIconHover {
    position: absolute;
    background: #fff;
    border: solid 1px #e2e2e2;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    left: 10px;
    right: 10px;
    bottom: calc(100% + 4px);
    font-weight: 300;
    color: #5b6a8f;
    font-size: 12px;
    transform: translateY(5px);
    opacity: 0;
    transition: all 0.2s;
    pointer-events: none;
}

.mainNav-userArea-fullWidthBtn:hover .bagIconHover {
    opacity: 1;
    transform: translateY(0px);
}

.bagIconHover::before,
.bagIconHover::after {
    content: '';
    display: block;
    width: 0;
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.bagIconHover::after {
    border-bottom: 8px solid transparent;
    border-top: 8px solid #ffffff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    transform: translateX(-50%) translateY(-3px);
}

.bagIconHover::before {
    border-bottom: 9px solid transparent;
    border-top: 9px solid #e2e2e2;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;

}


.mainNav-userArea-fullWidthBtn_bag {
    margin: 0 15px 15px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    border-radius: 5px;
    background: #74798B;
    color: #ffffff;
    transition: all 0.2s;
    text-decoration: none;
}

.mainNav-userArea-fullWidthBtn_bag:hover {
    background: #626676;
}

.mainNav-userArea-fullWidthBtn_bag .aniicon {
    width: 26px;
    height: 26px;
    position: relative;
    margin-right: 15px;
}

.mainNav-userArea-fullWidthBtn_bag .aniicon i.ani-0 {
    position: absolute;
    font-size: 26px;
}

.mainNav-userArea-fullWidthBtn_bag span {
    font-weight: 700;
}



.mainNav-userArea-menu_item {
    display: flex;
    align-items: center;
    padding: 0 25px;
    height: 50px;
    color: #74798b;
    width: 100%;
    justify-content: space-between;
    transition: background-color 0.2s;
}

.mainNav-userArea-menu_item_left {
    display: flex;
}

.mainNav-userArea-menu_item_left i {
    font-size: 18px;
    width: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    margin-right: 10px;
}

.mainNav-userArea-menu_item_right i {
    color: #c8cddf;
}

.mainNav-userArea-menu_item:hover {
    background-color: #f7f8f9;
}

.mainNav-userArea-logout a {
    display: flex;
    align-items: center;
    padding: 0 25px;
    height: 50px;
    color: #74798b;
    width: 100%;
    justify-content: center;
    transition: background-color 0.2s;
}

.mainNav-userArea-logout a i {
    margin-left: 4px;
    font-size: 16px;
}

.manNav-NavBtnArea {
    align-items: center;
    font-size: 24px;
    width: 35px;
    display: none;
}

.manNav-NavBtn i::before {
    content: '\f0c9';
}

.manNav-NavBtn.open i::before {
    content: '\f053';
}

.wideNav-mobileTitleLabel {
    display: none;
}

.commonFull {
    display: flex;
    justify-content: center;
    width: 100%;
    flex: 1;
}

.commonBlock {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
}

.commonBlock.thin {
    width: 100%;
    max-width: 840px;
    user-select: none;
}

.commonTitle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #767989;
    user-select: none;
}

.commonTitle-Word {

    font-weight: 300;
}

.commonTitle-Word-pri {
    font-size: 22px;
    line-height: 22px;
}

.commonTitle-Word-sec {
    font-size: 14px;
    line-height: 14px;
    margin-top: 5px
}

.commonTitle-Icon {
    display: flex;
    align-items: center;
    font-size: 42px;
    margin-right: 10px;
    opacity: 0.418;
}

.CommonTextTitle {
    display: flex;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    align-items: center;
}

/* .CommonTextTitle::before {
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #dfe1ed);
    border-radius: 5px;
} */

.CommonTextTitle-bar {
    content: '';
    flex: 1;
    height: 10px;
    border-radius: 0;
    background: repeating-linear-gradient(
        45deg,
        #dfe1ed 0,
        #dfe1ed 10px,
        transparent 10px,
        transparent 20px
    );
    background-size: 100% 100%; /* 横条背景尺寸 */
}
.commonTextTitle-more-text{
    font-weight: 700;
    font-size: 17px;
    margin-left:10px;
    padding:5px;
    color:#ffffff;
    background-color: #75798A;
    border-radius: 0 10px;
}
.commonTextTitle-more .titleBtns a{
    box-shadow:inset 0 0 0 1px rgba(0, 0, 0, 0.05),0 2px 0px 2px rgb(183 188 211 / 50%);
}
.CommonTextTitle-text {
    padding: 20px;
    white-space: nowrap;
    text-align: left;
}
.CommonTextTitle-text *{
    white-space: nowrap;
}
.CommonTextTitle-icon{
    padding:20px 0 20px 20px;
    margin-right:-5px;
    font-size: 36px;
    color:#b7bcd3;
    text-shadow: 0 4px 0px rgb(183 188 211 / 50%);
}
.CommonTextTitle-icon i{
    position: relative;
}
.CommonTextTitle-icon i::before{
    content:attr(data-icon);
}
.CommonTextTitle-main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    font-size: 28px;
    font-weight: 900;
    margin: 0 auto;
    color: #6a6d81;
    flex-shrink: 0;
}
.CommonTextTitle-main .front{
    display: none;
}
@supports (-webkit-text-stroke:4px #6a6d81){
    .CommonTextTitle-text{
        padding-left:10px;
    }
    .CommonTextTitle-icon{
        color:#6a6d81;
        text-shadow: 0 3px 0 #b7bcd1;
    }
    .CommonTextTitle-main{
        user-select: none;
        pointer-events: none;
    }
    .CommonTextTitle-main .back{
        -webkit-text-stroke: 4px #6a6d81;
        text-shadow:0 4px 0 #6a6d81;
        filter: drop-shadow(0 3px 0 #b7bcd1);
    }
    .CommonTextTitle-main .front{
        display: inline-block;
        position: absolute;
        color:#ffffff;
        text-shadow:-2px 2px 0 rgba(0,0,0,0.15),-2px -2px 0 rgba(0,0,0,0.15);
    }
    .CommonTextTitle-main span strong{
        display: inline-block;
        transform: rotate(-10deg);
    }
    .CommonTextTitle-main span strong:nth-child(2n){
        font-size: 0.85em;
        transform: rotate(10deg);
    }
    .CommonTextTitle-main span strong+strong{
        margin-left:-0.16em;
    }
    .CommonTextTitle-sub{
        background: linear-gradient(to right,#6a6d81,#b7bcd3);
    }
    .CommonTextTitle-sub::before{
        background-color: #6a6d81 !important;
    }
}

.CommonTextTitle-sub {
    width: fit-content;
    color: #ffffff;
    background-color: #b7bcd3;
    padding: 0px 10px;
    margin: 0 auto 0 8px;
    font-size: 8px;
    /* border-right: solid 4px #ffffff;
    border-left: solid 4px #ffffff;
    box-shadow: 8px 0 0 0 #b7bcd3, -8px 0 0 0 #b7bcd3; */
    margin-top: 8px;
    position: relative;
}
.CommonTextTitle-sub::before{
    content:'';
    display: block;
    position: absolute;
    width: 4px;
    height: 100%;
    top:0;
    left:-8px;
    background-color: #b7bcd3;
}
.pcPaddingBottom {
    height: 5px;
    width: 100%;
}

.contentBlock {
    display: flex;
    flex-direction: column;
    margin: 15px;
    margin-top: 0;
    background: #f9f9f9;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 6%);
    flex: 1;
    border-radius: 15px;
    padding: 15px;
    align-content: flex-start;
}
.contentBlock.overflow{
    overflow: hidden;
}
.contentBlock.noflex{
    flex:unset
}
.contentBlock.white{
    background: #fff;
}
.contentBlock-section{
    margin:0 -15px;
    padding:30px 40px;
    border-bottom:solid 1px #ebebeb;
    position: relative;
}
.contentBlock-section.white{
    background: #FDFDFD;
}
.contentBlock-section.white2grey{
    background: linear-gradient(180deg,#FDFDFD,#f9f9f9);
}
.contentBlock-section.grey2white{
    background: linear-gradient(0deg,#FDFDFD,#f9f9f9);
}
.contentBlock .contentBlock-section:first-child{
    margin-top:-15px;
}
.contentBlock .contentBlock-section:last-child{
    margin-bottom:-15px;
}
.contentTitle{
    padding: 10px 0;
    margin-bottom: -10px !important;
    font-size: 18px;
}
.contentTitle .contentTitle-icon{
    opacity: 0.618;
}
.contentTitle span{
    font-weight: 900;
}
.thinBlock {
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
}
.mgt-10{
    margin-top:10px;
}
.mgb-10{
    margin-bottom:10px;
}
ol.mg0{
    margin:0;
}
ol.pdgold {
    padding-inline-start: 1.618em;
}
ol.marker li::marker {
    font-family: 'Font Awesome 6 Free';
    color: var(--themeColor);
    letter-spacing: 2px;
}
.single-title {
    padding: 30px 0;
    font-size: 24px;
    text-align: center;
}
.contentTab {
    display: flex;
    position: relative;
    margin: 15px;
}

.commonTitle+.contentTab {
    margin-top: 0;
}

.contentTab a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    position: relative;
    font-size: 14px;
    color: #75798A;
    font-weight: 700;
    transition: all 0.2s;
    user-select: none;
    border-radius: 10px;
}

.contentTab a+a {
    border-left: none;
    margin-left: 15px;
}

.contentTab a:not(.active):hover {
    background: rgba(0, 0, 0, 0.025)
}

.contentTab a i {
    font-size: 22px;
    margin-right: 5px;
}

.contentTab a.active {
    background: var(--themeColor);
    color: #fff;
    pointer-events: none;
}

.contentTab a.active span::after {
    content: '';
    position: absolute;
    display: flex;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #F6F6F6;
    bottom: 0;
    left: 50%;
    margin-left: -8px;
}

.contentTab.column a {
    display: flex;
    flex-direction: column;
    height: 75px;
}

.contentTab.column a i {
    margin-right: 0;
    height: 22px;
    margin-bottom: 5px;
}

.contentTab.column a span {
    line-height: 14px;
}

.inblockTab {
    display: flex;
    margin:-15px -15px 0 -15px;
    overflow: hidden;
    background: #f5f5f5;
}

.inblockTab>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #767989;
    padding: 20px 0;
    user-select: none;
    border-bottom:solid 1px #f1f1f1;
    box-sizing: border-box;
}

.inblockTab>a span{
    font-size: 12px;
    font-weight: 700;
}

.inblockTab>a i {
    font-size: 20px;
    margin-right: 5px;
}
.inblockTab>a *{
    transition: filter 0.2s;
}
.inblockTab>a:hover *{
    filter: brightness(1.2);
}
.inblockTab>a.active i::before {
    font-weight: 900;
    color: var(--themeColor);
}

.inblockTab>a.active {
    pointer-events: none;
    border-bottom-color: #F9F9F9;
    background:linear-gradient(0deg, #f9f9f9, #fafafa);
    position: relative;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.05);
    border-radius: 10px 10px 0 0;
}
.inblockTab>a.active::before{
    content:'';
    position: absolute;
    width: 10px;
    height: 10px;
    bottom:-1px;left:-10px;
    background: radial-gradient(farthest-corner at 0% 0%, transparent 0%,transparent 10px,#F9F9F9 10px,#F9F9F9 100%);;
}
.inblockTab>a.active::after{
    content:'';
    position: absolute;
    width: 10px;
    height: 10px;
    bottom:-1px;right:-10px;
    background: radial-gradient(farthest-corner at 100% 0%, transparent 0%,transparent 10px,#F9F9F9 10px,#F9F9F9 100%);;
}
.inblockTab>a.disabled {
    pointer-events: none;
    filter: grayscale(1);
    opacity: 0.25;
}

.commonRender {
    display: flex;
    padding: 0px;
    margin: 20px;
    margin-top: -10px;
    position: relative;
    color: #75798A;
    overflow-x: auto;
    overflow-y: hidden;
}

ul.pagination {
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    list-style: none;
    width: fit-content;
    font-family: 'Font Awesome 6 Free';

}

ul.pagination>* {
    display: inline-flex;
    min-width: 20px;

    justify-content: center;
    align-items: center;
    margin: 0 2px;
    border-radius: 5px;
    transition: all 0.2s;
}

ul.pagination>*:not(.disabled):not(.active):hover {
    background: rgb(118 121 137 / 15%);
}

ul.pagination>*>* {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    min-width: 36px;
}

ul.pagination>*.disabled {
    opacity: 0.5;
    pointer-events: none;
}

ul.pagination>*.active {
    background: #767989;
    color: #fff;

}

ul.pagination>*:first-child,
ul.pagination>*:last-child {
    font-size: 0;
    height: 24px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

ul.pagination>*:first-child>*::before,
ul.pagination>*:last-child>*::before {
    font-size: 18px;
}

ul.pagination>*:first-child>*::before {
    content: '\f04a'
}

ul.pagination>*:last-child>*::before {
    content: '\f04e'
}

.textOverflow{
    text-overflow: ellipsis;
    white-space: nowrap; 
    overflow: hidden;
}

.mainFooter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    width: 100%;
    background: #767989;
    color: #fff;
}

.mainFooter-inline {
    width: 100%;
    max-width: 1400px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainFooter-copyRight {
    font-size: 12px;
    font-weight: 300;
    user-select: none;
}

.mainFooter-beian {
    display: flex;
    user-select: none;
}

.mainFooter-beian img {
    display: inline-block;
    margin: 0 4px;
    height: 12px;
}

.mainFooter-beian>* {
    font-size: 12px;
    font-weight: 300;
    line-height: 12px;
    display: flex;
    align-items: center;
}

.mainFooter-mediaIcons {
    display: flex;
    margin-bottom: 10px;
}

.mainFooter-mediaIcon {
    display: flex;

    font-size: 24px;
}

.mainFooter-mediaIcon+.mainFooter-mediaIcon {
    margin-left: 20px;
}

.mainFooter-links {
    font-size: 12px;
    font-weight: 700;
}

.mobileBottomSticky {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    opacity: 1;
    transition: all 0.2s;
}

.mobileBottomSticky.hide {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.mobileBottomSticky,
.mobileBottomStickyPad {
    height: 64px;
}

.mobileBottomStickyPad {
    display: none;
}

.mobileBottomSticky-menu {
    display: flex;
    height: 100%;
}

.mobileBottomSticky-slider {
    width: 100%;
    display: flex;
    padding: 0 7px;
    justify-content: space-around;
    align-items: center;
}

.mobileBottomSticky-slider .mobileBottomSticky-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9fa4b7;
}

.mobileBottomSticky-slider .mobileBottomSticky-link .mobileBottomSticky-icon {
    color: #fff;
    text-shadow: 1px 1px 0 #9fa4b7, -1px -1px 0 #9fa4b7, 1px -1px 0 #9fa4b7, -1px 1px 0 #9fa4b7, 1px 0px 0 #9fa4b7, -1px -0px 0 #9fa4b7, 0px -1px 0 #9fa4b7, 01px 1px 0 #9fa4b7;

}

.mobileBottomSticky-slider .mobileBottomSticky-link.active {
    color: var(--themeColor);
    font-weight: 700;
}

.mobileBottomSticky-slider .mobileBottomSticky-link.active .mobileBottomSticky-icon {
    color: var(--themeColor);
    text-shadow: none;
}

.mobileBottomSticky-icon {
    font-size: 20px;
    line-height: 20px;
    height: 20px;
}

.mobileBottomSticky-text {
    font-size: 14px;
    line-height: 14px;
    height: 14px;
    margin-top: 5px;

}

.mobileBottomSticky-qrBtn {
    position: relative;
    top: -10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 7px;
    height: 64px;
    width: 64px;
    background: var(--themeColor);
    color: #ffffff !important;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px #ffffff, 0 -7px 5px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    user-select: none;
    touch-callout: none;
    -webkit-touch-callout: none;
}

.mobileBottomSticky-qrBtn:active {
    background: #4d68bd;
}

.dotConnect {
    display: inline-flex;
    margin: 0 5px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transform: scale(0.3);
}

.dotConnect::before {
    content: '\f111'
}

.mainContent {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.swal2-popup,
.swal2-html-container {
    font-size: 14px !important;
    line-height: 1.618;

}

.colored-toast.swal2-icon-success {
    background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
    background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
    background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
    background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
    background-color: #87adbd !important;
}

.colored-toast .swal2-title {
    color: white;
}

.colored-toast .swal2-close {
    color: white;
}

.colored-toast .swal2-html-container {
    color: white;
}

.tooltip-element{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--themeColor);
    width: 1.2em;
    height: 1.2em;
    font-weight: 900;
    color: #ffffff;
    border-radius: 50%;
}
.tooltip-element::after{
    transform: scale(0.75);
    transform-origin: left bottom;
    opacity: 0;
    pointer-events: none;
    content: attr(tooltip);
    position: absolute;
    background-color: rgba(0,0,0,0.618);
    font-weight: normal;
    width:max-content;
    padding:10px;
    border-radius: 5px 5px 5px 0;
    left:0.5em;
    bottom:10px;
    transition: all 0.2s;
}
.tooltip-element:hover::after{
    transform: scale(1);
    opacity: 1;
}
.commonNotice{
    display: block;
    padding:20px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgba(0 0 0 / 10%);
    border-left:solid 5px #9fa4b7;
}
.commonNotice > i:first-of-type{
    transform: scale(1.2);
    margin-right:5px;
    color:#9fa4b7;
}
.commonNotice.green{
    border-color:#66A64B;
}
.commonNotice.green > i:first-of-type{
    color:#66A64B;
}
.commonNotice.red{
    border-color:#db5b5b;
}
.commonNotice.red > i:first-of-type{
    color:#db5b5b;
}
.commonNotice.yellow{
    border-color:#cd994a;
}
.commonNotice.yellow > i:first-of-type{
    color:#cd994a;
}
.commonNotice.blue{
    border-color:#667FD5;
}
.commonNotice.blue > i:first-of-type{
    color:#667FD5;
}
.commonBoard {
    padding: 0 10px 20px 10px;
}

.commonColumnBlock {
    border-radius: 10px;
    overflow: hidden;
}

.commonColumn {
    display: flex;
    justify-content: space-between;
    transition: all 0.2;
    padding: 15px 20px;
    user-select: none;
    background-color: #ffffff;
    position: relative;
    height: 78px;
}

.commonColumn-left {
    color: #4f525e;
    display: flex;
    align-items: center;
    padding-right: 10px;
    flex-shrink: 0;
}
.commonColumn-left i {
    display: flex;
    justify-content: center;
    width: 1em;
    margin-right: 0.5em;
    color: #4f525e;
    font-size: 26px;
}

.commonColumn-left span {
    white-space: nowrap;
    font-weight: 700;
}

.commonColumn-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.commonColumn-right-content {
    color: #9ea2ad;
}

.commonColumn+.commonColumn {
    border-top: solid 1px #f6f6f6;
}

.commonColumn .commonColumn-right::after {
    content: '';
    display: flex;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 15px;
    justify-content: flex-end;
    flex-shrink: 0;
}

a.commonColumn .commonColumn-right::after {
    content: '\f054';
    color: #4f525e;
}

a.commonColumn:active {
    background-color: #fafafa;
}

.rowFrame {
    display: flex;
    padding: 0 45px;
}

.rowFrame_inline {
    padding: 0;
    width: 100%;
    padding-bottom: 25px
}

.rowFrame .rowFrame_inline:first-child {
    width: 38.2%;
    flex-shrink: 0;
}

.PageBtWarnings-content,.PageBtWarningsNew-content{
    width: 100%;
    padding:40px;
    font-size: 14px;
    line-height: 1.618;
    color:#75798A;
}
.PageBtWarningsNew-content-thin{
    width: 100%;
    padding:25px 10px;
    font-size: 14px;
    line-height: 1.618;
    color:#75798A;
}
.PageBtWarnings-content a{
    font-weight: 900;
}
.PageBtWarnings-content ol{
    padding-left:20px;
    margin:0;
}
.PageBtWarnings-content ol li{
    display: block;
    position: relative;
}
.PageBtWarnings-content ol li:before{
    content: '\f14a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    position: absolute;
    left: -20px;
    top: -3px;
    font-size: 18px;
    opacity: 0.5;
}
.PageBtWarnings-content ol li+li{
    margin-top:15px;
}
.warnItem{
    display: flex;
}
.warnItem-icon{
    font-size: 26px;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-right:10px;
    color:var(--themeColor);
}
.warnItem-text{
    padding-top:0px;
}
.warnItem-title{
    font-weight: 700;
    font-size: 16px;
    color:var(--themeColor);
}
.warnItem-content ul{
    padding-left:20px;
    margin:14px 0;
    margin-left: -20px;
}
.warnItem-content ul li{
    display: block;
    position: relative;
}
.warnItem-content ul li+li{
    margin-top:5px;
}
.warnItem-content ul li:before{
    content: '\f111';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    position: absolute;
    left: -20px;
    top: -3px;
    font-size: 18px;
    opacity: 0.5;
    transform: scale(0.5);
}
.warnItem-content ul li a{
    font-weight: 900;
}
.layui-this{
    border-radius: 5px;
}
.layui-laydate{
    border-radius: 5px !important;
}
.layui-laydate-header{
    border-radius: 5px 5px 0 0 !important;
}
.commonBlank{
    position: relative;
    background-image: url(/static/images/common/commonBlank.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 61.8% auto;
    width: 100%;
}
.commonBlank::before{
    content:'';
    display: block;
    width: 100%;
    padding-bottom:61.8%
}
.commonIframe_mask{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background-color: rgba(0,0,0,0.5);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
}
.commonIframe_mask.show{
    visibility: visible;
    opacity: 1;
    pointer-events: unset;
}
.commonIframe_iframe_block{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
    border-radius: 7px;
    overflow: hidden;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    max-width: 1120px;
    max-height: 640px;
}
.commonIframe_iframe_title{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 45px;
    align-items: center;
    padding:0 0 0 20px;
    border-bottom:solid 1px #f1f1f1;
    flex-shrink: 0;
}
.commonIframe_iframe_title_text{
    font-weight: 700;
}
.commonIframe_iframe_title_close{
    display: flex;
    align-items: center;
    height: 100%;
    padding:0 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}
.commonIframe_iframe_title_close:hover{
    background-color: #eaeaea;
}
.commonIframe_iframe{
    height: 100%;
    width: 100%;
}
.commonThinTitle{
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(farthest-corner at 50% 0%, #e0e2e9 0%, transparent 70%);
    color: #ffffff;
    height: 0;
    padding-bottom:20%;
    font-size: 64px;
    overflow: hidden;
    text-shadow: 0 5px 10px rgba(0,0,0,0.1);
    margin-top: -15px;
    position: relative;
}
.commonThinTitle-cover{
    position: absolute;
    left:0;
    top:0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top:10px;
    width: 100%;
    height: 61.8%;
}
.need_rolling{
    white-space: nowrap;
}
.need_rolling span{
    display: inline-block;

}
.need_rolling.rolling{
    text-align: left;
}
.need_rolling.rolling span{
    padding-right:1em;
    animation: needRolling 5s infinite linear;
}
.sku-content-name.rolling{
    text-align: left;
}
.need_rolling.rolling::after{
    content:attr(data-name);
    display: inline-block;
    padding-right:1em;
    animation: needRolling 5s infinite linear;
}


.picPreview{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.picPreView_item{
    background-color:#4A4A4A;
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 160px;
    height: 160px;
    margin:15px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.picPreView_del{
    padding:5px;
    cursor: pointer;
    position: absolute;
    right:0;
    top:0;
}
.picPreView_del::before{
    content: "\f2ed";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color:#fff;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.picPreView_d-el:hover::before{
    opacity: 1;
}
.plusfile{
    background-color:#4A4A4A;
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 160px;
    height: 160px;
    display: flex;
    margin:15px;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color:#a4a4a4;
    cursor: pointer;
    transition: color 0.2s;
    border-radius: 4px;
}
.plusfile:hover{
    color:#fff;
}
.plusfile.hide{
    display: none;
}
.uploadIntro{
    text-align: center;
    font-size: 12px;
    font-weight: 300;
}
@keyframes needRolling {
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-100%);
    }
}
@keyframes loadingRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
@media (max-width:1920px) {
    .mainNav-inline, .commonBlock, .mainFooter-inline{
        max-width: 1200px;
    }
}
@media (min-width:861px) {
    .showMobile{
        display: none;
    }

}
@media (max-width:860px) {
    .commonBlank::before{
        padding-bottom:100%;
    }
    .showNotMobile{
        display: none !important;
    }
    .hr{
        margin:15px 0;
    }
    .form{
        padding:15px 0;
    }
    .formLabel{
        padding:10px;
        padding-bottom: 5px;
    }
    .formLabel i{
        font-size: 14px;
    }
    .mainFooter {
        display: none;
    }

    .manNav-NavBtnArea {
        display: flex;
    }

    .mainNav-mainArea {
        flex-direction: row-reverse;
        margin: 0 auto;
        display: block;
        width: auto;
    }

    .mainNav-navArea {
        position: fixed;
        transform: translateZ(0);
        top: 60px;
        transition: left 0.5s;
        bottom: 60px;
        left: -100%;
        width: 61.8vw;
        height: calc(100vh - 60px);
        background-color: #fff;
        box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.05);
    }

    .mainNav-navArea.open {
        left: 0;
    }

    .mainNav-navArea.open::before {
        content: '';
        display: block;
        background-image: url(/static/images/common/navCorner.png);
        background-size: cover;
        position: absolute;
        left: 100%;
        top: 0;
        width: 15px;
        height: 15px;
    }

    .wideNav {
        flex-direction: column;
        margin: 0;
        background-color: #fff;
    }

    .wideNav>.wideNav-item {
        padding: 0;
        width: 61.8vw;
        justify-content: space-between;
    }

    .wideNav>.wideNav-item>.wideNav-item-label {
        padding: 0 25px;
        height: 55px;
        margin: 0;
        width: 61.8vw;
        border-radius: 0;
    }

    .wideNav>.wideNav-item.haveSub>.wideNav-item-label::after {
        content: '\f0da';
        margin-left: auto;
    }

    .wideNav>.wideNav-item.haveSub.active>.wideNav-item-label {
        content: '\f0da';
    }

    .wideNav>.wideNav-item.haveSub>.wideNav-item-subnav,
    .wideNav-item-subnav .wideNav-item-subnav {
        transition: none;
    }

    .wideNav>.wideNav-hr,
    .wideNav-item-subnav>.wideNav-hr,
    .wideNav>.wideNav-item>.wideNav-item-label,
    .wideNav-item-subnav>.wideNav-item>.wideNav-item-label {
        display: none;
    }

    .wideNav,
    .wideNav-item-subnav {
        box-shadow: none !important;
    }

    .wideNav.lastActive,
    .wideNav-item-subnav.lastActive {
        top: 0;
        left: 0;
        height: calc(100vh - 115px);
        overflow-x: hidden;
        overflow-y: auto;
        width: 61.8vw;
        border-radius: 0;
        background-color: transparent;
    }

    .wideNav.lastActive>.wideNav-hr,
    .wideNav-item-subnav.lastActive>.wideNav-hr,
    .wideNav.lastActive>.wideNav-item>.wideNav-item-label,
    .wideNav-item-subnav.lastActive>.wideNav-item>.wideNav-item-label {
        display: flex;
    }

    .wideNav>.wideNav-item.haveSub>.wideNav-item-subnav,
    .wideNav-item-subnav .wideNav-item-subnav {
        transform: none;
    }

    .wideNav>.wideNav-item.haveSub.active>.wideNav-item-subnav,
    .wideNav-item-subnav .wideNav-item.haveSub.active>.wideNav-item-subnav {
        transform: none;
    }

    .wideNav>.wideNav-item.haveSub>.wideNav-item-label>.wideNav-item-label-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        line-height: 1em;
        width: 1em;
        margin-left: 5px;
        margin-right: 10px;
    }

    .wideNav-item:active>.wideNav-item-label {
        background-color: #F7F8F9 !important;
    }

    .wideNav-item-subnav .wideNav-item:first-child>.wideNav-item-label {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .wideNav-item-subnav .wideNav-item:last-child>.wideNav-item-label {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .wideNav-mobileTitleLabel {
        width: 100%;
        height: 55px;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: solid 1px #f2f3f7;
    }

    .mainNav-userArea-panel {
        max-height: calc(100vh - 140px);
        overflow-x: hidden;
        overflow-y: auto;
    }

    .commonTitle {
        padding: 15px
    }

    .commonTitle-Icon {
        font-size: 34px;
    }

    .commonTitle-Word-pri {
        font-size: 20px;
        line-height: 20px;
    }

    .commonTitle-Word-sec {
        font-size: 12px;
        line-height: 12px;
        margin-top: 2px;
    }
    .inblockTab{
        padding: 0 10px;
    }
    .contentTab a i {
        font-size: 16px;
    }

    .contentBlock {
        margin: 0;
        border-left: none;
        border-right: 0;
        border-radius: 0;
    }

    .pcPaddingBottom {
        height: 15px;
    }

    .mobileBottomSticky {
        display: block;
    }

    .mobileBottomStickyPad {
        display: block;
    }

    .commonRender {
        margin: 0;
        margin-top: 10px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    ul.pagination>* {
        display: none;
    }

    ul.pagination>*.active,
    ul.pagination>*:first-child,
    ul.pagination>*:last-child {
        display: inline-flex;
    }

    ul.pagination>*.active {
        color: inherit;
        background: none;
    }

    .commonBoard {
        padding: 0 0 15px 0;
    }

    .commonColumn {
        height: auto;
    }

    .commonColumn-left span {
        font-weight: normal;
    }

    .commonColumn-left i {
        font-size: 16px;
    }

    .commonColumnBlock.mobileRow {
        display: flex;
        flex-wrap: wrap;

    }

    .commonColumnBlock.mobileRow .commonColumn {
        width: 25%;
        display: flex;
        justify-content: center;
    }

    .commonColumnBlock.mobileRow .commonColumn-left {
        flex-direction: column;
        padding-right: 0;
    }

    .commonColumnBlock.mobileRow .commonColumn-left i {
        margin-right: 0;
        font-size: 20px;
    }

    .commonColumnBlock.mobileRow .commonColumn-right {
        display: none;
    }

    .commonColumnBlock.mobileRow .commonColumn+.commonColumn {
        border: none;
    }

    .rowFrame {
        flex-direction: column;
        padding: 0 15px;
    }

    .rowFrame_inline {
        width: 100% !important;
        padding-bottom: 0;
    }

    .contentBlock-section{
        padding:20px;
    }
    .warnItem-content ul {
        margin-left: -45px;
    }
    .PageBtWarnings-content,.PageBtWarningsNew-content{
        padding:5px
    }
    .commonIframe_iframe_block{
        border-radius: 0;
        width: 100%;
        height: 100%;
        max-width: unset;
        max-height: unset;
    }
    .single-title {
        padding: 20px 0;
        font-size: 16px;
        font-weight: 700;
    }
    .commonThinTitle{
        font-size: 10vw;
    }

    .CommonTextTitle-text{
        padding:0px 7px;
    }
    .CommonTextTitle-main{
        font-size: 18px;
        height: 18px;
    }
    .CommonTextTitle-sub{
        margin-top:4px;
    }
    .CommonTextTitle-icon{
        padding:0;
        margin-right:5px;
    }
    @supports (-webkit-text-stroke:4px #6a6d81){
        .CommonTextTitle-icon{
            margin-right:-5px;
        }
    }
    .commonTextTitle-more-text{
        font-size: 12px;
    }
    /* .CommonTextTitle::before{
        display: none;
    } */

}

@media (max-width:340px) {
    .commonColumnBlock.mobileRow .commonColumn-left span {
        font-size: 12px;
    }
    .commonColumn{
        font-size: 12px;
        padding:10px;
    }
}
#smallDeviceNotice{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom:0;
    left:0;
    width: 100%;
    background-color: #db5b5b;
    color:#ffffff;
    font-size: 12px;
    z-index: 99999999;
    display: none;
    padding:20px;
    text-align: center;
}
@media (max-width:319px) {
    #smallDeviceNotice{
        display: flex;
    }
}