@charset "utf-8";

.header{
    height: 100px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    justify-content: space-between;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: transparent;
}
.header_wrap{
    height: 100px;
}
.header.header_on{
    background: #fff;
    border-color: rgba(0, 0, 0, .08);
}
.header .logo{
    flex:1;
}
.header .logo img{
    max-height: 71px;
}
.header .logo .img2{
    display: none;
}
.nav .nav_li{
    margin:0 28px;
    position: relative;
}
.nav .nav_li .nav1 a{
    color:#fff;
    display: block;
    line-height:100px;
    position: relative;
    text-transform: capitalize;
    transition:all 0s;
    font-size:18px;
}
.nav .nav_li .nav1 a:after{
    content:'';
    width:0;
    height:2px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition:all .3s;
}
.nav .nav_li .nav1 a:hover,.nav .nav_li.cur .nav1 a{
    color:#fff;
}
.nav .nav_li .nav2{
    list-style-type: none;
    position: absolute;
    top: 72px;
    line-height: 40px;
    width: 300px;
    background: #fff;
    display: none;
    border-radius:5px;
    padding:20px 30px 40px;
    color:#3a3a3a;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    z-index: 10;
}
.nav .nav_li .nav2 h4{
    font-size:18px;
    border-bottom: 1px solid #c8c8c8;
    padding:10px 0;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.nav .nav_li .nav2 a{
    display: flex;
    align-items: center;
    padding-top: 15px;
    font-family: 'MuliLatin';
    font-size:14px;
}
.nav .nav_li .nav2 a span{
    flex:1;
    line-height: 1;
}
.nav .nav_li .nav2 a i{
    font-size:12px;
}
.nav .nav_li .nav2 a:hover{
    color:var(--theme-color);
}
.nav .nav_li:hover .nav1 a:after,.nav .nav_li.cur .nav1 a:after{
    width: 100%;
}
.nav_info{
    height: 48px;
    align-items: center;
    justify-content: flex-end;
}
.nav_info .tel a{
    color:#666;
    font-family: 'MuliLatin';
    font-size:14px;
    display: flex;
    margin-right:35px;
    align-items: center;
    cursor: pointer;
}
.nav_info .tel a i{
    font-size:12px;
    margin-right: 5px;
    background: #f2f2f2;
    color:#4e70ce;
    width: 22px;
    height: 22px;
    display: block;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav_info .lang_box .lang{
    display: flex;
    align-items: center;
    height: 28px;
    padding:0 20px;
    border-radius: 100px;
    cursor: pointer;
    color:#fff;
    transition:all .3s;
}
.nav_info .search i{
    font-size:24px;
    color:#fff;
    cursor: pointer;
}
.nav_info .lang_box .lang img{
    margin-right: 3px;
    width: 20px;
    height: 20px;
}
.nav_info .lang_box .lang .img2{
    display: none;
}
.nav_info .lang_box{
    position: relative;
    z-index: 100;
    margin-left: 15px;
}
.nav_info .lang_box .dlang{
    position: absolute;
    left: 0;
    top: 28px;
    width: 145px;
    background: #fff;
    padding:5px 15px 10px;
    display: none;
    border-radius: 3px;
    box-shadow: 0 3px 15px rgba(0,0,0,.1);
}
.nav_info .lang_box .dlang a{
    display: flex;
    align-items: center;
    color:#666;
}
.nav_info .lang_box .dlang a:hover{
    color:var(--theme-color);
}
.nav_info .lang_box .dlang a img{
    height: 16px;
    margin-right: 6px;
}
.nav_info .lang_box:hover .dlang{
    display: block;
}

.header_on .nav .nav_li .nav1 a{
    color:#333;
}
.header_on.header .logo .img1{
    display: none;
}
.header_on.header .logo .img2{
    display: block;
}
.header_on .nav .nav_li .nav1 a:hover,.header_on .nav .nav_li.cur .nav1 a{
    color:var(--theme-color);
}
.header_on .nav .nav_li .nav1 a:after{
    background: var(--theme-color);
}
.header_on .nav_info .search i{
    color:#333;
}
.header_on .nav_info .lang_box .lang .img1{
    display: none;
}
.header_on .nav_info .lang_box .lang .img2{
    display: block;
}

.banner{
    position: relative;
    overflow: hidden;
}
.banner .item_img img{
    width: 100%;
}
.banner .item .item_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-bottom:5vh;
}
.banner .item .item_con .wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner .item .item_con .info{
    display: flex;
    flex-direction: column;
    color:#fff;
}
.banner .item .item_con h4{
    font-size:56px;
    font-family: 'MuliBlackMOD';
    line-height:1.1;
    margin:0 0 20px;
}
.banner .item .item_con h4 span{
    color:var(--theme-color);
}
.banner .item .item_con p{
    font-size:18px;
    margin-bottom: 10px; margin:0 0 80px;
    font-family: 'MontserratLight';
}
.banner .pages{
    position: absolute;
    width:100%;
    bottom: 50px;
    display: flex;
    z-index: 30;
    justify-content: space-between;
}
.banner .swiper-pagination{
    text-align: left;
    bottom:0;
    left: 5%;
    width: auto;
}
.banner .swiper-num{
    right:5%;
    position: absolute;
    bottom: 0;
    color:#fff;
}
.banner .swiper-num .active{
    font-size:30px;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width:55px;
    height: 3px;
    background: #fff;
    margin:0 8px;
    opacity: 1;
    position: relative;
    opacity: .5;
    border-radius: 0;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    opacity: 1;
}

.banner .swiper-button-prev{
    left:3%;
}
.banner .swiper-button-next{
    right: 3%;
}
.banner .swiper-button-prev, .banner .swiper-button-next{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,.2);
    display: none;
}
.banner:hover .swiper-button-prev, .banner:hover .swiper-button-next{
    display: flex;
}
.banner .swiper-button-prev:hover, .banner .swiper-button-next:hover{
    background: var(--theme-color);
}
.banner .swiper-button-prev:after, .banner .swiper-button-next:after{
    color:#fff;
    font-size:24px;
}
.banner .banner-towrap{
    position: absolute;
    bottom: 42px;
    left: 50%;
    z-index: 2;
    margin-left: -24px;
    display: flex;
    align-items: center;
}
.banner .banner-towrap p{
    font-size: 12px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 10px;
}
.banner .banner-to{
    transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    display: block;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    z-index: 9;
    margin: auto; 
    color: #fff;
    position: relative;
    height: 30px; 
    width: 20px; 
    text-align: center;
    border-radius: 10px; 
    margin: 0 5px;
}
.banner .banner-towrap span{ 
    text-transform: uppercase; 
    color: #fff; 
    font-size: 14px;
}
.banner .banner-to i{ 
    animation: downico 1.5s ease-out infinite;
    position: absolute; 
    width: 3px; 
    height: 3px;
    background: #fff;
    margin-left: -1px;
}
@keyframes downico{
	0%{top: 10%;}
	35%{top: 40%;}
	65%{top: 50%;}
	100%{top: 10%;}
}
@-webkit-keyframes downico{
	0%{top: 10%;}
	35%{top: 40%;}
	65%{top: 50%;}
	100%{top: 10%;}
}

/* tit_box1 */

.tit_box1{
    padding:70px 0 40px;
    text-align: center;
}
.tit_box1 .tit span{
    font-size:18px;
    color:var(--theme-color);
    text-transform: uppercase;
}
.tit_box1 .tit h4{
    font-size:46px;
    line-height:1.1;
    font-family: 'MuliBlackMOD';
}
.tit_box1.uppercase .tit h4{
    text-transform: uppercase;
}
.tit_box1 .desc{
    margin-top: 20px;
    font-size:18px;
}
.tit_box1 .desc h3,.tit_box1 .desc h4{ font-size:25px; font-weight:600; }
.tit_box2{
    align-items: center;
}
.tit_box2 .tit{
    flex:1;
}
.tit_box2 .tit h4{
    color:#2d2d2d;
    font-family: 'MuliBlackMOD';
    font-size:60px;
    text-transform: uppercase;
    line-height: 1.3;
}
.tit_box2_fff .tit h4{
    color:#fff;
}
.tit_box2-center{
    text-align: center;
}

