html,
body,
dl,
dt,
dd,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img {
    margin: 0;
    padding: 0;
    display: block;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul,
li {
    list-style: none;
}

i,
em {
    font-style: normal;
}

a {
    text-decoration: none;
    color: var(--txt-colorFF);
}

/*a:hover {*/
/*    color: var(--green-color);*/
/*}*/

body {
    -webkit-text-size-adjust: none;
    background-color: #f7f7f7;
    font-family: "HarmonyOS Sans SC Regular ";
}
/*@font-face{*/
/*    font-family:HarmonyOS Sans SC Medium;*/
/*    src:url(fonts/HarmonyOS_Sans_SC_Medium.ttf) format("truetype");*/
/*    font-weight:400;*/
/*    font-style:normal*/
/*}*/
@font-face{
    font-family:HarmonyOS Sans Light;
    src:url(fonts/HarmonyOS_Sans_SC_Light.ttf) format("truetype");
    font-weight:400;
    font-style:normal
}
@font-face{
    font-family:HarmonyOS Sans SC Regular;
    src:url(fonts/HarmonyOS_Sans_SC_Regular.ttf) format("truetype");
    font-weight:400;
    font-style:normal
}

:root {
    --green-color: #C0DF16;
    --base-color: #FE481F;
    --base-help-color: #ffb644;
    --base-lighter-color: #fe6d4c;
    --sub-color: #fffbf9;
    --bg-color: #fff;
    --bg-sub-color: #ddd;
    --txt-color: #333;
    --hover-color: #000;
    --content-width: 73%;
    --content-width1: 1440px;
    --bg-color11: #111111;
    --txt-colorFF: #FFFFFF;
    --hover-colorFF: #fff;
    --main-bg-color: #161616;
}
.relative{
    position: relative;
}

.ns-text-color {
    color: var(--base-color);
}
.ns1-text-color {
    color: #232323;
}

.ns-border-color {
    border-color: var(--base-color) !important;
}

.ns-bg-color {
    background-color: var(--base-color) !important;
}

.cursor {
    cursor: pointer;
}
.flex {
     display: flex;
}
.jc-center {
    justify-content: center;
}
.jc-between {
    justify-content: space-between;
}
.align-center {
    align-items: center;
}

.flex-1 {
    flex: 1;
}

.text-c {
    text-align: center;
}

.mb-10 {
    margin-bottom: 10px;
}

.clear::after {
    content: '';
    display: block;
    clear: both;
}

.btn-primary {
    color: #fff;
    background-color: var(--green-color);
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
}

.btn-primary:hover,
.btn-default:hover {
    color: #fff !important;
    background-color: var(--base-lighter-color);
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
}


.btn-default {
    color: #121212;
    background-color: #ddd;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
}

.el-button:focus,
.el-button:hover {
    color: var(--green-color);
    border-color: var(--green-color);
    background: var(--sub-color);
}

.el-button--primary {
    color: #fff !important;
    border-color: var(--green-color) !important;
    background-color: var(--green-color) !important;
}

.el-button--primary.is-plain {
    color: var(--green-color) !important;
    border-color: var(--green-color) !important;
    background-color: var(--sub-color) !important;
}

.el-button--primary:focus{
    color: #fff !important;
    /* border-color: var(--base-lighter-color) !important;
    background-color: var(--base-lighter-color) !important; */
    border-color: #4E5969 !important;
    background-color: #4E5969 !important;
}

.el-button--primary:hover {
    color: #fff !important;
    /* border-color: var(--base-lighter-color) !important;
    background-color: var(--base-lighter-color) !important; */
    border-color: #FDDD44 !important;
    background-color: #FDDD44 !important;
}

.el-step__head.is-finish {
    color: var(--green-color) !important;
    border-color: var(--green-color) !important;
}

.el-step__title.is-finish,
.el-checkbox__input.is-checked + .el-checkbox__label {
    color: var(--green-color) !important;
}

.el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner {
    background-color: var(--green-color);
    border-color: var(--green-color);
}

.el-checkbox__input.is-focus .el-checkbox__inner,
.el-checkbox__inner:hover {
    border-color: var(--green-color);
}

.el-dropdown-menu {
    min-width: 120px;
    padding: 0 !important;
    position: absolute !important;
    top: 20px !important;
    left: -45px !important;
}

.el-dropdown-menu__item {
    list-style: none;
    line-height: 36px;
    padding: 0 20px;
    margin: 0;
    font-size: 14px;
    color: #606266;
    cursor: pointer;
    outline: none;
}

.el-dropdown-menu__item:not(.is-disabled):hover,
.el-dropdown-menu__item:focus {
    background-color: #ffede9 !important;
    color: var(--base-lighter-color) !important;
}

.el-dropdown-menu__item:not(.is-disabled):hover a {
    color: var(--base-lighter-color) !important;
}

.el-dropdown-menu__item {
    padding: 0 !important;
}

.el-submenu__title:hover,
.el-menu-item:focus,
.el-menu-item:hover {
    background-color: var(--sub-color);
}

.el-menu-item.is-active::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background-color: var(--base-color);
}

