@charset "utf-8";

.header{
    height: 120px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    justify-content: space-between;
    z-index: 999;
    border-bottom: 1px solid transparent;
    transition:all .4s;
}
.header_top{
    background: #333;
    color:#fff;
    transition:all .4s;
}
.header_top_info{
    height: 35px;
    transition:all .4s;
}
.header_top_info .email{
    flex:1;
    font-size:14px;
}
.header_top_info .email a{
    margin-left: 10px;
}
.header_top_info .email i{
    font-size:14px;
}
.header_top_info .email a:hover{
    text-decoration: underline;
}
.header_top_info .share a{
    width: 16px;
    height: 16px;
    display: block;
    margin-left: 15px;
}
.header_top_info .share a svg{
    color:#fff;
    fill: #fff;
}
.header_wrap_w{
    background: #fff;
    height:85px;
    transition:all .3s;
}
.header_wrap_w>.wrapper{
    height: 100%;
}
.header_wrap{
    justify-content: space-between;
    height: 100%;
}
.header .logo img{
    max-height: 50px;
}

.nav .nav_li{
    margin:0 28px;
    position: relative;
}
.nav .nav_li .nav1 a{
    display: block;
    line-height:72px;
    position: relative;
    text-transform: uppercase;
    transition:all 0s;
    font-size:18px;
    white-space: nowrap;
    font-family: 'HelveticaNeueBold';
}
.nav .nav_li .nav2{
    list-style-type: none;
    position: absolute;
    top:72px;
    line-height: 40px;
    width:200px;
    background: #fff;
    padding:15px 30px;
    color:#3a3a3a;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    z-index: 10;
    display: none;
}

.nav .nav_li:nth-child(3) .nav2{
    /* width: 300px; */
    /* display: flex; */
    width: max-content;
    column-gap: 30px;
    left: 50%; /* 将左侧定位到父容器中点 */
    transform: translateX(-50%); /* 向左回移自身宽度的50% */
}
.nav .nav_li:nth-child(3).on .nav2{display: flex !important; height: fit-content !important;}
.nav2 .nav2_product_item a span{ color: var(--theme-color); display: block; font-weight: 600; border-bottom: 2px solid #234d9c; padding-bottom: 10px; margin-bottom: 10px;}


.nav .nav_li .nav2 h4{
    font-size:18px;
    text-transform: capitalize;
}
.nav .nav_li .nav2 a{
    display: flex;
    align-items: center;
    padding:6px 0;
}
.nav .nav_li .nav2 a span{
    flex:1;
    line-height: 1.3;
    text-transform: capitalize;
}
.nav .nav_li .nav2 a i{
    font-size:12px;
}
.nav .nav_li .nav2 a:hover{
    color:var(--theme-color);
}
.nav2.nav2_product{
    position: relative;
}
.nav2.nav2_product .nav2_product_item{
    
}


.nav2.nav2_product .nav2_thi_box{
    position: absolute;
    left:320px;
    top: 0;
    width:200px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transition:all .3s;
    padding: 15px;
}
.nav .nav_li:hover .nav1 a,.nav .nav_li.cur .nav1 a{
    color:var(--theme-color);
}
.nav2.nav2_product .nav2_product_item:hover .nav2_thi_box{
    left: 270px;
    visibility: visible;
    opacity: 1;
}

.nav_info .car_num{
    display: none;
}
.nav_info .car_num.cur{
    display: block;
}
.nav_info .car_num i{
    font-size:18px;
}
.nav_info .car_num span{
    background-color: #000;
    color: #d2d2d2;
    display: inline-block;
    text-align: center;
    width: 1.2rem;
    line-height: 1.2rem;
    border-radius: 3px;
    margin-left: 5px;
}
.nav_info .lang_box .lang{
    display: flex;
    align-items: center;
    height: 28px;
    padding:0 20px;
    border-radius: 100px;
    cursor: pointer;
    transition:all .3s;
    font-size:14px;
}
.nav_info .lang_box .lang img{
    height:16px;
    margin-right:8px;
}
.nav_info .lang_box:hover .lang{
    background:#fff;
    color: var(--theme-color);
}
.nav_info .lang_box .lang i{
    margin-right: 3px;
}
.nav_info .lang_box .lang i.iconjt{
    margin-right: 0;
    font-size:12px;
    margin-left: 3px;
    transform: rotate(180deg);
    transition:all .3s;
}
.nav_info .lang_box:hover .lang i.iconjt{
    transform: rotate(0deg);
}
.nav_info .lang_box{
    position: relative;
    z-index: 100;
    margin:0 10px;
}
.nav_info .lang_box .dlang{
    position: absolute;
    left: -40px;
    top: 28px;
    width: 200px;
    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;
    white-space: nowrap;
    margin-bottom: 5px;
}
.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;
}

.nav_info .search{
    width: 30px;
    height: 30px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition:all .4s;
}
.nav_info .search i{
    color:#fff;
}
.nav_info .search:hover{
    background: var(--subtheme-color);
}

.header.header_on{
    height: 60px;
    box-shadow: 5px 0 10px 10px rgba(0,0,0,0.08);
}
.header.header_on .header_top .header_top_info{
    height: 0;
}
.header.header_on .header_wrap_w{
    height: 60px;
}

.header.header_on .nav .nav_li .nav1 a{
    line-height: 60px;
}
.header.header_on .nav .nav_li .nav2{
    top: 60px;
}


/* banner */

.banner{
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}
.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;
    padding-top: 80px;
}

.banner .item .item_con h4{
    font-size:50px;
    margin:0 0 30px;
    line-height: 1.1;
    font-family: 'HelveticaNeueBold';
}
.banner .item .item_con h4 span{
    color:var(--theme-color);
}
.banner .item .item_con h4 strong{
    color:var(--theme-color);
    font-weight: normal;
}
.banner .item .item_con p{
    font-size:30px;
    line-height:1.2;
    margin-bottom: 80px;
}

