@charset "utf-8";

.header{
    height:90px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    justify-content: space-between;
    z-index: 999;
    border-bottom: 1px solid transparent;
    background: #fff;
}
.header_wrap{
    height:90px;
}
.header.header_on{
    background: #fff;
    border-color: rgba(0, 0, 0, .08);
}
.header .logo{
    flex:1;
}
.header .logo img{
    max-height:53px;
}
.nav .nav_li{
    margin:0 30px;
    position: relative;
}
.nav .nav_li .nav1 a{
    color:#333;
    display: block;
    line-height:90px;
    position: relative;
    text-transform: uppercase;
    transition:all 0s;
    font-size:18px;
}
.nav .nav_li .nav1 a:after{
    content:'';
    width:0;
    height:3px;
    background: var(--theme-color);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition:all .3s;
}
.nav .nav_li .nav1 a:hover,.nav .nav_li.cur .nav1 a{
    color:var(--theme-color);
}
.nav .nav_li .nav2{
    list-style-type: none;
    position: absolute;
    top:89px;
    line-height: 40px;
    width: 240px;
    background: #fff;
    display: none;
    border-radius:5px;
    padding:20px;
    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-size:14px;
}
.nav .nav_li .nav2 a:first-child{
    padding-top: 0;
}
.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 .contact{
    margin-left:80px;
}
.nav_info .contact .icon{
    margin-right:6px;
}
.nav_info .contact .icon i{
    font-size: 36px;
    color:var(--theme-color);
}
.nav_info .contact .info h4{
    font-size: 15px;
}
.nav_info .contact .info p{
    font-size:26px;
    line-height: 1.1;
    font-family: 'Arial';
    color:var(--subtheme-color);
}

.banner{
    position: relative;
    overflow: hidden;
    padding-top:90px;
}
.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;
    width: 550px;
}
.banner .item .item_con h4{
    font-size:60px;
    font-weight: bold;
    line-height:1.1;
    color:var(--subtheme-color);
}
.banner .item .item_con p{
    font-size:18px;
    margin: 30px 0 50px;
    color:var(--subtheme-color);
}

.banner .swiper-pagination{
    text-align: center;
    bottom:40px;
    left:0;
    width:100%;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width: 6px;
    height: 6px;
    background: #fff;
    margin:0 17px;
    opacity: 1;
    position: relative;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 8px;
    height: 8px;
    background: var(--subtheme-color);
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before{
    content:'';
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border:1px solid var(--subtheme-color);
    position: absolute;
    left: -9px;
    top: -9px;
}

/* tit_box1 */

.tit_box1{
    padding-bottom:30px;
    text-align: center;
}
.tit_box1 .tit{
}
.tit_box1 .tit h4{
    font-size:45px;
    font-weight: bold;
    color:var(--theme-color);
    line-height: 1;
}
.tit_box1 .tit img{
    display: block;
    margin:15px auto;
}

.tit_box1 .tit p{
    color:#555;
}

.tit_box2{
    padding:50px 0 30px;
}
.tit_box2 .tit{
    
}
.tit_box2 .tit h4{
    font-size:36px;
    font-weight: bold;
    color:#333;
}
.tit_box2 .tit h4:after{
    content:'';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--subtheme-color);
    margin: 10px 0 0;
}
.tit_box2_fff .tit h4{
    color:#fff;
}
.tit_box2-center{
    text-align: center;
}

.bg1{
    background:#f0f4f7;
}
.bg2{
    background:var(--theme-color);
}


/* product */

.product_menu{
    margin:0 -20px 30px;
}
.product_menu .item{
    padding:0 20px;
    width: 16.667%;
}
.product_menu .item a{
    background: var(--theme-color);
    padding: 12px 20px;
    color:#fff;
    display: block;
    text-align: center;
    transition:all .4s;
}
.product_menu .item a:hover{
    background: var(--subtheme-color);
}


.product_list{
    
    overflow: hidden;
    margin: -13px;
}
.product_list a{
    width: 25%;
    padding: 13px;
    display: block;
}
.product_list .item{
    background: #fff;
    
}
.product_list .item .item_con{
    text-align: center;
    padding:20px 30px;
}
.product_list .item .item_con .tit{
    font-size: 18px;
    color:#333;
}
.product_list .item .item_con .desc{
    font-size: 14px;
}

.product_list a:hover .item_con .tit{
    color:var(--theme-color);
}

.product_more .more_style5{
    margin: auto;
}


.arrows_out{
    position: relative;
}
.arrows_out .swiper-button-next,.arrows_out .swiper-button-prev{
    width: 58px;
    height: 58px;
    opacity: 1;
    border:1px solid #c3c3c3;
    color:#aaa;
    transition:all .5s;
}
.arrows_out .swiper-button-prev{
    left: -90px;
}
.arrows_out .swiper-button-next{
    right:-90px;
}
.arrows_out .swiper-button-next:after,.arrows_out .swiper-button-prev:after{
    font-size:20px;
}
.arrows_out .swiper-button-next:hover,.arrows_out .swiper-button-prev:hover{
    background: var(--theme-color);
    border-color:var(--theme-color);
    color:#fff;
}


/* case_wrap */