.el-aside::-webkit-scrollbar {
    width: 0;
}

.el-tabs__active-bar,
.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: var(--base-color);
}
.loginPopBox .el-tabs__active-bar,
.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #fff;
}
.loginPopBox .el-tabs--top {
    font-size: 20px;
}

.el-pagination.is-background .el-pager li:not(.disabled):hover {
    color: #000;
}

.el-tabs__item:hover,
.el-radio__input.is-checked + .el-radio__label,
.el-tabs__item.is-active,
.el-select-dropdown__item.selected,
.el-loading-spinner .el-loading-text,
.el-loading-spinner i,
.el-dialog__headerbtn:focus .el-dialog__close,
.el-dialog__headerbtn:hover .el-dialog__close,
.el-breadcrumb__inner a:hover,
.el-breadcrumb__inner.is-link:hover {
    color: var(--base-color);
}
.el-tabs__item:hover,.el-tabs__item.is-active {
     color: #000000 !important;
}
.el-tabs__item {
    color: #666666 !important;
}

.el-textarea__inner:focus,
.el-input.is-active .el-input__inner,
.el-input__inner:focus,
.el-radio__inner:hover,
.el-range-editor.is-active,
.el-range-editor.is-active:hover,
.el-select .el-input.is-focus .el-input__inner,
.el-select .el-input__inner:focus {
    border-color: var(--base-color);
}

.el-radio__input.is-checked .el-radio__inner {
    border-color: var(--base-color);
    background: var(--base-color);
}
.el-carousel__indicator--horizontal {
    padding: 10px 4px;
    margin-bottom: 20px;
}
.el-carousel__button {
    width: 26px;
}

[v-cloak] {
    display: none;
}

/* 头部 */
.placeBox {
    width: 100%;
    display: none;
    /*height: 52px;*/
}

.headerBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 52px;
    z-index: 9;
    /*box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);*/
    /*box-sizing: border-box;*/
    /*backdrop-filter: blur(10px);*/
    /*background-color: rgba(0, 0, 0, 0.65);*/
}
.headerBox::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.bgHeader {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.65);
}