.banner .item .item_con a{
    font-size:14px;
    height: 50px;
    width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    text-transform: uppercase;
    background: var(--theme-color);
    border:1px solid var(--theme-color);
    white-space: nowrap;
    overflow: hidden;
}
.banner .item .item_con a:hover{
    border-color:#fff;
    background: transparent;
}
.banner .swiper-pagination{
    height: 40px;
    left: auto;
    text-align: left;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width: 6px;
    height: 6px;
    background: #fff;
    margin:0 13px;
    opacity: 1;
    position: relative;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 8px;
    height: 8px;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before{
    content:'';
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border:1px solid #fff;
    position: absolute;
    left: -9px;
    top: -9px;
}


.banner_ico{
    position: absolute;
    left: 50%;
    bottom:20px;
    z-index: 30;
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    transform: rotate(-45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: downico 2s ease-out infinite;
    color:#000;
    transition:all .6s;
    cursor: pointer;
}
.banner_ico i{
    transform: rotate(-45deg);
    display: block;
    font-size:20px;
}
@keyframes downico{
	0%{bottom: 20px;}
	50%{bottom:50px;}
	100%{bottom:20px;}
}
.banner_ico:hover{
    border-color: var(--theme-color);
    background: var(--theme-color);
    color:#fff;
}


/* tit_box1 */


.tit_box1{
    padding:100px 0 35px;
}
.tit_box1 .tit{
   
}
.tit_box1 .tit span{
    color:var(--subtheme-color);
    font-size:18px;
    text-transform: uppercase;
}
.tit_box1 .tit h4{
    font-size:48px;
    font-family: 'HelveticaNeueBold';
    line-height: 1.2;
    text-transform: capitalize;
    color:#000;
}
.tit_box1 .tit p{
    font-size:16px;
}
.tit_box1_left{
    text-align: left;
}
.tit_box1_fff .tit h4{
    color:#fff;
}
.tit_box2{
    padding:80px 0 30px;
    align-items: center;
}
.tit_box2 .tit{
    flex:1;
}
.tit_box2 .tit h4{
    font-family: 'HelveticaNeueBold';
    font-size:40px;
    text-transform: capitalize;
    line-height: 1.2;
}
.tit_box2 .menu .item{
    border:1px solid #000;
    padding:0 20px;
    height: 35px;
    border-radius: 100px;
    line-height: 33px;
    padding:0 20px;
    display: block;
    margin-left: 20px;
    text-transform: capitalize;
    transition:all .4s;
}
.tit_box2 .menu .item.all,.tit_box2 .menu .item:hover,.tit_box2 .menu .item.cur{
    background: var(--theme-color);
    color:#fff;
    border-color: var(--theme-color);
}


.bg1{
    background:#f7f7f7;
}
.bg2{
    background:var(--theme-color);
}


/* about */

.about_wrap{
    position: relative;
    background: url("../images/map1.png") no-repeat center;
}

.about_img{
    margin-top: 100px;
    width: 50%;
    border-radius:20px;
    overflow: hidden;
    position: relative;
}
.about_img .img1{
    height: 100%;
}
.about_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_img .img2{
    position: absolute;
    left:-20px;
    bottom:-20px;
    width: 355px;
    height: 195px;
    border: 5px solid #fff;
    border-radius:20px;
    transition:all .8s;
}
.about_img .img2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:20px;
}

.about_img .img2:hover{
    width:60%;
    height:60%;
}

.about_con{
    flex:1;
    min-width: 0;
    padding-right: 6%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about_con .desc{
    margin:0 0 30px;
    text-align: justify;
    hyphens: auto;
}
.about_con .desc p{
    line-height: 1.8;
}
.about_con a{
    height: 50px;
    /* width: 178px; */
    width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border:2px solid var(--theme-color);
    color:var(--theme-color);
    margin-bottom: 10px;
}
.about_con a:hover{
    background: var(--theme-color);
    color:#fff;
}


/* product */


.product_con{
    margin:0 -20px;
    padding-bottom: 120px;
}
.product_con .a_item_w{
    width:50%;
    padding:0 20px;
}
.product_con .a_item_w:first-child{
    width: 100%;
    margin-bottom: 40px;
}
.product_con .a_item{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.product_con .a_item .a_tit{
    width: 408px;
    height: 408px;
    border-top-right-radius:1000px;
    position: absolute;
    left: -100%;
    bottom: -100%;
    background: rgba(255,255,255,.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:50px 0 0 50px;
    font-family: 'HelveticaNeueBold';
    transition:all .6s;
}
.product_con .a_item .a_tit .tit{
    font-size:36px;
    width: 60%;
    line-height: 1.1;
}
.product_con .a_item .a_tit .tit:hover{
    color:var(--theme-color);
    text-decoration: underline;
}
.product_con .a_item .a_tit .hd{
    width: 60%;
    margin-top: 30px;
}
.product_con .a_item .a_tit .hd a{
    display: block;
    margin-top: 6px;
}
.product_con .a_item .a_tit .hd a:hover{
    color:var(--theme-color);
}
.product_con .a_item .a_tit .hd a.cur{
    color:var(--theme-color);
    text-decoration:underline;
}
.product_con .a_item .bd .img{
    display: none;
}
.product_con .a_item .bd .img:first-child{
    display:block;
}
.product_con .a_item:hover .a_tit{
    left: 0;
    bottom: 0;
}

/* advantage_wrap */

.advantage_wrap{
    background: url("../images/advantage_bg.jpg") no-repeat center top;
    background-size: 100% auto;
}
.advantage_tit{
    padding: 70px 0 50px;
}
.advantage_tit .tit_box1{
    padding:0;
}
.advantage_tit .tit_box1 .tit h4{
    color:#fff;
}
.advantage_tit .data_list{
    flex:1;
    min-width: 0;
    justify-content: space-around;
    padding-left: 10%;
}
.advantage_tit .data_list .item{
    color:#fff;
    text-align: center;
    font-family: 'helveticaneueLight';
}
.advantage_tit .data_list .item .num{
    
    line-height: 1.3;
}
.advantage_tit .data_list .item .num span{
    font-family: 'DINProMedium';
    font-size:70px;
    line-height: 1.3;
    margin-right: 10px;
}

.advantage_con{
    background: url("../images/advantage_con_bg.png") no-repeat right top #f8f8f8;
    border-radius: 10px;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
    margin-bottom: 30px;
    overflow: hidden;
}
.advantage_con .a_img{
    width: 50%;
}
.advantage_con .a_list{
    padding:30px 100px;
    flex:1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.advantage_con .a_list .item{
    margin-top: 30px;
}
.advantage_con .a_list .item:nth-last-child(-n+3){
    display: none;
}
.advantage_con .a_list .item.first{
    margin-top: 0;
}
.advantage_con .a_list .item h4{
    font-size: 22px;
    font-family: 'HelveticaNeueBold';
    margin-bottom: 5px;
}
.advantage_con .a_list .item p{
    line-height: 1.3;
    text-align: justify;
}
.advantage_con .a_list .btn{
    /* width: 190px; */
    width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
    height: 50px;
    background: var(--theme-color);
    border:2px solid var(--theme-color);
    color:#fff;
    font-family: 'HelveticaNeueBold';
    text-transform: uppercase;
    display: block;
    margin-top: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size:14px;
    white-space: nowrap;
    overflow: hidden;
}
.advantage_con .a_list .btn:hover{
    background: transparent;
    color:var(--theme-color);
}


/* case */

.case .tit_box1{
    padding: 70px 0 10px;
}

.case_list{
    height: 670px;
}
.case_list .item_w.item_w1{
    width: 41.5%;
    display: block;
    height: 100%;
    padding-left: 0;
}
.case_list .item_w{
    float: left;
    height: calc(100% / 2);
    width: 38.5%;
    padding:20px 0 0 20px;
}
.case_list .item_w:nth-child(2),.case_list .item_w:nth-child(5){
    width: 20%;
}
.case_list .item{
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.case_list .item,.case_list .item .img{
    height: 100%;
}
.case_list .item .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.case_list .item .con{
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    background: rgba(0,0,0,.5);
    color:#fff;
    padding:40px 10%;
    transition:all .4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
}
.case_list .item .con h4{
    font-size:24px;
    font-family: 'HelveticaNeueBold';
    margin-bottom: 10px;
}
.case_list .item .con p{
    font-size:14px;
    font-family: 'helveticaneueLight';
    line-height: 1.5;
    text-align: justify;
}
.case_list .item .con .btn{
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}
.case_list .item .con span{
    width: 70px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--theme-color);
    text-transform: uppercase;
    font-family: 'HelveticaNeueBold';
    border-radius: 50px;
    font-size:14px;
    transition:all .4s;
}
.case_list .item .con span:hover{
    background: #fff;
    color:var(--theme-color);
}
.case_list .item:hover .con{
    opacity: 1;
}

/* news_list */

.news{
    padding-bottom:120px;
}
.news_list{
    position: relative;
}

.news_list .item{
    height: 100%;
    display: block;
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
}
.news_list .item .img img{
    width: 100%;
}
.news_list .item .con{
    padding:30px 40px;
}
.news_list .item .con h4{
    font-family: 'HelveticaNeueBold';
    line-height: 1.4;
    font-size:16px;
}
.news_list .item .con p{
    font-size:14px;
    color:#666;
    margin:5px 0 25px;
    text-align: justify;
    hyphens: auto;
}

.news_list .item .con span{
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'HelveticaNeueBold';
    border:2px solid var(--theme-color);
    /* width: 70px; */
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color:var(--theme-color);
    transition:all .4s;
}

.news_list .item:hover .con h4{
    color:var(--theme-color);
}
.news_list .item:hover .con span{
    color:#fff;
    background: var(--theme-color);
}
.news_list .arrow{
    position: absolute;
    right: 0;
    top: -80px;
    display: flex;
}
.news_list .swiper-button-next,.news_list .swiper-button-prev{
    position: static;
    width: 40px;
    height: 40px;
    background: #e7e7e7;
    opacity: 1;
    margin:0 5px;
    color:#fff;
    font-weight: bold;
    border-radius: 50%;
    transition:all .4s;
}
.news_list .swiper-button-next i, .news_list .swiper-button-prev i{
    font-size:20px;
}
.news_list .swiper-button-prev{
    transform: rotate(180deg);
}
.news_list .swiper-button-next:after,.news_list .swiper-button-prev:after{
    display: none;
}
.news_list .swiper-button-next:hover,.news_list .swiper-button-prev:hover{
    background: var(--theme-color);
}



/* 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;
}


/* footer_message */

.footer_message{
    background: url("../images/bg3.jpg") no-repeat center;
    background-size:cover;
    text-align: center;
    padding:70px 0;
    position: relative;
}
.footer_message .con{
    text-align: center;
    color:#fff;
}
.footer_message .con p{
    font-size:18px;
}
.footer_message .con h4{
    font-size:48px;
    font-family: 'MontserratBold';
    line-height: 1.4;
}
.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:#333;
    padding:30px 0 0;
    color:#aaa;
}
.footer_hd{
    width: 23%;
    padding-right: 5%;
}
.footer_hd p{
    font-size:14px;
    font-family: 'helveticaneueLight';
    margin-top: 30px;
}
.footer_hd .share{
    margin-top: 20px;
}
.footer_hd .share a{
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 10px;
}
.footer_hd .share a svg{
    color:#fff;
    fill: #fff;
}
.footer_md{
    flex:1;
    min-width: 0;
    padding-top: 30px;
}
.footer_md .list{
    margin:0 -20px;
    padding-left: 5%;
}
.footer_md .list .item{
    flex:1;
    padding:0 20px;
}
.footer_md .list .item_contact{
    flex:1.5;
}
.footer_md .list .item h4{
    font-size:16px;
    font-family: 'HelveticaNeueBold';
    text-transform: uppercase;
    color:#fff;
    margin-bottom: 15px;
}
.footer_md .list .item>a{
    font-size:14px;
    font-family:'helveticaneueLight';
    display: block;
    line-height: 1.3;
    margin-top: 10px;
    text-transform: capitalize;
}
.footer_md .list .item.item_contact>a{
    text-transform: none;
}
.footer_md .list .item a:hover{
    color:#fff;
    text-decoration: underline;
}
.footer_md .list .item p,.footer_md .list .item a{
    display: flex;
    font-size:14px;
    font-family: 'helveticaneueLight';
    margin-bottom: 5px;
}
.footer_md .list .item p i,.footer_md .list .item a i{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-size:14px;
}
.footer_md .list .item p span,.footer_md .list .item a span{
    flex:1;
    min-width: 0;
    padding-left:10px;
}
.footer_copyright{
   padding: 20px 0 10px;
   align-items: center;
}
.footer_copyright .msg{
    font-size:14px;
    flex:1;
}

.footer_copyright .code .item{
    margin-left:30px;
    text-align: center;
}
.footer_copyright .code .item p{
    font-size:12px;
}
.footer_copyright .code .item img{
    width: 70px;
}


/* page_banner */

.page_banner{
    margin-top: 120px;
    position: relative;
}
.page_banner .img video{
    width: 100%; 
    height:calc( 100vh - 110px );
    object-fit: cover;
}
.page_banner .img img{
    width: 100%;
    min-height:150px;
    object-fit: cover;
    height: calc(100vh - 170px);
}
.page_banner .info{
    position: absolute;
    height: 100%;
    bottom:10%;
    display: flex;
    align-items: flex-end;
}
.page_banner .info .tit{
    font-size:54px;
    font-family: 'HelveticaNeueBold';
    color:#000;
    text-transform: uppercase;
}

.page_banner .info .pos a{
    margin:0 3px;
}

.page_banner .info p{
    text-align: center;
}




.page_pos{
    background: #f7f7f7;
}
.page_pos .pos{
    height: 50px;
    align-items: center;
    font-size:14px;
    color:#000;
}
.page_pos .return{
    color:var(--theme-color);
    margin-right: 20px;
    font-size:14px;
    transition:all .4s;
}
.page_pos .return i{
    font-weight: bold;
    transform: rotate(180deg);
    margin-right:8px;
}
.page_pos .return h6{
    text-decoration: underline;
}
.page_pos .return:hover{
    padding-right: 10px;
    color:#000;
}
.page_pos .pos img{
    margin-right: 6px;
}
.page_pos .pos a{
    padding:0 3px;
}
.page_pos .pos a:hover{
    color:var(--theme-color);
    text-decoration: underline;
}

/* page_product */

.page_product{
    padding:80px 0 100px;
}
.page_product_hd{
    width: 400px;
}
.page_product_menu{
    
}
.page_product_menu .tit{
    font-size:24px;
    font-family: 'HelveticaNeueBold';
    text-transform: capitalize;
}
.page_product_menu .list .hd{
    margin: 15px 0 5px;
    align-items: center;
}
.page_product_menu .list .hd a{
    flex:1;
}
.page_product_menu .list .hd a:hover,.page_product_menu .list .hd a.cur{
    color:var(--theme-color);
}
.page_product_menu .list .hd a i{
    font-size:12px;
    font-weight: bold;
    margin-right: 10px;
}
.page_product_menu .list .hd .ico{
    padding-left: 20px;
}
.page_product_menu .list .hd .ico i{
    transition:all .4s;
    display: block;
}
.page_product_menu .list .item.j_active .hd .ico i{
    transform: rotate(90deg);
}
.page_product_menu .list .bd{
    background:#f7f7f7;
    padding:10px 20px 20px 20px;
    display: none;
    border-radius: 5px;
}

.page_product_menu .list .bd a{
    display: block;
    border-bottom: 1px solid #ddd;
    padding: 10px 0 10px 15px;
    position: relative;
    font-size: 15px;
}
.page_product_menu .list .bd a:before{
    display: block;
    content:'';
    width: 4px;
    height: 4px;
    border-radius:50%;
    position: absolute;
    left: 0;
    top: 20px;
    background: var(--theme-color);
}

.page_product_menu .list .bd a:hover{
    color:var(--theme-color);
}

.page_product_filter{
    background: #f6f6f6;
    padding:20px 20px 50px;
    border-radius: 3px;
    margin-top:50px;
}
.page_product_filter .a_tit{
    font-size:14px;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.page_product_filter .a_list .item{
    padding:16px 0;
    border-bottom: 1px solid #ddd;
}
.page_product_filter .a_list .item:last-child{
    border-bottom: none;
}
.page_product_filter .a_list .item .tit{
    display: flex;
}
.page_product_filter .a_list .item .tit h4{
    flex:1;
    font-family: 'HelveticaNeueBold';
}
.page_product_filter .a_list .item .tit i{
    cursor: pointer;
}
.page_product_filter .a_list .item .tit i:hover{
    color:var(--theme-color);
}
.page_product_filter .a_list .item .filter_fields{
    display: flex;
    flex-wrap: wrap;
    margin:0 -10px;
}
.page_product_filter .a_list .item .filter_fields .option{
    font-size:14px;
    line-height: 1;
    max-width: 100%;
    min-width: 50%;
    padding: 0 20px;
    margin-top: 10px;
    cursor: pointer;
}

.page_product_filter .a_list .item .filter_fields .option:before{
    content:'-';
    font-size:20px;
    margin-right: 6px;
}
.page_product_filter .a_list .item .filter_fields .option:hover{
    color:var(--theme-color);
}
.page_product_filter .a_list .item .filter_fields .cur{
    color:var(--theme-color);
}


.page_product_bd{
    flex:1;
    min-width: 0;
    padding-left: 45px;
}
.page_product_bd .tit_box2{
    padding-top: 0;
}
.page_product_bd .tit_box2 .tit{
    margin-bottom: 30px;
}
.page_product_bd .tit_box2 .desc{
    text-align: justify;
    hyphens: auto;
}

.page_product_bd .filter_content .a_tit{
    font-size:40px;
    font-family: 'HelveticaNeueBold';
    padding:40px 0 20px;
    line-height: 1.2;
}
.page_product_bd .filter_content .a_list{
    margin:-12px;
}
.page_product_bd .filter_content .a_list .item{
    width: 25%;
    padding:12px;
}
.page_product_bd .filter_content .a_list .item .item_img{
    border-radius: 10px;
    overflow: hidden;
}
.page_product_bd .filter_content .a_list .item .item_con{
    padding-top: 10px;
}
.page_product_bd .filter_content .a_list .item .item_con .tit{
    font-size:20px;
    font-family: 'HelveticaNeueBold';
    transition:all .4s;
}
.page_product_bd .filter_content .a_list .item .item_con .desc{
    font-size:14px;
    color:#666;
}
.page_product_bd .filter_content .a_list .item .item_con .desc span{
    font-family: 'HelveticaNeueBold';
    color:#000;
    margin-right: 10px;
}

.page_product_bd .filter_content .a_list .item:hover .item_con .tit{
    color:var(--theme-color);
}


/* page_product_index */

.page_product_index{
    padding:40px 0 90px;
}
.page_product_index .hd{
    width: 53%;
    min-height: 500px;
}
.page_product_index .hd img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_product_index .bd{
    flex:1;
    min-width: 0;
    background:url("../images/map1.png") no-repeat center #f6f6f6;
    padding:50px 45px 50px 65px;
}
.page_product_index .bd .info h4{
    font-size:28px;
    font-family: 'muliBold';
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-bottom: 10px;
}
.page_product_index .bd .info h4:after{
    content:'';
    width: 116px;
    height: 3px;
    display: block;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.page_product_index .bd .info .desc{
    margin:20px 0 50px;
    font-size:18px;
    color:#666;
}
.page_product_index .bd .list{
    margin:0 -10px;
}
.page_product_index .bd .list .item{
    width: 33.333%;
    padding:5px 10px;
}
.page_product_index .bd .list .item h4{
    padding-left: 18px;
    font-size:18px;
    position: relative;
}
.page_product_index .bd .list .item h4:after{
    content: '';
    background: #bababa;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
}
.page_product_index .bd .list .item h4:before{
    content:'';
    display: block;
    position: absolute;
    left:18px;
    bottom: 0;
    background: var(--theme-color);
    width: 0;
    height: 1px;
    transition:all .4s;
}
.page_product_index .list .item:hover h4:before{
    width:calc(100% - 18px)
}
.page_product_index .bd .list .item:hover h4{
    color:var(--theme-color);
}
.page_product_index .bd .list .item:hover h4:after{
    background: var(--theme-color);
}
.page_product_index .bd .more_style3{
    margin-top: 60px;
    width: 240px;
}


/* page_about1 */

.page_about1_con{
    width: 80%;
    margin:auto;
    overflow: hidden;
    padding:0 0 90px;
}
.page_about1_con .tit{
    font-family: 'HelveticaNeueBold';
    color:#000;
}

.page_about1_con .tit p{
    font-size:30px;
    margin-top: 20px;
}
.page_about1_con .desc{
    margin:0 0 80px;
    hyphens: auto;
    text-align: justify;
}
.page_about1_con .desc p{
    margin-bottom: 20px;
}

/* page_advantage_wrap */

.page_advantage_wrap{
    background: url("../images/page_advantage_bg.jpg") no-repeat center;
    background-size: cover;
    padding-bottom: 80px;
}

.page_advantage_list{
    margin:-15px -20px;
}
.page_advantage_list .item_w{
    width: 33.33%;
    padding:15px 20px;
}
.page_advantage_list .item{
    background: rgba(255,255,255,.8);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding:70px 50px 50px 100px;
    height: 100%;
    transition:all .4s;
}
.page_advantage_list .item .img{
    position: absolute;
    left: 0;
    top: 0;
    background: var(--theme-color);
    width:105px;
    height: 105px;
    border-bottom-right-radius: 1000px;
    padding:15px 0 0 15px;
}
.page_advantage_list .item .img img{
    transition:all 1s;
}
.page_advantage_list .item .con h4{
    font-size:24px;
    font-family: 'HelveticaNeueBold';
    color:var(--theme-color);
    line-height: 1.2;
}
.page_advantage_list .item .con p{
    color:#616161;
    margin-top: 20px;
    /* text-align: justify; */
    hyphens: auto;
}
.page_advantage_list .item:hover{
    background: #fff;
}
/*.page_advantage_list .item:hover .img img{*/
/*    transform: rotatey(360deg);*/
/*}*/


/* recommended_news */

.recommended_news{
    padding-bottom: 100px;
}
.recommended_news_list_w{
    position: relative;
}
.recommended_news_list{
    position: initial;
}
.recommended_news_list_w .arrow{
    position: absolute;
    right: 0;
    top:-75px;
    display: flex;
}
.recommended_news_list_w .swiper-button-next,.recommended_news_list_w .swiper-button-prev{
    position: static;
    width: 40px;
    height: 40px;
    background: #e7e7e7;
    opacity: 1;
    margin:0 5px;
    color:#fff;
    font-weight: bold;
    border-radius: 50%;
    transition:all .4s;
}
.recommended_news_list_w .swiper-button-next i,.recommended_news_list_w .swiper-button-prev i{
    font-size:20px;
}
.related_products_list_w .swiper-button-prev{
    transform: rotate(180deg);
}
.recommended_news_list_w .swiper-button-next:after,.recommended_news_list_w .swiper-button-prev:after{
    display: none;
}
.recommended_news_list_w .swiper-button-next:hover,.recommended_news_list_w .swiper-button-prev:hover{
    background: var(--theme-color);
}

.recommended_news_list.news_list .item .con h4{
    font-size:18px;
    height: 50px;
    margin-bottom: 30px;
}


/* page_download_center */

.page_download_center .list{
   width: 70%;
   margin:auto;
}
.page_download_center .list a{
    padding:0 20px;
    width: 50%;
}
.page_download_center .list .item{
    padding:20px;
    border-bottom: 1px solid #ddd;
}
.page_download_center .list a:nth-child(-n+2) .item{
    border-top: 1px solid #ddd;
}
.page_download_center .list .item .pdf{
    display: flex;
    flex-direction: column;
    border:2px solid #d2d2d2;
    border-radius: 3px;
    width: 55px;
    height: 70px;
    align-items: center;
    justify-content: center;
    color:#ccc;
    transition:all .4s;
}
.page_download_center .list .item .pdf span{
    line-height: 1;
}
.page_download_center .list .item .pdf i{
    line-height: 1;
    font-size:24px;
}
.page_download_center .list .item .con{
    flex:1;
    min-width: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page_download_center .list .item .con h4{
    font-family: 'HelveticaNeueBold';
    line-height: 1.3;
    transition:all .4s;
}
.page_download_center .list .item .con p{
    font-size:14px;
}
.page_download_center .list .item:hover .pdf{
    border-color: var(--theme-color);
    color:var(--theme-color);
}
.page_download_center .list .item:hover .con h4{
    color: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: 450px;
}
.technical_support .panel1{
    margin-bottom: 30px;
    background: #fff;
    padding:30px 30px 50px;
    border-radius: 20px;
}
.technical_support .panel1:last-child{
    margin-bottom: 0;
}
.technical_support .p1_tit{
    font-size:30px;
    font-family: 'MontserratExtraBold';
    color:#333;
    line-height: 1.3;
}
.technical_support .p1_tit:after{
    content:'';
    width: 100px;
    height: 4px;
    background: #0051a2;
    display: block;
    margin:10px 0 35px;
}
.technical_support .ico{
    margin-top: 6px;
}
.technical_support .con{
    margin-left: 15px;
}
.technical_support .p1_con .con p{
    font-family: 'MontserratLight';
    color:#333;
}
.technical_support .p1_con .con h4{
    font-size:34px;
    font-style: italic;
    color:#2d2d2d;
    line-height: 1;
}
.technical_support .p2_tit{
    text-align: center;
    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_service_menu */


.pin-wrapper{
    
}
.page_service_menu{
    display: flex;
    justify-content: center;
    padding:100px 0 30px;
    z-index: 20;
    background: #fff;
}
.page_service_menu a{
    display: block;
    padding:0 30px;
    height: 35px;
    margin:0 10px;
    line-height: 33px;
    border-radius: 100px;
    border:1px solid #000;
}
.page_service_menu a:hover{
    border-color: var(--theme-color);
    color:var(--theme-color);
}
.page_service_menu a.cur{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}


/* page_cases_list */


.page_cases_list{
    padding-bottom: 80px;
}
.page_cases_list .list{
    margin:-20px;
}
.page_cases_list .list a{
    width:33.333%;
    padding:20px;
    display: block;
}
.page_cases_list .list .item{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.page_cases_list .list .item .img{
    
}
.page_cases_list .list .item .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_cases_list .list .item .info{
    padding:55px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    color:#fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:all .4s;
    opacity: 0;
}
.page_cases_list .list .item .info h4{
    font-size:24px;
    font-family: 'HelveticaNeueBold';
}
.page_cases_list .list .item .info p{
    margin:10px 0 30px;
}
.page_cases_list .list .item .more{
    display: flex;
    justify-content: flex-end;
}
.page_cases_list .list .item .more span{
    width: 70px;
    height: 30px;
    border-radius: 100px;
    background: var(--theme-color);
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'HelveticaNeueBold';
    font-size:14px;
    transition:all .4s;
    border:2px solid var(--theme-color);
}
.page_cases_list .list .item:hover .info span:after{
    width: 100%;
}
.page_cases_list .list .item:hover .info{
    opacity: 1;
}
.page_cases_list .list .item .more span:hover{
    border-color: #fff;
    background: transparent;
}

.page_faq .desc{
    text-align: center;
    color:#666;
}
.page_faq_list .list{
    width: 70%;
    margin:auto;
    padding-bottom: 50px;
}
.page_faq_list .list .item{
    border-bottom: 1px solid #e7e7e7;
    padding:15px 0;
}
.page_faq_list .list .item .tit{
    display: flex;
    cursor: pointer;
}
.page_faq_list .list .item .tit.cur,.page_faq_list .list .item:hover .tit{
    color:var(--theme-color);
}
.page_faq_list .list .item .tit h4{
    flex:1;
    font-family: 'HelveticaNeueBold';
    font-size:18px;
    min-width: 0;
}
.page_faq_list .list .item .con{
    display: none;
    margin-top: 10px;
}

/* page_technology_list */

.page_technology_list .list .item{
    background: #f6f6f6;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}
.page_technology_list .list .item:nth-child(2n){
    flex-direction: row-reverse;
}
.page_technology_list .list .item .img{
    width: 50%;
}
.page_technology_list .list .item .con{
    flex:1;
    min-width: 0;
    padding:70px 75px;
}
.page_technology_list .list .item .con h4{
    font-family: 'HelveticaNeueBold';
    font-size:36px;
    line-height: 1.2;
}
.page_technology_list .list .item .con p{
    color:#666;
    margin-top: 20px;
    text-align: justify;
}


/* product_detail */

.pd_detail{
    background: url("../images/bg4.jpg") no-repeat center;
    background-size: 100% 100%;
}
.pd_detail_hd{
    padding-top: 50px;
}
.pd_detail_hd .pics{
    width:46.875%;
}
.pd_detail_hd .pics .mySwiper2{
    width: 100%;
    height:750px;
    margin:0;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
.pd_detail_hd .pics .mySwiper2 .swiper-pagination-bullet-active{
    background: var(--theme-color);
}
.pd_detail_hd .pics .mySwiper2 .img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
}
.pd_detail_hd .pics .mySwiper2 .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pd_detail_hd .pics .mySwiper1_w{
    position: relative;
}
.pd_detail_hd .pics .mySwiper{
    overflow: hidden;
    width: 85%;
    margin:20px auto 0;
}
.pd_detail_hd .pics .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img{
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border:2px solid #fff;
    overflow: hidden;
}
.pd_detail_hd .pics .mySwiper .swiper-slide.swiper-slide-thumb-active .img{
    border:2px solid var(--theme-color);
    
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img img{
    height:55px;
    width: 100%;
    object-fit: cover;
}

.pd_detail_hd .pics .mySwiper1_w .swiper-button-next,.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev{
    z-index: 99;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    opacity: 1;
    color:var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.pd_detail_hd .pics .mySwiper1_w .swiper-button-next:after,.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev:after{
    font-size:16px;
    font-weight: bold;
}
.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev{
    left: 0;
}
.pd_detail_hd .pics .mySwiper1_w .swiper-button-next{
    right: 0;
}
.pd_detail_hd .pics .mySwiper1_w .swiper-button-next:hover,.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev:hover{
    background: var(--theme-color);
    color:#fff;
}


.pd_detail_hd .infos{
    flex: 1;
    padding:10px 0 0 5%;
    min-width: 0;
}
.pd_detail_hd .infos h1{
    font-size:40px;
    line-height: 1.2;
    font-family: 'HelveticaNeueBold';
}

.pd_detail_hd .infos .desc{
    font-size:16px;
    color:#666;
    margin:10px 0 20px;
    color:#000;
}
.pd_detail_hd .infos .desc span{
    padding-left: 5px;
    font-family: 'HelveticaNeueBold';
}
.pd_detail_hd .infos .info h5{
    font-size:20px;
    font-family: 'HelveticaNeueBold';
}
.pd_detail_hd .infos .info p{
    margin-top: 10px;
}
.pd_detail_hd .infos .params_illustration{
    margin-top:30px;
}
.pd_detail_hd .infos .params_illustration .params{
    width: 60%;
}
.pd_detail_hd .infos .params_illustration .params table{
    width: 100%;
}
.pd_detail_hd .infos .params_illustration .params table tr{
    background: #f6f6f6;
    height: 40px!important;
}
.pd_detail_hd .infos .params_illustration .params table tr td{
    padding:0 13px;
    color:#666;
    font-size:14px;
}
.pd_detail_hd .infos .params_illustration .params table tr td:last-child{
    font-family: 'HelveticaNeueBold';
    color:#000;
}
.pd_detail_hd .infos .params_illustration .params table tr:nth-child(2n){
    background: #fff;
}
.pd_detail_hd .infos .params_illustration .illustration{
    padding-left: 45px;
    flex:1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.pd_detail_hd .infos .params_illustration .illustration .item{
    margin-bottom: 60px;
}
.pd_detail_hd .infos .params_illustration .illustration h4{
    margin-top: 10px;
    font-size:16px;
    color:#666;
}

.pd_detail_hd .infos .btns{
    margin-top:40px;
}
.pd_detail_hd .infos .btns .btn{
   align-items: center;
    text-transform: capitalize;
    margin-right:50px;
    font-family: 'HelveticaNeueBold';
    line-height: 1;
    display: flex;
}
.pd_detail_hd .infos .btns .btn i{
    font-size:20px;
    line-height: 1;
    vertical-align: middle;
    margin-right: 6px;
    display: inline-block;
}
.pd_detail_hd .infos .btns .btn2 i{
    transform: rotate(45deg);
}
.pd_detail_hd .infos .btns .btn:hover{
    color:var(--theme-color);
}


.pd_detail_bd .a_desc{
    
}
.pd_detail_bd .a_desc p{
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 10px;
}

.pd_detail_bd .a_desc img.aligncenter{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pd_detail_bd .a_desc img.alignright{
    float: right;
    margin-left: 20px;
}

.pd_detail_bd .a_desc img.alignleft{
    float: left;
    margin-right: 20px;
}


.page_product_related_wrap{
    background-color: #f6f6f6;
    padding-bottom:100px;
}
.page_product_related .list a{
    padding:0 12px;
    width: 50%;
}
.page_product_related .list .item{
    background: #fff;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.page_product_related .list .item .con{
    padding: 18px 18px 30px;
}
.page_product_related .list .item .con h4{
    font-size:24px;
    font-family: 'HelveticaNeueBold';
    line-height: 1;
    margin-bottom: 10px;
}
.page_product_related .list .item .con p{
    font-size:14px;
    color:#666;
    line-height: 1.3;
}
.page_product_related .list .item .con p span{
    font-family: 'HelveticaNeueBold';
    color:#000;
}
.page_product_related .list .item:hover .con h4{
    color:var(--theme-color);
}


/* page_quality */

.pq1_info{
    
}
.pq1_info .desc{
    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;
}
.page_quality_list .item{
    margin-top: 40px;
}

.page_quality_list .item .img{
    width: 49%;
}
.page_quality_list .item .con{
    flex:1;
    min-width: 0;
    padding:80px 0 0 6%;
}
.page_quality_list .item .con h4{
    font-size:32px;
    font-family: 'muliBold';
}
.page_quality_list .item .con p{
    margin-top:30px;
}
.page_quality_list .item:nth-child(2n){
    flex-direction:row-reverse;
}
.page_quality_list .item:nth-child(2n) .con{
    padding:80px 6% 0 0;
}

/* pq3_info */

.pq3_info{
    background: url("../images/map1.png") no-repeat center;
}
.pq3_info .list{
    padding-bottom: 90px;
    justify-content: center;
}
.pq3_info .list .item{
    padding:0 70px;
}


/* page_news */

.page_news{
    padding:0 0 100px;
}

.page_news_list{
    
}
.page_news_list .list>a{
    width: 100%;
    display: block;
}
.page_news_list .list .item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
}
.page_news_list .list .item_img{
    width: 30%;
    border-radius: 10px;
    overflow: hidden;
}
.page_news_list .list .item_con{
    flex:1;
    min-width: 0;
    margin-left: 3.5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 2px solid #e7e7e7;
}
.page_news_list .list .item_con .t_box{
    padding-top: 20px;
}
.page_news_list .list .item_con .time_column{
    font-size:14px;
}
.page_news_list .list .item_con .time_column .time{
    color:#999;
}
.page_news_list .list .item_con .time_column .column{
    color:var(--theme-color);
}
.page_news_list .list .item_con .time_column .column i{
    font-size:14px;
    color:#999;
    transform: rotate(270deg);
    display: block;
    margin:0 6px 0 15px;
}
.page_news_list .list .item_con .t_box h4{
    font-size:24px;
    font-family: 'HelveticaNeueBold';
    transition:all .4s;
}
.page_news_list .list .item_con .con{
    color:#666;
}
.page_news_list .list .item_con .more{
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'HelveticaNeueBold';
    border: 2px solid var(--theme-color);
    width: 70px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color: var(--theme-color);
    transition: all .4s;
}
.page_news_list .list .item:hover .item_con h4{
    color:var(--theme-color);
}
.page_news_list .list .item:hover .item_con .more{
    background: var(--theme-color);
    color:#fff;
}

.no_banner_pos{
    margin:120px 0 0;
}


/* page_news_detail */

.page_news_detail_wrap{
    padding:70px 0;
}
.page_news_detail{
    flex:1;
    min-width: 0;
    padding-right: 6%;
}
.page_news_detail h1{
    font-size:36px;
    font-family: 'HelveticaNeueBold';
    line-height: 1.2;
}
.page_news_detail .time{
    font-size:14px;
    color:#666;
    margin: 30px 0 10px;
}
.page_news_detail .time i{
    color:var(--theme-color);
    margin-right: 8px;
    font-size:18px;
}
.page_news_detail .tags a{
    display:inline-block;
    margin:0 20px 20px 0;
    height: 32px;
    background: #f6f6f6;
    line-height: 32px;
    padding:0 27px;
    font-size:14px;
    color:#999;
    border-radius: 5px;
    transition:all .4s;
}
.page_news_detail .tags a:hover{
    background: var(--theme-color);
    color:#fff;
}

.page_news_detail .desc{
    padding:40px 0 20px;
    min-height: 20vh;
    text-align: justify;
    hyphens: auto;
}

.page_news_detail .desc p{
    margin-bottom: 20px;
}
.page_news_detail .desc p img.aligncenter{
    display: block;
    margin-left:auto;
    margin-right:auto;
}
.page_news_detail .desc p img.alignleft{
    float: left;
    margin-right: 20px;
}
.page_news_detail .desc p img.alignright{
    float: right;
    margin-left: 20px;
}


/* page_news_detail_recommended */

.page_news_detail_recommended{
    width: 340px;
}
.page_news_detail_recommended .first{
    background: #f6f6f6;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}
.page_news_detail_recommended .first .con{
    padding:20px 30px 30px;
}
.page_news_detail_recommended .first .con h4{
    font-family: 'HelveticaNeueBold';
    font-size:18px;
    transition:all .4s;
}
.page_news_detail_recommended .first .con .time_more{
    padding-top: 20px;
}
.page_news_detail_recommended .first .con .time_more .time{
    font-size:14px;
    color:#666;
    flex:1;
    font-family: 'helveticaneueLight';
}
.page_news_detail_recommended .first .con .time_more .more{
    height: 34px;
    background: var(--theme-color);
    line-height: 30px;
    padding:0 25px;
    color:#fff;
    font-size:14px;
    text-transform: uppercase;
    font-family: 'HelveticaNeueBold';
    border-radius: 100px;
    border:2px solid var(--theme-color);
    transition:all .4s;
}
.page_news_detail_recommended .first:hover .con h4{
    color:var(--theme-color);
}
.page_news_detail_recommended .first:hover .con .time_more .more{
    background: #fff;
    color:var(--theme-color);
}
.page_news_detail_recommended .list .item{
    padding:22px 0;
    display: block;
    border-bottom: 1px solid #e7e7e7;
}
.page_news_detail_recommended .list .item .time{
    font-size:14px;
    font-family: 'helveticaneueLight';
    color:#666;
}
.page_news_detail_recommended .list .item h4{
    font-family: 'HelveticaNeueBold';
}

.plr100{
    padding-left: 100px;
    padding-right: 100px;
}

.related_products_list_w{
    padding-bottom: 100px;
    overflow: hidden;
    position: relative;
}
.related_products_list_w .tit_box2{padding-top: 0;}
/*.related_products_list .list{*/
/*    margin:0 -33px;*/
/*}*/
/*.related_products_list .list .item{*/
/*    padding:0 33px;*/
/*}*/
.related_products_list .list .item .img{
    border-radius: 10px;
    overflow: hidden;
}
.related_products_list .list .item .con{
    padding-top: 10px;
}
.related_products_list .list .item .con h4{
    font-size:24px;
    font-family: 'HelveticaNeueBold';
}
.related_products_list .list .item .con p{
    font-size:14px;
}
.related_products_list_w .arrow{
    position: absolute;
    right: 0;
    top:80px;
    display: flex;
}
.related_products_list_w .swiper-button-next,.related_products_list_w .swiper-button-prev{
    position: static;
    width: 40px;
    height: 40px;
    background: #e7e7e7;
    opacity: 1;
    margin:0 5px;
    color:#fff;
    font-weight: bold;
    border-radius: 50%;
    transition:all .4s;
}
.related_products_list_w .swiper-button-next i,.related_products_list_w .swiper-button-prev i{
    font-size:20px;
}
.related_products_list_w .swiper-button-prev{
    transform: rotate(180deg);
}
.related_products_list_w .swiper-button-next:after,.related_products_list_w .swiper-button-prev:after{
    display: none;
}
.related_products_list_w .swiper-button-next:hover,.related_products_list_w .swiper-button-prev:hover{
    background: var(--theme-color);
}



/* page_contact */

.page_contact_wrap{
    padding:80px 0 120px;
}


.page_contact1{
    display: flex;
}
.page_contact1_con{
    width: 50%;
    background: url("../images/contact_img.webp") no-repeat left bottom #f7f7f7;
    padding:40px;
    border-radius: 6px;
    box-shadow: 0 5px 12px rgba(0,0,0,.05);
}
.page_contact1_con .a_tit{
    font-size:40px;
    font-family: 'HelveticaNeueBold';
    padding-bottom: 15px;
    position: relative;
}


.page_contact1_con .list .item{
    width: 50%;
    display: flex;
    margin-top: 20px;
}
.page_contact1_con .list .item .ico{
    width:65px;
    height: 65px;
    background: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.page_contact1_con .list .item .ico i{
    font-size:30px;
    color:#fff;
}
.page_contact1_con .list .item .con{
    padding:10px 0 0 20px;
    flex:1;
    min-width: 0;
}
.page_contact1_con .list .item .con h4{
    line-height: 1.2;
    font-size:18px;
    font-family: 'HelveticaNeueBold';
}
.page_contact1_con .list .item .con p{
    margin-top: 6px;
    font-size:16px;
}
.page_contact1_con .list .item .con p a:hover{
    color:var(--theme-color);
    text-decoration: underline;
}
.page_contact1_con .code{
    justify-content: flex-end;
    margin-top: 40px;
}
.page_contact1_con .code .item{
    padding:0 10px;
}
.page_contact1_con .code .item img{
    width: 70px;
}
.page_contact1_con .code .item p{
    text-align: center;
    padding-top: 10px;
    font-size:14px;
}


.page_contact2_form{
    flex:1;
    min-width: 0;
    padding-left: 5%;
}
.page_contact2_form_tit .txt{
    flex:1;
    min-width: 0;
    padding-left: 15px;
    text-align: justify;
}
.page_contact2_form .tit h4{
    font-size:40px;
    color:#333;
    font-family: 'MontserratSemiBold';
}
.page_contact2_form .tit p{
    color:#666;
}
.page_contact2_form .form{
    padding-top: 20px;
}


.page_contact2_form .input input,.page_contact2_form textarea{
    width: 100%;
    border:none;
    outline: none;
    background: #e8e8e8;
    border-radius: 6px;
    height: 54px;
    padding:10px 20px;
    line-height: 34px;
    margin-bottom: 25px;
    border:1px solid #d2d2d2;
    color:#000;
    font-family: 'HelveticaNeueBold';
    font-size:16px;
}
.page_contact2_form textarea{
    height: 120px;
}
.page_contact2_form .input input::placeholder,.page_contact2_form textarea::placeholder{
    color:#000;
    font-size:16px;
}
.page_contact2_form .form .button{
    
}
.page_contact2_form .form .button button{
    width:160px;
    margin:auto;
    height: 45px;
    background:var(--theme-color);
    border:none;
    outline: none;
    border-radius:5px;
    color:#fff;
    font-size:16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #333;
    font-size:15px;
    font-family: 'HelveticaNeueBold';
}
.page_contact2_form .form .button button i{
    font-size:22px;
    margin-left: 10px;
}
.page_contact2_form .form .button button:hover{
    opacity: .8;
}

.page_contact_map{
    padding:80px 0;
}


/* return */

.return_page{
    
}
.return_page dt p{
    font-family: 'HelveticaNeueBold';
}
.return_page dt p span{
    color:var(--theme-color);
}



.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;}