.case_hd{
    width: 34%;
}
.case_hd .item{
    width: 50%;
    background: #eef2f6;
    padding:15px 25px;
    border-right: 1px solid #e2e6ea;
    border-bottom: 1px solid #e2e6ea;
    color:#9ea5af;
    transition:all .4s;
    overflow: hidden;
}
.case_hd .item.cur img{
   filter:brightness(100)
}
.case_hd .item.cur{
    background: var(--subtheme-color);
    color:#fff;
    position: relative;
}
.case_hd .item:before,.case_hd .item:after{
    content:'';
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,.1);
    display: block;
    position: absolute;
    border-radius: 50%;
    transition:all .4s;
}
.case_hd .item.cur:before{
    right: -80px;
    top: -40px;
}
.case_hd .item.cur:after{
    bottom: -80px;
    right: -20px;
}
.case_hd .item.cur:before{
    animation:moveBe 1s ;
}
.case_hd .item.cur:after{
    animation:moveAf 1s ;
}
@keyframes moveBe {
  from {
    transform: translate(20%,-20%);
  }

  to {
    transform: translate(0%,0%);
  }
}
@keyframes moveAf {
  from {
    transform: translate(20%,20%);
  }

  to {
    transform: translateX(0%,0%);
  }
}

.case_hd .item .tit{
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
}
.case_hd .item .subtit{
    font-family: 'Arial';
    font-size: 14px;
}
.case_bd{
    flex:1;
    min-width: 0;
}
.case_bd .item{
    display: none;
    position: relative;
}
.case_bd .item:first-child{
    display: block;
}
.case_bd .item .item_con{
    position: absolute;
    left: 0;
    top: 0;
    width:100%;
    height: 100%;
    padding: 50px 90px;
    z-index: 3;
    color:#fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:all .4s;
}
.case_bd .item .item_con .hd .tit{
    font-size: 30px;
    font-weight: bold;
}
.case_bd .item .item_con .bd .desc{
    
}
.case_bd .item .item_con .bd .btn{
    padding-top:20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,.5);
}
.case_bd .item .item_con .bd .btn i{
    margin-left: 20px;
}

.case_bd .item:hover .item_con{
    padding: 60px 90px;
}

.case_bd .item .item_img{
    position: relative;
    height: 575px;
}
.case_bd .item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case_bd .img_scale:hover .img img{
    transform: scale(1.05);
}
.case_bd .item .item_img:after{
    content:'';
    width:100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: url("../images/img_bg1.png") repeat;
}



/* about */

.about_wrap{
    background: url("../images/about_img.jpg") no-repeat center bottom #a2b5d0;
}
.about_tit .tit h4{
    color:#fff;
}
.about_tit .tit p{
    color:#fff;
}
.about_desc{
    color:#fff;
    font-size: 18px;
    text-align: center;
}
.about_more{
    padding-bottom: 160px;
}
.about_more .more_style5{
    color:#fff;
    border-color: #fff;
    margin: auto;
}
.about_more .more_style5:after{
    background:#fff;
}
.about_more .more_style5:hover{
    color:var(--theme-color);
}
.about_list{
    
}
.about_list{
    margin: -13px;
}
.about_list .item_w{
    padding:13px;
    width: 25%;
}
.about_list .item{
    background: rgba(0,58,142,.8);
    padding: 35px 45px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition:all .4s;
    position: relative;
    overflow: hidden;
}
.about_list .item .item_con{
    padding-top: 20px;
    color:#fff;
}
.about_list .item .item_con .tit{
    font-size: 20px;
}
.about_list .item .item_con .tit:after{
    content:'';
    width: 25px;
    height: 1px;
    background: #fff;
    margin: 20px auto;
    display: block;
}
.about_list .item .item_con .desc{
    font-size: 14px;
}
.about_list .item:hover{
    background: var(--subtheme-color);
}

.about_list .item:before,.about_list .item:after{
    content:'';
    width: 230px;
    height: 230px;
    background: rgba(255,255,255,.1);
    display: block;
    position: absolute;
    border-radius: 50%;
    transition:all .4s;
    opacity: 0;
}
.about_list .item:before{
    right: -110px;
    top: 50px;
}
.about_list .item:after{
    bottom: -140px;
    right: 40px;
}
.about_list .item:hover:before{
    animation:moveBe 1s ;
    opacity: 1;
}
.about_list .item:hover:after{
    animation:moveAf 1s ;
    opacity: 1;
}

/* news_wrap */

.news_list{
    overflow: hidden;
}
.news_list .news_list_hd{
    width: 66.666%;
}
.news_list_hd .item{
    width: 50%;
    padding-right: 50px;
}
.news_list_hd .item a{
    position: relative;
    overflow: hidden;
    display: block;
}
.news_list_hd .item .item_img img{
    width: 100%;
}
.news_list_hd .item .item_con{
    padding:30px 40px;
    background: #f6f6f6;
}
.news_list_hd .item .name_time .name{
    flex:1;
    color:var(--theme-color);
}
.news_list_hd .item .name_time .time{
    font-size: 14px;
    color:#9ea5af;
}
.news_list_hd .item .tit{
    font-size:24px;
    color:#333;
    padding-top: 15px;
}
.news_list_hd .item .desc{
    margin:10px 0 20px;
    font-size: 14px;
}
.news_list_hd .item .more{
    font-size: 14px;
    color:#333;
}
.news_list_hd .item .more i{
    font-size:10px;
    vertical-align: center;
    margin-left:1px;
}
.news_list_hd .item .h_con{
    transition:all .4s;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom:-100%;
    width: 100%;
    height: 100%;
    padding:50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news_list_hd .item .h_con .h_hcon .name_time .name{
    color:rgba(255,255,255,.5);
}
.news_list_hd .item .h_con .h_hcon .tit{
    color:#fff;
    position: relative;
    line-height: 1.2;
}
.news_list_hd .item .h_con .h_hcon .tit:before,.news_list_hd .item .h_con .h_hcon .tit:after{
    content:'';
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,.5);
    margin-top: 20px;
}
.news_list_hd .item .h_con .h_hcon .tit:before{
    width: 70px;
    position: absolute;
    bottom: 0;
}
.news_list_hd .item .h_con .h_hcon .desc{
    color:#fff;
    margin-top: 30px;
}
.news_list_hd .item .h_con .more{
    color:#fff;
}

