* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    font-size: 39px;
    overflow-x: hidden;
    height: 100%;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

@font-face {
    font-family: 'DinNext';
    src: url('static/font/DINNextLTPro-Condensed.otf') format(opentype);
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

.animate__animated {
    animation-fill-mode: both;
}

.nav-wrapper {
    width: 100%;
    height: auto;
    position: fixed;
    background: #000;
    z-index: 100;
    left: 0;
    top: 0;

    /* 固定宽度，防止适配抖动 */
    will-change: transform;
    box-sizing: border-box;
    border: 0;
}

.nav-wrapper .nav-header {
    width: 100%;
    height: 1.22667rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

.nav-wrapper .nav-icon {
    position: absolute;
    left: 0.64rem;
    top: 0.4rem;
    transform: scale(1.1);
}

.nav-wrapper .nav-icon .nav-icon-item {
    transition: all .3s ease-out;
    position: absolute;
    width: 0.48rem;
    height: 1px;
    background: #fff;
}

.nav-wrapper .nav-icon .nav-icon-item.item-1 {
    top: 0;
}

.nav-wrapper .nav-icon .nav-icon-item.item-2 {
    top: 0.13333rem;
}

.nav-wrapper .nav-icon .nav-icon-item.item-3 {
    top: 0.26667rem;
}

/* 汉堡图标激活态（变叉号）的 transform 动画 */
.nav-wrapper .nav-icon.nav-icon-active .nav-icon-item.item-1 {
    transform: rotate(45deg) translate(0.05333rem, 0.11333rem);
}

.nav-wrapper .nav-icon.nav-icon-active .nav-icon-item.item-2 {
    opacity: 0;
    /* 中间线隐藏 */
}

.nav-wrapper .nav-icon.nav-icon-active .nav-icon-item.item-3 {
    transform: rotate(-45deg) translate(0.05333rem, -0.11333rem);
}

.nav-wrapper .nav-icon::after {
    position: absolute;
    content: "";
    width: 0.53333rem;
    height: 0.53333rem;
    left: 0;
    top: 0;
}

.nav-wrapper .logo {
    width: 0.37333rem;
    height: auto;
}

.nav-wrapper .nav-list-wrapper {
    position: fixed;
    top: 1.22667rem;
    /* 对齐导航栏高度 */
    right: 0;
    /* 从右侧开始 */
    z-index: 999;
    /* 动画核心：初始隐藏（宽度0 + 右移100%） */
    width: 0;
    height: calc(100vh - 1.22667rem);
    background: #000;
    overflow: hidden;
    /* 防止内容溢出 */
    /* 平滑过渡动画：宽度+位移同时变化 */
    transition: all 0.3s ease-out;
    transform: translateX(100%);
    /* 初始完全移出右侧视口 */
}

.nav-wrapper .nav-list-wrapper.active {
    width: 100%;
    /* 展开为全屏宽度（可改为固定宽度，如80%） */
    transform: translateX(0);
    /* 移回视口 */
}

.nav-wrapper .nav-list {
    width: 8.50667rem;
    margin: 0 auto;
}

.nav-wrapper .nav-item {
    width: 100%;
    font-size: 14px;
    margin-top: 0.53333rem;
    border-bottom: 1px solid #333;
}

.nav-wrapper .nav-item-name-group {
    width: 100%;
    height: 0.98667rem;
}

.nav-wrapper .nav-item-name-group .nav-item-name {
    float: left;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    color: #39e0c1;
}

.nav-wrapper .nav-item-name-group-active .nav-item-name {
    color: #fff;
    font-weight: 600;
}


@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

.container {
    padding-top: 1.22667rem;
    width: 100vw;
    text-align: center;
}


.video-wrapper {
    width: 100vw;
    height: 217vw;
    background: #000;
    position: relative;
    overflow: hidden;
}

#video {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
}

.section {
    position: relative;
    width: 100vw;
    background: #000;
}

.container .partion-1 {
    position: relative;
}

.partion-1 .company-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.partion-1 .company-area .logo {
    width: 2.90667rem;
    height: 0.82667rem;
    margin-top: 0.96rem;
}

.partion-1 .company-area .company-desc {
    margin-top: 2.21333rem;
}

.partion-1 .company-desc .home_title {
    width: 6.72rem;
}

.partion-1 .company-desc .home_users {
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 6.56667rem;
    height: 1.01333rem;
    background: -o-linear-gradient(top, hsla(0, 0%, 72.2%, .03) 0, hsla(0, 0%, 100%, .14) 100%);
    background: linear-gradient(180deg, hsla(0, 0%, 72.2%, .03), hsla(0, 0%, 100%, .14));
    border: 0.02667rem solid;
    border-image: linear-gradient(180deg, hsla(0, 0%, 100%, .6), hsla(0, 0%, 100%, .04)) 1 1;
    -webkit-backdrop-filter: blur(4.4px);
    backdrop-filter: blur(4.4px);
    margin: 0.56rem auto 0;
}

.partion-1 .company-desc .home_users span:first-child {
    font-size: .29333rem;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #fff;
}

.partion-1 .company-desc .home_users span:nth-child(2) {
    font-size: .48rem;
    font-family: Arial-BoldMT, Arial;
    font-weight: 700;
    color: #28e5d3;
}

.partion-1 .company-desc .home_users span:nth-child(3) {
    font-size: .18667rem;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #28e5d3;
}


.home_agency {
    width: 2.34667rem;
    position: fixed;
    top: 1.33333rem;
    right: 0;
    z-index: 99;
}

.partion-2 .product-desc {
    padding-top: 1.22667rem;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

.partion-2 .product-img {
    width: 4.45333rem;
    height: 9.38667rem;
    margin: 1.6rem auto 0;
}

.partion-2 .product-desc .desc-item1 {
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
    margin-bottom: 0.48rem;
}

.partion-2 .product-desc .desc-item2 {
    font-size: 16px;
    line-height: 16px;
    color: #949293;
}

.partion-2 .product-desc .desc-item2 {
    margin-bottom: 0.96rem;
}

.partion-2 .product-shadow {
    width: 100vw;
    height: 4.72rem;
    z-index: 0;
}


.partion-3 .product-desc {
    padding-top: 1.22667rem;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

.partion-3 .product-desc .desc-item1 {
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
    margin-bottom: 0.48rem;
}

.partion-3 .product-desc .desc-item2 {
    font-size: 16px;
    line-height: .42667rem;
    color: #949293;
}

.partion-3 .serial-product-wrappper {
    margin: auto;
    z-index: 1;
}

.partion-3 .serial-list {
    margin: 0.88rem auto 0;
    width: 100vw;
    overflow: scroll;
    height: 10.4rem;

    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    top: 0.72rem;
    -ms-overflow-style: none;
    /* IE/Edge 隐藏滚动条 */
    scrollbar-width: none;
}

.partion-3 .serial-list::-webkit-scrollbar {
    display: none;
    /* 直接隐藏滚动条元素 */
}

.partion-3 .serial-list .item-1-wrapper {
    width: 1.14667rem;
    height: 2.37333rem;
    margin-right: 0.29333rem;
    padding-left: 2.4rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.partion-3 .serial-list .product-item {
    height: 100%;
    display: block;
}

.partion-3 .serial-list .item-2-wrapper {
    width: 2.69333rem;
    height: 4.05333rem;
    margin-right: 0.32rem;
}

.partion-3 .serial-list .item-3-wrapper {
    width: 3.68rem;
    height: 3.41333rem;
    margin-right: 0.37333rem;
}

.partion-3 .serial-list .item-6-wrapper {
    width: 4rem;
    height: 4.26667rem;
    margin-right: 0.45333rem;
}

.partion-3 .serial-list .item-4-wrapper {
    width: 4.58667rem;
    height: 5.36rem;
    margin-right: 0.45333rem;
}

.partion-3 .serial-list .item-5-wrapper {
    width: 3.94667rem;
    height: 10.4rem;
    padding-right: 2.4rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.partion-3 .serial-scroll-indicator {
    position: relative;
    top: 1.52rem;
    margin: 0 auto;
    width: 1.28rem;
    height: 0.05333rem;
    background: hsla(0, 0%, 100%, .1);
}

.partion-3 .serial-scroll-indicator .serial-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 0.53333rem;
    height: 0.05333rem;
    background: #fff;
    transition: transform 0.2s ease;
    transform: translateX(0);
}

.section .product-shadow {
    width: 100vw;
    height: 4.72rem;
    z-index: 0;
}

.partion-4 .product-desc {
    padding: 1.22667rem 15px 0;
    text-align: center;
}

.partion-4 .product-desc .desc-item1 {
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
    margin-bottom: 0.48rem;
}

.partion-4 .product-desc .desc-item2 {
    font-size: 16px;
    line-height: .42667rem;
    color: #949293;
}

.partion-4 .large-screen-wrapper {
    z-index: 1;
    margin: auto;
}

.partion-4 .large-screen-wrapper .large-screen-list {
    margin: 1.33333rem auto 0;
    width: 100vw;
    height: 9.76rem;
    overflow: scroll;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-overflow-style: none;
    /* IE/Edge 隐藏滚动条 */
    scrollbar-width: none;
}

.partion-4 .large-screen-wrapper .large-screen-list::-webkit-scrollbar {
    display: none;
}

.partion-4 .large-screen-wrapper .large-screen-list .item-wrapper {
    width: 3.84rem;
    height: 9.76rem;
    margin-right: 0.85333rem;
}

.partion-4 .large-screen-wrapper .large-screen-list .item-1 {
    box-sizing: content-box;
    padding-left: 2.4rem;
}



.partion-4 .large-screen-wrapper .large-screen-list .screen-item {
    height: 100%;
    display: block;
}

.partion-4 .large-screen-wrapper .large-screen-scroll-indicator {
    position: relative;
    margin: 0 auto;
    top: 1.25333rem;
    width: 1.28rem;
    height: 0.05333rem;
    background: hsla(0, 0%, 100%, .1);
}

.partion-4 .large-screen-wrapper .large-screen-scroll-indicator .large-screen-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 0.53333rem;
    height: 0.05333rem;
    background: #fff;
}

.partion-1 .product-line {
    margin-top: 2.13333rem;
    text-align: center;
}

.partion-1 .product-line .line-title {
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
}

.container .partion-1 .product-line .line-desc {
    margin-top: 0.48rem;
    font-size: 16px;
    color: hsla(0, 0%, 100%, .4);
    line-height: .42667rem;
}

.container .partion-1 .product-bundle {
    width: 8.26667rem;
    display: block;
    z-index: 1;
    margin: 0.8rem auto 0;
    position: relative;
    top: 0.8rem;
}

.container .partion-1 .product-shadow {
    width: 100%;
    height: 4.72rem;
    z-index: 0;
    display: block;
}

.container .partion-2 {
    width: 100%;
    background-color: rgba(0, 0, 0, .9);
}

.container .partion-2 .partion-2-content {
    width: 7.86667rem;
    margin: 0 auto;
    text-align: left;
}

.container .partion-2 .red-dot {
    width: 3.92rem;
    height: 0.50667rem;
}

.container .partion-2 .product-intro-list {
    margin-top: 0.64rem;
}

.container .partion-2 .product-intro-list .intro-item {
    width: 7.81333rem;
    height: 1.22667rem;
    margin-bottom: 0.32rem;
    border: 1px solid hsla(0, 0%, 100%, .16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.container .partion-2 .product-intro-list .intro-indicator {
    width: 0.08rem;
    height: 0.26667rem;
    margin-left: 0.45333rem;
    background: #34ffd2;
    border-radius: 0.05333rem;
}

.container .partion-2 .product-intro-list .intro-info {
    margin-left: 0.32rem;
    font-size: 14px;
    line-height: .37333rem;
    font-weight: 600;
}

.container .partion-3 .battery-title {
    margin-top: 3.73333rem;
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
}

.container .partion-3 .battery-desc {
    margin-top: 0.48rem;
    height: 0.42667rem;
    font-size: 16px;
    font-weight: 600;
    color: hsla(0, 0%, 100%, .6);
    line-height: .42667rem;
}

.container .partion-3 .product-battery {
    width: 4.45333rem;
    height: 9.38667rem;
    margin-top: 1.6rem;
}

.container .partion-3 .product-shadow {
    width: 100%;
    height: 4.72rem;
}

.container .partion-4 {
    text-align: left;
}

.container .partion-4 .feature-list {
    margin: -2.66667rem auto 0.93333rem;
    width: 7.86667rem;
    height: 3.70667rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid hsla(0, 0%, 100%, .16);
}

.container .partion-4 .feature-item {
    text-align: center;
}

.container .partion-4 .feature-img {
    width: 1.06667rem;
    height: 1.06667rem;
}

.container .partion-4 .feature-desc {
    font-size: 14px;
    line-height: .37333rem;
    font-weight: 600;
    margin-top: 0.37333rem;
}

.container .partion-4 .product-auth {
    width: 5.36rem;
    height: 8.24rem;
    margin-left: 1.06667rem;
}

.container .partion-5 {
    margin: 2.13333rem auto 0;
    width: 7.86667rem;
    background-color: #111;
    text-align: left;
}

.container .partion-5 .param-title {
    padding: 1.06667rem 0 0 1.06667rem;
    font-size: 20px;
    line-height: .53333rem;
    font-weight: 600;
}

.container .partion-5 .param-list {
    margin: 0.8rem auto 0;
    padding: 0.8rem 0 1.06667rem;
    width: 5.73333rem;
    border-top: 1px solid hsla(0, 0%, 100%, .16);
}

.container .partion-5 .param-item {
    margin-top: 0.96rem;
}

.container .partion-5 .param-info {
    font-size: 12px;
    line-height: .32rem;
    font-weight: 400;
    color: hsla(0, 0%, 100%, .6);
}

.container .partion-5 .param-info {
    font-size: 12px;
    line-height: .32rem;
    font-weight: 400;
    color: hsla(0, 0%, 100%, .6);
}

.container .partion-5 .param-item:first-child {
    margin-top: 0;
}


.container .partion-5 .param-score {
    font-size: 20px;
    line-height: .66667rem;
    margin-top: 0.32rem;
    font-family: DinNext;
}

.container .partion-7 {
    margin-top: 4.26667rem;
}

.container .partion-7 .port-info {
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.48rem;
}

.container .partion-7 .port-desc {
    font-size: 16px;
    line-height: .64rem;
    color: hsla(0, 0%, 100%, .4);
    text-align: center;
}

.container .partion-7 .port-desc {
    font-size: 16px;
    line-height: .64rem;
    color: hsla(0, 0%, 100%, .4);
    text-align: center;
}

.container .partion-7 .port-area {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.container .partion-7 .charge-port {
    margin-top: 2.21333rem;
    margin-left: 8rem;
    width: 14.16rem;
    height: 2.69333rem;
    z-index: 2;
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
}

.container .partion-7 .product-shadow {
    width: 100%;
    height: 4.72rem;
    position: relative;
    top: -2.96rem;
    z-index: 1;
}

.container .partion-7 .port-area {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.container .partion-7 .charge-port {
    margin-top: 2.21333rem;
    margin-left: 8rem;
    width: 14.16rem;
    height: 2.69333rem;
    z-index: 2;
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
}

.container .partion-7.partion-7-move .charge-port {
    margin-left: 0.88rem;
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
}

.container .partion-7 .port-area .shining-circle {
    width: 2.85333rem;
    height: 2.85333rem;
    position: absolute;
    top: 2.93333rem;
    right: 4.8rem;
    visibility: hidden;
}

.container .partion-7.partion-7-move .shining-circle {
    visibility: visible;
}

.container .partion-7.partion-7-move .shining-circle .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#64ffeb), to(#28e5d3));
    background: -o-linear-gradient(top, #64ffeb 0, #28e5d3 100%);
    background: linear-gradient(180deg, #64ffeb, #28e5d3);
    border-radius: 100%;
    -webkit-animation: circleOpacity 2s infinite;
    animation: circleOpacity 2s infinite;
    opacity: 0;
}

.container .partion-7.partion-7-move .shining-circle .circle.circle1 {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

.container .partion-7.partion-7-move .shining-circle .circle.circle2 {
    -webkit-animation-delay: 2.3s;
    animation-delay: 2.3s;
}

@keyframes circleOpacity {
    0% {
        transform: scale(0);
        /* 初始缩小为0 */
        opacity: 1;
        /* 完全不透明 */
    }

    100% {
        transform: scale(1.5);
        /* 放大到1.5倍 */
        opacity: 0;
        /* 完全透明 */
    }
}

/* 兼容webkit内核（移动端） */
@-webkit-keyframes circleOpacity {
    0% {
        -webkit-transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

.container .partion-6 .charge-info {
    margin-bottom: 0.48rem;
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
    text-align: center;
}

.container .partion-6 .info-desc {
    text-align: center;
    font-size: 16px;
    line-height: .64rem;
    color: hsla(0, 0%, 100%, .4);
}

.container .partion-6 .info-desc {
    text-align: center;
    font-size: 16px;
    line-height: .64rem;
    color: hsla(0, 0%, 100%, .4);
}

.container .partion-6 .battery-area {
    margin-top: 1.76rem;
    position: relative;
    width: 100%;
    height: 8.64rem;
    overflow: hidden;
}

.container .partion-6 .product-shadow {
    width: 100%;
    height: 4.72rem;
    z-index: 0;
    display: block;
    position: absolute;
    top: 1.6rem;
}

.container .partion-6 .charge-battery {
    width: 14.13333rem;
    height: 3.73333rem;
    position: absolute;
    right: 8rem;
}

.container .partion-6 .charge-battery,
.container .partion-6.partion-6-move .charge-battery {
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
}

.container .partion-6.partion-6-move .charge-battery {
    right: 1.01333rem;
}

.container .partion-8 {
    margin-top: -1.06667rem;
    text-align: center;
}

.container .partion-8 .cabinet-title {
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
}

.container .partion-8 .cabinet-desc {
    margin-top: 0.48rem;
    height: 0.42667rem;
    font-size: 16px;
    font-weight: 600;
    color: hsla(0, 0%, 100%, .6);
    line-height: .42667rem;
}

.container .partion-8 .cabinet-12 {
    margin-top: 1.76rem;
    width: 4.82667rem;
    height: 5.65333rem;
    position: relative;
    top: 0.85333rem;
}

.container .partion-8 .product-shadow {
    width: 100%;
    height: 4.72rem;
}

.container .partion-9 {
    margin: -1.89333rem auto 0;
    width: 7.86667rem;
    background-color: #111;
    text-align: left;
}

.container .partion-9 .param-title {
    padding: 1.06667rem 0 0 1.06667rem;
    font-size: 20px;
    line-height: .53333rem;
    font-weight: 600;
}

.container .partion-9 .param-list {
    margin: 0.8rem auto 0;
    padding: 0.8rem 0 1.06667rem;
    width: 5.73333rem;
    border-top: 1px solid hsla(0, 0%, 100%, .16);
}

.container .partion-9 .param-item {
    margin-top: 0.96rem;
}

.container .partion-9 .param-item:first-child {
    margin-top: 0;
}

.container .partion-9 .param-info {
    font-size: 12px;
    line-height: .32rem;
    font-weight: 400;
    color: hsla(0, 0%, 100%, .6);
}

.container .partion-9 .param-score {
    font-size: 20px;
    line-height: .66667rem;
    letter-spacing: 1px;
    margin-top: 0.32rem;
    font-family: DinNext;
}


.container .partion-8 {
    margin-top: -1.06667rem;
    text-align: center;
}

.container .partion-8 .cabinet-title {
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
}

.container .partion-8 .cabinet-title.two {
    margin-top: 3.73333rem;
}

.container .partion-8 .cabinet-title.two {
    margin-top: 3.73333rem;
}

.container .partion-8 .cabinet-12 {
    margin-top: 1.76rem;
    width: 4.82667rem;
    height: 5.65333rem;
    position: relative;
    top: 0.85333rem;
}

.container .partion-8 .product-shadow {
    width: 100%;
    height: 4.72rem;
}


.container .partion-10 {
    background: #000;
    text-align: center;
}

.container .partion-10 .cabinet-title {
    margin-top: 3.73333rem;
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
}

.container .partion-10 .cabinet-desc {
    margin-top: 0.48rem;
    height: 0.42667rem;
    font-size: 16px;
    font-weight: 600;
    color: hsla(0, 0%, 100%, .6);
    line-height: .42667rem;
}

.container .partion-10 .cabinet-6 {
    margin-top: 1.06667rem;
    width: 4.8rem;
    height: 5.01333rem;
    position: relative;
    top: 1.33333rem;
}

.container .partion-10 .product-shadow {
    width: 100%;
    height: 4.72rem;
}


.container .partion-11 {
    margin: -1.89333rem auto 0;
    width: 7.86667rem;
    background-color: #111;
    text-align: left;
}

.container .partion-11 .param-title {
    padding: 1.06667rem 0 0 1.06667rem;
    font-size: 20px;
    line-height: .53333rem;
    font-weight: 600;
}

.container .partion-11 .param-list {
    margin: 0.8rem auto 0;
    padding: 0.8rem 0 1.06667rem;
    width: 5.73333rem;
    border-top: 1px solid hsla(0, 0%, 100%, .16);
}

.container .partion-11 .param-item {
    margin-top: 0.96rem;
}

.container .partion-11 .param-info {
    font-size: 12px;
    line-height: .32rem;
    font-weight: 400;
    color: hsla(0, 0%, 100%, .6);
}

.container .partion-11 .param-score {
    font-size: 20px;
    line-height: .66667rem;
    letter-spacing: 1px;
    margin-top: 0.32rem;
    font-family: DinNext;
}

.container .partion-12 {
    text-align: center;
}

.container .partion-12 .cabinet-title {
    margin-top: 3.73333rem;
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
}

.container .partion-12 .cabinet-desc {
    margin-top: 0.48rem;
    height: 0.42667rem;
    font-size: 16px;
    font-weight: 600;
    color: hsla(0, 0%, 100%, .6);
    line-height: .42667rem;
}

.container .partion-12 .cabinet-3 {
    margin-top: 0.4rem;
    width: 4.29333rem;
    height: 6.48rem;
    position: relative;
    top: 1.2rem;
}

.container .partion-12 .product-shadow {
    width: 100%;
    height: 4.72rem;
}

.container .partion-13 {
    margin: -1.89333rem auto 0;
    width: 7.86667rem;
    background-color: #111;
    text-align: left;
}

.container .partion-13 .param-title {
    padding: 1.06667rem 0 0 1.06667rem;
    font-size: 20px;
    line-height: .53333rem;
    font-weight: 600;
}

.container .partion-13 .param-list {
    margin: 0.8rem auto 0;
    padding: 0.8rem 0 1.06667rem;
    width: 5.93333rem;
    border-top: 1px solid hsla(0, 0%, 100%, .16);
}

.container .partion-13 .param-item {
    margin-top: 0.96rem;
}

.container .partion-13 .param-item:first-child {
    margin-top: 0;
}

.container .partion-13 .param-info {
    font-size: 12px;
    line-height: .32rem;
    font-weight: 400;
    color: hsla(0, 0%, 100%, .6);
}

.container .partion-13 .param-score {
    font-size: 20px;
    line-height: .66667rem;
    letter-spacing: 1px;
    margin-top: 0.32rem;
    font-family: DinNext;
}

.container .partion-14 {
    text-align: center;
}

.container .partion-14 .cabinet-title {
    margin-top: 3.73333rem;
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
}

.container .partion-14 .cabinet-desc {
    margin-top: 0.48rem;
    height: 0.42667rem;
    font-size: 16px;
    font-weight: 600;
    color: hsla(0, 0%, 100%, .6);
    line-height: .42667rem;
}

.container .partion-14 .cabinet-x {
    margin-top: 0.53333rem;
    width: 5.05333rem;
    height: 13.28rem;
    position: relative;
    top: 1.06667rem;
}

.container .partion-14 .product-shadow {
    width: 100%;
    height: 4.72rem;
}

.container .partion-15 {
    margin: -1.89333rem auto 0;
    width: 7.86667rem;
    background-color: #111;
    text-align: left;
    margin-bottom: 2.93333rem;
}

.container .partion-15 .param-title {
    padding: 1.06667rem 0 0 1.06667rem;
    font-size: 20px;
    line-height: .53333rem;
    font-weight: 600;
}

.container .partion-15 .param-list {
    margin: 0.8rem auto 0;
    padding: 0.8rem 0 1.06667rem;
    width: 5.73333rem;
    border-top: 1px solid hsla(0, 0%, 100%, .16);
}

.container .partion-15 .param-item {
    margin-top: 0.96rem;
}

.container .partion-15 .param-item:first-child {
    margin-top: 0;
}

.container .partion-15 .param-info {
    font-size: 12px;
    line-height: .32rem;
    font-weight: 400;
    color: hsla(0, 0%, 100%, .6);
}

.container .partion-15 .param-score {
    font-size: 20px;
    line-height: .66667rem;
    letter-spacing: 1px;
    margin-top: 0.32rem;
    font-family: DinNext;
}

.culture {
    padding-top: 1.22667rem;
    padding-bottom: 3.2rem;
}

.culture .culture_inner {
    width: 7.86667rem;
    margin: 0 auto;
}

.culture .culture_inner .culture_title {
    margin-top: 1.22667rem;
    font-size: 26px;
    width: 7.86667rem;
    padding-bottom: 0.85333rem;
    border-bottom: 1px solid hsla(0, 0%, 100%, .16);
    margin-bottom: 0.66667rem;
}

.culture .culture_inner .culture_sm_bg {
    width: 7.86667rem;
    height: 5.09333rem;
}

.culture .culture_inner .culture_jzg_bg {
    width: 7.86667rem;
    height: 19.65333rem;
    margin-top: 0.88rem;
}




.about-page {
    padding-top: 1.22667rem;
    padding-bottom: 3.2rem;
    text-align: left;
}

.about-page .partion-1 {
    width: 100vw;
}

.about-page .about-title {
    margin-left: 1.06667rem;
    margin-top: 1.22667rem;
    font-size: 26px;
    width: 7.86667rem;
    padding-bottom: 0.85333rem;
    border-bottom: 1px solid hsla(0, 0%, 100%, .16);
}

.about-page .inline-video-wrapper {
    position: relative;
    margin-left: 1.06667rem;
    margin-top: 0.93333rem;
    width: 7.86667rem;
    height: 4.42667rem;
}

#video,
.inline-video-cover {
    position: absolute;
    top: 0;
    left: 0;
}

.about-page #video {
    width: 7.86667rem;
    height: 4.42667rem;
}

.about-page .logo-text-space {
    display: block;
    margin: 0.53333rem auto 0;
    width: 7.78667rem;
    height: 0.26667rem;
}

.about-page .copy-right {
    margin: 2.61333rem auto;
    width: 7.86667rem;
    height: 2.53333rem;
    border-top: 1px solid hsla(0, 0%, 100%, .16);
    border-bottom: 1px solid hsla(0, 0%, 100%, .16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-page .copy-right .copy-right-item {
    display: block;
}

.about-page .copy-right .copy-right-cn {
    font-size: 16px;
    font-weight: 600;
    line-height: .53333rem;
    margin-bottom: 0.21333rem;
    text-align: center;
}

.about-page .copy-right .copy-right-en {
    font-size: 10px;
    line-height: .32rem;
    opacity: .6;
}

.about-page .partion-2 {
    width: 100vw;
    background-color: #000;
}

.about-page .partion-2 .desc-year {
    width: 100%;
    background-color: #000;
    height: 3.09333rem;
}

.about-page .desc-title {
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
    margin-left: 1.06667rem;
    margin-top: 0.69333rem;
}

.about-page .partion-2 .desc-year .desc-title {
    margin: 0;
    padding-left: 1.06667rem;
    padding-top: 0.69333rem;
}

.about-page .partion-2 .year-list {
    padding: 0.72rem 0 0.64rem 0.42667rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
}
.partion-2.partion-2-fixed .desc-year{
    position: fixed;
    top: 1.21667rem;
    z-index: 10;
}

.about-page .partion-2 .year-list::-webkit-scrollbar {
    display: none;
}

.about-page .partion-2 .year-list .year-item {
    width: 1.52rem;
    height: 0.34667rem;
    opacity: .3;
    margin-right: 0.42667rem;
}

.about-page .partion-2 .year-list .year-item.active-year-item {
    opacity: 1;
}

.about-page .partion-2 .milestone-list-wrapper {
    padding-top: 0;
}

.about-page .partion-2 .milestone-list {
    padding: 0.72rem 0;
    background-color: hsla(0, 0%, 100%, .08);
}

.about-page .partion-2 .milestone-list .milestone-item {
    position: relative;
    width: 100%;
    height: 2.90667rem;
}

.about-page .partion-2 .milestone-list .decoration-bg-line {
    position: absolute;
    width: 100%;
    z-index: 0;
}

.about-page .partion-2 .milestone-list .decoration-bg-line .line-item {
    width: 100%;
    height: 1px;
    display: block;
    margin-bottom: 0.93333rem;
    background: hsla(0, 0%, 100%, .06);
}

.about-page .partion-2 .milestone-list .foreground {
    position: absolute;
    top: -0.24rem;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.about-page .partion-2 .milestone-list .decoration-front-line{
    margin: 0.24rem 0.21333rem 0 1.06667rem;
    width: 0.8rem;
}

.about-page .partion-2 .milestone-list .decoration-front-line .line-item{
    display: block;
    height: 1px;
    background-color: hsla(0, 0%, 100%, .4);
    margin-bottom: 0.45333rem;
}

.about-page .partion-2 .milestone-list .decoration-front-line .item-1,
.partion-2 .milestone-list .decoration-front-line .item-7{
    width: 0.8rem;
}

.partion-2 .milestone-list .decoration-front-line .item-2,
.partion-2 .milestone-list .decoration-front-line .item-4,
.partion-2 .milestone-list .decoration-front-line .item-6{
    width: 0.26667rem;
    margin-left: 0.08rem;
}

.partion-2 .milestone-list .decoration-front-line .item-3,
.partion-2 .milestone-list .decoration-front-line .item-5{
    width: 0.42667rem;
}
.partion-2 .milestone-list .decoration-pointer{
    width: 0.42667rem;
    height: 0.42667rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-color: rgba(0,0,0,0);
    border: 1px solid hsla(0,0%,100%,.4);
    border-radius: 0.42667rem;
}
.partion-2 .milestone-list .decoration-pointer .pointer-center{
    width: 0.10667rem;
    height: 0.10667rem;
    background-color: #28e5d3;
    border-radius: 0.10667rem;
    margin: 0.16rem;
}
.partion-2 .milestone-list .content-text{
    margin-left: 0.26667rem;
}
.partion-2 .milestone-list .item-date{
    font-size: 12px;
    line-height: .32rem;
    font-weight: 800;
    color: hsla(0,0%,100%,.3);
    margin: 0.08rem 0 0.26667rem;
}
.partion-2 .milestone-list .item-event{
    font-size: 14px;
    line-height: .37333rem;
    font-weight: 600;
}
.partion-2 .milestone-list .item-event .item-event-text-emphasis{
    color: #28e5d3;
}
.about-page .partion-3 {
    margin-top: 2.69333rem;
}

.about-page .company-des, .company-photo{
    display: block;
    width: 7.86667rem;
    margin: 0 auto 1.33333rem;
}
.about-page .intro-title{
    font-size: 16px;
    line-height: .42667rem;
    font-weight: 600;
    margin-left: 1.06667rem;
}
.about-page .desc-list{
    width: 7.86667rem;
    margin: 0.90667rem auto 1.73333rem;
    opacity: .8;
}
.about-page .desc-item{
    font-size: 14px;
    line-height: .74667rem;
    margin-bottom: 0.53333rem;
    word-break: break-all;
    text-align: justify;
}
.about-page .partion-4{
    width: 8rem;
    height: 16.74667rem;
    margin-left: 1.01333rem;
    background: #111;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about-page .partion-4 p{
    text-align: center;
    font-size: .37333rem;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #fff;
    padding: 0.64rem 0.58667rem 0.74667rem;
    line-height: .69333rem;
}
.about-page .partion-4 p span{
    color: #28e5d3;
}
.about-page .partion-4 .qrcode{
    width: 5.41333rem;
    height: 6.02667rem;
    border: 0.01333rem solid hsla(0,0%,100%,.35);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about-page .partion-4 .qrcode img{
    width: 4.82667rem;
    height: 4.82667rem;
}
.about-page .partion-4 .qrcode span{
    font-size: .37333rem;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #fff;
}
.about-page .partion-4 .bill, .partion-4 .wx-qrcode {
    margin-bottom: 0.74667rem;
}
.about-page .partion-4 .bill {
    width: 2.88rem;
    height: 0.85333rem;
    font-size: .37333rem;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    border: 0.02667rem solid #28e5d3;
    margin-top: 0.74667rem;
}
.about-page .desc-title{
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
    margin-left: 1.06667rem;
    margin-top: 0.69333rem;
}
.about-page .partion-5{
    text-align: left;
    background: none;
    width: unset!important;
    margin: 0;
}
.partion-5 .desc-title{
    margin-top: 4.26667rem;
}

.toggle-btn{
    color: #28e5d3;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.48rem 0;
}
.toggle-btn .text{
    color: #28e5d3;
    font-size: 14px;
    padding-right: 5px;
}

.toggle-btn img{
    width: 13px;
    height: 13px;
    color: #28e5d3;
}
.toggle-btn.reverse img{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.honor-list{
    width: 9.28rem;
    margin: 1.6rem auto;
    padding-top: 0.53333rem;
    border-top: 1px solid hsla(0,0%,100%,.16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.honor-list .honor-item{
       flex-basis: 50%;
    font-size: 12px;
    line-height: .53333rem;
    text-align: center;
    margin-bottom: 0.8rem;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.honor-list .honor-img{
    width: 100%;
    height: 100%;
}

.honor-list .honor-item:nth-child(n+7) {
  display: none;
}
/* 展开后显示所有项 */
.honor-list.expanded .honor-item {
  display: block;
}
.about-page .partion-6{
    width: 100vw;
    background-color: #000;
}
.about-page .desc-title{
    font-size: 26px;
    line-height: .69333rem;
    font-weight: 600;
    margin-left: 1.06667rem;
    margin-top: 0.69333rem;
}
.about-page .partion-6 .desc-title{
    margin-top: 4.26667rem;
}
.about-page .partner-list{
    width: 7.86667rem;
    margin: 1.6rem auto 0;
}
.about-page .partner-list .partner-item{
    margin-bottom: 1.86667rem;
}
.about-page .partner-list .partner-desc{
    font-size: 16px;
    line-height: .42667rem;
    opacity: .4;
    margin-bottom: 0.64rem;
}
.about-page .partner-list .partner-logo{
    width: 100%;
}
.partner-list .partner-remark{
    font-size: 18px;
    line-height: .48rem;
    font-weight: 400;
    opacity: .4;
    margin-top: -0.8rem;
}
.jobs-page,.team-page{
    padding-left: 16px;
    padding-right: 16px;
}
.jobs-banner{
    width: 100%;
    margin: 10px auto;
}
.jobs-banner img{
    width: 100%;
}

.job-list .item{
    background: #FAFAFA1A;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}
.job-list .item .top{
    padding: 14px 12px;
    box-sizing: border-box;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    background: #FAFAFA1A;
    border-radius: 8px;
}
.job-list .item .top .picture{
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}
.job-list .item .top .picture img{
    width: 100%;
}
.job-list .item .top .content{
    flex: 1;
    margin-left: 6px;
    text-align: left;
}
.job-list .item .top .content .name{
    font-weight: bold;
    color: #44D3BC;
    margin-bottom: 6px;
    font-size: 14px;
}
.job-list .item .top .content .cont{
    font-size: 12px;
    color: #838383;

     display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* 添加过渡效果使展开收起更平滑 */
    transition: all 0.3s ease;
}
.job-list .item .top .content .cont.expanded {
    display: block;
    /* 展开时高度自适应内容 */
    height: auto!important;
}
.job-list .item .top .content .cont p,
.job-list .item .top .content .cont span{
    word-break: break-all!important;
    text-wrap-mode: normal!important;
    white-space: normal !important;
}

.show-more{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 7px 0;
    box-sizing: border-box;
    color: #FAFAFA;
}
.show-more img{
    width: 16px;
    margin-right: 4px;
}

.team-page .staff-list{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}


.team-page .staff-list .item{
     flex: 0 0 calc(50% - 6px); 
    background: #FAFAFA1A;
    backdrop-filter: blur(30px);
    border-radius: 8px;
    margin-bottom: 12px;
    break-inside: avoid;
    overflow: hidden;
}
.team-page .staff-list img{
    width: 100%;
    border-radius: 8px;
}
.team-page .staff-list .show-more img{
    width: 16px;
    margin-right: 4px;
}
.team-page .staff-list .item .content {
    padding: 10px;
    box-sizing: border-box;
    color: #838383;
    font-size: 12px;
}


.team-page .staff-list .item .content p,
.team-page .staff-list .item .content span{
    word-break: break-all!important;
    text-wrap-mode: normal!important;
    white-space: normal !important;
}

.loading img{
    width: 60px;
}




.footer-wrapper {
    background-color: #111;
}

.footer-wrapper .company-info-list {
    margin: 0 auto;
    width: 8.72rem;
    padding-top: 0.64rem;
    text-align: left;
    border-bottom: 1px solid #1b1b1b;
}

.footer-wrapper .company-info-list .info-item {
    margin-bottom: 0.85333rem;
}

.footer-wrapper .company-info-list .info-title {
    font-size: 12px;
    font-weight: 900;
    line-height: .32rem;
    margin-bottom: 0.32rem;
}

.footer-wrapper .company-info-list .info-desc {
    color: #686868;
    font-size: 12px;
    line-height: .53333rem;
}

.footer-wrapper .copy-right {
    display: block;
    margin: 0 auto;
    padding: 0.93333rem 0;
    width: 8.72rem;
    text-align: left;
}

.footer-wrapper .copy-right .logo {
    width: 3.84rem;
    height: 0.32rem;
}

.footer-wrapper .copy-right .icon_beian {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.footer-wrapper .copy-right .text {
    margin-top: 0.34667rem;
    font-size: 12px;
    line-height: .32rem;
    color: #686868;
}

.footer-wrapper .copy-right .icon_beian img {
    width: 0.4rem;
    height: 0.4rem;
}

.footer-wrapper .company-info-list .info-title {
    font-size: 12px;
    font-weight: 900;
    line-height: .32rem;
    margin-bottom: 0.32rem;
}

.footer-wrapper .company-info-list .link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.53333rem;
    position: relative;
}

.footer-wrapper .company-info-list .link-item-wrapper {
    margin-right: 0.32rem;
}

.footer-wrapper .company-info-list .link-icon {
    width: 1.06667rem;
    height: 1.06667rem;
}

.footer-wrapper .company-info-list .link-pop {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 150;
    background-color: rgba(0, 0, 0, .4);
    display: none;
}

.footer-wrapper .company-info-list .link-item {
    position: absolute;
    width: 8.72rem;
    height: 8.93333rem;
    bottom: 1.25333rem;
    left: 0;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-delay: 50ms;
    animation-delay: 50ms;
    z-index: 200;
    display: none;
}