@charset "utf-8";

@font-face {
    font-family: "阿里巴巴普惠体 2.0 55 Regular";
    font-weight: 400;
    src: url("./fonts/ZlcNmNAVUClDE8WlxgUsZ.woff2") format("woff2"),
        url("./fonts/ZlcNmNAVUClDE8WlxgUsZ.woff") format("woff");
    font-display: swap;
}

html,body,a,button,div,dl,dt,dd,form,h1,h2,h3,h4,h5,h6,input,img,li,label,ol,p,span,table,thead,tbody,tfoot,th,td,tr,ul,li{padding: 0px;margin: 0px;}
ol,ul,li{list-style: none;}
a{text-decoration: none;}
button{border-style: none;background-color: transparent;cursor: pointer;}
input,button{outline: none;border-radius: none}
html,body{font-family: "阿里巴巴普惠体 2.0 55 Regular";overflow-x:auto;}

/* 去除按钮点击背景颜色 */
a,a:active,a:focus{
    -webkit-tap-highlight-color: transparent;
}
button,button:active,button:focus{
    -webkit-tap-highlight-color: transparent;
}
/*--------布局--------*/
.view-section{
    position: relative;
    min-width: 1200px;
}
.w-main{
    width: 1200px;
    margin: auto;
}
header{
    z-index: 20;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    background-color: transparent;
}
header.active{
    background-color: #1F1F25;
    box-shadow: 0 0 5px rgb(60 60 60);
}
.header-content{
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s;
}
header.active .header-content{
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.logo-title>img{
    display: block;
    width: 108px;
}
.nav-list{
    display: flex;
}
.nav-list>li>a{
    display: block;
    font-size: 16px;
    color: #fff;
}
.nav-list>li+li{
    margin-left: 32px;
}
.nav-list>li.active>a{
    color: #3EECB5;
}
.tab-lang{
    font-size: 16px;
    line-height: 1em;
    color: #ccc;
}
.tab-lang>a{
    display: inline-block;
    font-size: 16px;
    color: #fff;
    vertical-align: middle;
}
.tab-lang>a:hover{
    color:#3EECB5
}
.section{
}


.section-1{
    position: relative;
    text-align: center;
}
.section-1>video{
    display: block;
    width: 100%;
}
.section-1>.content-div{
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.section-1>.content-div>img{
    display: block;
    margin: 0 auto 30px;
}
.section-1>.content-div>p{
    font-size: 24px;
    line-height: 40px;
    color: #fff;
}
.section-1>.content-div>a{
    position: relative;
    display: inline-block;
    margin-top: 20px;
    opacity: 1;
    transition: opacity 0.2s;
}
.section-1>.content-div>a.active{
    opacity: 0;
}
.section-1>a.mobile-play-btn{
    display: none;
}
.section-1>.content-div>a>img{
    display: block;
}
.section-1>.content-div>a>span{
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 18px;
    color: #fff;
}
.scroll-tips{
    z-index: 10;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}
.scroll-tips>span{
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}
.scroll-tips>div{
    width: 2px;
    height: 100px;
    margin: 20px auto 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
}
.section-2{
    padding: 150px 0 224px;
    background-image: url(../images/bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-color: #1F1F25;
}
.section-2 h3{
    font-size: 24px;
    color: #ABC0FF;
    transform: translateX(50px);
    transition: all 0.4s;
    opacity: 0;
}
.section-2.active h3{
    transform: translateX(0px);
    opacity: 1;
}
.section-2 h4{
    font-size: 50px;
    line-height: 70px;
    color: #fff;

    transform: translateX(50px);
    transition: all 0.4s 0.2s;
    opacity: 0;
}
.section-2.active h4{
    transform: translateX(0px);
    opacity: 1;
}
.section-2 p{
    font-size: 20px;
    line-height: 36px;
    margin-top: 16px;
    color: #fff;

    transition: all 0.6s 0.6s;
    opacity: 0;
}
.section-2.active p{
    opacity: 1;
}
.section-2 img{
    display: block;
    margin-top: 30px;
    transition: all 0.6s 1.2s;
    opacity: 0;
}
.section-2.active img{
    opacity: 1;
}



.section-3{
    padding-top: 20px;
    padding-bottom: 60px;
    background-color: #1F1F25;
    text-align: center;
}
.section-3 .title-div{
    display: flex;
    align-items: center;
}
.section-3 .title-div>img{
    display: block;
    margin-left: 280px;
    transition: all 1s 0.3s linear;
    opacity: 0;
}
.section-3.active .title-div>img{
    opacity: 1;
}
.section-3 h3{
    font-size: 24px;
    color: #ABC0FF;

    transform: translateX(50px);
    transition: all 0.4s;
    opacity: 0;
}
.section-3.active h3{
    transform: translateX(0px);
    opacity: 1;
}
.section-3 h4{
    font-size: 40px;
    line-height: 70px;
    color: #fff;

    transform: translateX(50px);
    transition: all 0.4s 0.2s;
    opacity: 0;
}
.section-3.active h4{
    transform: translateX(0px);
    opacity: 1;
}
.section-3 .imgs-div{
    position: relative;
    display: inline-block;
    margin-top: 87px;
    margin-bottom: 90px;
}
.section-3 .imgs-div>div{
    position: relative;
    
}
.section-3 .imgs-div>div.circle-2{
    opacity: 0;
    transition: all 0.6s linear 0.6s;
}
.section-3 .imgs-div>div.circle-1{
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.6s ease-in 1s;
}
.section-3.active .imgs-div>div.circle-1{
    left: -270px;
    opacity: 1;
}
.section-3 .imgs-div>div.circle-3{
    z-index: 10;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.6s ease-in 1s;
}
.section-3.active .imgs-div>div.circle-3{
    right: -270px;
    opacity: 1;
}
.section-3 .imgs-div>div>img{
    display: block;
}
.section-3 .imgs-div>div>span{
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
    color: #fff;
}
.section-3>.content-div>img{
    display: block;
    transition: all 1s 0.8s linear;
    opacity: 0;
}
.section-3.active>.content-div>img{
    opacity: 1;
}
.section-3.active .imgs-div>div.circle-2{
    opacity: 1;
}
.section-3 .imgs-div>div.circle-2>span:first-child{
    left: 29%;
}
.section-3 .imgs-div>div.circle-2>span+span{
    left: auto;
    right: 13%;
}



.section-4{
    background-color: #1D1E1F;
}

.section-4 .swiper-slide{
    position: relative;
    display: block;
    width: auto;
    transform: translateY(200px);
    opacity: 0.2;
    transition: all 0.4s;
}

.section-4.active .swiper-slide:nth-child(1){
    transition: all 0.4s;
    transform: translateY(0px);
    opacity: 1;
}
.section-4.active .swiper-slide:nth-child(2){
    transition: all 0.4s 0.2s;
    transform: translateY(0px);
    opacity: 1;
}
.section-4.active .swiper-slide:nth-child(3){
    transition: all 0.4s 0.4s;
    transform: translateY(0px);
    opacity: 1;
}
.section-4.active .swiper-slide:nth-child(4){
    transition: all 0.4s 0.6s;
    transform: translateY(0px);
    opacity: 1;
}
.section-4.active .swiper-slide:nth-child(5){
    transition: all 0.4s 0.8s;
    transform: translateY(0px);
    opacity: 1;
}
.section-4.active .swiper-slide:nth-child(6){
    transition: all 0.4s 1s;
    transform: translateY(0px);
    opacity: 1;
}
/* .section-4 .swiper-slide .mark-div{
    z-index: 5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #409eff;
    opacity: 0;
    transition: opacity 0.3s;
} */
/* .section-4 .swiper-slide:hover .mark-div{
    opacity: 0.5;
} */
.section-4 .swiper-slide>img{
    display: block;
}
.section-4 .swiper-slide .info-div{
    z-index: 10;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.section-4 .swiper-slide .info-div>.title-div{
    z-index: 10;
    position: absolute;
    left: 134px;
    top: 60px;
}

.info-div>.title-div>p{
    font-size: 20px;
    line-height: 24px;
    color: #ABC0FF;
}
.info-div>.title-div>h3{
    font-size: 20px;
    line-height: 56px;
    color: #fff;
}
.section-4 .swiper-slide .info-div>.name-div{
    z-index: 10;
    position: absolute;
    left: 40px;
    top: 224px;
}
.section-4 .swiper-slide:nth-child(1) .info-div>.name-div{
    left: 134px;
    padding-right: 50px;
}
.info-div>.name-div>img{
    display: block;
}
.info-div>.name-div>span{
    font-size: 30px;
    line-height: 42px;
    color: #fff;
}
.info-div>.name-div>p{
    margin-top: 16px;
    line-height: 30px;
    font-size: 18px;
    color: #fff;
}
.info-div>.name-div>p:last-of-type{
    display: none;
}
.section-4 .swiper-slide .info-div>.bottom-txt{
    z-index: 10;
    position: absolute;
    left: 38px;
    bottom: 60px;
    display: inline-block;
    width: 70px;
    height: 32px;
    background-image: url(../images/icon-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    font-size: 20px;
    color: #fff;
}
.section-4 .swiper-slide:nth-child(1) .info-div>.bottom-txt{
    left: 129px;
    background-image: url(../images/icon-1.png);
}

.section-4 .swiper-slide:nth-child(1) .info-div:hover>.bottom-txt{
    background-image: url(../images/icon-1-active.png);
}




.section-5{
    padding-top: 120px;
    background-color: #1F1F25;
}
.section-5 .content-div{
    position: relative;
    padding-left: 20px;
}
.section-5 .content-div::before{
    content: '';
    z-index: 10;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 35%, rgba(255,255,255,0.2) 63%, rgba(255,255,255,0) 100%);
}
.section-5 h3{
    font-size: 20px;
    line-height: 24px;
    color: #ABC0FF;

    transform: translateX(50px);
    transition: all 0.4s;
    opacity: 0;
}
.section-5.active h3{
    transform: translateX(0px);
    opacity: 1;
}
.section-5 h4{
    font-size: 40px;
    line-height: 56px;
    color: #F9FBFF;

    transform: translateX(50px);
    transition: all 0.4s 0.2s;
    opacity: 0;
}
.section-5.active h4{
    transform: translateX(0px);
    opacity: 1;
}

.section-5 .tab-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tab-div>div{
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s;
}

.tab-div>div.active::before{
    content: '';
    z-index: 10;
    position: absolute;
    left: -20px;
    top: 0;
    display: block;
    width: 1px;
    height: 56px;
    background-color: #fff;
}
.section-5.active .tab-div>div{
    transform: translateY(0px);
    opacity: 0.4;
}
.section-5.active .tab-div>div.active{
    opacity: 1;
}

.tab-div>div+div{
    margin-top: 80px;
}
.tab-div>div>img{
    display: block;
    cursor: pointer;
}
.tab-div>div>p{
    font-size: 18px;
    line-height: 30px;
    margin-top: 20px;
    color: #fff;
}
.text-img-div>div{
    transition: opacity 0.8s 0.2s;
    opacity: 0;
}
.text-img-div>div>div{
    display: block;
}
.text-img-div>div+div{
    display: none;
}
.section-5.active .text-img-div>div{
    opacity: 1;
}


.section-6{
    
}
.section-6 .header-section>img{
    display: block;
    width: 100%;
}
.section-6 .content-div{
    padding-bottom: 44px;
    background: linear-gradient(180deg, #2F5FE3 0%, #F1F6FF 100%);
}
.section-6 .content-div>div>h3{
    font-size: 20px;
    margin-bottom: 4px;
    color: #ABC0FF;

    transform: translateX(50px);
    transition: all 0.4s;
    opacity: 0;
}
.section-6.active .content-div>div>h3{
    transform: translateX(0px);
    opacity: 1;
}
.section-6 .content-div>div>h4{
    font-size: 40px;
    line-height: 56px;
    color: #fff;

    transform: translateX(50px);
    transition: all 0.4s 0.2s;
    opacity: 0;
}
.section-6.active .content-div>div>h4{
    transform: translateX(0px);
    opacity: 1;
}
.section-6 .content-div>div>p{
    font-size: 18px;
    line-height: 30px;
    margin-top: 16px;
    color: #fff;

    transform: translateY(30px);
    transition: all 0.4s 0.5s;
    opacity: 0;
}
.section-6.active .content-div>div>p{
    transform: translateY(0px);
    opacity: 1;
}
.section-6 .content-div>div>p:nth-of-type(2){
    display: none;
}
.section-6 .content-div>div>p>a{
    color: #3EECB5;
}
.job-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}
.job-list>li{
    width: 592px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(60px);
}
.job-list>li:nth-child(1){
    transition: all 0.5s 0.6s;
}
.job-list>li:nth-child(2){
    margin-left: 16px;
    transition: all 0.5s 0.6s;
}
.job-list>li:nth-child(3){
    margin-top: 16px;
    transition: all 0.5s 1s;
}
.job-list>li:nth-child(4){
    margin-left: 16px;
    margin-top: 16px;
    transition: all 0.5s 1s;
}
.section-6.active .job-list>li{
    transform: translateX(0);
    opacity: 1;
}

.job-list>li>img{
    flex-shrink: 0;
    display: block;
    width: 100%;
    height: 200px;
}
.job-list>li>div{
    padding: 20px 40px 30px;
    background-color: #fff;
}
.job-list>li>div>h4{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
}
.job-list>li>div>p{
    margin-top: 8px;
    font-size: 18px;
    line-height: 25px;
}


.section-7{
    padding-top: 108px;
    padding-bottom: 158px;
    background-image: url(../images/bg_hezuo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.section-7 .content-div>h3{
    font-size: 20px;
    margin-bottom: 4px;
    color: #A9B8E2;

    transform: translateX(50px);
    transition: all 0.4s;
    opacity: 0;
}
.section-7.active .content-div>h3{
    transform: translateX(0px);
    opacity: 1;
}
.section-7 .content-div>h4{
    font-size: 40px;
    line-height: 56px;
    color: #202F44;

    transform: translateX(50px);
    transition: all 0.4s 0.2s;
    opacity: 0;
}
.section-7.active .content-div>h4{
    transform: translateX(0px);
    opacity: 1;
}
.section-7 .content-div>p{
    font-size: 20px;
    line-height: 24px;
    margin-top: 24px;
    color: #546175;
    transform: translateY(30px);
    transition: all 0.4s 0.5s;
    opacity: 0;
}
.section-7 .content-div>p:nth-of-type(2){
    display: none;
}

.section-7.active .content-div>p{
    transform: translateY(0px);
    opacity: 1;
}

.section-7 .item-list{
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.section-7 .item-list>li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    padding: 20px 40px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    transform: translateY(30px);
    opacity: 0;
}
.section-7 .item-list>li:nth-child(1){
    transition: all 0.4s 0.5s;
}
.section-7 .item-list>li:nth-child(2){
    transition: all 0.4s 0.7s;
}
.section-7.active .item-list>li{
    transform: translateY(0px);
    opacity: 1;
}
.section-7 .item-list>li+li{
    margin-left: 16px;
}
.section-7 .item-list>li>div>h4{
    font-size: 24px;
    line-height: 33px;
    color: #202F44;
}
.section-7 .item-list>li>div>p{
    font-size: 18px;
    line-height: 25px;
    margin-top: 8px;
    color: #202F44;
}
.section-7 .item-list>li>div>p>a{
    color: #2252DD;
}
.section-7 .item-list>li>img{
    display: block;
}


footer{
    padding-top: 97px;
    padding-bottom: 44px;
    background-color: #1F1F25;
}
.f-content{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.f-content .nav-div>ul{
    display: flex;
    flex-wrap: wrap;
}
.f-content .nav-div>ul>li{
    /* width: 33%; */
    /* margin-bottom: 15px; */
}
.f-content .nav-div>ul>li+li{
    margin-left: 20px;
}
.f-content .nav-div>ul>li>a{
    display: block;
    font-size: 16px;
    color: #fff;
}
.f-content .nav-div>p{
    margin-top: 20px;
    font-size: 12px;
    color: #A8B0BB;
    text-align: center;
}
.footer-right{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-div{
    margin-right: 135px;
}
.contact-div>p{
    font-size: 13px;
    line-height: 18px;
    
    color: #A8B0BB;
}
.contact-div>p+p{
    margin-top: 12px;
}
.contact-div>p>img{
    display: inline-block;
    vertical-align: middle;
}
.code-div{
    text-align: center;
}
.code-div>h3{
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}
.code-div>img{
    width: 82px;
    height: 82px;
    margin-top: 10px;
    background-color: violet;
}


.mini-nav-list{
    z-index: 20;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.mini-nav-list>li{
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #666;
    transition: all 0.3s;
}
.mini-nav-list>li+li{
    margin-top: 10px;
}
.mini-nav-list>li.active{
    background-color: #3EECB5;
}



.loading-div{
    z-index: 50;
    position: fixed;
    left: 50%;
    top: 0;
    width: 100%;
    max-width: 750px;
    height: 100%;
    line-height: 100vh;
    transform: translateX(-50%);
    font-size: 0.8rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
}
.hide{
    display: none
}



.mobile-menu-btn{
    display: none;
}
.section-2-p2{
    display: none;
}

.section-5-p2{
    display: none;
}



.job-list>li>img.section-6-img2{
    display: none;
}


.place-pc{
    opacity: 0;
}

/* 移动端 */
@media screen and (max-width: 750px){
    .view-section{
        min-width: auto;
    }
    .w-main{
        width: 100%;
    }
    .logo-title>img{
        /* width: 5rem; */
    }
    .header-content{
        padding: 0.5rem 0.75rem;
        height: auto;
    }
    .nav-list{
        position: absolute;
        top: 2.2rem;
        right: -100%;
        display: block;
        padding: 0.5rem;
        background-color: #fff;
        transition: all 0.4s;
    }
    .nav-list.active{
        right: 0;
    }
    .nav-list>li>a{
        line-height: 1.8em;
        font-size: 0.7rem;
        color: #333;
    }
    .nav-list>li+li{
        margin-left: 0;
    }
    .tab-lang{
        font-size: 0.7rem;
    }
    .tab-lang>a{
        font-size: 0.7rem;
        color: #fff;
    }
    .place-pc{
        display: none;
    }

    .mobile-menu-btn{
        position: relative;
        box-sizing: border-box;
        display: block;
        width: 1.2rem;
        height: 1.2rem;
        padding: 0.15rem;
    }
    .mobile-menu-btn>span{
        position: absolute;
        left: 0.15rem;
        right: 0.15rem;
        display: inline-block;
        height: 0.15rem;
        background-color: #fff;
    }
    .mobile-menu-btn>span:nth-child(1){
        top: 0.15rem;
    }
    .mobile-menu-btn>span:nth-child(2){
        top: 50%;
        transform: translateY(-50%);
    }
    .mobile-menu-btn>span:nth-child(3){
        bottom: 0.15rem;
    }

    header{
        background-color: #1F1F25;
        box-shadow: 0 0 5px rgb(60 60 60);
    }
    .section-1{
        margin-top: 2.2rem;
    }
    .section-1>video{
        background-color: #1D1E1F;
    }
    .section-1 .content-div>img{
        width: 64%;
        margin-bottom: 0.6rem;
    }
    .section-1>.content-div>p{
        font-size: 0.6rem;
        line-height: 0.75rem;
    }
    .scroll-tips{
        display: none;
    }
    .section-1>.content-div>a>span{
        font-size: 0.7rem;
    }
    .section-1>.content-div>a>img{
        width: 2rem;
    }
    .section-1>.content-div>a{
        display: none;
    }
    .section-1>a.mobile-play-btn{
        z-index: 10;
        position: absolute;
        right: 1.5rem;
        bottom: 1.5rem;
        display: inline-block;
        width: 2rem;
    }
    .section-1>a.mobile-play-btn>img{
        display: block;
        width: 100%;
    }
    .section-1>a.mobile-play-btn.active{
        display: none;
    }

    .section-2{
        padding: 3rem 1.6rem 5rem;
        background-size: auto 100%;
    }
    .section-2 h3{
        font-size: 0.6rem;
    }
    .section-2 h4{
        font-size: 1rem;
        line-height: 1.4rem;
        margin-top: 0.5rem;
    }
    .section-2 p{
        margin-top: 1.5rem;
        font-size: 0.65rem;
        line-height: 1.8em;
    }
    .section-2-p1{
        display: none;
    }
    .section-2-p2{
        display: block;
    }
    .section-2 img{
        width: 13.1rem;
    }


    .section-3{
        padding: 1.2rem 1.6rem 1.65rem;
    }
    .section-3 h3{
        font-size: 0.6rem;
    }
    .section-3 h4{
        font-size: 1rem;
        line-height: 1.6rem;
    }

    .section-3 .title-div>img{
        margin-left: 2.2rem;
        width: 9.4rem;
    }
    .section-3 .title-div>div{
        flex-shrink: 0;
    }
    .section-3 .imgs-div{
        margin-top: 2.15rem;
        margin-bottom: 2.25rem;
    }
    .section-3 .imgs-div>div>img{
        width: 5.1rem;
        height: 5.1rem;
    }
    .section-3 .imgs-div>div>span{
        font-size: 0.6rem;
        line-height: 0.75rem;
    }

    .section-3 .imgs-div>div.circle-2>img{
        width: 8.73rem;
    }
    .section-3 .imgs-div>div.circle-2>span+span{
        right: 9%;
    }

    .section-3.active .imgs-div>div.circle-1{
        left: -4rem;
    }
    .section-3.active .imgs-div>div.circle-3{
        right: -4rem;
    }
    

    .section-3>.content-div>img{
        width: 11.4rem;
    }

    .section-4 .swiper-slide>img{
        width: 35rem;
    }
    .section-4 .swiper-slide:nth-child(1)>img{
        width: 11.25rem;
    }
    .section-4 .swiper-slide .info-div>.title-div{
        left: 1.6rem;
        top: 1.2rem;
    }
    .info-div>.title-div>p{
        font-size: 0.6rem;
        line-height: 0.7rem;
    }
    .info-div>.title-div>h3{
        font-size: 1rem;
        line-height: 1.4rem;
    }
    .info-div>.name-div>img{
        width: 2rem;
    }
    .info-div>.name-div>span{
        font-size: 0.8rem;
        line-height: 1.1rem;
    }
    .info-div>.name-div>p{
        font-size: 0.6rem;
        line-height: 0.85rem;
        padding-right: 1.4rem;
        margin-top: 0.4rem;
    }
    .info-div>.name-div>p:first-of-type{
        display: none;
    }
    .info-div>.name-div>p:last-of-type{
        display: block;
    }
    .section-4 .swiper-slide .info-div>.name-div{
        left: 1.2rem;
        top: 4.7rem;
    }

    .section-4 .swiper-slide:nth-child(1) .info-div>.name-div{
        left: 1.6rem;
        padding-right: 0rem;
    }

    .section-4 .swiper-slide .info-div>.bottom-txt{
        left: 1.2rem;
        bottom: 1.6rem;
        font-size: 0.6rem;
        line-height: 0.85rem;
    }
    .section-4 .swiper-slide:nth-child(1) .info-div>.bottom-txt{
        left: 1.6rem;
    }

    .section-5{
        padding: 1.2rem 1.6rem 0;
    }
    .section-5 .content-div{
        padding-left: 0;
    }
    .section-5 .content-div::before{
        content: none;
    }
    .section-5 h3{
        font-size: 0.6rem;
        line-height: 0.7rem;
    }
    .section-5 h4{
        font-size: 1rem;
        line-height: 1.4rem;
    }
    .section-5 .tab-box{
        display: block;
        margin-top: 1.2rem;
    }
    .tab-div{
        position: relative;
        display: flex;
        align-items: flex-start;
        
    }
    .tab-div::before{
        content: '';
        z-index: 10;
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        width: 100%;
        height: 1px;
        background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 35%, rgba(255,255,255,0.2) 63%, rgba(255,255,255,0) 100%);
    }
    .tab-div>div{
        position: relative;
        padding-bottom: 0.4rem;
    }
    .tab-div>div+div{
        margin-top: 0;
        margin-left: 1.5rem;
    }
    .tab-div>div.active::before{
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        width: 2rem;
        height: 1px;
        background-color: #fff;
    }
    .tab-div>div>img{
        width: 4.9rem;
    }
    .text-img-div>div{
        padding-top: 0.6rem;
    }
    .text-img-div>div>img{
        display: block;
        width: 15.55rem;
    }
    

    .section-5-p1{
        display: none;
    }
    .section-5-p2{
        display: block;
        
        margin-bottom: 1.2rem;
        font-size: 0.65rem;
        line-height: 0.9rem;
        color: #fff;
    }

    .section-6 .content-div{
        padding: 1.2rem 1.6rem 1.7rem;
    }
    .section-6 .content-div>div>h3{
        font-size: 0.6rem;
        line-height: 0.7rem;
    }
    .section-6 .content-div>div>h4{
        font-size: 1rem;
        line-height: 1.4rem;
    }
    .section-6 .content-div>div>p{
        margin-top: 0.6rem;
        font-size: 0.65rem;
        line-height: 0.9rem;
    }
    .section-6 .content-div>div>p:nth-of-type(1){
        display: none;
    }
    .section-6 .content-div>div>p:nth-of-type(2){
        display: block;
    }

    .job-list{
        margin-top: 1.2rem;
        display: block;
    }
    .job-list>li{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .job-list>li:nth-child(2){
        margin-left: 0;
    }
    .job-list>li:nth-child(3){
        margin-top: 0.6rem;
    }
    .job-list>li:nth-child(4){
        margin-left: 0;
        margin-top: 0.6rem;
    }
    .job-list>li+li{
        margin-top: 0.6rem;
    }
    .job-list>li>img{
        width: 4rem;
        height: 4rem;
    }
    .job-list>li>div{
        flex-grow: 1;
        padding: 0.55rem 0.6rem;
    }
    .job-list>li>div>h4{
        font-size: 0.7rem;
        line-height: 1rem;
    }
    .job-list>li>div>p{
        margin-top: 0.2rem;
        font-size: 0.6rem;
        line-height: 0.85rem;
        color: #546175;
    }
    .job-list>li>div>p.mini-p{
        line-height: 0.7rem;
        margin-top: 0;
    }

    .job-list>li>img.section-6-img1{
        display: none;
    }
    .job-list>li>img.section-6-img2{
        display: block;
    }

    .section-7{
        padding: 1.2rem 1.6rem 1.7rem;
    }
    .section-7 .content-div>h3{
        font-size: 0.6rem;
        line-height: 0.7rem;
    }
    .section-7 .content-div>h4{
        font-size: 1rem;
        line-height: 1.4rem;
    }
    .section-7 .content-div>p:nth-of-type(1){
        display: none;
    }
    .section-7 .content-div>p:nth-of-type(2){
        display: block;
    }
    .section-7 .content-div>p{
        font-size: 0.65rem;
    }
    .section-7 .item-list{
        display: block;
        margin-top: 1.2rem;
    }
    .section-7 .item-list>li{
        padding: 0.75rem;
    }
    .section-7 .item-list>li>div>h4{
        font-size: 0.7rem;
        line-height: 1rem;
    }
    .section-7 .item-list>li>div>p{
        font-size: 0.6rem;
        line-height: 0.85rem;
    }
    .section-7 .item-list>li>img{
        width: 3rem;
    }
    .section-7 .item-list>li+li{
        margin-left: 0;
        margin-top: 0.6rem;
    }

    footer{
        padding: 1.2rem 0 2rem;
    }
    .f-content{
        position: relative;
        display: block;
        padding-bottom: 1rem;
    }
    .f-content .nav-div>ul{
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 1.6rem;
    }
    .f-content .nav-div>ul>li{
        width: 33%;
        margin-bottom: 0.8rem;
    }
    .f-content .nav-div>ul>li+li{
        margin-left: 0;
    }
    .f-content .nav-div>ul>li>a{
        font-size: 0.7rem;
    }
    .f-content .nav-div>p{
        z-index: 10;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: 0;
        font-size: 0.6rem;
        text-align: center;
    }
    .footer-right{
        padding:  0.7rem;
        justify-content: center;
    }
    

    .contact-div{
        margin-right: 0;
    }
    .contact-div>p{
        
        font-size: 0.6rem;
        line-height: 0.6rem;
    }
    .code-div>h3{
        font-size: 0.6rem;
        line-height: 1rem;
    }
    .code-div>img{
        width: 3.5rem;
        height: 3.5rem;
    }

    .mini-nav-list{
        right: 0.5rem;
    }
    .mini-nav-list>li{
        width: 0.4rem;
        height: 0.4rem;
    }
}



/* 英文版覆盖 */
.en-body .section-4 .swiper-slide .info-div>.bottom-txt{
    background-image: url(../images/en/icon-2.png);
}
.en-body .section-4 .swiper-slide:nth-child(1) .info-div>.bottom-txt{
    left: 129px;
    background-image: url(../images/en/icon-1.png);
}

.en-body .section-4 .swiper-slide:nth-child(1) .info-div:hover>.bottom-txt{
    background-image: url(../images/en/icon-1-active.png);
}