.news_list_hd .item a:hover .h_con{
    bottom: 0;
}

.news_list_bd{
    flex:1;
    min-width: 0;
}
.news_list_bd .item{
    border-bottom: 1px solid #eaebf1;
    padding:30px 0;
}
.news_list_bd .item:first-child{
    padding-top: 0;
}
.news_list_bd .item:last-child{
    border-bottom: 0;
}
.news_list_bd .item_img{
    width: 42%;
}
.news_list_bd .item_con{
    flex:1;
    min-width: 0;
    padding:10px 0 10px 20px;
    flex-direction: column;
    justify-content: space-between;
}
.news_list_bd .item_con .time_tit .time{
    font-size: 14px;
    color:#9ea5af;
}
.news_list_bd .item_con .time_tit .tit{
    font-size: 18px;
    color:#333;
    padding-top: 6px;
    line-height: 1.4;
}
.news_list_bd .item_con .more{
    font-size: 14px;
    color:#333;
}
.news_list_bd .item_con .more i{
    font-size: 10px;
}
.news_list_bd .item:hover .item_con .time_tit .tit{
    color:var(--theme-color);
}

.news_more{
    margin-top: 20px;
}
.news_more .more_style5{
    margin: auto;
}


/* footer */

.footer{
    background:#333;
    background-size: cover;
    color:#fff;
}
.footer_menu{
    width: 65%;
}
.footer_menu .item{
    flex:1;
}
.footer_menu .item h4 a{
    font-size: 18px;
    display: block;
}
.footer_menu .item h4 a:after{
    content:'';
    width: 50px;
    height: 1px;
    background: var(--subtheme-color);
    display: block;
    margin: 15px 0;
}
.footer_menu .item p{
    margin:3px 0;
}
.footer_menu .item p a{
    color:#bbb;
}

.footer_contact{
    flex:1;
    min-width: 0;
}
.footer_contact p{
    margin-top: 15px;
    font-size:15px;
}
.footer_contact p i{
    margin-right: 8px;
}
.footer_contact .item{
    position: relative;
}
.footer_contact .item .ico{
    margin-right: 20px;
    cursor: pointer;
}
.footer_contact .item .ico i{
    font-size: 30px;
}
.footer_contact .item .img{
    display: none;
    position: absolute;
    width: 120px;
    height: 120px;
    bottom:45px;
    left: -40px;
}
.footer_contact .item:hover .img{
    display: block;
}
.footer_contact .item:hover .ico i{
    color:var(--subtheme-color);
}

.footer_menu .item p a:hover{
    color:var(--subtheme-color);
}

.footer_copyright_wrap{
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 35px;
}
.footer_copyright{
    font-size:14px;
    padding:20px 0;
    color:#c0c0c0;
    text-align: center;
}
.footer_copyright span{
    padding: 0 20px;
}
.footer_copyright a{
    color:#c0c0c0;
}
.footer_copyright img{
    margin:0 10px 0 30px;
}

.footer a:hover{
    color:var(--subtheme-color);
}

/* page_banner */

.page_banner{
    margin-top:90px;
    position: relative;
}
.page_banner .img img{
    width: 100%;
}
.page_banner_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#fff;
}
.page_banner_con_info{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 5%;
}
.page_banner_con_info .info h4{
    font-size: 54px;
    font-weight: bold;
}
.page_banner_con_info .info p{
    font-size: 30px;
}
.page_banner_con_info .list{
    justify-content: space-between;
    margin-top: 40px;
}
.page_banner_con_info .list .item img{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border:2px solid #fff;
}

.inner_pos_wrap{
    background: #f0f4f7;
    padding: 10px 0 30px;
}
.page_banner_pos{
    font-size: 14px;
}
.page_banner_pos .pos i{
    font-size:14px;
    margin-right: 6px;
    color:#333;
}
.page_banner_pos .pos a{
    padding:0 5px;
}
.page_banner_pos .pos a:hover{
    color:var(--subtheme-color);
    text-decoration: underline;
}

.page_banner_con_about{
    padding-top: 10px;
    justify-content:flex-start;
    color:#333;
}

.page_banner_con_about_info{
    display: flex;
    color:#fff;
}
.page_banner_con_about_info .hd{
    width: 50%;
}
.page_banner_con_about_info .hd .tit{
    font-size: 48px;
    font-weight: bold;
}
.page_banner_con_about_info .hd .tit:after{
    content:'';
    width: 50px;
    height: 2px;
    background: var(--subtheme-color);
    display: block;
    margin: 20px 0 30px;
}
.page_banner_con_about_info .hd .subtit{
    font-size: 32px;
    line-height: 1.5;
}
.page_banner_con_about_info .bd{
    flex:1;
    min-width: 0;
    font-size: 18px;
    margin-top: 140px;
}
.page_banner_con_about_info .bd br{
    display: none;
}


