body::-webkit-scrollbar {
    width: 6px;
    height: 10px;
    background-color: transparent;
}
body::-webkit-scrollbar-track{
    width: 6px;
    height: 6px;
    background-color: transparent;
}
body::-webkit-scrollbar-thumb {
    width: 6px;
    -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-container {
    width: 100%;
    min-height: 100vh; /* 视口高度 */
    --anim-time: 1.5s;
    --anim-short-time: 0.6s;
}

.footer-container {
    width: 100%;
    height: var(--footer-height);
    background-color: #000000;
    flex-shrink: 0;
}

.footer-container .footer {
    width: 1200px;
    margin: auto;
}

html[lang="en"] .footer{
    width: 1600px;
}

.footer-container .footer .info {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
}

.header-container {
    width: 100%;
    height: var(--header-height);
    padding: 0 83px;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
}

.header-container.sticky {
    position: sticky;
    flex-shrink: 0;
}

.header-container.mini{
    height: var(--header-height-mini);
    padding: 0 42px;
    background-color: #00000088;
}

.header-container.dark {
    background-color: #000000;
}

.header-container .logo {
    height: 60px;
    object-fit: contain;
}
.header-container.mini .logo{
    height: 50px;
}

.header-container .operate{
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    cursor: pointer;
}
.header-container .operate .icon{
    font-size: 22px;
}
.header-container #back{
    display: none;
}
.header-container #back .icon{
    transform: rotate(180deg);
}

.header-container .operate .label{
    margin-left: 10px;
}

.header-container .lang-container {
    width: 140px;
    height: 46px;
    background-color: #878b97;
    box-shadow: 0px 8px 18px 0px rgba(41, 43, 50, 0.12);
    border-radius: 23px;
    padding: 0 26px;
}

.header-container .lang-container .lang {
    width: 100%;
    height: 100%;
    background: none;
    color: #ffffff;
}

.header-container .lang-container .lang:focus {
    outline: none;
}

.contact-container{
    height: 290px;
    background-image: linear-gradient(90deg,
    #23252b 0%,
    #032a5f 100%);
    margin-top: 50px;
}
.contact-container .contact{
    width: 1300px;
    margin: 0 auto;
}
html[lang="en"] .contact-container .contact{
    width: 1480px;
}
.contact-container .contact .title{
    font-size: 42px;
    font-weight: 600;
    line-height: 68px;
    letter-spacing: 1px;
    color: #f6f6f6;
}

.contact-container .contact .email-code{
    font-size: 36px;
    font-weight: 600;
    color: #ec9525;
}
.contact-container .contact .email{
    font-size: 32px;
    color: #e39027;
}


.top-title-container {
    width: 100%;
    height: 576px;
    padding-top: var(--header-height-mini);
    position: relative;
}
.top-title-container .bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.top-title-container .top-title{
    width: 100%;
    height: 100%;
    padding: 0 210px;
}

.top-title-container .top-title.mini{
    width: 1200px;
    margin: 0 auto;
    padding: 0;
}
.top-title-container .top-title .zh{
    font-size: 72px;
    font-weight: 600;
    letter-spacing: 7px;
    color: #ffffff;
}
.top-title-container .top-title .en{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
}
.top-title-container .top-title .tip{
    font-size: 24px;
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 60px;
    margin-top: 52px;
}
.infinite-scroll-error,
.infinite-scroll-last{
    font-size: 20px;
    margin: 20px 0;
}
.page-load-status {
    display: none; /* hidden by default */
    padding-top: 20px;
    height: 100px;
    text-align: center;
    color: #777;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after {
    position: absolute;
    top: 0;
    content: '';
}

.jimu-primary-loading:before {
    left: -19.992px;
}

.jimu-primary-loading:after {
    left: 19.992px;
    -webkit-animation-delay: 0.32s !important;
    animation-delay: 0.32s !important;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after,
.jimu-primary-loading {
    background: #000000;
    -webkit-animation: loading-keys-app-loading 0.8s infinite ease-in-out;
    animation: loading-keys-app-loading 0.8s infinite ease-in-out;
    width: 10px;
    height: 32px;
}

.jimu-primary-loading {
    text-indent: -9999em;
    margin: auto;
    position: relative;
    -webkit-animation-delay: 0.16s !important;
    animation-delay: 0.16s !important;
}

@-webkit-keyframes loading-keys-app-loading {
    0%,
    80%,
    100% {
        opacity: .75;
        box-shadow: 0 0 #000000;
        height: 32px;
    }

    40% {
        opacity: 1;
        box-shadow: 0 -8px #000000;
        height: 40px;
    }
}

@keyframes loading-keys-app-loading {

    0%,
    80%,
    100% {
        opacity: .75;
        box-shadow: 0 0 #000000;
        height: 32px;
    }

    40% {
        opacity: 1;
        box-shadow: 0 -8px #000000;
        height: 40px;
    }
}



.title-classify{
    margin-top: 73px;
    margin-bottom: 30px;
}
.title-classify .icon{
    width: 40px;
    object-fit: contain;
}
.title-classify .zh{
    font-size: 48px;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1;
    color: #23252b;
}
.title-classify .en{
    font-size: 24px;
    color: #ffffff;
}

.toast {
    display: none;
    position: fixed;
    padding: 9px 15px;
    background-color: #333;
    z-index: 8000;
    border-radius: 5px;
    font-size: 16px;
    color: #ffffff;
    line-height: 20px;
    text-align: center;
}

.detail img{
    max-width: 100%;
    object-fit: contain;
    height: auto;
}