
.header{
    width: 100%;
    z-index: 1005;
    transition: all 0.2s;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 1200px;
    background-color: #ffffff;
}
.header:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: hsla(0,0%,100%,0.2);
    bottom: 0;
    left: 0;
}
.header-call{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo{
    width: calc( var(--bili) * 122px );
    z-index: 9;
}


.header-lang{
    line-height: calc( var(--bili) * 100px );
    font-size: calc( var(--bili) * 18px );
    color: var(--colorZT);
    margin: 0 0 0 calc( var(--bili) * 40px );
    background: url(../images/u13.png) no-repeat left center;
    background-size: calc( var(--bili) * 24px ) calc( var(--bili) * 24px );
    padding: 0 0 0 calc( var(--bili) * 30px );
    cursor: pointer;
    position: relative;
}
.header-contact{
    line-height: calc( var(--bili) * 100px );
    font-size: calc( var(--bili) * 18px );
    color: var(--colorZT);
    margin: 0 0 0 calc( var(--bili) * 40px );
    background: url(../images/u4.png) no-repeat left center;
    background-size: calc( var(--bili) * 24px ) calc( var(--bili) * 24px );
    padding: 0 0 0 calc( var(--bili) * 30px );
}

/*菜单*/
.header-menu{
    position: relative;
    display: flex;
    align-items: center;
}
.header-menu .CAul{
    display: flex;
}
.header-menu .CAli{
    position: relative;
    margin: 0 calc( var(--bili) * 35px );
}
.header-menu .CAli .CAa{
    color: #333333;
    /*font-weight: bold;*/
    font-size: calc( var(--bili) * 18px );
    line-height:  calc( var(--bili) * 100px );
    /*padding: 0 calc( var(--bili) * 25px );*/
    display: block;
    text-align: center;
}
.on-line{
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--colorZT);
    transition: all 0.3s ease;
    height: 2px;
    z-index: 9;
}
.header-menu .CAli.hmon .CAa{
    color: var(--colorZT);
}
/*菜单*/


/*头部-菜单*/

.header.on{
    background: #fff;
    border-bottom: 0;
    position: fixed;
}
.header.on .bs-logo{
    display: none;
}
.header.on .hs-logo{
    display: block;
}
.header.Nofx .bs-logo{
    display: none;
}
.header.Nofx .hs-logo{
    display: block;
}

.header.on .on-line{
    background-color: var(--colorZT);
}
.header.Nofx .on-line{
    background-color: var(--colorZT);
}




/*下拉菜单*/
.down-menu{
    display: none;
    position: absolute;
    /*left: -100%;*/
    top: 100%;
    width: auto;
    overflow: hidden;
    background-color: transparent;
}
.down-menu .CBul{
    display: flex;
    height: 100%;
    background-color: #242424;
    float: left;
    justify-content: flex-start;
    box-shadow: 0 1px 8px rgb(0 0 0 / 6%);
}
.down-menu .CBli{
    /*padding: 0 5px;*/
}
.down-menu .CBa{
    display: block;
    width: 100%;
    line-height: calc( var(--bili) * 70px );
    /*font-weight: 700;*/
    font-size: calc( var(--bili) * 14px );
    color: #ffffff;
    text-align: center;
    opacity: 0.6;
    padding: 0 calc( var(--bili) * 30px ) 0 0;
    white-space:nowrap;

    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    word-break: break-all;
    transition: all 0.5s;

    /*padding: 0 0 0 20%;*/
}
.down-menu .CBli:first-child .CBa{
    padding: 0 calc( var(--bili) * 30px );
}
.down-menu .CBli:hover .CBa{
    opacity: 1;
}


/*banner*/
.wi-banner{
    margin: calc( var(--bili) * 100px ) 0 0 0;
    width: 100%;
}
.wn-banner{
    height: calc( var(--bili) * var(--bannerH) * 1px );
    overflow: hidden;
}

/*点切换*/
.wn-banner .swiper-pagination{
    bottom: 6%;
}
.wn-banner .swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid #fff;
    opacity: 1;
    margin: 0 6px;
    transition: all .4s;
}
.wn-banner .swiper-pagination .swiper-pagination-bullet-active{
    background: #ffffff;
    width: 20px;
    border-radius: 4px;
}
/*banner-切换按钮*/
.wn-banner .swiper-button-next, .wn-banner .swiper-button-prev{
    display: none;
    width: calc( var(--bili) * 62px );
    height: calc( var(--bili) * 62px );
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .4s;
    border: 2px solid #515151;
    z-index: 100;
    opacity: 0;
    outline: none;
}
.wn-banner:hover .swiper-button-next, .wn-banner:hover .swiper-button-prev{
    opacity: 1;
    transform: translateX(0);
}

.wn-banner .swiper-button-next{
    right: calc( var(--bili) * 20px );
    background: url(../images/banner/ar_hs.png) no-repeat 50%;
    transform: translateX(100%);
}
.wn-banner .swiper-button-prev{
    left: calc( var(--bili) * 20px );
    background: url(../images/banner/al_hs.png) no-repeat 50%;
    transform: translateX(-100%);
}
.wn-banner .swiper-button-next:after,.wn-banner .swiper-button-prev:after{
    display: none;
}
.wn-banner .swiper-button-next:hover{
    border-color: var(--colorZT);
    background: var(--colorZT) url(../images/banner/ar_bs.png) no-repeat calc( var(--bili) * 26px );
}
.wn-banner .swiper-button-prev:hover{
    border-color: var(--colorZT);
    background: var(--colorZT) url(../images/banner/al_bs.png) no-repeat calc( var(--bili) * 12px );
}
.wn-banner .swiper-slide-next *, .wn-banner .swiper-slide-prev *{
    transition-delay: 0s!important;
}
/*banner-切换按钮*/

.wn-banner .swiper-slide{
    text-align: center;
    background: #fff;
    overflow: hidden;
}