/* page_product */


.page_product{
    
}

.page_product_list{
    flex:1;
    min-width: 0;
}
.page_product_list_tit{
    background: #fff;
    padding: 30px 35px;
    margin-bottom: 40px;
}

.page_product_list .list{
    margin:-15px;
}
.page_product_list .list .item{
    width: 33.333%;
    padding:15px;
}
.page_product_list .list .item a{
    display: block;
    background: #fff;
}
.page_product_list .list .item .item_img img{
    width: 100%;
}
.page_product_list .list .item .item_con{
    padding: 20px 30px;
    text-align: center;
    position: relative;
}
.page_product_list .list .item .item_con:after{
    content:'';
    width: 0;
    height: 3px;
    background: var(--subtheme-color);
    display: block;
    position: absolute;
    left:0;
    bottom:0;
    transition:all .4s;
}
.page_product_list .list .item .item_con .tit{
    font-size: 20px;
    color:#333;
}
.page_product_list .list .item .item_con .desc{
    color:#666;
    font-size: 14px;
    margin:5px 0 20px;
}
.page_product_list .list .item .item_con .more{
    color:var(--theme-color);
}
.page_product_list .list .item .item_con .more i{
    margin-left: 10px;
    font-size: 18px;
    justify-content: center;
}
.page_product_list .list .item:hover .item_con .tit{
    color:var(--subtheme-color);
}
.page_product_list .list .item:hover .item_con .more{
    color:var(--subtheme-color);
}
.page_product_list .list .item:hover .item_con:after{
    width:100%;
}

.page_related_products .list .item{
    
}

.page_product_list.page_product_recommend{
    padding-left: 0;
}

/* page_about1 */

.page_about1{
    
}
.page_about1_list .item:nth-child(2n){
    flex-direction: row-reverse;
    margin-top: 40px;
}
.page_about1_list .item .item_img{
    width: 50%;
}
.page_about1_list .item .item_con{
    flex:1;
    padding:20px 0 40px 100px;
    min-width: 0;
}
.page_about1_list .item:nth-child(2n) .item_con{
    padding:20px 100px 40px 0;
}
.page_about1_list .item .item_con .tit{
    font-size: 40px;
    font-weight: bold;
    color:#333;
}
.page_about1_list .item .item_con .desc{
    margin-top: 20px;
}
.page_about1_list .item .item_con .desc p{
    margin-top: 20px;
}


.page_about2{
    
}
.page_about2_list{
    margin: -10px;
}
.page_about2_list .item_w{
    padding: 10px;
    width: 25%;
}
.page_about2_list .item{
    background: #f0f4f7;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px;
    transition:all .4s;
}
.page_about2_list .item .ico img{
    filter: invert(49%) sepia(58%) saturate(7476%) hue-rotate(357deg) brightness(96%) contrast(87%);
}
.page_about2_list .item .con{
    padding-top: 20px;
    text-align: center;
    transition:all .4s;
}
.page_about2_list .item .con h4{
    font-size: 26px;
    font-weight: bold;
    color:#333;
    transition:all .4s;
}
.page_about2_list .item .con p{
    margin-top: 10px;
    transition:all .4s;
}
.page_about2_list .item:hover:hover{
    background: var(--subtheme-color);
}
.page_about2_list .item:hover .ico img{
    filter: none;
}
.page_about2_list .item:hover .con h4{
    color:#fff;
}
.page_about2_list .item:hover .con p{
    color:#fff;
}

/* page_about3_list */

.page_about3_list{
    position: relative;
    padding-bottom: 50px;
}
.page_about3_list .swiper-pagination{
    top: auto;
    bottom: 0;
}
.page_about3_list .item .img img{
    width: 100%;
}
.page_about3_list .swiper-pagination{
    background: #e5e5e5;
}

.page_about3_list .swiper-pagination .swiper-pagination-progressbar-fill{
    background: var(--subtheme-color);
}

/* page_about_choose */

.page_about_choose{
    padding:60px 0;
}
.page_about_choose .list{
    margin:30px -12px 0;
}
.page_about_choose .list .item_wrap{
    flex:1;
    padding:0 12px;
}
.page_about_choose .list .item{
    background: #fff;
    height: 100%;
    flex: 1;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all .3s;
    color:#333;
    position: relative;
    z-index: 1;
}
.page_about_choose .list .item .img{
    display: flex;
    justify-content: center;
}
.page_about_choose .list .item .img2{
    display: none;
}
.page_about_choose .list .item h4{
    font-size:22px;
    font-family: 'MontserratSemiBold';
    margin:15px 0 10px;
}
.page_about_choose .list .item .num{
    font-size: 90px;
    color: #f7f7f7;
    line-height: 0.8;
    text-align: right;
    font-style: italic;
    padding-right: 20px;
    transition: all .3s;
    font-weight: bold;
    position: absolute;
    right: 40px;
    bottom: 50px;
    z-index: -1;
}