.bg1{
    padding:20px 0 0;
    background:#f6f6f6;
    overflow: hidden;
}
.bg2{
    background:var(--theme-color);
}

/* product */

.product_wrap{
    padding:70px 0;
    overflow: hidden;
}
.product_con {
    margin:30px 0;
    position: relative;
}
.product_con .item{
    display: block;
    padding:40px 30px;
    background-color: #f3f3f3;
    position: relative;
}
.product_con .item:after{
    content:'';
    display: block;
    width: 100%;
    height:0;
    position: absolute;
    left: 0;
    bottom: 0;
    background:var(--theme-color);
    z-index: -1;
    transition:all .4s;
}
.product_con .item .con{
    color:#333;
    transition: all .4s;
}
.product_con .item .con span{
    color:var(--theme-color);
    transition: all .4s;
}
.product_con .item .con h4{
    font-size:20px;
    font-family: 'MuliLatin';
    font-weight: bold;
    height: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product_con .item .con p{
    font-size:16px;
    margin: 15px 0;
    color:#666;
    transition:all .4s;
}
.product_con .item .con .btn i{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border:1px solid #d1d1d1;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
.product_con .item .img{
    border-radius: 20px;
    justify-content: center;
    margin-top: 40px;
}
.product_con .item:hover{
    background: transparent;
}
.product_con .item:hover:after{
    height: 100%;
}
.product_con .item:hover .con{
    color:#fff;
}
.product_con .item:hover .con span,.product_con .item:hover .con p{
    color:#fff;
}
.product_con .swiper-button-prev,.product_con .swiper-button-next{
    width: 60px;
    height: 60px;
    background:rgba(0,0,0,.2);
    color:#fff;
    border-radius: 50%;
    opacity: 1;
    z-index: 5;
}
.product_con .swiper-button-prev:after,.product_con .swiper-button-next:after{
    font-size:24px;
}
.product_con .swiper-button-prev{
    left: -100px;
}
.product_con .swiper-button-next{
    right: -100px;
}

.bg2_con{
    text-align: center;
    color:#fff;
    font-size:48px;
    padding:50px 0;
    font-family: 'MontserratExtraBold';
}
/* about */

.about_tit{
    background: url("../images/map1.png") no-repeat center top;
}

.about_list{
    padding-bottom: 90px;
}
.about_list .item{
    flex:1;
    position: relative;
}
.about_list .item:nth-child(2){
    flex:2;
    margin:0 20px;
}
.about_list .item .img img{
    height: 490px;
    width: 100%;
    object-fit: cover;
}
.about_list .item .con{
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0,134,207,.9);
    padding:24px 30px;
}
.about_list .item .con h4{
    color:#fff;
    font-size:24px;
    font-family: 'MuliLatin';
    line-height: 1;
}
.about_list .item .con h4:after{
    content:'';
    width: 30px;
    height: 2px;
    background: #fff;
    display: block;
    margin-top: 10px;
}
.about_list .item1 .con{
    width: 100%;
    text-align: center;
    background: var(--theme-color);
    padding:40px 30px;
}
.about_list .item1 .con h4{
    font-size:38px;
}
.about_list .item1 .con h4:after{
    display: none;
}
.about_list .item1 .con h4 span{
    display: block;
    font-family: 'MuliLatinRegular';
    font-size:16px;
    line-height: 1;
    margin-bottom: 10px;
}

/* case */

.case{
    padding: 0 3% 90px;
}
.case_con{
    position:relative;
    overflow: hidden;
}
.case_con .item .img{
    overflow: hidden;
}
.case_con .item .img img{
    width: 100%;
}
.case_con .item .con{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    background: rgba(0,134,207,.9);
    padding:20px 35px;
    transition:all .4s;
}
.case_con .item .con h4{
    color:#fff;
    font-family: 'MuliLatin';
    font-size:18px;
    line-height: 1.4;
}
.case_con .item:hover .con{
    width: 100%;
}

.case_con .swiper-button-prev,.case_con .swiper-button-next{
    width: 60px;
    height: 60px;
    border:1px solid #fff;
    color:#fff;
    border-radius: 50%;
    opacity: 1;
    z-index: 5;
}
.case_con .swiper-button-prev:after,.case_con .swiper-button-next:after{
    font-size:24px;
}
.case_con .swiper-button-prev:hover,.case_con .swiper-button-next:hover{
    background: #fff;
    color:var(--theme-color);
}

/* choose */
.choose_wrap{
    background:url("../images/bg2.jpg") no-repeat center;
    padding:100px 0;
    background-size:cover;
}
.choose{
    position: relative;
}
.choose_con{
    padding-right: 5%;
    width:33.33%;
    position: absolute;
    left: 0;
    top: -30px;
}
.choose_con h4{
    font-size:50px;
    font-family: MuliBlackMOD;
    text-transform: uppercase;
    color:#0086cf;
    line-height: 1;
    margin-bottom: 20px;
}
.choose_con h4 span{
    color:#fff;
}
.choose_con .tit_box2 .tit h4{
    color:var(--theme-color);
}

.choose_list .item{
    width:33.333%;
    display: flex;
    padding:0 20px;
}
.choose_list .item:first-child{
    padding-left: calc(33.333% + 20px);
    width: 66.666%;
}
.choose_list .item .ico{
    width: 108px;
    height: 108px;
    background: rgba(71,105,182,.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.choose_list .item:nth-child(3) .ico{
    background: rgba(13,41,104,.5);
}
.choose_list .item .ico:before,.choose_list .item .ico:after{
    content:'';
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border:1px solid #25599f;
    display: block;
    position: absolute;
    left: -11px;
    top: -11px;
}
.choose_list .item .ico:after{
    width: 160px;
    height: 160px;
    left: -26px;
    top: -26px;
    border-color:rgba(37,89,159,.2);
}
.choose_list .item .ico img{
    
}
.choose_list .item .con{
    flex:1;
    min-width: 0;
    padding-left: 40px;
}

.choose_list .item .con h4{
    font-size:20px;
    color:#fff;
    margin-bottom: 10px;
}
.choose_list .item .con p{
    font-size:16px;
    color:#abb7d7;
}
.choose_list .item:nth-child(-n+2){
    margin-bottom: 80px;
}

/* news */

.news{
    padding: 90px 0;
}
.news .tit_box2 .tit{
    flex: none;
}
.news .menu{
    flex:1;
    padding-left: 80px;
}
.news .menu a{
    color:#999;
    font-size:18px;
    display: inline-block;
    line-height: 1;
}
.news .menu a:nth-child(2),.news .menu a:last-child{
    border-left: 1px solid #ddd;
    padding-left: 30px;
    margin-left: 30px;
}
.news .menu a:after{
    content:'';
    border-bottom: 1px solid var(--theme-color);
    display: block;
    width: 0;
    height: 1px;
    margin-top: 8px;
    transition:all .4s;
}
.news .menu a:first-child,.news .menu a:hover{
    color:var(--theme-color);
}
.news .menu a:first-child:after,.news .menu a:hover:after{
    width: 100%;
}
.news_con{
    margin-top: 30px;
}
.news_list{
    width: 65%;
}
.news_list .item{
    width: 31.2%;
    float: left;
    position: relative;
}
.news_list .item:first-child{
    width: 68.8%;
    padding-right: 30px;
}
.news_list .item:last-child{
    margin-top: 30px;
}
.news_list .item .img img{
    width: 100%;
}
.news_list .item .con{
    position: absolute;
    bottom: 0;
    left: 0;
    padding:30px;
    width: 100%;
    color:#fff;
    z-index: 1;
}
.news_list .item .con:after{
    content:'';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top,rgba(0,0,0,.5) ,transparent);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.news_list .item .con span{
    display: none;
}
.news_list .item .con h4{
    font-size:18px;
    line-height: 1.3;
}
.news_list .item:first-child .con{
    width:calc(100% - 30px)
}
.news_list .item:first-child .con span{
    display: block;
}
.news_list .item:first-child .con h4{
    font-size:24px;
}

.news_ul{
    padding-left: 40px;
    flex:1;
    min-width: 0;
}
.news_ul .item{
    border-bottom: 1px solid #d5d5d5;
    display: block;
    padding:23px 0 18px;
    position: relative;
}
.news_ul .item:after{
    content:'';
    display: block;
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--theme-color);
    left: 0;
    transition:all .4s;
    bottom:-1px;
}
.news_ul .item .con span{
    color:#666;
}
.news_ul .item .con h4{
    font-size:20px;
    color:#333;
    margin-top: 10px;
}
.news_ul .item:hover .con h4{
    color:var(--theme-color);
}
.news_ul .item:hover:after{
    width: 100%;
}


/* public_message */

.public_message_con{
    border-radius: 30px;
    background: #fff;
    margin-top: 70px;
    padding:70px;
}
.public_message_con .cover{
    width: 40%;
    height: 500px;
    background: #f6f6f6;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.public_message_con .cover img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.public_message_con .page_contact2_form{
    background: transparent;
}
.public_message_con .page_contact2_form .input_box .input input,.public_message_con .page_contact2_form textarea{
    border:1px solid #ccc;
}

.page_product_related{
    padding:70px 0 0;
}
.page_product_related_tit{
    font-size:40px;
    color:#333;
    text-align: center;
    font-family: 'MontserratSemiBold';
}


/* footer_message */

.footer_message{
    background: url("../images/bg3.jpg") no-repeat center;
    background-size:cover;
    padding:70px 0;
    position: relative;
    overflow: hidden;
}
.footer_message .con{
    color:#fff;
}
.footer_message .con p{
    font-size:18px;
}
.footer_message .con h4{
    font-size:48px;
    font-family: 'MuliBlackMOD';
    line-height: 1.4;
}
.footer_message .con .btn{
    height: 54px;
    line-height: 54px;
    background: #0086cf;
    padding:0 40px;
    display: inline-block;
    margin-top: 40px;
    cursor: pointer;
}
.footer_message .con .btn:hover{
    opacity: .9;
}
.footer_message .con .btn i{
    margin-right: 6px;
}
.footer_message .form{
    margin-top: 20px;
}
.footer_message .form input{
    width: 320px;
    border-radius: 200px;
    background: #fff;
    height: 54px;
    outline: none;
    border:none;
    margin:0 8px;
    font-size:16px;
    padding:0 20px;
}
.footer_message .form input.content{
    flex:1;
}
.footer_message .form button{
    border:none;
    outline: none;
    width: 240px;
    height: 54px;
    border-radius: 100px;
    background: var(--theme-color);
    color:#fff;
    cursor: pointer;
    font-size:18px;
    transition:all .3s;
}
.footer_message .form button:hover{
    background: var(--theme-color);
}
.footer_message .form button i{
    font-size:20px;
    margin-right: 10px;
    font-family: 'MontserratLight';
}
.footer_message .share{
    height: 48px;
    padding:0 30px;
    background: rgba(176,181,203,.3);
    display: inline-block;
    margin-top: 48px;
    border-radius: 100px;
}

.footer_message .share_wrap{
    align-items: center;
    height: 100%;
}
.footer_message .share_wrap .tit{
    font-size:16px;
    color:#fff;
    margin-right: 15px;
}
.footer_message .b_top {
    position: absolute;
    bottom: -25px;
    left: 50%;
    width: 50px;
    height: 50px;
    line-height: 42px;
    text-align: center;
    background:var(--theme-color);
    color: #0064b3;
    border: 4px solid #fff;
    border-radius: 100%;
    margin-left: -25px;
    z-index: 99;
}
.footer_message .b_top:hover{
    background: var(--theme-color);
}
.footer_message .b_top span {
    font-size:14px;
    color: #fff;
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: block;
}


/* footer */

.footer{
    background:#f1f1f1;
    background-size: cover;
    padding:70px 0 0;
}
.footer_con{
    justify-content: space-between;
}
.footer_hd{
    width: 30%;
}
.footer_hd p{
    color:#666;
    margin: 40px 0 30px;
}
.footer_hd h4{
    font-size:18px;
}
.footer_hd .form{
    margin:10px 0 20px;
}
.footer_hd .form input{
    height: 52px;
    background:#e9e9e9;
    width: 100%;
    border:none;
    outline: none;
    padding:0 16px;
    color:#333;
}
.footer_hd .form button{
    height: 52px;
    background: var(--theme-color);
    outline: none;
    border:none;
    margin-left: 8px;
    padding:0 30px;
    color:#fff;
    cursor: pointer;
    font-style: italic;
}
.footer_hd .form button:hover{
    font-style: normal;
}
.footer_md{
    display: flex;
}
.footer_md .item{
    padding-left: 60px;
    width:300px;
}
.footer_md .item .tit{
    font-size:20px;
    font-family: 'MuliLatin';
    margin-bottom:10px;
    text-transform: uppercase;
}
.footer_md .item .tit:after{
    content:'';
    width: 43px;
    height: 3px;
    background: var(--theme-color);
    display: block;
    margin-top: 6px;
}
.footer_md .item .menu a{
    display: block;
    padding-top: 8px;
    font-size:16px;
}
.footer_md .item .menu a:hover{
    text-decoration: underline;
    color:var(--theme-color);
}

.footer_md .tel_list{
    width:420px;
}
.footer_md .item.tel_list .tit{
    margin-bottom: 20px;
}
.footer_md .item .tel_item{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer_ft .tit{
    margin-bottom: 20px;
}
.footer_ft .follow_list a{
    width: 28px;
    height: 28px;
}


.footer_md .item .tel_item .ico{
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border:1px solid #d8d8d8;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_md .item .tel_item .con{
    flex:1;
    min-width: 0;
    padding-left: 10px;
}


.footer_copyright{
    font-size:14px;
    padding:20px 0;
    display: flex;
    border-top: 1px solid #ddd;
    margin-top: 45px;
    color:#666;
}
.footer_copyright a{
    margin-left:30px;
}
.footer_copyright a.bontop{
    flex:1;
    display: flex;
    justify-content: flex-end;
}
.footer_copyright a:hover{
    color:var(--theme-color);
}

/* page_banner */

.page_banner{
    margin-top: 100px;
    position: relative;
}
.page_banner .img img{
    width: 100%;
}
.page_banner .info{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color:#fff;
    text-transform: uppercase;
}
.page_banner .info .pos{
    
}
.page_banner .info .pos a{
    margin:0 3px;
}
.page_banner .info .tit{
    font-size:64px;
    line-height: 1.2;
    font-family: 'MuliBlackMOD';
}

/* page_product */

.page_product{
    padding:80px 0;
}
.page_product_menu{
    width: 340px;
}
.page_product_menu .menu{
    
}
.page_product_menu .menu_tit{
    font-size:18px;
    color:#333;
    padding:0 0 15px;
}
.page_product_menu .menu_list .wrap{
    position: relative;
    margin-bottom: 20px;
    background: #f6f6f6;
}
.page_product_menu .menu_list .wrap .ico{
    position: absolute;
    right: 15px;
    top: 20px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    justify-content: center;
}
.page_product_menu .menu_list .wrap .ico i{
    font-size:14px;
}
.page_product_menu .menu_list .hd a{
    font-size:20px;
    color:#333;
    display: block;
    background: #f6f6f6;
    border-left: 4px solid var(--theme-color);
    padding:15px;
    font-family: 'MuliLatin';
}
.page_product_menu .menu_list .cur .hd a{
    background: var(--theme-color);
    color:#fff;
}
.page_product_menu .menu_list .wrap.cur .ico{
    color:#fff;
}
.page_product_menu .menu_list .bd{
    padding-bottom: 20px;
    margin-top: 10px;
    display: none;
}
.page_product_menu .menu_list .bd a{
    padding:15px 0;
    margin:0 20px;
    color:#333;
    font-size:18px;
    margin-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}
.page_product_menu .menu_list .bd a span{
    flex:1;
}
.page_product_menu .menu_list .bd a i{
    font-size:14px;
}
.page_product_menu .menu_list .bd a:last-child{
    margin-bottom: 0;
}

.page_product_menu .menu_list a:hover{
    color:var(--theme-color);
}
.page_product_menu .menu_list .bd a:hover:before{
    border-color: var(--theme-color);
}

.page_product_menu .tel_box{
    padding-top: 20px;
}
.page_product_menu .tel_box .tit{
    font-size:28px;
    font-family: 'MuliLatin';
    font-weight: bold;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
    position: relative;
}
.page_product_menu .tel_box .tit:after{
    content:'';
    display: block;
    width: 20%;
    height: 3px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom:-1px;
}
.page_product_menu .tel_box .tel{
    padding-top: 20px;
    align-items: center;
}
.page_product_menu .tel_box .tel .con{
    padding-left: 15px;
    color:#333;
}
.page_product_menu .tel_box .tel .con p{
    font-size:26px;
    font-weight: bold;
    font-family: 'MuliLatin';
}

.page_product_list{
    flex:1;
    min-width: 0;
    padding-left: 70px;
}
.page_product_list .a_tit{
    font-size:24px;
    font-family: 'MuliLatin';
    font-weight: bold;
    line-height: 1;
    padding-bottom: 20px;
    border-bottom: 1px solid #d6d6d6;
}
.page_product_list .list{
    padding:40px 0 10px;
}
.page_product_list .list .item{
    margin-bottom: 30px;
}
.page_product_list .list .item .img{
    width: 400px;
    height: 300px;
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:20px;
    position: relative;
}
.page_product_list .list .item .img img{
    max-width: 100%;
    max-height: 100%;
}
.page_product_list .list .item .con{
    padding-left: 60px;
    flex:1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page_product_list .list .item .con h4{
    font-size:28px;
    font-weight: bold;
    font-family:'MuliLatin';
    border-bottom: 1px solid #cecece;
    padding-bottom: 15px;
    position: relative;
    transition:all .4s;
}
.page_product_list .list .item .con h4:after{
    content:'';
    width: 100px;
    height: 4px;
    background: var(--theme-color);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}
.page_product_list .list .item .con p{
    margin-top:20px;
}
.page_product_list .list .item .con span{
    margin-top:50px;
    display:flex;
    align-items: center;
    transition:all .4s;
}
.page_product_list .list .item .con span i{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border:1px solid #cbcbcb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-size:18px;
    transition:all .4s;
}
.page_product_list .list .item:hover .con h4{
    color:var(--theme-color);
}
.page_product_list .list .item:hover .con span{
    color:var(--theme-color);
}
.page_product_list .list .item:hover .con span i{
    border-color: var(--theme-color);
}
.page_product_list .list .item .img:before{
    content: "";
    width: 32px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -20%;
    transition: all 0.36s ease-out;
    z-index: 1;
}
.page_product_list .list .item .img:after{
    content: "";
    width: 2px;
    height: 32px;
    background-color: #fff;
    position: absolute;
    top: -30%;
    left: 50%;
    transition: all 0.36s ease-out;
}
.page_product_list .list .item .img .mark{
    transition: all 0.36s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    top: 0;
    left: 0;
}
.page_product_list .list .item:hover .img .mark{
    background: rgba(0,134,207,.5);
}
.page_product_list .list .item:hover .img:before{
    top: calc(50% - 0px);
    left: calc(50% - 16px);
    opacity: 0.9;
}
.page_product_list .list .item:hover .img:after{
    top: calc(50% - 15px);
    left: calc(50% - 1px);
    opacity: 0.9;
}


/* page_about1 */

.page_about1{
    padding:90px 0 45px;
    overflow: hidden;
}
.page_about1_img{
    width: 47.5%;
    overflow: hidden;
}
.page_about1_img img{
    width: 100%;
}
.page_about1_con{
    flex:1;
    min-width: 0;
    padding-right: 30px; margin-right: 30px;
    max-height: 465px; margin-bottom: 50px; overflow: hidden; overflow-y: auto; scrollbar-width: thin;
    flex-direction: column;
    justify-content: center;
}
.page_about1_con .tit{
    font-size:40px;
    font-family: 'MuliLatin';
    font-weight: bold;
    text-transform: capitalize;
    color:#333;
    padding-bottom: 15px;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
    margin-bottom: 20px;
}
.page_about1_con .tit:after{
    content:'';
    width: 108px;
    height: 4px;
    display: block;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.page_about1_con h3,.page_about1_con h4{ margin-top: 15px; color:#333; font-size:20px; line-height:1.5; font-family: 'MuliLatin'; font-weight: bold; }
.page_about1_con p{
    font-size:16px;
    color:#333;
    line-height: 1.5;
    margin-top: 12px;
}

.page_about_tit{
    text-align: center;
    color:#fff;
    padding: 70px 0 40px;
}
.page_about_tit .tit h4{
    text-transform: uppercase;
    line-height: 1.3;
    font-size:56px;
    font-family: 'MontserratExtraBold';
}
.page_about_tit .tit p{
    font-family: 'MontserratLight';
}
.page_about_tit1{
    color:#333;
}

.page_about2_wrap{
    background: url("../images/bg4.jpg") no-repeat center;
    background-size: cover;
    overflow: hidden;
}
.page_about2_con{
    padding-bottom: 100px;
    margin:0 -70px;
}
.page_about2_con .item{
    padding:0 70px;
    flex:1;
}
.page_about2_con .item .tit{
    font-size:20px;
}
.page_about2_con .item .nums{
    font-size:50px;
    font-family: 'MuliBlackMOD';
}
.page_about2_con .item .nums span{
    font-size:70px;
    margin-right: 10px;
}

/* page_about3_wrap */

.page_about3_wrap{
    background: url("../images/map1.png") no-repeat center top #f8f8f8;
}
.page_about3{
    overflow: hidden;
    padding:0 0 80px;
}

.page_about3_con{
    padding:0 0 30px;
    position: relative;
}

.page_about3_con .swiper-button-next,.page_about3_con .swiper-button-prev{
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,.2);
    border-radius: 50%;
    opacity: 1;
}
.page_about3_con .swiper-button-next:after,.page_about3_con .swiper-button-prev:after{
    font-size:24px;
    color:#fff;
}
.page_about3_con .swiper-button-next:hover,.page_about3_con .swiper-button-prev:hover{
    background: var(--theme-color);
}

#page_about3_conb .item .img{
    background: #f6f6f6;
    display: flex;
    justify-content: center;
    padding:20px;
}


/* page_about4 */

.page_about4{
    padding:50px 0 80px;
}

.page_about4_tit{
    width: 50%;
    padding-right: 4%;
}
.page_about4_tit .tit_box1{
    text-align: left;
}
.page_about4_tit .tit_box1 .desc{
    margin-bottom: 60px;
}
.page_about4_con{
    width: 50%;
}

/* page_about5_wrap */

/* our_customer */

.our_customer_list{
    padding-bottom: 60px;
    margin-bottom: 60px;
}
.our_customer_tit{
    width: 36%;
}
.our_customer_tit .tit_box1 .tit span{
    font-size:16px;
    margin-top:10px;
}
.our_customer_list{
    flex:1;
    min-width: 0;
    height: 356px;
    overflow: hidden;
    padding-bottom: 40px;
    position: relative;
}
.our_customer_list .swiper-slide{
   text-align: center;
   font-size: 18px;
   background: #fff;
   height: calc((100% - 30px) / 2) !important;
   display: flex;
   justify-content: center;
   align-items: center;
}
.our_customer_list .img{
    border:1px solid #e5e5e5;
    height: 140px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.our_customer_list .img img{
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.our_customer_list .swiper-pagination-bullet{
    width: 30px;
    height: 4px;
    border-radius: 0;
}


/* page_about6_con */

.page_about6_wrap{
    padding-bottom: 80px;
}
.page_about6_con{
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
}
.page_about6_con .item{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.page_about6_con .item .img img{
    width: 275px;
    height: 100%;
    object-fit: cover;
}
.page_about6_con .item .con{
    flex:1;
    min-width: 0;
    padding:30px 40px;
}
.page_about6_con .item .con h4{
    font-size:20px;
    color:#333;
    font-family: 'MontserratSemiBold';
}
.page_about6_con .item .con .desc{
    color:#666;
    margin-top: 10px;
    font-family: 'MontserratLight';
}
.page_about6_con .item .con .time{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page_about6_con .item .con .time span{
    color:#666;
    font-family: 'MontserratLight';
}
.page_about6_con .item .con .time i{
    color:#666;
    transition:all .5s;
    font-size:20px;
}
.page_about6_con .item:hover .con h4{
    color:var(--theme-color);
}
.page_about6_con .item:hover .con .time i{
    padding-right: 20px;
}


/* page_public_about_list */

.page_public_about_list{
    padding-bottom: 80px;
}
.page_public_about_list .list{
    margin:-18px -18px 0;
}
.page_public_about_list .list a{
    padding:18px;
    width: 33.333%;
    display: block;
}
.page_public_about_list .list a .img img{
    object-fit: cover;
    width: 100%;
    height: 350px;
}
.page_public_about_list5 .list{
    margin:-13px -13px 0;
}
.page_public_about_list5 .list a{
    width: 20%;
    padding:13px;
}
.page_public_about_list5 .list a .img img{
    height: 357px;
}
.page_public_about_list5 .list .item{
    background: #f6f6f6;
    padding:20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* page_about_photo1 */

.page_about_photo1{
    padding-bottom: 80px;
}
.page_about_photo1 .list{
    padding:40px 0 60px;
    overflow: hidden;
    position: relative;
}

.page_about_photo1 .list .img img{
    width: 100%;
    height: 355px;
    border-radius: 20px;
    object-fit: cover;
}
.page_about_photo1 .swiper-pagination-bullet-active{
    background: var(--theme-color);
}

.page_about_photo2{
    padding-bottom: 80px;
}
.page_about_photo2 .list{
    padding: 40px 0 0;
    margin:0 -33px;
}
.page_about_photo2 .list .item{
    flex:1;
    padding:0 33px;
    position: relative;
}
.page_about_photo2 .list .item:after{
    content:'>';
    font-size:30px;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    font-family:cursive;
    color:#999;
}
.page_about_photo2 .list .item .img img{
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
}
.page_about_photo2 .list .item h4{
    text-align: center;
    line-height: 50px;
    color:#333;
    font-size:18px;
}

/* page_cases */

.page_cases{
    padding:80px 0 0;
}
.page_cases_tit{
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    height: 84px;
}
.page_cases_tit .tit{
    color:#2d2d2d;
    font-size:50px;
    font-family: 'MontserratExtraBold';
    flex:1;
}
.page_cases_tit .menu{
    display: flex;
    height: 100%;
    
}
.page_cases_tit .menu a{
    font-size:18px;
    color:#2d2d2d;
    display: flex;
    margin-left: 160px;
    position: relative;
    height: 100%;
    align-items: center;
}
.page_cases_tit .menu a:after{
    content:'';
    display: block;
    position: absolute;
    left: 0;
    bottom:0;
    width:0;
    right: 0;
    background: var(--theme-color);
    height: 2px;
    transition:all .4s;
}
.page_cases_tit .menu a:hover,.page_cases_tit .menu a.cur{
    color:var(--theme-color);
}
.page_cases_tit .menu a:hover:after,.page_cases_tit .menu a.cur:after{
    width: 100%;
}

/* page_download_center */

.page_download_center{
    padding:30px 0 50px;
}
.page_download_center .list_item {
    margin-bottom: 30px;
}
.page_download_center .list_item .menu{
    display: flex;
    color:#333;
    font-size:24px;
    padding:30px 40px;
    background: #fff;
    cursor: pointer;
    transition:all .3s;
    justify-content: space-between;
    font-family: 'MontserratSemiBold';
    align-items: center;
}
.page_download_center .list_item .menu i{
    font-size:20px;
    color:#333;
    transition:all .3s;
}
.page_download_center .list_item .menu:hover,.page_download_center .list_item .menu.cur{
    color:var(--theme-color);   
}

.page_download_tit .tit p{
    max-width: 70%;
    margin:auto;
}
.page_download_tit .tit p a{
    color:var(--theme-color);
}
.page_download_tit .tit p a:hover{
    text-decoration: underline;
}



.page_download_center .list_item .list{
    display: none;
    padding:0 40px;
    background: #fff;
}
.page_download_center .list_item:first-child .list{
    display: block;
}

.page_download_center .list_item .list .item{
    display: flex;
    height: 90px;
    display: flex;
    align-items: center;
    border-top: 1px solid #ebebeb;
}

.page_download_center .list_item .list .item .pdf{
    width: 50px;
    height: 25px;
    border:1px solid #a9a9a9;
    font-family: 'MontserratLight';
    font-size:12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.page_download_center .list_item .list .item h4{
    font-size:16px;
    color:#2d2d2d;
    margin-left:25px;
    flex:1;
}
.page_download_center .list_item .list .item .btn{
    border:1px solid #c3c3c3;
    padding:5px 20px;
    transition:all .3s;
    border-radius: 5px;
}
.page_download_center .list_item .list .item .btn i{
    margin-left: 8px;
    font-size:16px;
}
.page_download_center .list_item .list .item:hover h4{
    color:var(--theme-color);
}
.page_download_center .list_item .list .item:hover .btn{
   background: var(--theme-color);
   border-color:var(--theme-color);
   color:#fff;
}


.page_download_center_more{
    text-align: center ;
    padding-bottom: 80px;
}
.page_download_center_more a{
    padding-bottom: 5px;
    display: inline-block;
}
.page_download_center_more a:after{
    width: 100%;
    height: 1px;
    background: #666;
    content:'';
    display: block;
}
.page_download_center_more a:hover{
    color:var(--theme-color);
}
.page_download_center_more a:hover:after{
    background: var(--theme-color);
}


/* page_product_video */


.page_product_video{
    padding:50px 0 80px;
}
.page_product_video .list{
    margin:0 -17px;
}
.page_product_video .list .item{
    width: 33.33%;
    padding:0 17px;
}
.page_product_video .list .item iframe{
    height: 385px;
}


/* page_case_detail */

.page_cases_show_wrap{
    padding:60px 0 80px;
}
.technical_support{
    width: 340px;
}
.technical_support .panel1{
    margin-bottom: 50px;
}
.technical_support .panel1:last-child{
    margin-bottom: 0;
}
.technical_support .p1_tit{
    font-size: 28px;
    font-family: 'MuliLatin';
    font-weight: bold;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
    position: relative;
}
.technical_support .p1_tit:after{
    content: '';
    display: block;
    width: 20%;
    height: 3px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom: -1px;
}
.technical_support .ico{
    margin-top: 6px;
}
.technical_support .con{
    padding-left: 15px;
}
.technical_support .p1_con{
    padding-top: 20px;
    align-items: center;
}
.technical_support .p1_con .con h4{
    font-size: 26px;
    font-weight: bold;
    font-family: 'MuliLatin';
}
.technical_support .p2_tit{
    margin-bottom: 20px;
}
.technical_support .p2_tit:after{
    display: none;
}
.technical_support .p2_form input,.technical_support .p2_form textarea{
    width: 100%;
    border:none;
    outline: none;
    background: #f6f6f6;
    height: 54px;
    line-height: 34px;
    border-left: 3px solid #0051a2;
    margin-bottom: 15px;
    padding:10px 22px;
}
.technical_support .p2_form textarea{
    height: 120px;
}
.technical_support button{
    width: 100%;
    height: 54px;
    background: #0051a2;
    line-height: 54px;
    border:none;
    outline: none;
    font-size:16px;
    color:#fff;
    cursor: pointer;
}
.technical_support button i{
    margin-left: 10px;
}
.technical_support button:hover{
    background: var(--theme-color);
}


/* page_cases_list */


.page_cases_list{
    padding-bottom: 80px;
}
.page_cases_list .list{
    margin:-18px -18px 0;
}
.page_cases_list .list .item{
    width: 33.333%;
    padding:18px;
}
.page_cases_list .list .item .img{
    overflow: hidden;
}
.page_cases_list .list .item .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_cases_list .list .item .info{
    padding:25px;
    background: #f4f4f4;
    transition:all .3s;
}
.page_cases_list .list .item .info h4{
    font-size:20px;
    transition:all .3s;
}
.page_cases_list .list .item .info p{
    font-family: 'MontserratLight';
    margin:10px 0 30px;
    height: 50px;
}
.page_cases_list .list .item .info span{
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}
.page_cases_list .list .item .info span i{
    font-size:12px;
    color:#999;
}
.page_cases_list .list .item .info span:before,.page_cases_list .list .item .info span:after{
    content:'';
    display: block;
    width: 100%;
    height: 1px;
    background: #666;
    position: absolute;
    left: 0;
    transition:all .3s;
    bottom: 0;
}
.page_cases_list .list .item .info span:after{
    background: var(--theme-color);
    width: 0;
}
.page_cases_list .list .item:hover .info{
    background:var(--theme-color);
}
.page_cases_list .list .item:hover .info h4{
    color:#fff;
}
.page_cases_list .list .item:hover .info span:after{
    width: 100%;
}


/* product_detail */

.pd_detail{
    padding:80px 0 0;
}
.pd_detail_con{
    flex:1;
    min-width: 0;
    padding-left: 70px;
}
.pd_detail_hd .pics{
    width:550px;
    overflow: hidden;
}
.pd_detail_hd .pics .mySwiper2{
    width: 100%;
    height:415px;
    margin:0;
    overflow: hidden;
    background: #f1f1f1;
}

.pd_detail_hd .pics .mySwiper2 .img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.pd_detail_hd .pics .mySwiper2 .img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pd_detail_hd .pics .mySwiper{
    margin-top:20px;
}
.pd_detail_hd .pics .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img{
    background: #f1f1f1;
    padding:5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid #fff;
    padding:15px;
    height:100px;
}
.pd_detail_hd .pics .mySwiper .swiper-slide.swiper-slide-thumb-active .img{
    border:1px solid var(--theme-color);
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img img{
    object-fit: contain;
}



.pd_detail_hd .infos{
    flex: 1;
    padding:10px 0 0 5%;
    min-width: 0;
}
.pd_detail_hd .infos .name{
    color:#888;
}
.pd_detail_hd .infos h1{
    font-size:28px;
    color:var(--theme-color);
    line-height: 1.3;
    font-family: 'MuliBlackMOD';
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 20px;
    position: relative;
}
.pd_detail_hd .infos h1:after{
    content:'';
    display: block;
    width: 20%;
    height: 4px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom:-1px;
}
.pd_detail_hd .infos .desc{
    font-size:16px;
    color:#666;
    margin:35px 0 50px;
    font-family: 'MontserratLight';
}
.pd_detail_hd .infos .list{
    margin:0 -50px;
}
.pd_detail_hd .infos .list .item{
    display: flex;
    padding:0 50px;
    align-items: center;
    border-right:1px solid #ccc;
}
.pd_detail_hd .infos .list .item:last-child{
    border-right:none;
}
.pd_detail_hd .infos .list .item h4{
    font-size:18px;
    color:#333;
    font-family: 'MontserratSemiBold';
    margin-left: 20px;
    line-height: 1.3;
}

.pd_detail_hd .infos .btns{
    margin-top:50px;
}
.pd_detail_hd .infos .btns .btn{
    display: flex;
    align-items: center;
    height:48px;
    width: 220px;
    background: var(--theme-color);
    border:1px solid var(--theme-color);
    color:#fff;
    justify-content: center;
    text-transform: uppercase;
    margin-right: 20px;
}
.pd_detail_hd .infos .btns .btn i{
    color:#fff;
    font-size:20px;
    margin-left: 8px;
    transition:all .3s;
}
.pd_detail_hd .infos .btns .btn2{
    color:#333;
    border:1px solid #666;
    background: transparent;
}
.pd_detail_hd .infos .btns .btn2 i{
    color:#333;
}
.pd_detail_hd .infos .btns .btn:hover{
    border-color:var(--theme-color);
    background: var(--theme-color);
    opacity: .8;
}
.pd_detail_hd .infos .btns .btn2:hover{
    color:#fff;
}
.pd_detail_hd .infos .btns .btn2:hover i{
    color:#fff;
}


.pd_detail_hd .infos .follow_list{
    margin-top: 50px;
    align-items: center;
}
.pd_detail_hd .infos .follow_list .tit{
    color:#333;
    font-family: 'jnm';
    text-transform: uppercase;
    margin-right: 30px;
}

.pd_detail_bd{
    display: flex;
    padding:50px;
    margin:60px 0;
    border-radius: 20px;
    border:1px solid #e9e9e9;
}
.pd_detail_bd .con{
    width: 55%;
}
.pd_detail_bd .con h4 br{
    display: none;
}
.pd_detail_bd .con h4{
    font-size:26px;
    color:#333;
    font-family: 'MontserratBold';
}
.pd_detail_bd .con p{
    color:#333;
    margin-top: 10px;
    line-height: 1.8;
}
.pd_detail_bd .imgs{
    flex:1;
    min-width: 0;
    padding-left: 3%;
    margin-left: 3%;
    border-left: 1px solid #e9e9e9;
}
.pd_detail_bd .imgs h4{
    font-size:18px;
    color:#333;
    margin-bottom: 20px;
}
.pd_detail_bd .imgs .img{
    justify-content: space-between;
}


.pd_detail_info{
    margin:50px 0 90px;
    background: #f1f1f1;
}

.pd_detail_info .pddi_hd{
}
.pd_detail_info .pddi_hd .hd{
    display: flex;
    height: 60px;
    font-size:20px;
    align-items: center;
    background: #e9e9e9;
}
.pd_detail_info .pddi_hd .hd .item{
    color:#333;
    position: relative;
    cursor: pointer;
    transition:all .3s;
    display: flex;
    flex:1;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}
.pd_detail_info .pddi_hd .hd .item i{
    color:#333;
    border:2px solid #333;
    border-radius: 50%;
    font-size:20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}
.pd_detail_info .pddi_hd .hd .item.cur{
    background:var(--theme-color);
    color:#fff;
}
.pd_detail_info .pddi_hd .hd .item.cur i{
    border-color:#fff;
    color:#fff;
}


.pd_detail_info .pddi_bd{
    width: 435px;
}
.pd_detail_info .pddi_bd .tit{
    font-size:24px;
    color:#333;
    font-family: 'MontserratBold';
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
    position: relative;
}
.pd_detail_info .pddi_bd .tit:after{
    content:'';
    display: block;
    width: 20%;
    height: 3px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom:-1px;
}
.pd_detail_info .pddi_bd .menu{
    margin:20px -7px;
}
.pd_detail_info .pddi_bd .menu a{
    width: 50%;
    padding:7px;
}
.pd_detail_info .pddi_bd .menu .img{
    border-radius:15px;
}
.pd_detail_info .pddi_bd .menu .img img{
    width: 100%;
    height: 140px;
}
.pd_detail_info .pddi_bd .menu h4{
    text-align: center;
    line-height:40px;
    color:#333;
}
.pd_detail_info .pddi_bd .menu a:hover h4{
    color:var(--theme-color);
}
.pd_detail_info .pddi_bd .tel_box{
    border:1px solid #e4e4e4;
    border-radius: 20px;
    padding:30px;
}
.pd_detail_info .pddi_bd .tel_box .tel{
    padding-top: 20px;
    align-items: center;
}
.pd_detail_info .pddi_bd .tel_box .tel .con{
    padding-left: 15px;
    color:#333;
}
.pd_detail_info .pddi_bd .tel_box .tel .con p{
    font-size:26px;
    font-family: 'MontserratBold';
}

.pd_detail_info .pddi_hd .bd{
    padding:30px 60px;
    color:#333;
    
}
.plr60{
    padding:0 60px;
}
.pd_detail_info .pddi_hd .bd .tit{
    height: 50px;
    background: #f5f5f5;
    border-radius: 10px;
    padding:0 30px;
    line-height: 50px;
    font-size:18px;
    font-family: 'MontserratSemiBold';
}
.pd_detail_info .pddi_hd .bd .con{
    display: flex;
    flex-wrap: wrap;
    padding:20px 30px 10px;
}
.pd_detail_info .pddi_hd .bd .con>p{
    width: 25%;
    padding:15px 30px;
}
.pd_detail_info .pddi_hd .bd .c{
    padding:20px 30px;
}
.pd_detail_info .pddi_hd .bd .bd_item{
    display: none;
}
.pd_detail_info .pddi_hd .bd .bd_item:first-child{
    display: block;
}
.pd_detail_info .pddi_hd .bd .list{
    display: flex;
    flex-wrap: wrap;
    margin:0 -20px;
}
.pd_detail_info .pddi_hd .bd .list .img{
    width: 33.333%;
    padding:20px;
}
.pd_detail_info .pddi_hd .bd .list .img img{
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.pd_detail_info .pddi_hd .tags{
    border-top: 2px solid #ddd;
    margin:30px 0 0;
    padding: 30px 0 50px;
}

.pd_detail_info .pddi_hd .tags span{
    margin-right: 10px;
}
.pd_detail_info .pddi_hd .tags span i{
    color:#999;
    margin-right: 6px;
}
.pd_detail_info .pddi_hd .tags a{
    background:#f3f4f8;
    height: 28px;
    line-height: 28px;
    padding:0 20px;
    display: inline-block;
    margin-right:10px;
    border-radius: 3px;
    font-size:13px;
    font-family: 'MontserratLight';
}
.pd_detail_info .pddi_hd .tags a:hover{
    background: var(--theme-color);
    color:#fff;
}


/* page_quality */

.pq1_info{
    
}
.pq1_info .desc{
    width: 60%;
    margin:auto;
    text-align: center;
    position: relative;
}
.pq1_info .desc:before,.pq1_info .desc:after{
    content:'';
    width: 38px;
    height: 31px;
    display: block;
    position: absolute;
}
.pq1_info .desc:before{
    background: url("../images/quality_ico1.png") no-repeat center;
    left: -50px;
    top:-6px;
}
.pq1_info .desc:after{
    background: url("../images/quality_ico2.png") no-repeat center;
    right:-50px;
    bottom: -20px;
}
.pq1_info .list{
    justify-content: center;
    margin:60px 0;
}
.pq1_info .list .item{
    margin:0 40px;
}

.pq2_info{
    background: #f8f8f8;
    border-radius:20px;
    overflow: hidden;
}
.pq2_info .pq2_info_con{
    flex:1;
    min-width: 0;
    padding:40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pq2_info .pq2_info_con .tit{
    color:#161616;
    font-size:40px;
    font-family: 'jnb';
}
.pq2_info .pq2_info_con .desc{
    color:#666;
    margin-top: 10px;
}
.pq2_info .pq2_info_img{
    width: 50%;
}


/* pq3_info */

.pq3_info{
    overflow: hidden;
    width: 1800px;
    margin:auto;
    position: relative;
    padding:0 0 80px;
}
.pq3_info_con{
    position: relative;
    width: 1600px;
    margin:auto;
    padding:20px 0 60px;
}
.pq3_info_con .item .img{
    background: #f8f8f8;
    padding:25px 36px;
    height: 390px;
}
.pq3_info_con .item .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.pq3_info_con .item .tit{
    color:#3a3a3a;
    padding:10px 10px 0;
    font-size:16px;
    text-align: center;
}

.pq3_info_con .swiper-button-next,.pq3_info_con .swiper-button-prev{
    width: 70px;
    height: 70px;
    border:1px solid #c8c8c8;
    border-radius: 50%;
    z-index: 40;
    opacity: 1;
    color:#717171;
    top: 40%;
}
.pq3_info_con .swiper-button-next:after,.pq3_info_con .swiper-button-prev:after{
    font-size:30px;
}
.pq3_info_con .swiper-button-next:hover,.pq3_info_con .swiper-button-prev:hover{
    background: var(--theme-color);
    color:#fff;
    border-color: var(--theme-color);
}
.pq3_info_con .swiper-button-prev{
    left: -100px;
}
.pq3_info_con .swiper-button-next{
    right: -100px;
}
.pq3_info:before,.pq3_info:after{
    content:'';
    display: block;
    width: 100px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 30;
}
.pq3_info:before{
    left: 0;
}
.pq3_info:after{
    right: 0;
}
.pq3_info_con .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
}
.pq3_info_con .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--theme-color);
}


/* page_news */


.page_news{
    padding:80px 0;
}

.page_news_tit{
    border-bottom: 1px solid #e5e5e5;
}
.page_news_tit .tit{
    font-size:40px;
    color:#333;
    flex:1;
    font-family: 'MontserratBold';
}
.page_news_tit .menu{
    display: flex;
    align-items: center;
}
.page_news_tit .menu a{
    font-size:18px;
    display: block;
    font-family: 'MontserratLight';
    margin-left: 100px;
    position: relative;
}

.page_news_tit .menu a:after{
    content:'';
    width: 0;
    height: 2px;
    background: var(--theme-color);
    display: block;
    position: absolute;
    left: 0;
    bottom:-17px;
    transition:all .3s;
}
.page_news_tit .menu a.cur,.page_news_tit .menu a:hover{
    color:var(--theme-color);
}
.page_news_tit .menu a:hover:after,.page_news_tit .menu a.cur:after{
    width: 100%;
}

.page_news_list{
   
}
.page_news_list .list{
    margin:-25px -25px 0;
}
.page_news_list .list .item{
    padding: 25px;
    width: 33.33%;
    position: relative;
}
.page_news_list .list .item:after{
    width:0;
    height: 1px;
    background: var(--theme-color);
    content:'';
    display: block;
    position: absolute;
    left:25px;
    bottom: 0;
    transition:all .4s;
}

.page_news_list .list .item .img{
    height: 240px;
    overflow: hidden;
}
.page_news_list .list .item .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_news_list .list .item .con{
    padding:20px 0 0;
}
.page_news_list .list .item .con span{
    color:#999;
}
.page_news_list .list .item .con h4{
    font-size:20px;
    font-family: 'MuliLatin';
    font-weight: bold;
    transition:all .3s;
}
.page_news_list .list .item .con p{
    font-size:16px;
    color:#666;
    margin-top: 15px;
}
.page_news_list .list .item .agg{
    margin-top: 30px;
    align-items: center;
    justify-content: space-between;
}
.page_news_list .list .item .agg .more{
    color:#333;
    margin-right: 15px;
    font-family: 'MontserratLight';
}
.page_news_list .list .item .agg .more i{
    font-size:16px;
    color:#999;
    margin-left: 10px;
}
.page_news_list .list .item .agg span{
    font-family: 'MontserratLight';
    font-size:14px;
    margin:0 4px;
}
.page_news_list .list .item .agg .ico i{
    font-size:18px;
}
.page_news_list .list .item:hover .con h4{
    color:var(--theme-color);
}
.page_news_list .list .item:hover:after{
    width: calc(100% - 50px);
}
.page_news_list .list .item:hover .agg .more{
    color:var(--theme-color);
}
.page_news_menu{
    width: 340px;
}
.page_news_menu .search{
    
}
.page_news_menu .search input{
    width: 100%;
    border:none;
    outline: none;
    height: 58px;
    background: #f4f4f4;
    padding:0 20px;
    font-size:16px;
}
.page_news_menu .search button{
    background: #224299;
    height: 58px;
    width: 58px;
    cursor: pointer;
    outline: none;
    border:none;
}
.page_news_menu .search button:hover{
    background: var(--theme-color);
}
.page_news_menu .search button i{
    font-size:20px;
    color:#fff;
}

.page_news_menu .menu{
    background: #f5f5f5;
}
.page_news_menu .menu .tit{
    height: 70px;
    background: #224299;
    margin-top: 30px;
    padding:0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:#fff;
}
.page_news_menu .menu .tit h4{
    font-size:24px;
}
.page_news_menu .menu .item{
    height: 60px;
    border-bottom: 1px dashed #ddd;
    line-height: 60px;
    padding:0 24px;
    font-size:14px;
    display: flex;
}
.page_news_menu .menu .item a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.page_news_menu .menu .item i{
    transform: rotate(180deg);
    display: block;
    font-size:12px;
}
.page_news_menu .menu .item a:hover,.page_news_menu .menu .item.cur a{
    color:var(--theme-color);
}
.page_news_menu .menu .item:last-child{
    border-bottom: none;
}

.page_news_menu .hot_pro{
    padding-top: 40px;
}
.page_news_menu .hot_pro .tit{
    font-size:20px;
    color:#333;
}
.page_news_menu .hot_pro .tit:after{
    content:'';
    width: 60px;
    height: 3px;
    background: #224299;
    display: block;
    margin-top: 6px;
}
.page_news_menu .hot_pro .list a{
    margin-top: 20px;
    align-items: center;
}
.page_news_menu .hot_pro .list a .img{
    width: 110px;
    height: 82px;
    border:1px solid #e6e6e6;
}
.page_news_menu .hot_pro .list a .info{
    flex:1;
    padding-left: 24px;
    min-width: 0;
}
.page_news_menu .hot_pro .list a .info p{
    font-size:14px;
    color:#999;
    font-family: 'MontserratLight';
}


.no_banner_pos{
    padding:150px 0 0;
}
.no_banner_pos a:last-child{
    color:var(--theme-color);
}

/* page_news_detail */

.page_news_detail{
    flex:1;
    min-width: 0;
    margin-left:70px;
}
.page_news_detail h1{
    font-size:38px;
    font-family: 'MontserratExtraBold';
    color:#333;
    line-height: 1.2;
    text-align: center;
}
.page_news_detail .info{
    margin-top: 30px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom:20px;
}
.page_news_detail .info .info_hd{
    flex:1;
}
.page_news_detail .info .info_hd li{
    font-size:16px;
    color:#333;
    margin-right: 50px;
}
.page_news_detail .info .info_hd li.column{
    background: #f3f3f3;
    padding:0 18px;
    height: 28px;
    line-height: 28px;
}
.page_news_detail .info .info_bd{
    align-items: center;
}
.page_news_detail .info .info_bd h4{
    margin-right: 15px;
    padding-top: 3px;
}

.page_news_detail .desc{
    padding:40px 0 20px;
    min-height: 20vh;
    border-bottom: 1px solid #e7e7e7;
}

.page_news_detail_wrap{
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}
.page_news_detail_wrap .page_news_detail{
    padding:0;
}

/* page_contact */

.page_contact_list{
    padding:70px 0 50px;
    margin:0 -70px;
    overflow: hidden;
}
.page_contact_list .item{
    flex:1;
    padding:0 70px;
    text-align: center;
}
.page_contact_list .item .con h4{
    font-size:24px;
    font-family: 'MuliLatin';
    font-weight: bold;
    margin:20px 0 10px;
}
.page_contact_list .item .con p{
    font-size:18px;
    color:#666;
    line-height: 1.4;
}

.page_contact1{
    padding:0 0 70px;
}
.page_contact1_map{
    border-radius: 20px;
    overflow: hidden;
}
.page_contact1_con{
    width: 45%;
    padding:50px;
    margin-right: 3%;
    overflow: hidden;
    background-size: cover;
    background: url("../images/map1.png") no-repeat center #f3f3f3;
}
.page_contact1_con .b_tit{
    
}
.page_contact1_con .b_tit span{
    color:var(--theme-color);
    font-size:20px;
}
.page_contact1_con .b_tit h4{
    font-size:28px;
    font-family: 'MuliLatin';
    color:#3a3a3a;
    font-weight: bold;
    position: relative;
    padding-bottom: 20px;
    line-height: 1.2;
    border-bottom: 1px solid #d0d0d0;
}
.page_contact1_con .b_tit h4:after{
    content:'';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.page_contact1_con .b_tit p{
    margin-top: 10px;
    font-size:18px;
    color:#666;
}

.page_contact1_con .b_list .tit{
    color:var(--theme-color);
    font-size:20px;
}
.page_contact1_con .b_list .list{
    margin-top:15px;
}
.page_contact1_con .b_list .list .item{
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    color:#333;
}
.page_contact1_con .b_list .list .item i{
    background: #219f46;
    color:#fff;
    border:4px solid #e8f5ec;
    border-radius: 50%;
    font-size:12px;
    width: 22px;
    height:22px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.page_contact1_con .info{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.page_contact1_con .info .item{
    display: flex;
    margin-top: 30px;
}
.page_contact1_con .info .item:first-child{
    width: 100%;
}
.page_contact1_con .info .item .ico{
    width: 53px;
    height: 53px;
    border:1px solid rgba(204,204,204,1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_contact1_con .info .item .ico i{
    color:var(--theme-color);
    font-size:22px;
}
.page_contact1_con .info .item .con{
    padding-left: 15px;
    flex:1;
    min-width: 0;
}
.page_contact1_con .info .item .con h4{
    font-size:20px;
}

.page_contact1_con .info .item .con p span{
    display: block;
}
.page_contact1_con .share{
    margin-top: 50px;
}
.page_contact1_con .share .tit{
    text-transform: uppercase;
    font-style: italic;
    color:#333;
    margin-right: 15px;
    font-family: 'MuliLatin';
}
.page_contact1_con .share .tit span{
    color:var(--theme-color);
}
.page_contact_map{
    padding-bottom: 60px;
}


.page_search{
    padding:150px 0 80px;
}

/* page_contact2 */

.page_contact2{
    padding-bottom:100px;
}
.page_contact2_info{
    width: 50%;
    padding-right: 120px;
}
.page_contact2_info .tit{
    padding-top: 20px;
}
.page_contact2_info .tit h4{
    font-size:40px;
    color:#333;
    font-family: 'MontserratExtraBold';
}
.page_contact2_info .tit p{
    color:#333;
    line-height: 2;
    margin-top: 20px;
}
.page_contact2_info .con h4{
    color:#053c8a;
    font-family: 'MontserratSemiBold';
    margin:30px 0 10px;
    font-size:20px;
}
.page_contact2_info .con p{
    margin-bottom: 10px;
    display: flex;
    font-family: 'MontserratLight';
    font-size:14px;
}
.page_contact2_info .con p span{
    background: #053c8a;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border:4px solid #e6ebf3;
    margin-right: 10px;
}
.page_contact2_info .con p span i{
    font-size:10px;
    color:#fff;
}

.page_contact2_form{
    flex:1;
    min-width: 0;
}
.page_contact2_form .tit h4{
    font-size:40px;
    color:#3a3a3a;
    font-family: 'MuliBlackMOD';
}
.page_contact2_form .tit p{
    color:#666;
}
.page_contact2_form .form{
    padding-top: 20px;
}
.page_contact2_form .input_box{
    
}
.page_contact2_form .input_box .input{
    margin:0 0 20px;
}
.page_contact2_form .input_box .input input,.page_contact2_form textarea{
    width: 100%;
    border:none;
    outline: none;
    background: #f8f8f8;
    height: 54px;
    padding:10px 20px;
    line-height: 34px;
}
.page_contact2_form textarea{
    height: 120px;
}
.page_contact2_form .form p{
    
}
.page_contact2_form .form .button{
    margin-top: 60px;
}
.page_contact2_form .form .button button{
    width: 100%;
    height: 60px;
    background:var(--theme-color);
    border:none;
    outline: none;
    color:#fff;
    font-size:16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.page_contact2_form .form .button button i{
    font-size:22px;
    margin-left: 10px;
}
.page_contact2_form .form .button button:hover{
    background: var(--theme-color);
}

/* return */

.return_page{
    position: relative;
}
.return_page dl{
    justify-content: space-between;
    padding-top:40px;
    position: relative;
}
.return_page dt{
    width: 44%;
    font-size:16px;
}
.return_page dt.next{
    text-align: right;
}
.return_page dt.next p{
    color:#717171;
    line-height: 1.2;
}
.return_page dt a{
    display: block;
}
.return_page .p1{
    padding-bottom: 6px;
}
.return_page .p1 span{
    display: inline-block;
    line-height: 1;
}
.return_page .next .p1 span{
    transform: rotate(180deg);
    margin-left: 4px;
}
.return_page .prev .p1 span{
    margin-right: 4px;
}
.return_page dt a:hover{
    color:var(--theme-color);
}
.return_page .go_back{
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
}
.return_page .go_back a{
     width: 110px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border:1px solid #666;
     border-radius: 100px;
     font-size:16px;
     line-height: 38px;
}
.return_page .go_back a i{
    font-size:12px;
    margin-left: 3px;
}
.return_page .go_back a:hover{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}


.ind_pad{
    padding:80px 0 90px;
}
.info_ly{background: #fff;padding-left: 4%;padding-right: 4%;display: flow-root;}
.info_ly h2{text-align: center;margin-bottom: 20px;}
.info_ly .inp{width: 49.3%;height: 52px;line-height: 52px;background: #f6f6f6;display: block;float: left;margin-bottom: 16px;text-indent: 22px;}
.info_ly .inp:nth-child(2n){float: right;}
.info_ly .inp2{width: 100%;}
.info_ly textarea{height: 150px;background: #f6f6f6;text-indent: 22px;padding-top: 16px;width: 100%;display: block;}
.info_ly .sub{height: 52px;line-height: 52px;background:var(--theme-color);width: 100%;text-align: center;color: #fff;display: block;margin-top: 16px;text-transform: uppercase;border:none;cursor:pointer;}