.headerBox .header-width {
    max-width: var(--content-width);
    height: 52px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerBox .header-width .logo {
    margin-right: 40px;
    width: 93px;
    z-index: 99;
}

.headerBox .header-width .logo img {
    max-width: 100%;
    max-height: 52px;
}

/*login*/
.headerBox .header-width .login-txt {
    display: inline-block;
    font-size: 14px;
    margin-right: 20px;
    color: var(--txt-colorFF);
    cursor: pointer;
}

.headerBox .header-width .login-txt:hover {
    color: var(--green-color)
}

.headerBox .header-width .login {
    padding-left: 10px;
    font-size: 18px;
    white-space: nowrap;
}

.headerBox .header-width .btn-login {
    display: block;
    width: 100px;
    height: 36px;
    line-height: 36px;
    color: var(--txt-colorFF);
    font-size: 16px;
    text-align: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.headerBox .header-width .avatar {
    display: inline-block;
    border: #f2f2f2 solid 1px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ddd;
}

.headerBox .header-width .avatar img {
    width: 100%;
}

.headerBox .header-width .logout {
    display: inline-block;
    font-size: 14px;
    margin-right: 20px;
    color: var(--txt-colorFF);
    cursor: pointer;
}

.headerBox .header-width .logout:hover {
    color: var(--green-color)
}

.headerBox .header-width .search {
    position: relative;
    display: flex;
    align-items: center;
}

.headerBox .header-width .search img{
    width: 20px;
    height: 20px;
}

.headerBox .header-width .search img:not(:last-child){
    margin-right: 20px;
}

.headerBox .header-width .search .language {
    width: 150px;
    height: 96px;
    color: #fff;
    display: block;
    position: absolute;
    right: 0;
    bottom: -114px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
}
.el-dropdown-menu {
    border-radius:5px;
    border: none;
    top: 31px !important;
    min-width:150px;
    background-color:rgba(35, 35, 35, 0.75) ;
    backdrop-filter: blur(5px);
}
.el-dropdown-menu__item {
    color: #fff;
    line-height: 48px;
    font-size: 15px;
}
.popper__arrow::after {
    border-bottom-color: #C0DF16 !important;
    border-top-color: #C0DF16 !important;
}
.el-dropdown-menu__item:not(.is-disabled):hover {
    background: #C0DF16 !important;
    color: #232323 !important;
}
.chooseMenu {
    background: #C0DF16 !important;
    color: #232323 !important;
}
.el-dropdown-menu__item:not(.is-disabled):hover a{
    color: #232323 !important;
}
/* 消除小三角 */
.el-popper[x-placement^=bottom] .popper__arrow{
    border: none;
}
.el-popper[x-placement^=bottom] .popper__arrow::after{
    border: none;
}
.el-carousel__mask {
    opacity:0 !important;
}
.loginPopBox .agree .radio.active::after {
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerBox .header-width .search .language .choseBox{
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    height: 48px;
    line-height: 48px;
}
.headerBox .header-width .search .language .choseBox-ac{
    font-size: 16px;
    text-align: center;
    background: #C0DF16;
    color: #232323;
    height: 48px;
    line-height: 48px;
}
.headerBox .header-width .search a{
    /*margin-right: 20px;*/
}


.headerBox .header-width .search .el-dropdown {
    color: var(--txt-colorFF);
    /*margin-right: 20px;*/
}

.headerBox .header-width .search .el-dropdown:hover {
    color: var(--green-color);
}

.dropZoom .downItem {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

/*header nav*/
.headerBox .header-width nav {
    flex: 1;
    font-size: 14px;
    overflow: hidden;
}

.headerBox .header-width nav > ul {
    display: flex;
    align-items: center;
}

.headerBox .header-width nav > ul .li-nav {
    position: relative;
    display: flex;
    align-items: center;
    height: 52px;
    padding: 0 40px;
    white-space: nowrap;
    box-sizing: border-box;
}

.headerBox .header-width nav > ul .li-nav:hover .tit {
    color: rgba(255, 255, 255, 0.65);
}

.headerBox .header-width nav > ul .li-nav .nav {
    font-size: 0;
    cursor: pointer;
}
.cursor {
    cursor: pointer;
}

.headerBox .header-width nav > ul .li-nav .icon {
    display: inline-block;
    max-height: 32px;
    margin-right: 10px;
    vertical-align: middle;
}

.headerBox .header-width nav > ul .li-nav .sub {
    max-width: 36px;
    margin-left: 10px;
}

.headerBox .header-width nav > ul .li-nav .tit {
    color: var(--txt-colorFF);
    vertical-align: middle;
    font-family: "HarmonyOS Sans SC Regular ";
    font-size: 16px;
}


.headerBox .header-width .secondeItem {
    position: fixed;
    top: 52px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.65);
    box-sizing: border-box;
    border-top: #f2f2f2 solid 1px;
    box-shadow: 0 8px 16px rgb(0 0 0 / 18%);
}
.topTav {
    position: fixed;
    top: 52px;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    text-align: left;
    /*background-image: linear-gradient(to right top, rgba(255,255,255,0.3), rgba(255,255,255,0.7));*/
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.75);
    box-sizing: border-box;
    box-shadow: 0 8px 16px rgb(0 0 0 / 18%);
}

.topTav .menu {
    margin-bottom: 20px;
}

.topTav .titleBox {
    width: var(--content-width);
    display: flex;
    margin: 37px 0 28px 0;
    justify-content: space-between;
    align-items: center;
}

.topTav .titleBox .all {
    padding: 10px 20px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    border: 1px solid #ffffff80;
    font-family: "HarmonyOS Sans SC Regular";
}

.topTav .titleBox .title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    font-family: "HarmonyOS Sans SC Medium";
}

.topTav .grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    justify-content: center;
    justify-items: center;
    width: var(--content-width);
    margin: 0 auto;
    /* 网格项之间的间距 */
}
.topTav .grid-container .menu:hover .goodsName {
    color: #fff;
}