.page_about_choose .list .item:hover .num{
    color: rgba(255,255,255,.1);
}
.page_about_choose .list .item:hover{
    background:var(--theme-color);
    color:#fff;
}
.page_about_choose .list .item:hover .img1{
    display: none;
}
.page_about_choose .list .item:hover .img2{
    display: block;
}


/* page_about_honor */

.page_about_honor{
    position: relative;
    margin: 90px 0;
}
.page_about_honor .con{
    flex:1;
    min-width: 0;
    padding-right: 5%;
}
.page_about_honor_list{
    width: 60%;
    overflow: hidden;
}
.page_about_honor_list .item .img img{
    height: 390px;
    width: 100%;
    object-fit: cover;
}
.page_about_honor_list .item h4{
    color:#333;
    text-align: center;
    padding-top: 10px;
}
.page_about_honor .swiper-button-prev,.page_about_honor .swiper-button-next{
    width: 60px;
    height: 60px;
    border:1px solid #d3d3d3;
    border-radius: 5px;
    left: 0;
    bottom: 8%;
    right: auto;
    top: auto;
    transition:all .3s;
}
.page_about_honor .swiper-button-next{
    left: 70px;
}
.page_about_honor .swiper-button-prev:after,.page_about_honor .swiper-button-next:after{
    font-size:22px;
    color:#aaa;
}
.page_about_honor .swiper-button-prev:hover,.page_about_honor .swiper-button-next:hover{
    background: var(--theme-color);
    border-color: var(--theme-color);
}
.page_about_honor .swiper-button-prev:hover:after,.page_about_honor .swiper-button-next:hover:after{
    color:#fff;
}




/* page_about_history_list */

.page_about_history_wrap{
    background: url("../images/bg5.jpg") no-repeat center;
    padding:80px 0;
    background-size: cover;
}
.page_about_tit_fff{
    color:#fff;
}
.page_about_history .con{
    color:#fff;
    flex:1;
    min-width: 0;
    padding-right: 5%;
}
.page_about_history_list{
    width: 60%;
    height: 300px;
    overflow: hidden;
    padding-left: 100px;
    position: relative;
}
.page_about_history_list:before{
    content:'';
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    position: absolute;
    left: 20px;
    top:40px;
    background:rgba(255,255,255,.7);
    
}
.page_about_history_list .item{
    color:#fff;
}
.page_about_history_list .item h4{
    font-size:32px;
    font-family: 'MontserratSemiBold';
    line-height: 1;
    margin-bottom: 20px;
}
.page_about_history_list .swiper-button-prev,.page_about_history_list .swiper-button-next{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    left: 0;
    top: 0;
    margin-top: 0;
}
.page_about_history_list .swiper-button-next{
    top: 50%;
    background: #fff;
}

.page_about_history_list .swiper-button-prev:after, .page_about_history_list .swiper-button-next:after{
    color:#fff;
    font-size:16px;
    transform: rotate(90deg);
}
.page_about_history_list .swiper-button-next:after,.page_about_history_list .swiper-button-prev:hover{
    color:var(--theme-color);
}


/* page_about_visits */

.page_about_visits{
    text-align: center;
    padding:80px 0;
}
.page_about_visits_list{
    position: relative;
    overflow: hidden;
    padding:30px 0 60px;
}
.page_about_visits_list .item .img img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* page_about_culture */

.page_about_culture_wrap{
    padding:80px 0;
    background: url("../images/bg20.jpg") no-repeat center;
    background-size: cover;
}
.page_about_culture{
    padding-top: 50px;
}
.page_about_culture .item_img{
    width: 50%;
}
.page_about_culture .item_img img{
    border-radius: 20px;
}
.page_about_culture .list{
    flex:1;
    padding-left: 6%;
    min-width: 0;
}
.page_about_culture .list .item{
    display: flex;
    padding:40px 0;
    align-items: center;
    border-bottom: 1px solid #c5c5c5;
}
.page_about_culture .list .item:first-child{
    padding-top: 20px;
}
.page_about_culture .list .item .img img{
    width: 72px;
    height: 72px;
}
.page_about_culture .list .item .con{
    flex:1;
    min-width: 0;
    padding-left: 40px;
    color:#333;
}
.page_about_culture .list .item .con h4{
    font-size:24px;
    font-family: 'MontserratSemiBold';
}

/* 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_case_index */

.page_case_index .list{
    margin: -7.5px;
}
.page_case_index .item{
    padding: 7.5px;
    width: 35%;
}
.page_case_index .item:nth-child(2),.page_case_index .item:nth-child(3),.page_case_index .item:nth-child(6),.page_case_index .item:nth-child(7),.page_case_index .item:nth-child(10){
    width: 65%;
}
.page_case_index .item a{
    display: block;
    position: relative;
    height: 100%;
}
.page_case_index .item .item_img{
    background: var(--subtheme-color);
    height: 100%;
}
.page_case_index .item .item_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.page_case_index .item .item_con{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 40px 60px;
    align-items: flex-end;
    color:#fff;
}
.page_case_index .item .item_con .tit{
    flex:1;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}
.page_case_index .item .item_con .more i{
    margin-left: 6px;
}
.page_case_index .item a:hover .item_img img{
    opacity: .77;
}


/* page_case_show */