.wn-banner .slide-inner{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.wn-banner .bn-auto{
    width: calc( var(--bili) * 1280px );
    margin: 0 auto;
    position: absolute;
    height: 100%;
}

.wn-banner .bn-auto img{
    opacity: 0;
    transform: translateY(calc( var(--bili) * 300px ));
    position: absolute;
}
.wn-banner .swiper-slide-active .bn-auto img{
    opacity: 1;
    transform: translateY(0) translateX(0);
}


/*自定义位置大小*/
.wn-banner .bn-auto .b1a1{
    left: 0;
    bottom: calc( var(--bili) * 300px );
    width: calc( var(--bili) * 402px );
    height: calc( var(--bili) * 83px );
    transition: all 1.2s;
}
.wn-banner .bn-auto .b1a2{
    left: calc( var(--bili) * 200px );
    bottom: 0;
    width: calc( var(--bili) * 634px );
    height: calc( var(--bili) * 460px );
    transition: all 1s;
}
.wn-banner .bn-auto .b1a3{
    right: 0;
    bottom: calc( var(--bili) * 300px );
    width: calc( var(--bili) * 393px );
    height: calc( var(--bili) * 85px );
    transition: all 1.6s;
}
.wn-banner .bn-auto .b1a4{
    left: 0;
    bottom: 0;
    width: calc( var(--bili) * 196px );
    height: calc( var(--bili) * 150px );
    transition: all 0.8s;
}

.wn-banner .bn-auto .b2a1{
    width: calc( var(--bili) * 377px );
    height: calc( var(--bili) * 160px );
    left: 0;
    bottom: calc( var(--bili) * 190px );
    transition: all 1s;
}
.wn-banner .bn-auto .b2a2{
    width: calc( var(--bili) * 514px );
    height: calc( var(--bili) * 365px );
    left: calc( var(--bili) * 430px );
    bottom: calc( var(--bili) * 120px );
    transition: all 0.6s;
}
.wn-banner .bn-auto .b2a3{
    width: calc( var(--bili) * 422px );
    height: calc( var(--bili) * 195px );
    right: 0;
    bottom: calc( var(--bili) * 150px );
    transition: all 1.2s;
}

/*自定义位置大小*/

/*banner*/


/*内页banner-s*/
.detail-banner{
    margin: calc( var(--bili) * 100px ) 0 0 0;
    width: 100%;
    height: calc( var(--bili) * var(--NibnH) * 1px );
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: 100% 100%!important;
    background-color: #797979!important;
    position: relative;
}
/*内页banner-e*/


/*foot-s*/

.footer{
    padding:  calc( var(--bili) * 50px ) 0  calc( var(--bili) * 20px );
    background-color: #f7f7f7;
}
.footer-list{
    display: flex;
    justify-content: space-between;
    margin: 0 0 calc( var(--bili) * 40px ) 0;
}
.footer-lx{

}
.footer-lx .dca{
    width: calc( var(--bili) * 117px );
    /*height: calc( var(--bili) * 62px );*/
    overflow: hidden;
    margin: 0 0 calc( var(--bili) * 10px ) 0;
}
.footer-lx .dcb{
    font-size: calc( var(--bili) * 16px );
    color: var(--colorZT);
    margin: 0 0 calc( var(--bili) * 10px ) 0;
}
.footer-lx .dcc{
    font-size: calc( var(--bili) * 14px );
    color: #555555;
    line-height: 2;
}

.footer-list .fll{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-list .fll .footer-about{
    min-width: calc( var(--bili) * 200px );
    /*margin: 0 calc( var(--bili) * 60px ) 0;*/
}
.footer-list .fll .footer-about dl dt{
    font-size: calc( var(--bili) * 16px );
    color: var(--colorZT);
    line-height: 2;
    text-align: center;
}

.footer-list .fll .footer-about dl dd{
    font-weight: 400;
    font-size: calc( var(--bili) * 14px );
    color: #555555;
}
.footer-list .fll .footer-about dl dd a{
    width: 100%;
    display: block;
    line-height: 2;
    text-align: center;
}
.footer-list .fll .footer-about dl dd p{
    width: 100%;
    display: block;
    line-height: 1.8;
}
.footer-list .fll .footer-about a:hover{
    color: var(--colorZT);
}


.footer-list .flr{
    display: flex;
}
.footer-list .flr .footer-ewm{
    text-align: center;
    margin: 0 0 0 calc( var(--bili) * 20px );
}
.footer-list .flr .footer-ewm .ewm-img{
    width: calc( var(--bili) * 130px );
    height: calc( var(--bili) * 130px );
}
.footer-list .flr .footer-ewm .ewm-tit{
    font-weight: 400;
    font-size: calc( var(--bili) * 14px );
    color: #555555;
    line-height: 3;
}

.copyright{
    border-top: 1px solid #eeeeee;
    padding: calc( var(--bili) * 30px ) 0;
    font-weight: 400;
    font-size: calc( var(--bili) * 14px );
    color: #555555;
    text-align: left;
    background-color: #f7f7f7;
}
.copyright .infx{
    display: flex;
    justify-content: center;
    align-items: center;
}


/*foot-e*/




/*首页-s*/

.wi-PT{
    margin-top: calc( var(--bili) * var(--bannerH) * 1px );
    z-index: 3;
    position: relative;
}

.public-title{
    padding: calc( var(--bili) * 30px ) 0 calc( var(--bili) * 30px );
    text-align: center;
}
.public-title .dcn{
    font-weight: 700;
    font-size: calc( var(--bili) * 40px );
    color: #292A2D;
    margin: 0 0 calc( var(--bili) * 10px );
}
.public-title .den{
    font-weight: 400;
    font-size: calc( var(--bili) * 16px );
    color: #AEAEAE;
    text-transform:uppercase;
}



.wi-product{
    background: #ffffff;
    padding: calc( var(--bili) * 30px ) 0 calc( var(--bili) * 40px ) 0;
}
.sycp-lst{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.sycp-lst .sycpl{
    width: calc( var(--bili) * 592px );
}
.sycp-lst .sycpr{
    width: calc( var(--bili) * 972px );
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}
.sycpl .sycp-box{
    position: relative;
}
.sycpl .sycp-box .dca{
    width: 100%;
    height: calc( var(--bili) * 710px );
    overflow: hidden;
}
.sycpl .sycp-box .dcb{
    position: absolute;
    width: 100%;
    height: calc( var(--bili) * 54px );
    line-height: calc( var(--bili) * 54px );
    background-color: rgba(255, 255, 255, 0.6);
    font-size:  calc( var(--bili) * 20px );
    color: #333333;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 0 2%;
}

.sycpr .sycp-box{
    width: calc( var(--bili) * 469px );
    height: calc( var(--bili) * 337px );
    position: relative;
}
.sycpr .sycp-box .dca{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.sycpr .sycp-box .dcb{
    position: absolute;
    width: 100%;
    height: calc( var(--bili) * 54px );
    line-height: calc( var(--bili) * 54px );
    background-color: rgba(255, 255, 255, 0.6);
    font-size:  calc( var(--bili) * 20px );
    color: #333333;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 0 2%;
}


.wn-about{
    background: url(../images/wn-about.jpg) no-repeat;
    background-size: 100% 100%;
    height: 560px;
    position: relative;
}
.wn-about:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /*background: rgb(0 0 0 / 50%);*/
}
.wn-about .infx{
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 100%;
}
.wn-about .dcml{
    width: 50%;
}
.wn-about .dcmr{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}
.wn-about .dcml .abdca{
    font-size: calc( var(--bili) * 62px );
    color: rgba(255,255,255,0.3);
    line-height: 1;
}
.wn-about .dcml .abdcb{
    font-size: calc( var(--bili) * 50px );
    font-weight: bold;
    color: var(--colorZT);
    position: relative;
    margin: calc( var(--bili) * -35px ) 0 0 0;
}
.wn-about .dcml .abdcc{
    font-size: calc( var(--bili) * 30px );
    margin-bottom: calc( var(--bili) * 30px );
    color: var(--colorZT);
    position: relative;
}
.wn-about .dcml .abdcd{
    font-size: calc( var(--bili) * 16px );
    color: #483825;
    line-height: calc( var(--bili) * 45px );
}
.wn-about .dcml .abdce{
    font-size: calc( var(--bili) * 15px );
    margin-top: calc( var(--bili) * 40px );
    color: var(--colorZT);
    width: 140px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-color: var(--colorZT);
    /*background-color: rgba(255, 255, 255, 0.2);*/
}
.wn-about .dcml .abdce:hover{
    border-color: var(--colorZT);
    background-color: var(--colorZT);
    color: #ffffff;
}

/*首页-新闻*/
.wn-news{
    background: url(../images/u69.png) no-repeat bottom;
    padding: calc( var(--bili) * 30px ) 0 calc( var(--bili) * 60px );
    background-size: cover;
}
.wnxw-lst{
    display: flex;
    justify-content: space-between;
}
.wnxw-lst .wnxwl{
    width: calc( var(--bili) * 690px );
}
.wnxw-lst .wnxwr{
    width: calc( var(--bili) * 880px );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-sx{
    width: 100%;
}
.news-sx .dca{
    width: 100%;
    height: calc( var(--bili) * 390px );
    overflow: hidden;
}
.news-sx .dcma{
    width: 100%;
    background-color: #FFFFFF;
    height: calc( var(--bili) * 150px );
    padding: calc( var(--bili) * 20px );
}
.news-sx .dcb{
    color: #333333;
    font-weight: 700;
    font-size: calc( var(--bili) * 20px );
}
.news-sx .dcc{
    color: #7d7d7d;
    font-size: calc( var(--bili) * 14px );
    margin:  calc( var(--bili) * 10px ) 0;
}
.news-sx .dcd{
    color: #7d7d7d;
    font-size: calc( var(--bili) * 14px );
}
.news-sx:hover .dcb{
    color: var(--colorZT);
}

.news-lr{
    position: relative;
}
.news-lr .Acls{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-lr .dca{
    width: calc( var(--bili) * 230px );
    height: calc( var(--bili) * 150px );
    overflow: hidden;
}
.news-lr .dcma{
    width: calc( var(--bili) * 630px );

}
.news-lr .dcb{
    color: #333333;
    font-weight: 700;
    font-size: calc( var(--bili) * 20px );
    margin: 0 0 calc( var(--bili) * 20px );
}
.news-lr .dcc{
    color: #7d7d7d;
    font-size: calc( var(--bili) * 14px );
    margin: 0 0 calc( var(--bili) * 20px );
}
.news-lr .dcd{
    color: #7d7d7d;
    font-size: calc( var(--bili) * 14px );
}
.news-lr:hover .dcb{
    color: var(--colorZT);
}
/*首页-新闻*/


/*首页-e*/

/*留言-s*/

.wn-msg{
    position: relative;
}
.wn-msg:after{
    content: '';
    position: absolute;
    background: url(../images/u96.svg) no-repeat center;
    right: 0;
    bottom: 0;
    width: calc( var(--bili) * 850px );
    height: calc( var(--bili) * 183px );
    background-size: 100% 100%;
}
.wn-msg:before{
    content: '';
    position: absolute;
    background: url(../images/u97.svg) no-repeat center;
    right: calc( var(--bili) * 120px );
    bottom: calc( var(--bili) * 86px );
    width: calc( var(--bili) * 521px );
    height: calc( var(--bili) * 487px );
    z-index: 1;
    background-size: 100% 100%;
}
.msg-con{
    padding:calc( var(--bili) * 80px ) 0;
    width: calc( var(--bili) * 750px );
}
.msg-con .msg-wca{
    font-weight: 700;
    font-size: calc( var(--bili) * 40px );
    color: #292A2D;
    margin: 0 0 calc( var(--bili) * 10px ) 0;
}
.msg-con .msg-wcb{
    font-weight: 400;
    font-size: calc( var(--bili) * 18px );
    color: #8E8E8E;
    margin: 0 0 calc( var(--bili) * 20px ) 0;
}
.msg-con .msg-item{
    width: 100%;
    margin: 0 0 calc( var(--bili) * 20px ) 0;
}
.msg-con .msg-item .msg-srk{
    width: 100%;
    height: calc( var(--bili) * 50px );
    font-size: calc( var(--bili) * 16px );
    color: #333333;
    border: 1px solid #dfdfdf;
    padding: 0 calc( var(--bili) * 20px );
    border-radius: 6px;
}
.msg-con .msg-item .msg-srks{
    width: 100%;
    font-size: calc( var(--bili) * 16px );
    color: #333333;
    border: 1px solid #dfdfdf;
    padding: calc( var(--bili) * 20px );
    height: calc( var(--bili) * 150px );
    resize: none;
}
.msg-con .msg-item .msg-btn{
    width: calc( var(--bili) * 180px );
    height: calc( var(--bili) * 54px );
    background-color: var(--colorZT);
    font-weight: 400;
    font-size: calc( var(--bili) * 16px );
    color: #ffffff;
    cursor: pointer;
    border-radius: 6px;
}
.msg-con .msg-item .msg-btn:hover{
    background-color: #1f7d7d;
}








/*留言-e*/




/*分类菜单*/

.wn-SubNav{
    background-color: #ffffff;
    position: relative;
    border-bottom: 1px solid #f3f3f3;
}
.no-Bgc{
    background-color: transparent;
}
.wn-SubNav .infx{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wn-inNav{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.in-item{
    font-style: normal;
    font-size: calc( var(--bili) * 16px );
    color: #333333;
    width: auto;
    text-align: center;
    position: relative;
}
.in-item .mCa{
    width: 100%;
    height: calc( var(--bili) * 80px );
    line-height: calc( var(--bili) * 80px );
    display: inline-block;
    padding: 0 calc( var(--bili) * 45px );
}
.in-item.on{
    color: var(--colorZT);
    /*background-color: #ffffff;*/
}
/*.in-item.on .mCa:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    background-color: var(--colorZT);*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/


.wn-location{
    background: url(../images/icons/wn-location.svg) no-repeat left;
    background-size: calc( var(--bili) * 24px ) calc( var(--bili) * 24px );
    padding: 0 0 0 calc( var(--bili) * 26px );
    line-height: calc( var(--bili) * 80px );
}
.wn-location .wla{
    font-size: calc( var(--bili) * 16px );
    color: #999999;
    margin: 0 0 0 calc( var(--bili) * 10px );
    position: relative;
}
.wn-location .wla:after{
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #999999;
    border-radius: 50%;
    right: -8px;
    top: 49%;
}
.wn-location .wla:last-child{
    color: var(--colorZT);
}
.wn-location .wla:last-child:after{
    display: none;
}

.menu-line {
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--colorZT);
    bottom: 0;
    left: 0;
    transition: all 0.5s;
}

/*分类菜单*/


.wn-content {
    padding: calc( var(--bili) * 50px ) 0 calc( var(--bili) * 50px );
    z-index: 3;
    position: relative;
    background-color: #ffffff;
}
.wn-content.no-Pd{
    padding: 0;
}

/*新闻-s*/

.news-list{
    /*padding: calc( var(--bili) * 20px ) 0 0 0;*/
    position: relative;
}

.news-item{
    margin: 0 0 calc( var(--bili) * 40px );
    background-color: #f5f5f5;
    padding: calc( var(--bili) * 30px ) 0;
    transition: all 0.2s;
}
.news-item .Acls{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.news-item .decl{
    width: 12.5%;
    overflow: hidden;
    text-align: center;
}
.news-item .decc{
    width: 18%;
    height: calc( var(--bili) * 160px );
    border-left: 1px solid #e7e7e7;
    margin: 0 3% 0 0;
    padding: 0 0 0 3%;
    overflow: hidden;
}
.news-item .decr{
    width: 64%;
}

.news-item .dca{
    font-size: calc( var(--bili) * 70px );
    color: #C3C3C3;
    font-weight: bold;
    line-height: 1.2;
}
.news-item .dcb{
    font-size: calc( var(--bili) * 18px );
    color: #333333;
}
.news-item .dcc{
    font-size: calc( var(--bili) * 22px );
    color: #333333;
    margin: 0 0 calc( var(--bili) * 10px );
    font-weight: 700;
}
.news-item .dcd{
    font-size: calc( var(--bili) * 14px );
    color: #6f6f6f;
    line-height: 2;
}



.news-item:hover{
    background: var(--colorZT);
}
.news-item:hover .decc{
    border-left: 1px solid #ffffff;
}
.news-item:hover .dca,.news-item:hover .dcb,.news-item:hover .dcc,.news-item:hover .dcd{
    color: #ffffff!important;
}

.news-item:last-child{
    margin: 0;
}



.notice-top .Acls{
    display: flex;
    justify-content: space-between;
    margin: 0 0 calc( var(--bili) * 60px );
}
.notice-top .dca{
    width: 43.75%;
    height: calc( var(--bili) * 360px );
    overflow: hidden;
}
.notice-top .dcma{
    width: 53.5%;
}
.notice-top .dcb{
    font-weight: 700;
    font-size: calc( var(--bili) * 26px );
    color: #333333;
    margin: calc( var(--bili) * 35px ) 0 calc( var(--bili) * 20px );
    transition: all 0.5s;
}
.notice-top .dcc{
    font-weight: 400;
    font-size: calc( var(--bili) * 16px );
    color: #848484;
    line-height: calc( var(--bili) * 28px );
    margin: 0 0 calc( var(--bili) * 30px );
}
.notice-top .dcd{
    font-weight: 400;
    font-style: normal;
    font-size: calc( var(--bili) * 16px );
    color: #A4A4A4;
    margin: 0 0 calc( var(--bili) * 70px );
}
.notice-top .dce{
    font-weight: 400;
    width: calc( var(--bili) * 140px );
    height: calc( var(--bili) * 45px );
    line-height: calc( var(--bili) * 45px );
    text-align: center;
    font-size: calc( var(--bili) * 16px );
    color: #ffffff;
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    background: var(--colorZT);
    /*border-radius: 5px;*/
}
.notice-top:hover .dcb{
    padding: 0 0 0 10px;
    color: var(--colorZT);
}

.notice-list{

}
.notice-box{
    border-bottom: 1px solid #e3e3e3;
    padding: 0 0 0 calc( var(--bili) * 20px );
    margin: 0 0 calc( var(--bili) * 25px ) 0;
}
.notice-box .Acls{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.notice-box .dca{
    font-weight: 600;
    font-style: normal;
    font-size: calc( var(--bili) * 18px );
    line-height: calc( var(--bili) * 80px );
    color: #333333;
    transition: all 0.5s;
    width: 60%;
}

.notice-box .dcb{
    font-weight: 400;
    font-size: calc( var(--bili) * 20px );
    color: #6F6F6F;
    width: 12%;
}
.notice-box .dcc{
    background: url(../images/u489.svg) no-repeat;
    width: calc( var(--bili) * 36px );
    height: calc( var(--bili) * 36px );
    background-size: 100% 100%;
    margin: 0 0 0 25%;
}
.notice-box:hover .dca{
    color: var(--colorZT);
    padding: 0 0 0 calc( var(--bili) * 10px );
}
/*新闻-e*/




/*新闻详情*/
.cadBg{
    background: linear-gradient(180deg, rgba(236, 239, 244, 1) 3%, rgba(255, 255, 255, 1) 81%);
}
.cadBg .wn-content{
    background-color: transparent;
}
.cadBg .detail-main{
    background-color: #ffffff;
}

.detail-content{
    padding: calc( var(--bili) * 20px ) calc( var(--bili) * 100px ) 0;
}
.cadBg .detail-content{
    padding: calc( var(--bili) * 40px ) calc( var(--bili) * 100px ) calc( var(--bili) * 40px );
}
.detail-content .title {
    font-weight: 700;
    font-size: calc( var(--bili) * 30px );
    color: #262626;
    line-height: calc( var(--bili) * 40px );
    text-align: center;
    margin: 0 0 calc( var(--bili) * 30px );
}
.detail-content .title.Pd-title{
    font-size: calc( var(--bili) * 40px );
    color: var(--colorZT);
    font-weight: 700;
}
.detail-content .info{
    font-weight: 400;
    font-size: calc( var(--bili) * 16px );
    color: #909090;
    margin: 0 0 calc( var(--bili) * 40px );
    padding: 0 0 calc( var(--bili) * 20px );
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
}
.detail-content .info *{
    color: #909090;
}
.detail-content .info.cpinfo{
    justify-content: center;
}
.detail-content .info .time{
    margin: 0 calc( var(--bili) * 20px ) 0 0;
}
.detail-content .content{
    font-size: calc( var(--bili) * 16px );
    color: #555555;
    line-height: 2;
}
.detail-content .content *{
    max-width: 100%;
    line-height: 2;
}
.xwsx-content{
    padding: calc( var(--bili) * 40px ) 0 ;
    border-top: 1px solid #e9e9e9;
}
.Around{
    border-top: 1px solid #eeeeee;
    padding-top: calc( var(--bili) * 30px );
    margin: calc( var(--bili) * 40px ) 0 0 0;
    display: flex;
    justify-content: space-between;
}
.Around .Aroundul{
    font-weight: 400;
    color: #333333;
    line-height: 2;
    font-size: calc( var(--bili) * 16px );
    width: 48%;
}
.Around .Aroundul:first-child{
    text-align: left;
}
.Around .Aroundul:last-child{
    text-align: right;
}
.Around .Aroundul a{
    color: #666666;
    line-height: 2;
}
.Around .Aroundul:hover a{
    color: var(--colorZT);
}



.sx-Around.Around{
    display: flex;
    justify-content: space-between;
}
.sx-Around.Around .Aroundul{
    width: 48%;
    margin: 0 0 calc( var(--bili) * 20px ) 0;
}
.sx-Around.Around .Aroundul:last-child{
    text-align: right;
}


/*新闻详情*/


/*联系我们-s*/
/*.lx-detail{*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/
/*.content-item{*/
/*    width: 31.4175%;*/
/*    text-align: center;*/
/*}*/
/*.content-item .cimg{*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*}*/
/*.content-item .cwhy{*/
/*    margin: 5% 0 0 0;*/
/*    font-weight: 700;*/
/*    font-style: normal;*/
/*    color: #333333;*/
/*    position: relative;*/
/*    font-size: calc( var(--bili) * 22px );*/
/*}*/
/*.content-item .cwhe{*/
/*    width: 10%;*/
/*    height: 2px;*/
/*    background-color: var(--colorZT);*/
/*    margin:3% auto;*/
/*}*/
/*.content-item .cwhs{*/
/*    font-weight: 300;*/
/*    font-style: normal;*/
/*    color: #4A4949;*/
/*    line-height: 1.4;*/
/*    font-size: calc( var(--bili) * 18px );*/
/*}*/
/*.content-item:nth-of-type(1) .cwhs{*/
/*    padding: 0 12%;*/
/*}*/
/*.content-item:hover .cimg img{*/
/*    !*transform: scale(1.1);*!*/
/*}*/

/*.map-content{*/
/*    padding: calc( var(--bili) * 70px ) 0;*/
/*}*/

/*.container{*/
/*    width: 100%;*/
/*    height: calc( var(--bili) * 500px );*/
/*}*/


.lxwm-list{
    display: flex;
    justify-content: space-between;
    padding: calc( var(--bili) * 50px ) calc( var(--bili) * 50px );
    background-color: #ffffff;
}
.lxwm-list .wn-container{
    width: 55%;
    height: calc( var(--bili) * 350px );
}
.lxwm-list .lxr{
    width: 45%;
}
.lxwm-list .lxr .dca{
    font-weight: normal;
    line-height: calc( var(--bili) * 40px );
    font-size: calc( var(--bili) * 26px );
    color: #333;
    padding: calc( var(--bili) * 30px ) 0 calc( var(--bili) * 30px );
}
.lxwm-list .lxr .dcb{
    padding-left: calc( var(--bili) * 35px );
    line-height: calc( var(--bili) * 50px );
    font-size: calc( var(--bili) * 18px );
    color: #666;
    background-position: 0 9px;
    background-repeat: no-repeat;
}
.lxwm-list .lxr .dcb.lx1{
    background: url(../images/icons_local.png) no-repeat 0 center;
}
.lxwm-list .lxr .dcb.lx2{
    background: url(../images/icons_zx.png) no-repeat 0 center;
}
.lxwm-list .lxr .dcb.lx3{
    background: url(../images/icons_tel.png) no-repeat 0 center;
}
.lxwm-list .lxr .dcb.lx4{
    background: url(../images/icons_fax.png) no-repeat 0 center;
}
.lxwm-list .lxr .dcb.lx5{
    background: url(../images/icons_email.png) no-repeat 0 center;
}

/*联系我们-e*/

/*关于我们-s*/

.ab-con{
    display: flex;
    justify-content: space-between;
}
.ab-con .abcl{
    width: calc( var(--bili) * 750px );
    font-weight: 400;
    font-size: calc( var(--bili) * 16px );
    color: #606060;
    line-height: 2.6;
}
.ab-con .abcl-it{
    font-size: calc( var(--bili) * 30px );
    color: #333333;
}
.ab-con .abcl *{
    line-height: 2.6;
}
.ab-con .abcr{
    width: calc( var(--bili) * 800px );
    height: calc( var(--bili) * 470px );
}


/*风采*/
.case-list{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.case-item{
    width: calc( var(--bili) * 507px );
    position: relative;
    margin: 0 calc( var(--bili) * 39px ) calc( var(--bili) * 55px ) 0;
    cursor: pointer;
}
.case-item .dca{
    width: 100%;
    height: calc( var(--bili) * 400px );
    overflow: hidden;
    cursor: pointer;
}
.case-item .dcma{
    height: calc( var(--bili) * 80px );
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #eeeeee;
    position: absolute;
    bottom: 0;
    transition: all 0.5s;
}
.case-item .dcb{
    font-size: calc( var(--bili) * 18px );
    color: #333333;
    text-align: center;
    padding: 0 5%;
    transition: all 0.3s;
}
.case-item .dcc{
    background: url(../images/case_arrow.png) no-repeat;
    width: calc( var(--bili) * 40px );
    background-size: 100% 100%;
    transform: scale(0);
    transition: all 0.3s;
}
.case-item:nth-child(3n){
    margin: 0 0 calc( var(--bili) * 55px ) 0;
}
.case-item:hover .dcma{
    background-color: rgb(38 135 135 / 80%);
    height: calc( var(--bili) * 180px );
    justify-content: space-evenly;
}
.case-item:hover .dcb{
    color: #ffffff;
    font-weight: 700;
}
.case-item:hover .dcc{
    transform: scale(1);
    height: calc( var(--bili) * 40px );
    display: block;
    font-weight: 600;
}
/*风采*/


/*企业文化-s*/

.culture-con{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.culture-con .whl{
    width: calc( var(--bili) * 753px );
}
.culture-con .whr{
    width: calc( var(--bili) * 800px );
}
.culture-con .wha{
    font-weight: 700;
    font-size: calc( var(--bili) * 34px );
    color: #333333;
    margin: 0 0 calc( var(--bili) * 30px ) 0;
}
.culture-con .whb{
    font-weight: 400;
    font-size: calc( var(--bili) * 16px );
    color: #606060;
    line-height: 2.2;
    margin: 0 0 calc( var(--bili) * 50px ) 0;
}
.culture-Bg{
    height: calc( var(--bili) * 540px );
    background: var(--colorZT) url(../images/u197_div.png) no-repeat right center;
    background-size: 52.5% 100%;
    margin: calc( var(--bili) * 30px ) 0;
}
.culture-Bg .infx{
    display: flex;
    align-items: center;
    height: 100%;
}
.culture-int{
    width: 46%;
}
.culture-int .wha{
    font-weight: 700;
    font-size: calc( var(--bili) * 34px );
    color: #FFFFFF;
    margin: 0 0 calc( var(--bili) * 30px ) 0;
}
.culture-int .whb{
    font-weight: 400;
    font-size: calc( var(--bili) * 16px );
    color: #ffffff;
    line-height: 2.2;
}
.culture-int .whb *{
    color: #ffffff!important;
}


/*企业文化-e*/









/*荣誉-s*/

.honor-tab{
    display: flex;
    justify-content: center;
    padding: calc( var(--bili) * 10px ) 0 calc( var(--bili) * 60px );
}
.honor-tab .honor-tab-box{
    /*width:  calc( var(--bili) * 128px );*/
    padding: 0 calc( var(--bili) * 20px );
    height:  calc( var(--bili) * 52px );
    line-height:  calc( var(--bili) * 52px );
    text-align: center;
    border: 1px solid #b8b8b8;
    border-radius: 5px;
    margin: 0 calc( var(--bili) * 15px );
    font-weight: 400;
    font-style: normal;
    font-size: calc( var(--bili) * 18px );
    color: #717075;
    cursor: pointer;
}
.honor-tab .honor-tab-box.on{
    border: 1px solid var(--colorZT);
    background-color: var(--colorZT);
    color: #ffffff;
}

.enterprise-honor{
    display: flex;
    justify-content: space-between;
    margin: 0 0 calc( var(--bili) * 20px ) 0;
}
.enterprise-honor .dcml{
    width: 25.625%;
    height: calc( var(--bili) * 515px );
}
.enterprise-honor .dcmr{
    width: 70%;
    height: calc( var(--bili) * 600px );
    overflow-x: auto;
}
.enterprise-honor .dcmr .ehitem{
    font-weight: 400;
    font-style: normal;
    font-size: calc( var(--bili) * 22px );
    color: #666666;
    text-align: right;
    line-height: calc( var(--bili) * 30px );
    padding: calc( var(--bili) * 15px ) 3% calc( var(--bili) * 15px ) 0;
}
.enterprise-honor .dcmr .ehitem:hover{
    color: var(--colorZT);
}

.enterprise-honor .dcmr::-webkit-scrollbar
{
    width: 2px;
    height: 2px;
}

.enterprise-honor .dcmr::-webkit-scrollbar-track
{
    background-color: #eaeaea;
}

.enterprise-honor .dcmr::-webkit-scrollbar-thumb
{
    background-color: var(--colorZT);
}



.honor-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.honor-box{
    width: 22.75%;
    margin: 0 3% 3% 0;
    transition: all 0.5s;
    cursor: pointer;
}
.honor-box:nth-child(4n){
    margin: 0 0 3% 0;
}
.honor-box .dca {
    width: 100%;
    border: 1px solid #dbdbdb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc( var(--bili) * 364px );
}

.honor-box .dcb{
    font-weight: 400;
    font-style: normal;
    font-size: calc( var(--bili) * 18px );
    color: #333333;
    text-align: center;
    padding: calc( var(--bili) * 25px ) 0 0;
}
.honor-box:hover{
    transform:translateY(-10px);
}
.honor-box:hover .dcb{
    color:var(--colorZT);
}

.honor-eh{
    display: none;
    animation: fadeInUp 0.5s forwards;
}
.honor-eh.on{
    display: flex;
}
/*荣誉-e*/


/*发展历程-s*/

.ab-history{
    padding: calc( var(--bili) * 50px ) 0 0 0;
}
.ab-history .history-lst{

}
.history-lst .history-box{
    width: calc( var(--bili) * 800px );
    margin: 0 auto;
    padding: 0 0 calc( var(--bili) * 80px ) 0;
}
.history-lst .history-box .dca{
    font-weight: 700;
    font-style: normal;
    font-size: calc( var(--bili) * 120px );
    letter-spacing: 2px;
    color: var(--colorZT);
}
.history-lst .history-box .dcb{
    font-weight: 400;
    font-style: normal;
    font-size: calc( var(--bili) * 16px );
    line-height: calc( var(--bili) * 36px );
    position: relative;
    padding: 0 20px;
}
.history-lst .history-box .dcb:after{
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: var(--colorZT);
    border-radius: 50%;
    left: 0;
    top: 17px;
}

.history-lst .swiper-container{
    margin: 0 0 calc( var(--bili) * 200px );
    overflow: initial;
}
.history-lst .swiper-container:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 23px;
    bottom: 0;
    left: 0;
    background: url(../images/history_line.png) no-repeat center;
}

.history-lst .swiper-pagination{
    bottom: calc( var(--bili) * -80px );
}
.history-lst .swiper-pagination-bullet{
    width: auto;
    background: transparent;
    opacity: 1;
    margin: 0 15px!important;
    position: relative;
    height: 45px;
    line-height: 45px;

}
.history-lst .swiper-pagination-bullet-active{
    color: var(--colorZT);
}
.history-lst .swiper-pagination-bullet-active:after{
    content: '';
    position: absolute;
    width: 12px;
    height: 7px;
    bottom: 0;
    left: 32%;
    background: url(../images/u576.svg) no-repeat center;
}
.history-lst .swiper-pagination-bullet-active:before{
    content: '';
    position: absolute;
    width: 12px;
    height: 7px;
    top: 0;
    left: 32%;
    background: url(../images/u576.svg) no-repeat center;
    transform:rotate(180deg);
}
/*发展历程-e*/


/*招聘*/

.recruit-cot{
    position: relative;
}
.recruit-cot .rc-title{
    font-size: calc( var(--bili) * 32px );
    color: var(--colorZT);
    transition-property: all;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 calc( var(--bili) * 30px ) 0;
}
.recruit-cot .rc-lst{
    display: flex;
    justify-content: space-between;
}
.recruit-cot .ll-dcmal{
    width: 50%;
    background-color: #e8effb;
    padding: calc( var(--bili) * 80px ) calc( var(--bili) * 50px );
}
.recruit-cot .ll-dcmal .dca{
    line-height: normal;
    font-size: calc( var(--bili) * 28px );
    font-weight: 400;
    margin-top: calc( var(--bili) * 10px );
    color: #303030;
    margin-bottom: calc( var(--bili) * 10px );
}
.recruit-cot .ll-dcmal .dcb{
    line-height: normal;
    color: #939292;
    font-size: calc( var(--bili) * 18px );
    font-weight: 400;
    margin-bottom: calc( var(--bili) * 30px );
}
.recruit-cot .ll-dcmal .dcc{
    font-size: calc( var(--bili) * 18px );
    color: #303030;
    line-height: 2;
}
.recruit-cot .ll-dcmar{
    width: 50%;
    overflow: hidden;
}

.recruit-cot .ypxz-box{
    width: 32%;
    background-color: #f5f5f5;
    height: calc( var(--bili) * 250px );
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.recruit-cot .ypxz-box .dca{
    overflow: hidden;
    width: calc( var(--bili) * 30px );
    margin: 0 auto;
}
.recruit-cot .ypxz-box .dcb{
    line-height: 1.5;
    font-size: calc( var(--bili) * 18px );
    font-weight: 700;
    color: #333;
    text-align: center;
    padding-top: calc( var(--bili) * 30px );
    padding-bottom: calc( var(--bili) * 20px );
}
.recruit-cot .ypxz-box .dcc{
    font-size: calc( var(--bili) * 16px );
    color: #8E8E8E;
    line-height: 2;
    text-align: center;
}
.recruit-cot .ypxz-box .dcc.ads{
    padding: 0 20%;
}

.recruit-cot .ypxz-box.on{
    background-color: var(--colorZT);
}
.recruit-cot .ypxz-box.on .dcb{
    color: #ffffff;
}
.recruit-cot .ypxz-box.on .dcc{
    color: #ffffff;
}


.recruit-box{
    overflow: hidden;
}
.recruit-box .recruit-title{
    font-weight: 700;
    font-size: calc( var(--bili) * 18px );
    color: #1F1F1F;
    display: flex;
    background-color: #f2f2f2;
}
.recruit-box .recruit-title .recruit-mk{
    width: 16.6%;
    text-align: center;
    line-height:  calc( var(--bili) * 60px );
}
.recruit-item{
    margin: calc( var(--bili) * 20px ) 0 0;
    overflow: hidden;
}
.recruit-item .recruit-name{
    /*font-weight: 700;*/
    font-size: calc( var(--bili) * 16px );
    display: flex;
    cursor: pointer;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #dddddd;
}
.recruit-item .recruit-name .recruit-mk{
    width: 16.6%;
    text-align: center;
    line-height:  calc( var(--bili) * 60px );
}
.recruit-item .recruit-whnr{
    border: 1px solid #dddddd;
    padding: calc( var(--bili) * 40px );
    justify-content: space-between;
    /*height: 0;*/
    transition: all 0.3s;
    background-color: #f8f8f8;
    display: none;
    animation: fadeInUp 1s forwards;
}
.recruit-item .recruit-whnr .zwbox{
    width: 45%;
}
.recruit-item .recruit-whnr .zwbox .dca{
    font-weight: 700;
    font-size: calc( var(--bili) * 18px );
    color: #404040;
}
.recruit-item .recruit-whnr .zwbox .dcb{
    font-weight: 400;
    font-size: calc( var(--bili) * 16px );
    color: #666666;
    line-height: calc( var(--bili) * 36px );
}
.recruit-item.on .recruit-whnr{
    /*padding: calc( var(--bili) * 40px );*/
    /*height: 100%;*/

    display: flex;
}
.recruit-item.on .recruit-name{
    color: #ffffff;
    background-color: var(--colorZT);
    border: 1px solid var(--colorZT);
}
.recruit-item.on .recruit-name .recruit-mk{
    color: #ffffff;
}
.recruit-item:hover .recruit-name{
    color: #ffffff;
    background-color: var(--colorZT);
    border: 1px solid var(--colorZT);
}
.recruit-item:hover .recruit-name .recruit-mk{
    color: #ffffff;
}
/*招聘*/




/*留言*/
.lxhs{
    background-color: #eceff4;
}
.message-lst{
    width: 90%;
    margin: 0 auto;
    padding: 0 0 calc( var(--bili) * 50px ) 0;
}
.message-lst .message-blc{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 0 calc( var(--bili) * 20px ) 0;
}
.message-lst .w30{
    width: 31.5%;
}
.message-lst .message-blc .mbs{
    position: relative;
}
.message-lst .message-blc .mbs .srk{
    width: 100%;
    height: calc( var(--bili) * 54px );
    padding: 0 calc( var(--bili) * 30px );
}
.message-lst .message-blc .mbs .srks{
    width: 100%;
    height: calc( var(--bili) * 186px );
    padding: calc( var(--bili) * 20px ) calc( var(--bili) * 30px );
}
.message-lst .message-blc:last-child{
    justify-content: center;
    margin: calc( var(--bili) * 50px ) 0 0;
}
.message-lst .message-blc .ann{
    width: calc( var(--bili) * 170px );
    height: calc( var(--bili) * 54px );
    font-weight: 400;
    font-style: normal;
    font-size: calc( var(--bili) * 18px );
    color: #FFFFFF;
    background-color: var(--colorZT);
    border-radius: 5px;
    cursor: pointer;
}
.message-lst .message-blc .ann:hover{
    opacity: 0.8;
}
/*留言*/


/*自定义单页*/
.single-con{
    max-width: 100%;
    font-size: calc( var(--bili) * 16px );
    color: #555555;
    line-height: 2;
}
.single-con *{
    max-width: 100%;
    line-height: 2;
}
/*自定义单页*/





/*产品-s*/
.rsA-lst{
    overflow: hidden;
    position: relative;
    padding: 0 0 calc( var(--bili) * 40px ) 0;
}
.rsA-item{
    background-color: #ffffff;
    height: calc( var(--bili) * 537px );
}
.rsA-item .Acls{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.rsA-item .rscsl{
    width: calc( var(--bili) * 480px );
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc( var(--bili) * 40px );
    background: url(../images/u408_div.png) no-repeat center;
    background-size: cover;
}
.rsA-item .rscsr{
    width: calc( var(--bili) * 920px );
    height: 100%;
    overflow: hidden;
}


.rsA-item .rsca{
    font-weight: 700;
    font-size: calc( var(--bili) * 30px );
    color: #333333;
    margin: 0 0 calc( var(--bili) * 30px ) 0;
}
.rsA-item .rscb{
    font-weight: 400;
    font-size: calc( var(--bili) * 18px );
    color: #666666;
    line-height: 2.4;
}
.rsA-item .rscc{
    margin: calc( var(--bili) * 70px ) 0 0 0;
    font-weight: 400;
    font-size: calc( var(--bili) * 18px );
    color: #717075;
    border: 1px solid #b8b8b8;
    border-radius: 5px;
    width: calc( var(--bili) * 150px );
    height: calc( var(--bili) * 60px );
    line-height: calc( var(--bili) * 60px );
    text-align: center;
}
.rsA-item .rscc:hover{
    background-color: var(--colorZT);
    border: 1px solid var(--colorZT);
    color: #ffffff;
}

.rsA-lst .swiper-pagination{
    width: auto;
    left: calc( var(--bili) * 380px );
    bottom: calc( var(--bili) * 60px );
    z-index: 9;
}
.rsA-lst .swiper-pagination .swiper-pagination-bullet{
    width: calc( var(--bili) * 12px );
    height: calc( var(--bili) * 12px );
    border-radius: 0;
    background-color: transparent;
    border: 1px solid var(--colorZT);
    opacity: 1;
    margin: 0 calc( var(--bili) * 6px );
}
.rsA-lst .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--colorZT);
}





.rsB-all{
    position: relative;
    padding: 0 0 calc( var(--bili) * 40px ) 0;
}
.rsB-lst{
    position: relative;
    overflow: hidden;
}
.rsB-item{
    width: calc( var(--bili) * 438px );
}
.rsB-item .rscie{
    width: 100%;
    height: calc( var(--bili) * 255px );
    overflow: hidden;
}
.rsB-item .rscnm{
    height: calc( var(--bili) * 88px );
    line-height: calc( var(--bili) * 88px );
    text-align: center;
    padding: 0 5%;
    font-weight: 400;
    font-size: calc( var(--bili) * 18px );
    color: #333333;
    background-color: #ffffff;
}



.page-lst{
    padding: 0 0 calc( var(--bili) * 40px );
}
.page-lst.download-page{
    padding: calc( var(--bili) * 40px ) 0 0;
}

.rsB-all .rsB-btn{
    width: calc( var(--bili) * 55px );
    height: calc( var(--bili) * 55px );
    top: 33%;
    background: var(--colorZT) url(../images/u448.png) no-repeat center;
    background-size: calc( var(--bili) * 21px ) calc( var(--bili) * 16px );
}
.rsB-all .swiper-button-next{
    right: calc( var(--bili) * -90px );
}
.rsB-all .swiper-button-prev{
    left: calc( var(--bili) * -90px );
    transform: rotate(180deg);
}
.rsB-all .rsB-btn:after{
    display: none;
}




/*产品-e*/

/*产品详情-s*/
.product-intro{
    background-color: #ffffff;
    padding: calc( var(--bili) * 50px ) calc( var(--bili) * 80px );
    display: flex;
    justify-content: space-between;
    margin: 0 0 calc( var(--bili) * 50px ) 0;
}
.product-intro .dcl{
    width: calc( var(--bili) * 708px );
    height: calc( var(--bili) * 442px );
}
.product-intro .dcr{
    width: calc( var(--bili) * 620px );
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-intro .dca{
    font-weight: 700;
    font-size: calc( var(--bili) * 34px );
    color: #333333;
    margin: 0 0 calc( var(--bili) * 20px ) 0;
}
.product-intro .dcb{
    font-weight: 400;
    font-size: calc( var(--bili) * 18px );
    color: #666666;
    line-height: 2.2;
    width: 86%;
}
.product-intro .dcb:last-child{
    margin: 0 0 calc( var(--bili) * 60px ) 0;
}

.product-detaile{
    background-color: #ffffff;
}
.del-nav{
    display: flex;
    padding: 0 calc( var(--bili) * 80px );
    border-bottom: 1px solid #eeeeee;
}
.del-nav .dns{
    font-weight: 400;
    font-size: calc( var(--bili) * 24px );
    line-height: calc( var(--bili) * 90px );
    height: calc( var(--bili) * 90px );
    color: #7B7B7B;
    margin: 0 calc( var(--bili) * 40px ) 0 0;
    cursor: pointer;
    position: relative;
}
.del-nav .dns.dnon{
    font-weight: 700;
    color: #333333;
}
.del-nav .dns.dnon:after{
    content: '';
    position: absolute;
    width: 40%;
    height: 2px;
    background-color: var(--colorZT);
    bottom: 0;
    left: 20%;
}
.del-lst{
    padding: calc( var(--bili) * 60px ) calc( var(--bili) * 80px );
}
.del-lst .del-con{
    font-size: calc( var(--bili) * 16px );
    color: #555555;
    line-height: 2;
    display: none;
    animation: fadeInUp 1s forwards;
}
.del-lst .del-con *{
    max-width: 100%;
    line-height: 2;
}
.del-lst .del-con.dcon{
    display: block;
}

/*产品详情-e*/





/*产品列表-s*/
.product-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.product-box{
    width: calc( var(--bili) * 789px );
    height: calc( var(--bili) * 425px );
    margin: 0 0 calc( var(--bili) * 20px );
    position: relative;
}
.product-box .Acls{
    width: 100%;
}
.product-box .cpimg{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.product-box .cpname{
    font-size: calc( var(--bili) * 24px );
    color: #333333;
    position: absolute;
    width: 100%;
    top: calc( var(--bili) * 40px );
    right: 0;
    z-index: 2;
    padding: 0 5%;
    text-align: right;
    font-weight: 700;
}

.product-box:nth-of-type(1){
    width: calc( var(--bili) * 1090px );
}
.product-box:nth-child(4n+1){
    width: calc( var(--bili) * 1090px );
}
.product-box:nth-child(2n){
    width: calc( var(--bili) * 487px );
}
.product-box:nth-child(4n){
    width: calc( var(--bili) * 789px );
}

/*产品列表-e*/

/*产品-s*/


/*产品-e*/













