
/*h5侧滑导航*/
.section-mobile-nav{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 299;
    display: none;
}
.section-mobile-nav .content::before{
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background-color: rgba(34, 34, 34, 0.2);
}
.section-mobile-nav .item-header{
    position: relative;
    height: 60px;
    padding: 0 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-position: center 0;
    background-repeat: no-repeat;
    -o-background-size: cover;
       background-size: cover;
    /* background-image: url(../images/navbar.png); */
    background-repeat: no-repeat;
    background-position: center center;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
    /* background-color: rgba(100, 100, 100, 0.1); */
}
.section-mobile-nav .item-header .logo{
    height: 30px;
}
.section-mobile-nav .item-header .menu-btn{
    width: 32px;
    height: 32px;
    background-color: #000;
    background-color: #A90000;
    border-radius: 3px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 7px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}
.section-mobile-nav .item-header .menu-btn .line{
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 3px 0;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    -moz-transition: transform 0.3s, -moz-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
    position: relative;
    -webkit-transform-origin: 0 0;
       -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
         -o-transform-origin: 0 0;
            transform-origin: 0 0;
}
.section-mobile-nav .item-header .menu-btn .line:nth-child(2){
    margin: 4px 0;
}
.section-mobile-nav.active .item-header .menu-btn .line{
    background-color: #fff;
}
.section-mobile-nav.active .item-header .menu-btn .line:nth-child(1){
    -webkit-transform: rotate(45deg) scaleX(1.3);
       -moz-transform: rotate(45deg) scaleX(1.3);
        -ms-transform: rotate(45deg) scaleX(1.3);
         -o-transform: rotate(45deg) scaleX(1.3);
            transform: rotate(45deg) scaleX(1.3);
    top: 0px;
    left: 1px;
}
.section-mobile-nav.active .item-header .menu-btn .line:nth-child(2){
    opacity: 0;
}
.section-mobile-nav.active  .item-header .menu-btn .line:nth-child(3){
    -webkit-transform: rotate(-45deg) scaleX(1.3);
       -moz-transform: rotate(-45deg) scaleX(1.3);
        -ms-transform: rotate(-45deg) scaleX(1.3);
         -o-transform: rotate(-45deg) scaleX(1.3);
            transform: rotate(-45deg) scaleX(1.3);
    top: 1px;
    left: 0px;
}
.section-mobile-nav .mask{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
}
.section-mobile-nav .item-nav{
    width: 60%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(-100%, 0);
       -moz-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
         -o-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    background-color: #000;
    background-color: #900000;
    padding: 20px;
    overflow-y: auto;   
}
.section-mobile-nav .item-nav .logo{
    width: 100px;
    margin-bottom: 30px;
}
.section-mobile-nav .navbar{
    list-style: none;
    background-repeat: no-repeat;
    background-position: center center;
    -o-background-size: cover;
       background-size: cover;
}
.section-mobile-nav .item-search{
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    display: none;
}
.section-mobile-nav .item-search .search-input{
    width: 100%;
    height: 36px;
    border: solid 1px #fff;
    background: transparent;
    color: #fff;
    padding: 0 40px 0 10px;
}
.section-mobile-nav .item-search .search-icon{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    cursor: pointer;
}
.section-mobile-nav .item-search .search-btn{
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 100%;
    border: 0;
    background: transparent url(../images/icon-search2.png) no-repeat 5px center;
    -o-background-size: 16px auto;
       background-size: 16px auto;
    cursor: pointer;
}
.section-mobile-nav .menu{
    list-style: none;
    padding: 10px 0;
    position: relative;
}
.section-mobile-nav .menu .arrow{
    display: block;
    position: absolute;
    top: 17px;
    right: 0px;
    width: 14px;
    opacity: 0.6;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-mobile-nav .menu-handle{
    display: inline-block;
    font-size: 16px;
    color: #fff;
}
.section-mobile-nav .menu-drop{
    width: 100%;
    padding: 0 0 0 1.5em;
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}
.section-mobile-nav .menu-drop .sub-menu{
    margin-top: 20px;
    list-style: none;
}
.section-mobile-nav .menu-drop a{
    font-size: 14px;
    color: #fff;
}
.section-mobile-nav .menu.active .arrow{
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.section-mobile-nav .menu.active .menu-drop{
    max-height: 400px;
    visibility: visible;
}
.section-mobile-nav.active .close{
    width: 24px;
    height: 24px;
    position: absolute;
    right: 10px;
    top: 10px;
    background-image: url(../images/icon-close.png);
    background-repeat: no-repeat;
    background-position: center center;
    -o-background-size: 75% auto;
       background-size: 75% auto;
}
.section-mobile-nav.active .item-nav{
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
}
.section-mobile-nav.active .mask{
    display: block;
}
.page.active{
    left: -252px;
}
body.active{
    overflow: hidden;
}


@media screen and (max-width: 1200px) {
    .w12{
        width: 100%;
    }

    .section-mobile-nav{
        display: block;
    }


    .section-footer .inner{
        padding: 0 10px 20px;
    }
    .section-footer .item1{
        display: block;
    }
    .section-footer .item1 .col-2{
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }
    .section-footer .item1 .col-2 dl{
        margin-left: 0;
        margin-right: 40px;
        margin-top: 15px;
    }
    .section-footer .item1 .col-2 dl dt a{
        font-size: 13px;
    }
    .section-footer .item1 .col-2 dl dd a{
        margin-top: 10px;
    }
    .section-footer .item1 .col-3 .row1{
        font-size: 24px;
        margin-top: 30px;
    }
    .section-footer .item1 .col-3 .row2{
        font-size: 13px;
    }
    .section-footer .item-copyright{
        display: block;
    }
    .section-footer .item-copyright .row3{
        width: 100%;
        margin-top: 20px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    

    .section-header{
        display: none;
    }

    .section-banner{
        /* height: 270px; */
        /* margin-top: 60px; */
    }
    .section-banner .banner.pc{
        display: none;
    }
    .section-banner .banner.mobile{
        display: block;
    }
    .section-banner .content-title{
        bottom: 70px;
    }
    .section-banner .content-title .title{
        font-size: 30px;
    }
    .section-banner .swiper-pagination{
        bottom: 10px;
    }
    .section-banner .item-title{
        left: 15px;
    }
    .section-banner .item-title .row1 h1{
        font-size: 24px;
    }
    .section-banner .item-title .row2 p{
        font-size: 16px;
    }
    .section-banner .item-title .row3{
        margin-top: 20px;
    }
    .section-banner .item-title .row3 .btn{
        width: 110px;
        height: 32px;
        line-height: 30px;
        border: 1px solid #fff;
        font-size: 14px;
    }
    .section-banner .item-title .row3 .btn .icon{
        width: 16px;
    }
    .section-banner .item-1{
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    .section-banner .item-1 .row1 h1{
        font-size: 24px;
    }
    .section-banner .item-1 .row3 p{
        width: 100%;
        font-size: 15px;
        margin-top: 10px;
    }
    .section-banner .item-1 .row2{
        font-size: 15px;
    }
    .section-banner .item-1 .row3 p{
        width: 100%;
        font-size: 15px;
        margin-top: 10px;
    }
    .section-banner .swiper-nums{
        right: 20px;
    }
    .section-banner .swiper-nums .line{
        width: 22px;
        margin: 10px 0;
    }
    .section-banner .swiper-tabs{
        display: none;
    }
    .section-banner .arrow{
        left: 10px;
        width: 24px;
        height: 46px;
    }
    .section-banner .swiper-button-next{
        right: 10px;
        left: auto;
    }

    
    .section-index-about{
        padding: 30px 10px;
    }
    .section-index-about p{
        line-height: 26px;
    }
    .section-index-about .block-more{
        margin-top: 30px;
    }
    .section-index-about .item1{
        width: 100%;
        font-size: 15px;
        text-align: left;
        text-indent: 2em;
    }
    .section-index-about .item .list{
        margin-top: 30px;
    }
    .section-index-about .item dt .num{
        font-size: 30px;
    }
    .section-index-about .item dt .unit{
        font-size: 18px;
        margin-left: 5px;
    }
    .section-index-about .item dd{
        font-size: 14px;
    }
    .section-index-about .item{
        width: 100%;
        margin-top: 30px;
    }
    .section-index-about .item-title{
        font-size: 30px;
        padding-bottom: 10px;
    }
    .section-index-about-2{
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 0;
    }
    .section-index-about .inner{
        background-position: 0 bottom;
    }
    .section-index-about.move .inner{
        background-position: 0 bottom;
        background-position: 0 60%;
        display: block;
    }
    .section-index-about-2 .content{
        height: auto;
        padding: 0 10px;
    }
    .section-index-about-2 .item .list:nth-child(1){
        margin-right: 10px;
    }
    .section-index-about-1 .item .list:nth-child(1){
        margin-right: 0;
        padding-left: 11px;
        padding-left: 0;
    }
    .section-index-about-1 .item .list:nth-child(1) dl:nth-child(2){
        margin-right: -10px;
    }
    .section-index-about-1 .item .list:nth-child(2){
        /* margin-right: 10px; */
    }


    .section-index-custom{
        display: block;
        padding: 70px 10px 20px;
    }
    .section-index-custom .content-bodyer .swiper-slide{
        display: block;
    }
    .section-index-custom .content-bodyer .item1{
        width: 100%;
        height: 45vh;
    }
    .section-index-custom .content-bodyer .item2{
        width: 100%;
        margin-top: 10px;
    }
    .section-index-custom .content-bodyer .item2 .row1{
        font-size: 22px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .section-index-custom .content-bodyer .item2 .row2{
        font-size: 15px;
        line-height: 26px;
        margin-top: 10px;
    }
    .section-index-custom .content-bodyer .item2 .row-more{
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .section-index-custom .swiper-pagination{
        margin-top: 50px;
    }
    .section-index-custom .swiper-pagination .swiper-pagination-bullet{
        width: 25px;
    }
    .section-index-custom .swiper-pagination .swiper-pagination-bullet-active{
        width: 50px;
    }

    

    .section-index-category .swiper-wrapper{
        display: block;
    }
    .section-index-category .description{
        display: none;
    }
    .section-index-category .content-bodyer .swiper-slide{
        height: 33.33vh;
        display: block;
    }
    .section-index-category .content-bodyer .item1{
        height: 100%;
    }
    .section-index-category .content-bodyer .active{
        -webkit-box-flex: 0;
        -webkit-flex: none;
           -moz-box-flex: 0;
            -ms-flex: none;
                flex: none;
    }
    .section-index-category .content-bodyer .active .item1::after{
        opacity: 0.6;
    }
    .section-index-category .content-bodyer .item2{
        left: 10px;
        -webkit-transition: 0.6s 0s ease;
        -o-transition: 0.6s 0s ease;
        -moz-transition: 0.6s 0s ease;
        transition: 0.6s 0s ease;
    }
    .section-index-category .content-bodyer .item2 .row1{
        font-size: 16px;
    }
    .section-index-category .content-bodyer .item2 .row2{
        opacity: 1;
    }
    .section-index-category .content-bodyer .item2 .row2::after{
        display: none;
    }
    .section-index-category .content-bodyer .active .item2{
        top: 60%;
    }
    .section-index-category .content-bodyer .active .item2 .row1{
        font-size: 20px;
        color: #fff;
    }
    
    



    .section-partners-logo{
        padding: 70px 0 0;
    }
    .section-partners-logo .item{
        margin: 10px 0;
    }
    .section-partners-logo .list a{
        margin: 6px 12px;
    }
    .section-partners-logo .list img{
        max-width: 80px;
        max-height: 25px;
    }



    .section-index-news{
        padding: 20px 0 20px 10px;
    }
    .section-index-news .swiper-container{
        padding-right: 0;
    }
    .section-index-news .swiper-slide{
        width: 68%;
        margin: 0 10px 0 0;
    }
    .section-index-news .swiper-slide .img{
        height: 180px;
    }
    .section-index-news .swiper-slide .title{
        font-size: 16px;
        margin-top: 5px;
    }
    .section-index-news .swiper-slide .description{
        margin-top: 5px;
    }
    .section-index-news .swiper-slide .item-more{
        margin-top: 10px;
    }
    .section-index-news .swiper-scrollbar{
        width: 70%;
        margin-top: 30px;
    }


    .section-banner-normal{
        height: 300px;
    }
    .section-banner-normal.banner1{
        height: 250px;
    }
    .section-banner-normal .item-title{
        left: 20px;
        right: 20px;
    }
    .section-banner-normal .item-title .row1 h1{
        font-size: 32px;
        padding: 0;
    }
    .section-banner-normal.banner1 .item-title .row1 h1{
        font-size: 32px;
    }
    .section-banner-normal .logo{
        margin-bottom: 20px;
    }

    
    .public-title{
        font-size: 24px;
    }
    .public-title .en{
        letter-spacing: 5px;
    }


    .section-enter-about{
        padding: 10px;
    }
    .section-enter-about .content{
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
           -moz-box-orient: vertical;
           -moz-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    .section-enter-about .public-title{
        margin-top: 40px;
    }
    .section-enter-about .item-list .list{
        margin-top: 20px;
    }
    .section-enter-about .item-list dt{
        margin-bottom: 10px;
    }
    .section-enter-about .item-list dt .text{
        font-size: 16px;
    }
    .section-enter-about .content-right{
        width: 100%;
        height: auto;
        margin-left: 0;
    }


    .section-enter-global{
        padding: 20px 0;
    }
    .section-enter-global .content-title{
        padding: 0 10px;
    }
    .section-enter-global .item-title .list{
        margin-top: 20px;
    }
    .section-enter-global .item-title .text{
        font-size: 16px;
    }
    .section-enter-global .item-title .line{
        width: 30px;
        margin-right: 10px;
    }
    .section-enter-global .item-title .line::after{
        width: 20px;
    }
    .section-enter-global .item-title .active .text{
        font-size: 18px;
    }
    .section-enter-global .content-swiper{
        margin: 10px 0 0 0;
        padding-left: 10px;
        height: 210px;
    }
    .section-enter-global .swiper-slide{
        width: 250px;
        height: 180px;
        margin-left: 10px;
    }
    .section-enter-global .swiper-pagination-bullet{
        width: 20px;
    }
    .section-enter-global .swiper-pagination-bullet-active{
        width: 40px;
    }
    .section-enter-global .swiper-arrow .arrow{
        width: 40px;
        height: 40px;
        top: 90px;
    }
    .section-enter-global .swiper-container:nth-child(2) .swiper-arrow{
        display: block;
    }
    .section-enter-global .swiper-container:nth-child(3) .swiper-arrow{
        display: block;
    }


    .section-enter-culture{
        padding: 50px 10px 10px;
    }
    .section-enter-culture .content-bodyer{
        margin-top: 20px;
    }
    .section-enter-culture .content-bodyer .swiper-slide{
        margin-left: 10px;
    }
    .section-enter-culture .content-bodyer .item1{
        height: 200px;
    }
    .section-enter-culture .content-bodyer .item2 .row1{
        font-size: 20px;
    }
    .section-enter-culture .content-bodyer .item2 .row2{
        font-size: 14px;
    }


    .section-enter-develop{
        margin: 0 10px;
    }
    .section-enter-develop .content{
        padding-top: 40px;
        height: 460px;
    }
    .section-enter-develop .public-title{
        margin-left: 10px;
    }
    .section-enter-develop .content-detail{
        left: 10px;
        top: 100px;
    }
    .section-enter-develop .content-detail .row1{
        font-size: 80px;
    }
    .section-enter-develop .content-detail .row2{
        font-size: 16px;
        margin-top: 20px;
    }
    .section-enter-develop .content-detail .row3{
        margin-top: 30px;
    }
    .section-enter-develop .swiper-year{
        height: auto;
        top: 50px;
        bottom: 50px;
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0);
    }
    .section-enter-develop .swiper-year .swiper-slide{
        padding: 0 30px 0 0;
    }
    .section-enter-develop .swiper-year .list{
        margin-top: 10px;
    }
    .section-enter-develop .content-pop{
        left: 3%;
        right: 30%;
        top: 200px;
        width: auto;
    }
    .section-enter-develop .content-pop .imgbox{
        height: 170px;
        border-color: #fff;
    }
    .section-enter-develop .content-pop .detail{
        padding: 10px 0 0;
        font-size: 13px;
    }


    .section-enter-manufacture{
        padding-bottom: 20px;
    }
    .section-enter-manufacture .public-title{
        padding: 0 10px;
        margin-top: 60px;
    }
    .section-enter-manufacture .content-swiper{
        width: 100%;
        margin: 0;
        padding: 0 10px;
    }
    .section-enter-manufacture .swiper-container{
        height: auto;
        padding: 20px 0 0;
    }
    .section-enter-manufacture .swiper-slide{
        width: 100%;
        height: 220px;
        margin-top: 0;
        margin-right: 0;
    }
    .section-enter-manufacture .swiper-slide-prev{
        margin-left: 0;
    }
    .section-enter-manufacture .swiper-slide-active{
        /* height: 260px; */
        /* margin-top: -30px; */
    }
    .section-enter-manufacture .swiper-slide .row1{
        font-size: 16px;
        padding: 0 10px;
    }
    .section-enter-manufacture .swiper-slide .row2{
        font-size: 14px;
        padding: 0 10px;
    }
    .section-enter-manufacture .swiper-slide .row3{
        margin-top: 20px;
    }
    .section-enter-manufacture .swiper-pagination{
        margin-top: 10px;
    }
    .section-enter-manufacture .swiper-pagination-bullet{
        width: 20px;
    }
    .section-enter-manufacture .swiper-pagination-bullet-active{
        width: 40px;
    }

    
    .section-enter-responsibility{
        padding: 20px 10px 10px;
    }
    .section-enter-responsibility .content{
        display: block;
        margin-top: 0;
    }
    .section-enter-responsibility .item-img{
        margin-top: 20px;
    }
    .section-enter-responsibility .item-img .img{
        width: 100%;
    }
    .section-enter-responsibility .content-left{
        width: 100%;
    }
    .section-enter-responsibility .content-right{
        padding: 10px;
    }
    .section-enter-responsibility .item-list .list{
        margin-top: 15px;
    }
    .section-enter-responsibility .item-list dt{
        margin-bottom: 10px;
    }
    .section-enter-responsibility .item-list dt .text{
        font-size: 16px;
    }


    .section-talent-about .content{
        height: 500px;
        padding: 60px 10px;
    }
    .section-talent-about .content-detail{
        width: 100%;
    }
    .section-talent-about .row1{
        font-size: 18px;
    }
    .section-talent-about .row2{
        font-size: 14px;
    }


    .section-talent-idea{
        padding: 50px 10px 10px;
    }
    .section-talent-idea .item1{
        width: 100%;
        margin-top: 20px;
    }
    .section-talent-idea .item-list .list{
        width: 100%;
        height: 80px;
        padding: 0 10px;
        margin-top: 10px;
    }
    .section-talent-idea .item-list .list dt{
        margin-right: 15px;
        font-size: 18px;
        white-space: nowrap;
    }
    .section-talent-idea .item-list .list.left{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
           -moz-box-orient: horizontal;
           -moz-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .section-talent-idea .item-list .list.left dt{
        margin-left: 0;
        margin-right: 15px;
    }
    .section-talent-idea .item-list .list dd{
        font-size: 14px;
    }


    .section-talent-recruit{
        padding: 40px 10px 10px;
    }
    .section-talent-recruit .content-bodyer{
        margin-top: 20px;
    }
    .section-talent-recruit .item-list{
        display: block;
        width: 100%;
    }
    .section-talent-recruit .swiper-slide{
        margin: 10px 0 0;
    }
    .section-talent-recruit .item1{
        height: 220px;
    }
    .section-talent-recruit .item2{
        left: 10px;
        right: 10px;
    }
    .section-talent-recruit .item2 .row2{
        height: auto;
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
    .section-talent-recruit .item2 .row3{
        height: auto;
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }


    .section-talent-news{
        padding: 40px 10px 20px;
    }
    .section-talent-news .content-bodyer{
        margin-top: 20px;
    }
    .section-talent-news .content-bodyer .item1{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .section-talent-news .content-bodyer .item1 .detail{
        padding: 20px;
        left: 10px;
        right: 10px;
        width: auto;
    }
    .section-talent-news .content-bodyer .item1 .row1{
        font-size: 16px;
    }
    .section-talent-news .content-bodyer .item1 .row2{
        font-size: 14px;
        margin-top: 10px;
    }
    .section-talent-news .content-bodyer .item2{
        width: 100%;
        height: 250px;
    }
    .section-talent-news .swiper-pagination{
        margin-top: 20px;
    }
    .section-talent-news .swiper-pagination .swiper-pagination-bullet{
        width: 25px;
    }
    .section-talent-news .swiper-pagination .swiper-pagination-bullet-active{
        width: 50px;
    }


    .section-talent-contact{
        padding: 40px 0 30px;
    }
    .section-talent-contact .content-bodyer{
        display: block;
        margin-top: 30px;
    }
    .section-talent-contact .content-bodyer .item1{
        padding: 0;
    }
    .section-talent-contact .content-bodyer .item2{
        gap: 10px;
        margin-top: 30px;
    }
    .section-talent-contact .content-bodyer .item2 .list{
        -webkit-box-flex: 1;
        -webkit-flex: 1;
           -moz-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        width: auto;
        height: 60px;
        margin: 0;
    }
    .section-talent-contact .content-bodyer .item2 .list .icon{
        margin-right: 5px;
    }

    .bg-footer{
        padding: 10px;
    }


    .section-breadcrumb .nav{
        height: 50px;
        padding: 0 10px;
    }


    .section-talent-develop-1 .content{
        display: block;
        height: 350px;
        padding: 30px 10px 10px;
    }
    .section-talent-develop-1 .public-title{
        font-size: 20px;
    }
    .section-talent-develop-1 .content-detail{
        width: 100%;
        margin-top: 20px;
    }


    .section-talent-develop-2{
        padding: 10px 10px;
    }
    .section-talent-develop-2 .content{
        display: block;
    }
    .section-talent-develop-2 .content-img{
        width: 100%;
        height: auto;
    }
    .section-talent-develop-2 .content-detail{
        padding: 0;
    }
    .section-talent-develop-2 .public-title{
        font-size: 20px;
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .section-talent-develop-2 .list{
        margin-top: 10px;
    }


    .section-talent-develop-3{
        margin-bottom: 10px;
    }
    .section-talent-develop-3 .content{
        height: auto;
        padding: 30px 10px 30px;
    }
    .section-talent-develop-3 .public-title .title{
        font-size: 20px;
    }
    .section-talent-develop-3 .content-bodyer .item1{
        margin-top: 30px;
    }
    .section-talent-develop-3 .content-bodyer .item2 .list{
        margin-right: 10px;
        height: 40px;
    }


    .section-talent-recruit-1{
        padding: 10px 0;
    }
    .section-talent-recruit-1 .search{
        width: 100%;
        padding: 0 10px;
    }
    .section-talent-recruit-1 .input{
        width: auto;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
           -moz-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        height: 40px;
        padding: 0 10px;
    }
    .section-talent-recruit-1 .btn{
        width: 80px;
        margin-left: 10px;
        background-position: 15px center;
        -o-background-size: 16px auto;
           background-size: 16px auto;
        height: 40px;
        font-size: 16px;
        padding-left: 25px;
    }



    .section-talent-recruit-2{
        padding: 0 10px 20px;
    }
    .section-talent-recruit-2 .content{
        padding: 0 10px;
    }
    .section-talent-recruit-2 .content-header{
        padding: 15px 0;
    }
    .section-talent-recruit-2 .content-header .title{
        font-size: 16px;
    }
    .section-talent-recruit-2 .content-header .detail{
        display: block;
    }
    .section-talent-recruit-2 .icon-collapse{
        width: 20px;
        height: 20px;
    }


    .section-product-solve{
        padding: 40px 0 10px;
    }
    .section-product-solve .public-title{
        padding: 0 10px;
    }
    .section-product-solve .content-logo{
        margin-top: 20px;
    }
    .section-product-solve .content-logo .item{
        margin: 10px 0;
    }
    .section-product-solve .content-logo .list a{
        width: 130px;
        height: 70px;
        margin: 0 5px;
    }
    .section-product-solve .content-logo .list img{
        max-height: 50px;
    }
    
    
    .section-product-2{
        padding-bottom: 20px;
    }
    .section-product-2 .swiper-container{
        padding-left: 0;
    }
    .section-product-2 .swiper-slide{
        width: 180px;
        height: 180px;
    }
    .section-product-2 .swiper-slide .detail{
        left: 30px;
        right: 30px;
        top: 30px;
        bottom: 30px;
        opacity: 1;
    }
    .section-product-2 .swiper-slide .title{
        font-size: 16px;
    }
    .section-product-2 .swiper-slide .item-more{
        margin-top: 20px;
    }
    .section-product-2 .swiper-scrollbar{
        width: 200px;
        margin-top: 20px;
    }
    .section-product-2 .arrow{
        width: 50px;
        height: 50px;
        margin-top: -50px;
        left: 10px;
    }
    .section-product-2 .swiper-button-next{
        right: 10px;
        left: auto;
    }


    .section-product-workwear{
        padding: 40px 0 30px;
    }
    .section-product-workwear .public-title{
        padding: 0 10px;
    }
    .section-product-workwear .content{
        height: 350px;
        margin-top: 20px;
    }
    .section-product-workwear .content-bodyer .item1{
        bottom: 20px;
        padding: 20px 15px;
    }
    .section-product-workwear .content-bodyer .item1 .row1{
        font-size: 18px;
    }
    .section-product-workwear .content-bodyer .item1 .row2{
        font-size: 14px;
        margin-top: 20px;
    }
    .section-product-workwear .content-bodyer .item1 .row3{
        margin-top: 20px;
    }


    .section-product-private{
        padding: 20px 0 10px;
    }
    .section-product-private .public-title{
        padding: 0 10px;
    }
    .section-product-private .content-logo{
        padding: 0 10px;
        margin-top: 20px;
    }
    .section-product-private .content-logo .list{
        width: 25%;
    }
    .section-product-private .content-logo .logo{
        max-width: none;
        max-height: none;
        width: 100%;
    }
    .section-product-private .content-bodyer{
        margin-top: 20px;
    }
    .section-product-private .content-bodyer .item2{
        height: 300px;
    }
    .section-product-private .content-bodyer .item1 .detail{
        padding: 0 10px;
        top: 20px;
        bottom: 20px;
    }
    .section-product-private .content-bodyer .item1 .logo{
        max-width: 50%;
        max-height: none;
    }
    .section-product-private .content-bodyer .item1 .row2{
        margin-top: 20px;
        font-size: 18px;
        padding: 0 10%;
    }
    .section-product-private .content-bodyer .item1 .row3{
        font-size: 15px;
        padding: 0 10%;
    }
    .section-product-private .swiper-arrow{
        width: 96%;
    }
    .section-product-private .swiper-arrow .arrow{
        width: 17px;
        height: 36px;
    }


    .section-work-clothes-banner{
        padding: 50px 0 20px;
    }
    .section-work-clothes-banner .banner{
        height: 140px;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .section-work-clothes-banner .item1{
        margin-top: 30px;
        font-size: 30px;
    }
    .section-work-clothes-banner .item2{
        font-size: 14px;
        margin-top: 20px;
        width: 100%;
        padding: 0 10px;
    }


    .section-work-clothes-2{
        margin-top: 10px;
        padding: 0 0 0 10px ;
    }
    .section-work-clothes-2 .swiper-slide{
        width: 240px;
        height: 190px;
        margin-right: 10px;
    }
    .section-work-clothes-2 .swiper-slide .box{
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0);
        padding: 10px 10px;
    }
    .section-work-clothes-2 .swiper-slide .imgbox{
        width: 80%;
        height: 35%;
        margin-top: 10px;
    }
    .section-work-clothes-2 .swiper-slide.active .imgbox{
        margin-top: 10px;
    }
    .section-work-clothes-2 .swiper-slide .detail{
        visibility: visible;
        left: 10px;
        right: 10px;
        top: 90px;
        font-size: 14px;
    }


    .section-work-clothes-4 .content{
        height: 100px;
    }
    .section-work-clothes-4 .swiper-container{
        left: 10px;
    }
    .section-work-clothes-3 .item-list{
        display: block;
    }
    .section-work-clothes-3 .item-list dt{
        margin: 0 10px 0;
    }
    .section-work-clothes-3 .item-list dd{
        padding: 0 10px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
           -moz-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .section-work-clothes-3 .item-list .list{
        margin: 0;
        font-size: 14px;
    }

    .section-work-clothes-4 .swiper-slide{
        width: 160px;
        height: 90px;
        margin-right: 10px;
    }

    
    .section-work-clothes-5{
        padding: 40px 10px;
    }
    .section-work-clothes-5 .check-more{
        top: 35px;
    }
    .section-work-clothes-5 .swiper-wrapper {
        gap: 0;
    }
    .section-work-clothes-5 .swiper-slide{
        -webkit-box-flex: 0;
        -webkit-flex: none;
           -moz-box-flex: 0;
            -ms-flex: none;
                flex: none;
        width: 100%;
        margin-left: 0;
    }
    .section-work-clothes-5 .content-bodyer .item1{
        height: 400px;
    }
    .section-work-clothes-5 .content-bodyer .item2 .row2{
        visibility: visible;
    }
    .section-work-clothes-5 .content-bodyer .item2 .row3{
        visibility: visible;
    }
    .section-work-clothes-5 .swiper-slide-active .item2{
        top: 30%;
    }
    .section-work-clothes-5 .swiper-scrollbar{
        width: 250px;
        margin: auto;
        margin-top: 20px;
    }


    .section-work-clothes-6{
        padding: 30px 10px 20px;
    }
    .section-work-clothes-6 .content-header{
        padding-bottom: 20px;
    }
    .section-work-clothes-6 .swiper-scrollbar{
        position: static;
        width: 250px;
        margin: auto;
        margin-top: 20px;
    }
    .section-work-clothes-6 .swiper-slide{
        width: 100%;
    }
    .section-work-clothes-6 .swiper-slide .imgbox{
        height: 250px;
    }


    .section-work-clothes-7{
        padding: 40px 10px 20px;
    }
    .section-work-clothes-7 .content-bodyer{
        margin-top: 20px;
    }
    .section-work-clothes-7 .content-bodyer .item2{
        height: 250px;
    }
    .section-work-clothes-7 .swiper-arrow{
        height: 250px;
    }
    .section-work-clothes-7 .swiper-arrow .arrow{
        left: 10px;
        width: 18px;
        height: 38px;
    }
    .section-work-clothes-7 .swiper-arrow .arrow:nth-child(2){
        right: 10px;
    }
    .section-work-clothes-7 .content-bodyer .item1 .row1{
        margin-top: 10px;
    }
    .section-work-clothes-7 .content-bodyer .item1 .row1 b{
        font-size: 16px;
    }
    .section-work-clothes-7 .content-bodyer .item1 .row1 .year{
        margin-top: 0;
    }
    .section-work-clothes-7 .content-bodyer .item1 .row2{
        font-size: 14px;
    }
    .section-work-clothes-7 .swiper-slide .icon-play{
        width: 60px;
        height: 60px;
        top: 40%;
    }



    .section-news-1{
        padding: 40px 10px 20px;
    }
    .section-news-1 .content{
        display: block;
    }
    .section-news-1 .content-header{
        margin-bottom: 20px;
    }
    .section-news-1 .content-img{
        width: 100%;
        height: 230px;
    }
    .section-news-1 .content-detail{
        padding: 20px 0;
    }
    .section-news-1 .content-detail .row1 b{
        font-size: 18px;
    }
    .section-news-1 .content-detail .row2{
        font-size: 18px;
        margin-top: 10px;
    }
    .section-news-1 .content-detail .row3{
        margin-top: 10px;
    }
    .section-news-1 .content-detail .block-more{
        margin-top: 20px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .section-news-2 .content{
        display: block;
        padding: 10px 10px;
    }
    .section-news-2 .list{
        display: block;
        width: 100%;
        height: 115px;
        margin-bottom: 10px;
        padding: 15px;
    }
    .section-news-2 .list .row2{
        font-size: 18px;
        margin-top: 10px;
    }
    .section-news-2 .list .row3{
        margin-top: 10px;
    }
    .section-news-2 .list .row3 b{
        font-size: 18px;
    }
    .section-news-2 .list .row3 span{
        margin-top: 4px;
    }


    .section-news-download{
        padding: 30px 10px 10px;
    }
    .section-news-download .content{
        margin-top: 20px;
    }
    .section-news-download .search{
        position: static;
        margin: 15px 0 0;
    }
    .section-news-download .item-search{
        padding: 30px 0 0px;
    }
    .section-news-download .item-search .input{
        width: 90%;
    }
    .section-news-download .content .list{
        padding: 0 10px;
        height: 50px;
        margin-bottom: 10px;
    }
    .section-news-download .content .list .row1{
        width: 25px;
        height: 25px;
    }
    .section-news-download .content .list .row2{
        margin: 0 10px;
        font-size: 16px;
    }
    .section-news-download .content .list .row3{
        width: 20px;
        height: 20px;
    }
    .section-news-download .content .list .row4 img{
        height: 18px;
    }


    .section-news-list-search{
        padding: 20px 10px;
    }
    .section-news-list-search .content{
        display: block;
    }
    .section-news-list-search .mydate{
        width: 100%;
        height: 40px;
        padding: 0 10px;
        background-position: 96% center;
    }
    .section-news-list-search .search{
        margin-top: 10px;
    }
    .section-news-list-search .input{
        -webkit-box-flex: 1;
        -webkit-flex: 1;
           -moz-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        width: auto;
        flex: 1;
        height: 40px;
        padding: 0 10px;
    }
    .section-news-list-search .btn{
        width: 80px;
        background-position: 15px center;
        -o-background-size: 16px auto;
           background-size: 16px auto;
        height: 40px;
        font-size: 16px;
        padding-left: 25px;
    }


    .section-news-list-1{
        padding: 10px 0 20px;
    }
    .section-news-list-1 .item{
        gap: 0;
    }
    .section-news-list-1 .list{
        width: 47%;
        margin-left: 2%;
        margin-bottom: 2%;
    }
    .section-news-list-1 .imgbox{
        height: 120px;
    }
    .section-news-list-1 .detail{
        padding: 10px;
        height: 100px;
    }
    .section-news-list-1 .list .row2{
        margin-top: 10px;
        font-size: 16px;
    }
    .section-news-list-1 .list .row3{
        margin-top: 10px;
    }
    .section-news-list-1 .list .row3 b{
        font-size: 16px;
    }
    .section-news-list-1 .list .row3 span{
        margin-top: 2px;
    }

    

    #pagination{
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 15px 0 5px;
    }
    #pagination .layui-laypage a, #pagination .layui-laypage span{
        min-width: 0;
        height: 25px;
        line-height: 25px;
        margin: 0 1px;
        padding: 0 10px;
    }


    .section-news-detail-blank{
        padding: 60px 0 0;
    }
    .section-news-detail-blank .section-breadcrumb .menu:nth-last-child(1){
        display: none;
    }
    .section-news-detail-blank .section-breadcrumb .arrow:nth-last-child(2){
        background: none;
    }


    .section-news-detail{
        padding: 20px 10px;
    }
    .section-news-detail .content{
        width: 100%;
    }
    .section-news-detail .content-detial .item1 h1{
        font-size: 22px;
        line-height: normal;
    }
    .section-news-detail .item2 .row2 b{
        font-size: 18px;
    }
    .section-news-detail .item2{
        padding: 5px 0;
    }
    .section-news-detail .item3{
        margin-top: 10px;
    }


    .section-sustainable-development-1{
        padding: 40px 10px 0;
        height: 80px;
    }
    

    .section-sustainable-development-2{
        padding: 0 0 0;
    }
    .section-sustainable-development-2::before{
        height: 70%;
    }
    .section-sustainable-development-2 .inner{
        height: 220px;
    }
    .section-sustainable-development-2 .item1{
        font-size: 18px;
    }
    .section-sustainable-development-2 .item2{
        margin-top: 20px;
        font-size: 14px;
        padding: 0 10px;
    }


    .section-sustainable-development-3{
        margin-top: 10px;
        padding: 0 0 0 10px;
        background-color: #FFFCF3;
    }
    .section-sustainable-development-3 .swiper-container{
        padding-left: 0;
    }
    .section-sustainable-development-3 .swiper-slide{
        width: 200px;
        height: 120px;
        margin-right: 10px;
    }
    .section-sustainable-development-3 .swiper-slide .box{
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0);
        height: 100%;
        padding: 10px;
    }
    .section-sustainable-development-3 .swiper-slide .imgbox{
        width: 50px;
        height: 50px;
    }
    .section-sustainable-development-3 .swiper-slide .detail{
        visibility: visible;
        position: static;
        margin-top: 10px;
        font-size: 15px;
    }
    .section-sustainable-development-3 .swiper-scrollbar{
        width: 50%;
        margin: auto;
        margin-top: 20px;
    }



    .section-sustainable-development-4{
        margin-top: 0;
        padding-bottom: 10px;
    }
    .section-sustainable-development-4 .swiper-container{
        padding: 40px 0 10px;
    }
    .section-sustainable-development-4 .swiper-slide{
        width: 100%;
        height: 200px;
    }
    .section-sustainable-development-4 .swiper-slide-active .detail{
        width: 100%;
        padding: 0 20px;
    }
    .section-sustainable-development-4 .swiper-slide .row-img img{
        height: 50px;
    }
    .section-sustainable-development-4 .swiper-slide .row1{
        font-size: 16px;
        margin-top: 15px;
    }
    .section-sustainable-development-4 .swiper-slide .row2{
        font-size: 13px;
        width: 90%;
        margin-top: 10px;
    }
    .section-sustainable-development-4 .swiper-slide-active .imgbox{
        width: 100%;
        height: 100%;
    }
    .section-sustainable-development-4 .arrow{
        left: 10px;
        width: 18px;
        height: 38px;
    }
    .section-sustainable-development-4 .swiper-button-next{
        right: 10px;
        left: auto;
    }
    .section-sustainable-development-4 .swiper-pagination-bullet{
        width: 20px;
    }
    .section-sustainable-development-4 .swiper-pagination-bullet-active{
        width: 40px;
    }


    .section-work-clothes-school-1{
        padding: 20px 10px;
    }
    .section-work-clothes-school-1 .swiper-slide{
        display: block;
    }
    .section-work-clothes-school-1 .swiper-slide .imgbox{
        width: 100%;
        padding: 0 20%;
    }
    .section-work-clothes-school-1 .swiper-slide .detail{
        margin-left: 0;
        margin-top: 20px;
        font-size: 14px;
    }
    .section-work-clothes-school-1 .swiper-pagination{
        margin-top: 25px;
    }
    .section-work-clothes-school-1 .swiper-pagination-bullet{
        width: 30px;
        height: 5px;
    }
    .section-work-clothes-school-1 .swiper-pagination-bullet-active{
        width: 50px;
    }


    .section-work-clothes-work-2{
        padding: 0;
    }
    .section-work-clothes-work-2 .detail{
        font-size: 22px;
        padding: 0 10px;
        bottom: 30px;
    }

    .section-work-clothes-work-3{
        padding: 10px 0;
    }
    .section-work-clothes-work-3 .swiper-wrapper{
        gap: 2vw 2%;
    }
    .section-work-clothes-work-3 .swiper-slide{
        width: 49%;
        height: 150px;
    }

    .section-work-clothes-contact{
        padding-bottom: 10px;
    }
    .section-work-clothes-contact .content{
        display: block;
        padding: 20px 10px 0;
    }
    .section-work-clothes-contact .content-left .item1 .public-title{
        font-size: 22px;
    }
    .section-work-clothes-contact .content-left .item2 .public-title{
        font-size: 14px;
        margin-top: 20px;
    }
    .section-work-clothes-contact .content-bodyer .ewm{
        margin: auto;
        margin-top: 30px;
        width: 120px;
    }


    .section-work-clothes-detail-swiper{
        padding: 0;
    }
    .section-work-clothes-detail-swiper .public-title{
        padding: 20px 0 0px;
        font-size: 20px;
    }
    
    .section-work-clothes-detail-swiper .swiper-container{
        height: auto;
        padding: 10px 0;
    }
    .section-work-clothes-detail-swiper .swiper-slide{
        width: 200px;
        height: 150px;
        top: 0;
        margin-right: 10px;
    }
    .section-work-clothes-detail-swiper .item2 .row1{
        font-size: 22px;
    }
    .section-work-clothes-detail-swiper .item1 .icon-play{
        width: 50px;
    }


    .section-work-clothes-school-2{
        padding: 10px;
    }
    .section-work-clothes-school-2 .public-title{
        font-size: 20px;
    }
    .section-work-clothes-school-2 .swiper-wrapper{
        gap: 2vw 2%;
        margin-top: 20px;
    }
    .section-work-clothes-school-2 .swiper-slide{
        width: 49%;
        height: 250px;
    }
    .section-work-clothes-school-2 .detail{
        left: 10px;
        bottom: 10px;
        font-size: 20px;
    }


    .section-work-clothes-academic-swiper .swiper-container{
        height: auto;
        padding: 0;
    }
    .section-work-clothes-academic-swiper .swiper-slide{
        width: 70%;
        height: 220px;
        margin-left: 0;
        margin-right: 10px;
        top: 0;
    }
    .section-work-clothes-academic-swiper .item2 .row1{
        font-size: 20px;
    }

    
    .section-work-clothes-academic-2{
        padding: 10px 0 0;
    }
    .section-work-clothes-academic-2 .item2{
        height: 220px;
    }
    .section-work-clothes-academic-2 .item1{
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .section-work-clothes-academic-2 .item1 .row1{
        font-size: 20px;
        padding: 0 20px;
    }
    .section-work-clothes-academic-2 .item1 .row2{
        font-size: 15px;
        width: 100%;
        padding: 0 20px;
        margin-top: 15px;
    }
    .section-work-clothes-academic-2 .arrow{
        width: 17px;
        height: 35px;
    }


    .section-work-clothes-academic-3{
        padding: 0 0 10px;
    }
    .section-work-clothes-academic-3 .swiper-slide{
        width: 42%;
        height: 200px;
        margin-right: 10px;
    }


    .section-product-type-tab{
        padding: 20px 0 0;
    }
    .section-product-type-tab .tab-header .list{
        font-size: 16px;
        margin: 0 10px;
    }


    .section-product-type-about{
        padding: 20px 10px;
    }
    .section-product-type-about .content-title{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .section-product-type-about .content-bodyer p{
        padding: 5px 0;
    }


    .section-product-type-tab .content-title{
        font-size: 22px;
        padding: 0 10px;
    }

    
    .section-product-type-list{
        padding: 0 10px;
    }
    .section-product-type-list .describe{
        width: 100%;
        margin-top: 20px;
    }
    .section-product-type-list .describe p{
        padding: 4px 0;
    }
    .section-product-type-list .describe .email{
        padding: 4px 0;
    }
    .section-product-type-list .describe .bold{
        padding: 4px 0;
    }
    .section-product-type-list .item-list{
        margin-top: 20px;
        gap: 2vw 2%;
    }
    .section-product-type-list .list{
        width: 49%;
        height: 230px;
    }

    

    .section-product-type-brand{
        padding: 30px 10px 0;
    }
    .section-product-type-brand .content-title{
        font-size: 22px;
    }
    .section-product-type-brand .tab-header .list{
        font-size: 20px;
    }
    .section-product-type-brand .tab-bodyer{
        margin-top: 10px;
    }
    .section-product-type-brand .describe{
        width: 100%;
        margin-top: 20px;
    }
    .section-product-type-brand .describe p{
        padding: 4px 0;
    }
    .section-product-type-brand .describe .email{
        padding: 4px 0;
    }
    .section-product-type-brand .describe .bold{
        padding: 4px 0;
    }
    .section-product-type-brand .swiper-slide{
        width: 150px;
        height: 180px;
        margin-right: 10px;
    }


    .section-product-type-contact-us{
        padding: 10px 0;
    }

    .section-product-type-blank{
        height: 10px;
    }


    .section-private-brand-1{
        padding: 20px 10px;
    }
    .section-private-brand-1 .swiper-slide{
        display: block;
    }
    .section-private-brand-1 .swiper-slide .imgbox{
        width: 220px;
        margin: auto;
    }
    .section-private-brand-1 .swiper-slide .detail{
        margin: 20px 0 0;
    }

    .section-private-brand-blank1{
        height: 30px;
    }

    .section-private-brand-video .videobox{
        width: 100%;
        top: 0;
    }
    .section-private-brand-video .icon-play{
        width: 50px;
    }
    .section-private-brand-video .content{
        margin-bottom: 0;
    }


    .section-private-brand-2{
        padding: 0 0 20px;
    }
    .section-private-brand-2 .content-title{
        padding: 20px 0;
        font-size: 20px;
    }
    .section-private-brand-2 .swiper-container{
        padding-left: 0;
    }
    .section-private-brand-2 .swiper-slide{
        width: 200px;
        height: 250px;
        margin-right: 10px;
    }
    .section-private-brand-2 .swiper-scrollbar{
        margin: auto;
    }
    .section-private-brand-2 .swiper-scrollbar .swiper-scrollbar-drag{
        margin-top: 20px;
    }

    .section-private-brand-3{
        padding: 0 0 0;
    }
    .section-private-brand-3 .content-title{
        padding: 20px 0;
        font-size: 20px;
    }

    .section-private-brand-factory-4{
        padding: 20px 0;
    }

    .section-private-brand-selected-2{
        padding: 0 10px;
    }
    .section-private-brand-selected-2 .swiper-wrapper{
        margin-top: 0;
    }


    .section-private-brand-dccm-video{
        padding: 20px 0 0;
        background: #FFFCF3;
    }

    .section-private-brand-4 .img{
        margin-top: 10px;
    }

    .section-private-brand-selected-4{
        padding: 10px 10px;
    }

    .section-private-brand-dccm-swiper .content-bodyer{
        margin-top: 0;
    }


    .section-banner-ai{
        height: 300px;
    }

    .section-ai-tab{
        top: -45px;
        height: 0;
    }
    .section-ai-tab .tab-header{
        width: 100%;
        padding: 0 5px;
    }
    .section-ai-tab .tab-header .list{
        -webkit-box-flex: 1;
        -webkit-flex: 1;
           -moz-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
    }
    .section-ai-tab .tab-header .list a{
        width: 100%;
    }

    .section-ai-swiper-1{
        margin-top: 0;
    }


    .section-ai-swiper-1 .content{
        width: 100%;
        padding: 10px;
    }
    .section-ai-swiper-1 .swiper-container{
        padding: 0;
    }
    .section-ai-swiper-1 .swiper-slide{
        width: 100%;
        height: 200px;
    }
    .section-ai-swiper-1 .swiper-slide-active{
        height: 200px;
        top: 0;
    }
    .section-ai-swiper-1 .swiper-slide-active .imgbox{
        width: 100%;
        height: 100%;
    }
    .section-ai-swiper-1 .swiper-slide .icon-play{
        width: 50px;
    }
    .section-ai-swiper-1 .arrow{
        left: 20px;
        width: 16px;
        height: 46px;
    }
    .section-ai-swiper-1 .swiper-button-next{
        right: 20px;
        left: auto;
    }


    .section-ai-2{
        padding: 20px 10px;
    }
    .section-ai-2 .public-title{
        font-size: 20px;
    }
    .section-ai-2 .swiper-wrapper{
        margin-top: 10px;
        gap: 2vw 2%;
    }
    .section-ai-2 .swiper-slide{
        width: 49%;
        height: 180px;
        padding: 25px 10px 0;
    }
    .section-ai-2 .num{
        font-size: 30px;
    }
    .section-ai-2 .imgbox{
        height: 100px;
    }
    .section-ai-2 .detail{
        font-size: 14px;
        margin-top: 15px;
    }


    .section-ai-trendbook-list{
        padding: 0 10px 5px;
    }
    .section-ai-trendbook-list .list{
        display: block;
        padding: 5px 0;
    }
    .section-ai-trendbook-list .imgbox{
        width: 100%;
        height: auto;
    }
    .section-ai-trendbook-list .item1{
        height: auto;
    }
    .section-ai-trendbook-list .item1 .row2{
        margin-top: 10px;
        font-size: 20px;
    }
    .section-ai-trendbook-list .row-more{
        margin-top: 10px;
    }



    .section-ai-swiper-2{
        padding: 20px 0;
    }
    .section-ai-swiper-2 .content{
        height: 240px;
    }
    .section-ai-swiper-2 .icon-play{
        width: 50px;
    }
    .section-ai-swiper-2 .arrow{
        width: 17px;
        height: 36px;
    }

    .section-ai-swiper-vr-1 .swiper-container{
        padding-bottom: 100px;
    }
    .section-ai-swiper-vr-1 .swiper-slide .detail{
        bottom: -75px;
        left: 0;
        right: 0;
    }
    .section-ai-swiper-vr-1 .swiper-slide .detail .row1{
        font-size: 20px;
        margin-top: 10px;
    }


    .section-talent-encourage-1 .content{
        height: 300px;
        padding: 20px 10px 0;
    }
    .section-talent-encourage-1 .content-detail{
        width: 100%;
        margin-top: 20px;
    }
    .section-talent-encourage-1 .row1{
        text-shadow: 1px 1px 1px #fff;
    }


    .section-talent-encourage-2 .item-list .list{
        height: 240px;
        padding: 0 10px;
    }
    .section-talent-encourage-2 .item-list .list .box{
    }
    .section-talent-encourage-2 .item-list .list dl{
        width: 100%;
    }
    .section-talent-encourage-2 .item-list .list dd{
        margin-top: 20px;
    }


    
    .section-talent-encourage-3{
        padding: 0;
    }
    .section-talent-encourage-3 .content{
        display: block;
        padding: 20px 10px 20px;
        height: auto;
    }
    .section-talent-encourage-3 .content-bodyer .item1{
        width: 100%;
        margin-top: 20px;
    }
    .section-talent-encourage-3 .content-bodyer .item1 .row1{
        font-size: 14px;
    }
    .section-talent-encourage-3 .content-bodyer .item2{
        margin-top: 30px;
    }
    .section-talent-encourage-3 .content-bodyer .item2 .list{
        -webkit-box-flex: 1;
        -webkit-flex: 1;
           -moz-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        height: 40px;
        margin: 0 5px;
    }
    .section-talent-encourage-3 .content-bodyer .item2 .list .text{
        font-size: 14px;
    }


    .section-supply-chain-1{
        padding: 30px 10px 10px;
    }
    .section-supply-chain-1 .public-title{
        font-size: 20px;
    }
    .section-supply-chain-1 .content-detail{
        width: 100%;
        margin-top: 20px;
    }
    .section-supply-chain-1 .content-detail .row1{
        font-size: 14px;
        text-align: left;
    }
    .section-supply-chain-1 .content-bodyer{
        gap: 10px;
        margin-top: 20px;
    }
    .section-supply-chain-1 .content-bodyer .list{
        -webkit-box-flex: 1;
        -webkit-flex: auto;
           -moz-box-flex: 1;
            -ms-flex: auto;
                flex: auto;
        width: 45%;
        height: 250px;
    }
    .section-supply-chain-1 .content-bodyer .list:hover{
        -webkit-box-flex: 1;
        -webkit-flex: auto;
           -moz-box-flex: 1;
            -ms-flex: auto;
                flex: auto;
    }


    .section-supply-chain-2{
        padding: 30px 10px 0;
    }
    .section-supply-chain-2 .public-title{
        font-size: 20px;
    }
    .section-supply-chain-2 .content-detail{
        width: 100%;
        margin-top: 20px;
    }
    .section-supply-chain-2 .content-detail .row1{
        font-size: 14px;
        text-align: left;
    }


    .section-honor-list{
        padding: 20px 0 10px;
    }
    .section-honor-list .item{
        gap: 0 0;
    }
    .section-honor-list .list{
        width: 47%;
        height: 160px;
        margin-left: 2%;
    }


    .section-contact-us-1{
        padding: 40px 0 0;
    }
    .section-contact-us-1 .content{
        margin-top: 10px;
    }

    .section-contact-us-2{
        padding: 5px 5px;
    }
    .section-contact-us-2 .item-list{
        gap: 0;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }
    .section-contact-us-2 .item-list .list{
        width: 48%;
        -webkit-box-flex: 1;
        -webkit-flex: auto;
           -moz-box-flex: 1;
            -ms-flex: auto;
                flex: auto;
        margin: 1vw 1%;
    }

    .section-contact-us-3{
        padding: 0 0 10px;
    }
}