.page_case_show {
    flex:1;
    min-width: 0;
}
.page_case_show_img{
    width: 56%;
}
.page_case_show_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.page_case_show_con{
    flex:1;
    min-width: 0;
    padding:40px;
    background: #fff;
}
.page_case_show_con .j_tit{
    padding-bottom: 30px;
    border-bottom: 1px solid #e3e3e3;
}
.page_case_show_con h1{
    font-size: 36px;
    font-weight: bold;
    color:#333;
    flex:1;
    padding-right: 30px;
}
.page_case_show_con .content{
    padding:30px 0 50px;
}
.page_case_show_con .more_style5{
    width:300px;
    height: 55px;
}
.page_case_show_con .more_style5 i{
    margin:0 15px 0 0;
    font-size: 24px;
}

.page_content_style h4{
    line-height: 40px;
    color:var(--theme-color);
    margin-bottom: 15px;
    padding-left: 16px;
    font-size: 16px;
    border-bottom: 1px dashed var(--theme-color);
    position: relative;
}
.page_content_style h4:before{
    position: absolute;
    left: 3px;
    width: 3px;
    height: 17px;
    background:var(--subtheme-color);
    top: 12px;
    content: '';
    transform: skewX(-8deg);
}
.page_content_style a{
    color:var(--subtheme-color);
    text-decoration: underline;
}

/* page_case_list */



.page_case_list{
    padding: 100px 0;
}
.page_case_list .list{
    margin:-17px;
}
.page_case_list .item{
    padding:17px;
    width: 33.3333%;
}
.page_case_list .item_img img{
    width: 100%;
}
.page_case_list .item_con{
    padding: 35px;
    background: #fff;
    position: relative;
}
.page_case_list .item_con:after{
    content:'';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width:0;
    background: var(--theme-color);
    transition:all .4s;
}
.page_case_list .item_con .tit{
    font-size:22px;
    font-weight: bold;
    line-height: 1;
}
.page_case_list .item_con .desc{
    margin:15px 0 30px;
}
.page_case_list .item_con .more i{
    margin-left: 8px;
    line-height: 1;
}
.page_case_list a:hover .item_con:after{
    width: 100%;
}
.page_case_list a:hover .item_con .more{
    color:var(--theme-color);
}

/* 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_case_detail */


.page_case_detail{
    text-align: center;
}
.page_case_detail h1{
    font-size:40px;
    font-weight: bold;
    color:#333;
}
.page_case_detail h1:after{
    content:'';
    width: 88px;
    height: 3px;
    background: var(--theme-color);
    display: block;
    margin:20px auto 0;
}
.page_case_detail .desc{
    margin:30px 0 50px;
}
.page_case_detail .desc p{
    line-height: 1.8;
}
.page_case_detail .list{
    justify-content: center;
}
.page_case_detail .list .item{
    padding:0 100px;
}
.page_case_detail .list .item h4{
    margin-top: 10px;
}
.page_case_detail .more_style5{
    margin:60px auto 0;
}

.page_case_detail_recommend_wrap{
    background: #ebebeb;
}

.page_case_list.page_case_list_recommend{
    padding-top: 0;
}


/* product_detail */

.pd_detail{
    flex:1;
    min-width: 0;
}
.pd_detail_hd {
    padding-top: 40px;
    background: #fff;
}
.pd_detail_hd .pics{
    width:50%;
}
.pd_detail_hd .pics .mySwiper2{
    width: 100%;
    margin:0;
    overflow: hidden;
}

.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{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.pd_detail_hd .pics .mySwiper2 .swiper-pagination{
    bottom: 20px;
}
.pd_detail_hd .pics .mySwiper2 .swiper-pagination .swiper-pagination-bullet{
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: rgba(255,255,255,.6);
    opacity: 1;
}
.pd_detail_hd .pics .mySwiper2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--subtheme-color);
}
.pd_detail_hd .pics .mySwiper{
    margin-top:25px;
}
.pd_detail_hd .pics .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img{
    background: #fff;
    padding:5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border:1px solid #fff;
}
.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{
    height:120px;
    object-fit: contain;
}



.pd_detail_hd .infos{
    flex: 1;
    padding:0 0 0 3%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.pd_detail_hd .infos h1{
    font-size:40px;
    color:#333;
    line-height: 1.3;
    margin-bottom: 20px;
}
.pd_detail_hd .infos .list{
    border-bottom: 1px solid #dee2e7;
    padding-bottom:20px;
    position: relative;
}
.pd_detail_hd .infos .list:after{
    content:'';
    display: block;
    width: 20%;
    height:2px;
    background: var(--subtheme-color);
    position: absolute;
    left: 0;
    bottom:-1px;
}
.pd_detail_hd .infos .list .item{
    width: 180px;
    height: 45px;
    border: 1px solid #cdd1d7;
    margin-right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color:#333;
}
.pd_detail_hd .infos .list .item:before{
    content:'◆';
    font-size: 10px;
    color:var(--subtheme-color);
    margin-right: 10px;
}
.pd_detail_hd .infos .desc{
    margin:20px 0 40px;
    line-height: 1.8;
}




.pd_detail_hd .infos .btns .btn{
    display: flex;
    align-items: center;
    height:58px;
    width: 220px;
    background: var(--theme-color);
    border:1px solid var(--theme-color);
    color:#fff;
    justify-content: center;
    text-transform: uppercase;
    margin-right: 20px;
    font-family: 'MontserratLight';
    border-radius: 100px;
}
.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;
    color:#333;
}
.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 .btns .more_style5{
    height: 55px;
    width: 300px;
}
.pd_detail_hd .infos .btns .more_style5 i{
    margin:0 15px 0 0;
    font-size: 24px;
}