.topTav .grid-container .goodsName {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 16px;
    margin-bottom: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "HarmonyOS Sans SC Regular";
}

.topTav .grid-container .goodsImg {
    /*width: 220px;*/
    /*height: 145px;*/
    overflow: hidden;
    margin: 0 auto 2px;
}

.topTav .grid-container .goodsImg img {
    width: 100%;
}

.headerBox .header-width .secondeItem ul.menu {
    padding: 0 80px;
    list-style: none;
    white-space: nowrap;
}

.headerBox .header-width .secondeItem ul.menu li {
    position: relative;
    display: inline-block;
    width: 236px;
    height: 600px;
    padding: 10px 8px;
    text-align: center;
    box-sizing: border-box;
}

.headerBox .header-width .secondeItem ul.menu li:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}

.headerBox .header-width .secondeItem ul.menu li:hover .goodsName {
    color: var(--green-color);
}

.headerBox .header-width .secondeItem ul.menu li:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 94px;
}

.headerBox .header-width .secondeItem ul.menu li .goodsImg {
    width: 220px;
    height: 145px;
    overflow: hidden;
    margin: 0 auto 2px;
}

.headerBox .header-width .secondeItem ul.menu li .goodsImg img {
    width: 100%;
}

.headerBox .header-width .secondeItem ul.menu li .goodsName {
    color: #fff;
    font-size: 16px;
    margin-bottom: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.headerBox .header-width .secondeItem ul.menu li .goodsPrice {
    height: 25px;
    color: #000;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 弹窗 登录 */

.loginPopBox {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "HarmonyOS Sans SC Regular";

}
.loginPopBox .el-tabs__nav-wrap::after {
    background-color:#ffffff;
}
.loginPopBox .el-tabs__item {
    color: #000000;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 18px;
    height: 20px;
    font-family: "HarmonyOS Sans SC Regular";
}
.loginPopBox .el-tabs__header {
    margin: 0;
}
.el-tabs__nav.is-stretch {
    border-bottom: rgba(0, 0, 0, 0.05) solid 1px;
}
.loginPopBox .mask .imgTips {
    height: 410px;
    width: auto;
}
.loginPopBox .mask .info {
    width: 398px;
    padding:10px 10px 0 10px;
}
.loginPopBox .mask .info .delBtn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 20px;
}
.loginPopBox .mask .info .contentLogin {
    padding: 0 30px;
    margin-top: 28px;
}
.loginPopBox .mask {
    position: relative;
    display: flex;
    /*width: 418px;*/
    /*height: 410px;*/
    /*margin: 250px auto 44px;*/
    background: #FFF;
    border-radius: 10px;
    /*padding:60px 40px 44px 40px;*/
    color: #888888;
    font-size: 14px;
    line-height: 14px;
    word-break: break-all;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    box-sizing: border-box;
}

.loginPopBox .loginType {
    position: absolute;
    right: 5px;
    top: 5px;
}

.loginPopBox .loginType img {
    width: 66px;
    height: 66px;
}

.loginPopBox .title-box {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}

.loginPopBox .title-box .title {
    font-size: 20px;
    font-weight: 600;
    color: #121212;
    line-height: 28px;
}

.loginPopBox .title-box .logo {
    text-align: center;
    margin: 20px auto;
}

.loginPopBox .title-box .logo img {
    width: 160px;
}

.loginPopBox .title-box .title:first-letter {
    color: var(--green-color);
}
.loginPopBox .blockBox {
    margin-top: 30px;
}

.loginPopBox .block-item {
    /*width: 340px;*/
    height: 40px;
    background: rgba(153, 153, 153, 0.1);
    color: #999999;
    border-radius: 4px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.loginPopBox .block-item:not(:last-child) {
    margin-bottom: 15px;
}

.loginPopBox .block-item .login-icon {
    width: 60px;
    text-align: center;
}

.loginPopBox .block-item .login-icon img {
    width: 26px;
    height: 26px;
}

.loginPopBox .block-item input {
    width: 100%;
    height: 40px;
    border: none;
    background: transparent;
    /*padding-right: 1em;*/
    outline: none;
    box-sizing: border-box;
}

.loginPopBox .block-item .getcode {
    font-size: 14px;
    font-weight: 400;
    color: #232323;
    height: 33px;
    line-height: 33px;
    text-align: right;
    position: absolute;
    right: 20px;
    /*top: 10px;*/
    border: none;
    cursor: pointer;
    /*background-color: rgba(153, 153, 153, 0.1);*/
    padding: 0;
}

.loginPopBox .block-item .getcode.disabled {
    color: #999999 !important;
    cursor: no-drop;
}

.loginPopBox .block-item .captcha {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #909399;
    border-radius: 4px;
    padding: 0 20px;
    width: 136px;
    white-space: nowrap;
    box-sizing: border-box;
    cursor: pointer;
}

.loginPopBox .block-item .captcha img {
    width: 100%;
}

.loginPopBox .block-item .code {
    width: 360px;
    height: 48px;
    background: #f7f7f7;
    border-radius: 4px;
    margin-bottom: 10px;
    position: relative;
}

.loginPopBox .submit-item {
    margin-top: 36px;
}

.loginPopBox .tips-text {
    font-size: 12px;
    font-family: "HarmonyOS Sans SC Regular ";
    font-weight: 400;
    color:#999999;
    line-height: 12px;
    text-align: center;
    margin-top: 10px;
}

.loginPopBox .btn-submit {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 36px;
    color: #000000;
    background: #C0DF16;
    border-radius: 5px;
    border: none;
    padding: 0 27px;
    font-size: 14px;
    font-family: "HarmonyOS Sans SC Regular ";
}

.loginPopBox .btn-submit.disabled {
    opacity: .3;
    cursor: no-drop;
}

.loginPopBox .agree {
    /*height: 22px;*/
    margin-top: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginPopBox .agree .radio {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #ddd;
    /*border-radius: 100%;*/
    margin-right: 5px;
    cursor: pointer;
}

.loginPopBox .agree .radio.active {
    color: #fff;
    text-align: center;
    background-color: var(--green-color) !important;
}

.loginPopBox .agree .radio.active::after {
    content: '\2714';
    font-size: 14px;
    line-height: 18px;
}

.loginPopBox .wxTitle {
    color: #1e1e1e;
    font-family: "HarmonyOS Sans SC Regular ";
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    padding-top: 40px;
    margin-bottom: 10px
}

.loginPopBox .wxCode {
    position: relative;
    width: 134px;
    height: 134px;
    border: #c2c2c2 dashed 1px;
    box-sizing: border-box;
    margin: 23px auto 33px;
}

.loginPopBox .wxCode img {
    display: block;
    width: 100%;
    height: 100%;
}

.loginPopBox .wxCode .expired {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
}

.loginPopBox .wxCode .expired .content {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    color: #232323;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}

.loginPopBox .wxCode .expired .refresh {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
}

.loginPopBox .successWx {
    color: #09BB07;
    font-size: 32px;
    padding-top: 10px;
    margin-bottom: 20px;
}

.loginPopBox .successWxTips {
    text-align: center;
    font-size: 16px;
    color: red;
    margin-bottom: 20px;
}

.loginPopBox .wxTips {
    color: #232323;
    text-align: center;
    font-family: "HarmonyOS Sans SC Regular ";
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}
.loginPopBox .smallTips {
    color: #999999;
    text-align: center;
    font-family: "HarmonyOS Sans SC Regular ";
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 9px;
    margin-bottom: 18px;
}

/* 底部 */
.footerBox {
    width: 100%;
    z-index: 9;
    display: none;
    /*display: flex;*/
    position:relative;
    background-color: var(--bg-color11);
}

.footerBox .footer-width {
    max-width: var(--content-width);
    margin: 0 auto;
}

.footerBox .footer-width .head-item {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 30px;
    border-bottom: #62616B solid 1px;
}

.footerBox .footer-width .head-item .logo {
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    font-size: 30px;
    font-weight: bold;
    color: var(--txt-colorFF);
    margin-right: 10px;
}

.footerBox .footer-width .head-item .icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 28px;
}

.footerBox .footer-width .head-item a.icon:last-child {
    margin-right: 0;
}

.footerBox .footer-width .head-item .icon img {
    width: 100%;
}

.footerBox .footer-width .content-item {
    display: flex;
    justify-content: space-between;
    padding: 47px 0 91px 0;
}

.footerBox .footer-width .content-item .item-lf {
    overflow: hidden;
}

.footerBox .footer-width .content-item .item-lf .item {
    float: left;
    margin-right: 30px;
}

.footerBox .footer-width .content-item .item-lf .item:last-child {
    margin-right: 0;
}

.footerBox .footer-width .content-item .item-lf .intro {
    width: 800px;
    font-size: 14px;
    font-weight: 400;
    color: #62616b;
    line-height: 24px;
}

.footerBox .footer-width .content-item .item-lf .list {
    /*width: 800px;*/
    /*margin-top: 24px;*/
    overflow: hidden;
}

.footerBox .footer-width .content-item .item-lf .list dl {
    float: left;
}
.footerBox .footer-width .content-item .item-lf .list dl:not(:last-child) {
    margin-right: 163px;
}

.footerBox .footer-width .content-item .item-lf .list dt {
    font-size: 14px;
    font-family: "HarmonyOS Sans SC Regular";
    font-weight: 400;
    color: var(--txt-colorFF);
    margin-bottom: 16px;
}

.footerBox .footer-width .content-item .item-lf .list dd {
    font-size: 14px;
    font-weight: 400;
    font-family: "HarmonyOS Sans SC Regular";
    color: #62616b;
    margin-bottom: 16px;
}

.footerBox .footer-width .content-item .item-lf .list dd a {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}

.footerBox .footer-width .content-item .item-lf .list dd:hover a {
    color: var(--txt-colorFF);
}

.footerBox .footer-width .content-item .item-rt {
    /*overflow: hidden;*/
}

.footerBox .footer-width .content-item .item-rt .item {
    float: left;
}

.footerBox .footer-width .content-item .item-rt .item:not(:last-child) {
    margin-right: 20px;
}

.footerBox .footer-width .content-item .item-rt .item .qrBox {
    /*width: 148px;*/
    /*height: 158px;*/
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
}

.footerBox .footer-width .content-item .item-rt .item .qrBox::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}


.footerBox .footer-width .content-item .item-rt .item .code {
    width: 146px;
    height: 146px;
    /*margin: 6px;*/
}

.footerBox .footer-width .content-item .item-rt .item .tit {
    color: #FFFFFF;
    font-family: "HarmonyOS Sans SC Regular ";
    font-size: 12px;
    text-align: left;
    margin-bottom: 10px;
}

.footerBox .footer-width .content-item .item-rt .item .icon {
    display: flex;
}

.footerBox .footer-width .content-item .item-rt .item .icon .img-item {
    position: relative;
    cursor: pointer;
}
.footerBox .footer-width .content-item .item-rt .item .icon .codeItem {
    position: absolute;
    top: -195px;
    left: -60px;
}

.footerBox .footer-width .content-item .item-rt .item .icon .cover-image {
    width: 24px;
    height: 24px;
    padding: 10px;
}

.footerBox .footer-width .content-item .item-rt .item .icon img:hover {
    border-radius: 24px;
    background-color: rgba(217, 217, 217, 0.1);
}

.footerBox::before {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    /*background: linear-gradient(95deg, #d80b60 2%, #c9a1f1 25%, #862cdf 58%, #04caec 96%);*/
}

.footerBox .record {
    height: 43px;
    line-height: 43px;
    font-size: 12px;
    background-color: var(--bg-color11);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    /*padding: 10px 0;*/
    padding-bottom: 19px;
    border-top: 1px solid #ffffff1a;
}

.footerBox .record > a {
    color: #808188;
}

.footerBox .record > a:not(:last-child) {
    margin-right: 18px;
}

.footerBox .record > a:hover {
    color: var(--hover-colorFF);
}

.footerBox .record .icon-gov {
    width: 15px;
    vertical-align: middle;
}

.footerBox .right-nav {
    /* display: none; */
    position: fixed;
    right: 2%;
    top: 50%;
    z-index: 9;
}
.footerBox .right-nav .icon {
    width: 24px;
    height: 24px;
    padding: 8px;
    cursor: pointer;
    position: relative;
    background: #ffffff4d;
    border-radius: 4096px;
}
.footerBox .right-nav .icon .codeItem {
    position: absolute;
    top: -65px;
    left: -156px;
    display: block;
}
.footerBox .right-nav .icon .codeItem .qrBox {
    padding: 20px;
    border-radius: 10px;
    background-color: #FFFFFF;
}
.footerBox .right-nav .icon .codeItem .qrBox::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 100%;
    transform: translateX(-0%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
}
.footerBox .right-nav .icon .codeItem .qrBox img {
    width: 146px;
    height: 146px;
    margin-bottom: 12px;
}
.footerBox .right-nav .icon .codeItem .qrBox .tipText {
    color: #000000cc;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 15.84px;
}
.footerBox .right-nav .icon:not(:last-child) {
     margin-bottom: 21px;
 }
.footerBox .right-nav .icon:hover {
    background-color: #C0DF16;
}
.footerBox .right-nav .icon .blackImg {
    display: none;
}
.footerBox .right-nav .icon:hover .blackImg {
    display: block;
}

.footerBox .right-nav .icon .whiteImg {
    display: block;
}
.footerBox .right-nav .icon:hover .whiteImg {
    display: none;
}

.footerBox .right-nav .icon img {
    width: 100%;
    height: 100%;
}

.footerBox .right-nav .icon1 {
    width: 24px;
    height: 24px;
    padding: 8px;
    cursor: pointer;
    position: relative;
    background: #ffffff4d;
    border-radius: 4096px;
}
.footerBox .right-nav .icon1 .codeItem {
    position: absolute;
    top: -65px;
    left: -156px;
    display: none;
}
.footerBox .right-nav .icon1 .codeItem .qrBox {
    padding: 20px;
    border-radius: 10px;
    background-color: #FFFFFF;
}
.footerBox .right-nav .icon1 .codeItem .qrBox::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 100%;
    transform: translateX(-0%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
}
.footerBox .right-nav .icon1 .codeItem .qrBox img {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
}
.footerBox .right-nav .icon1 .codeItem .qrBox .tipText {
    color: #000000cc;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 15.84px;
}
.footerBox .right-nav .icon1:not(:last-child) {
    margin-bottom: 21px;
}
.footerBox .right-nav .icon1:hover {
    background-color: #C0DF16;
}
.footerBox .right-nav .icon1 .blackImg {
    display: none;
}
.footerBox .right-nav .icon1:hover .blackImg {
    display: block;
}
.footerBox .right-nav .icon1:hover .codeItem {
    display: block;
}

.footerBox .right-nav .icon1 .whiteImg {
    display: block;
}
.footerBox .right-nav .icon1:hover .whiteImg {
    display: none;
}

.footerBox .right-nav .icon1 img {
    width: 100%;
    height: 100%;
}

.popoverCodeImg {
    width: 100%;
}

/* 协议弹窗  */
.agreementBox {
    font-size: 16px;
}

.agreementBox .content {
    max-height: 300px;
    overflow-y: auto;
}

.agreementBox .btn {
    margin: 0 auto;
    height: 54px;
    width: 168px;
    font-size: 20px;
    line-height: 54px;
    margin-top: 20px;
    text-align: center;
    background: var(--green-color);
    color: #fff;
    cursor: pointer
}
.mainBox {
    width: var(--content-width);
    margin: 0 auto;
    background-color: #fff;
}
.mainBox.cover {
    width: 100%;
}


/*.scroller-contaienr::before {*/
/*    content: "";*/
/*    z-index: 100;*/
/*    position: absolute;*/
/*    top: 32px;*/
/*    width: 2px;*/
/*    height: 16px;*/
/*    background-color: #C0DF16;*/
/*    border-top-right-radius: 2px;*/
/*    border-bottom-right-radius: 2px;*/
/*}*/

.scroller-contaienr .swiper-slide {
    opacity: .3;
    line-height: 19px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
}

.scroller-contaienr .swiper-slide-active {
    font-weight: 600;
    opacity: 1;
}

.scroller-contaienr .swiper-slide-prev, .scroller-contaienr .swiper-slide-next {
    opacity: .7;
}
.medium img {
    width: 100%;
    object-fit: cover;
}
.medium .carouseImg{
    position: relative;
}
.medium .carouseContent {
    position: absolute;
    top: 30%;
    left: 110px;
}
.el-carousel__item.el-carousel__item--card.is-in-stage .medium.rightCls {
    transform: translateX(65%) scale(1) !important;
}
.el-carousel__item.el-carousel__item--card.is-in-stage .medium.leftCls {
    transform: translateX(-65%) scale(1) !important;
}

.container {
    width: var(--content-width);
    margin: 0 auto;
    padding-top: 52px;
}

.memberBox {
    padding: 20px;
    background-color: #fff;
    margin-left: 20px;
    box-sizing: border-box;
}

.pagination {
    text-align: center;
    padding: 40px 0 20px;
}

.breadcrumb-box {
    display: flex;
    align-items: center;
    height: 100%;
}

.breadcrumb-box .breadcrumb .breadcrumb-inner {
    display: inline-block;
    color: #606266;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-box .breadcrumb .breadcrumb-inner:not(:last-child) {
    font-weight: 600;
    cursor: pointer;
}

.breadcrumb-box .breadcrumb .breadcrumb-inner:not(:last-child):hover {
    color: var(--green-color);
}

.breadcrumb-box .breadcrumb .breadcrumb-inner:not(:last-child)::after {
    content: '/';
    display: inline-block;
    color: #999;
    font-weight: 400;
    margin-left: 5px;
}

.empty-box {
    padding: 20px 0;
}

.empty-box .empty-img {
    display: block;
    max-width: 200px;
    width: 100%;
    margin: 0 auto 20px;
}

.count-down {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.count-down .icon-time {
    display: inline-block;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: text-bottom;
}

.count-down .txt-time {
    color: #fe6d4c;
}