.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;
}



/* page_related_cases */

.page_related_cases .list{
    margin:-25px;
}
.page_related_cases .list .item{
    width: 33.333%;
    padding: 25px;
}
.page_related_cases .list .item a{
    background: #fff;
    display: block;
}
.page_related_cases .list .item .item_img img{
    width: 100%;
}
.page_related_cases .list .item .item_con{
    height: 100px;
    padding: 0 20px;
    transition:all .4s;
}
.page_related_cases .list .item .item_con .tit{
    flex:1;
    padding-right: 15px;
    min-width: 0;
    font-size: 20px;
    color:#333;
}
.ind_case{padding: 0 2%;}
.ind_case .caseswiper{ overflow: hidden;}
.ind_case .caseswiper.page_related_cases .list{margin-left: 0;}
.ind_case .caseswiper.page_related_cases .list a{background: #f0f4f7;}
.page_related_cases .list .item .item_con .more i{
    width: 40px;
    height: 40px;
    background: #f0f4f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_related_cases .list .item:hover .item_con{
    background: var(--subtheme-color);
}
.page_related_cases .list .item:hover .item_con .tit{
    color:#fff;
}

/* page_related_news */

.page_related_news .list{
    margin:-20px;
}
.page_related_news .list .item{
    width: 50%;
    padding: 20px;
}
.page_related_news .list .item a{
    background: #fff;
}
.page_related_news .list .item .item_img{
    width: 230px;
}
.page_related_news .list .item .item_con{
    flex:1;
    min-width: 0;
    padding:25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page_related_news .list .item .item_con .tit{
    font-size: 20px;
    color:#333;
}
.page_related_news .list .item .item_con .desc{
    font-size: 14px;
}
.page_related_news .list .item .item_con .more_time{
    
}
.page_related_news .list .item .item_con .more_time .more{
    font-size: 14px;
    color:#333;
    flex:1;
}
.page_related_news .list .item .item_con .more_time .time{
    color:#9ea5af;
    font-size: 14px;
}
.page_related_news .list .item a:hover .item_con .tit{
    color:var(--subtheme-color);
}
.page_related_news .list .item a:hover .item_con .more_time .more{
    color:var(--subtheme-color);
}

/* 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_solution */

.page_news{
    
}
.page_news_menu{
    width:340px;
    padding-right: 40px;
}
.page_news_menu .menu{
    background: #fff;
    overflow: hidden;
}
.page_news_menu .menu_tit{
    font-size:28px;
    background: var(--theme-color);
    height:70px;
    color:#fff;
    display: flex;
    align-items: center;
    padding:0 20px;
    font-weight: bold;
}
.page_news_menu .menu_tit span{
    font-size: 16px;
    font-weight: normal;
    padding-left: 5px;
}

.page_news_menu .menu_list{
}
.page_news_menu .menu_list .item{
    border-bottom: 1px solid #eef2f6;
    padding:18px 20px;
}
.page_news_menu .menu_list .item:last-child{
    border-bottom: none;
}
.page_news_menu .menu_list .item .hd{
    transition:all .4s;
}
.page_news_menu .menu_list .item .hd a{
    padding-left: 16px;
    position: relative;
}
.page_news_menu .menu_list .item .hd a span{
    flex:1;
}
.page_news_menu .menu_list .item .hd a:before{
    content:'';
    display: block;
    border-radius: 50%;
    border: 2px solid #9ea5af;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 8px;
}
.page_news_menu .menu_list .item .hd i{
    opacity: 0;
    color:var(--subtheme-color);
}

.page_news_menu .menu_list .item:hover .hd a span{
    color:var(--subtheme-color);
    text-decoration: underline;
}
.page_news_menu .menu_list .item:hover .hd a:before{
    border-color: var(--subtheme-color);
}
.page_news_menu .menu_list .item:hover .hd i{
    opacity: 1;
}

.page_news_menu .menu_list .item .bd{
    display: none;
    padding-top: 6px;
}
.page_news_menu .menu_list .item .bd a{
    font-size:14px;
    color:#666;
    padding-top:5px;
}
.page_news_menu .menu_list .item .bd a i{
    margin-right:8px;
}


.page_news_menu .menu_news{
    background: #fff;
    margin-top: 30px;
}
.page_news_menu .menu_news .list{
    line-height: 1;
}
.page_news_menu .menu_news .list .item{
    padding:20px;
    border-bottom: 1px solid #f0f4f7;
}
.page_news_menu .menu_news .list .item .item_img{
    width: 100px;
}
.page_news_menu .menu_news .list .item .item_img img{
    
}
.page_news_menu .menu_news .list .item .item_con{
    flex:1;
    min-width: 0;
    padding-left: 10px;
}
.page_news_menu .menu_news .list .item .item_con .tit{
    color:#333;
    line-height: 1.3;
    transition:all .4s;
}
.page_news_menu .menu_news .list .item .item_con .time{
    color:#9ea5af;
    font-size: 14px;
}

.page_news_menu .menu_news .list .item:hover .item_con .tit{
    color:var(--subtheme-color);
}


.page_news_list{
    flex:1;
    min-width: 0;
}
.page_news_list .item{
    background: #fff;
    margin-bottom:30px;
    padding:30px;
    align-items: center;
    border:1px solid #fff;
}
.page_news_list .item .item_img{
    width: 350px;
}
.page_news_list .item .item_con{
    flex:1;
    min-width: 0;
    padding-left:40px;
}
.page_news_list .item .item_con .tit{
    font-size:24px;
    font-weight: bold;
    color:#333;
}
.page_news_list .item .item_con .desc{
    margin:10px 0 50px;
}
.page_news_list .item .item_con .agg{
    justify-content: space-between;
    
    line-height: 1;
}
.page_news_list .item .item_con .agg span{
    color:#9ea5af;
}
.page_news_list .item .item_con .agg .more i{
    margin-left: 3px;
    font-size:14px;
    line-height: 1;
}
.page_news_list .item:hover{
    border-color: var(--subtheme-color);
}
.page_news_list .item:hover .item_con .tit,.page_news_list .item:hover .item_con .agg .more{
    color:var(--subtheme-color);
}


.no_banner_pos{
    padding:130px 0 0;
}
.no_banner_pos a:last-child{
    color:var(--theme-color);
}
.no_banner_pos i{
    color:var(--theme-color);
}
.no_banner_pos a:hover{
    color:var(--theme-color);
    text-decoration: underline;
}

/* page_news_detail */

.page_news_detail{
    flex:1;
    min-width: 0;
    background: #fff;
    padding:40px;
}
.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{
    justify-content: space-between;
}
.page_news_detail .info .item{
    
}
.page_news_detail .info .item span{
    color:var(--theme-color);
}
.page_news_detail .info .item.column{
    background: #f3f3f3;
    padding:0 18px;
    height: 28px;
    line-height: 28px;
}


.page_news_detail .desc{
    padding:40px 0 20px;
    min-height: 20vh;
}

.page_news_detail_wrap{
    overflow: hidden;
}
.go_back{
   
}
.go_back a{
    display: block;
    font-size:14px;
    height: 44px;
    background: #f5f5f5;
    line-height: 44px;
    text-align: center;
}
.go_back a:hover{
    background: var(--theme-color);
    color:#fff;
}


/* page_contact */


.page_contact_wrap{
    
}
.page_contact{
    background: #fff;
    padding: 70px;
    box-shadow:  0 0 20px rgba(0,0,0,.02);
}
.page_contact_con{
    flex:1;
    min-width: 0;
    padding-right: 70px;
}
.page_contact_con .j_tit{
    font-weight: bold;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 36px;
    color:#333;
}
.page_contact_con .menu .item{
    height: 44px;
    padding: 0 18px;
    border:1px solid var(--theme-color);
    line-height: 42px;
    border-radius: 6px;
    margin-right: 20px;
    color:var(--theme-color);
    transition:all .4s;
    cursor: pointer;
}
.page_contact_con .menu .item.cur{
    background: var(--theme-color);
    color:#fff;
}
.page_contact_con .list1{
    margin: 30px 0;
}
.page_contact_con .list1 .item_w{
    display: none;
}
.page_contact_con .list1 .item_w:first-child{
    display: block;
}
.page_contact_con .list1 .item{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
}
.page_contact_con .list1 .item p{
    font-size:24px;
    font-family: 'Arial';
    line-height: 1.3;
    margin:0 50px 20px 0;
    color:#333;
}
.page_contact_con .list1 .item p b{
    color:#8e8e8e;
    font-weight: normal;
    display: block;
    font-size: 16px;
}
.page_contact_con .list1 .item p a{
    line-height: 1.2;
}
.page_contact_con .list1 .item p a:hover{
    color:var(--subtheme-color);
}
.page_contact_con .j_code .txt{
    padding-right: 70px;
}
.page_contact_con .j_code .txt h4{
    line-height: 1.3;
    font-size: 18px;
    color:#333;
}
.page_contact_con .j_code .list .item{
    margin-right: 20px;
}
.page_contact_con .j_code .list .item .img{
    width: 100px;
    text-align: center;
}
.page_contact_con .j_code .list .item .img img{
    border: 1px solid #eee;
    padding: 5px;
}
.page_contact_con .j_code .list .item p{
    font-size: 14px;
    text-align: center;
}



.page_contact_map{
    width: 46%;
}
.page_contact_map img{
    border-radius: 10px;
}

/* 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:#333;
    font-family: 'MontserratSemiBold';
}
.page_contact2_form .tit p{
    color:#666;
}
.page_contact2_form .form{
    padding-top: 20px;
}
.page_contact2_form .input_box{
    margin:0 -10px;
}
.page_contact2_form .input_box .input{
    padding: 0 10px;
    flex:1;
}
.page_contact2_form .input{
    margin:0 0 20px;
}
.page_contact2_form .input input,.page_contact2_form textarea{
    width: 100%;
    border:none;
    outline: none;
    background: #f5f5f7;
    height: 54px;
    padding:10px 20px;
    line-height: 34px;
}
.page_contact2_form textarea{
    height: 120px;
}
.page_contact2_form .form p{
    font-family: 'MontserratLight';
}
.page_contact2_form .form .button{
    margin-top:20px;
}
.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:#666;
    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{
     display: flex;
     align-items: center;
     justify-content: center;
     font-size:16px;
     background: transparent;
     line-height: 38px;
}
.return_page .go_back a i{
    font-size:18px;
    margin-right: 8px;
}
.return_page .go_back a:hover{
    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;}





