/*头部样式*/
header{
    position: fixed;
    top:0;
    left:0;
    background:#fff;
    z-index: 999999996;
    width: 100%;
    box-shadow: 0 0 10px #ccc;
}
.head{

}
.wrap{
    width: 84%;
    max-width: 1420px;
    margin: 0 auto;
}
.head .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
/*    width: 30%;*/
}
.head_r{
    max-width: 85%;
    display: flex;
    align-items:center;
    justify-content: space-between;
}
.h_lang{
    position: relative; 
    margin-left:100px;
    cursor: pointer;
}
.h_lang_img{
    display: flex;
    align-items:center;
    height: 100px;
}
.h_lang_img .img img{
    max-width: 20px;
}
.h_lang_img i{
    margin-left: 6px;
}
.h_lang_a{
    position: absolute;
    top:100px;
    left:50%;
    width: 90px;
    margin-left: -45px;
    background:#fff;
    box-shadow: 0 0 10px #eee;
    display: none;
    z-index: 9;
}
.h_lang:hover .h_lang_a{
    display: block;
}
.h_lang_a a{
    font-size: 14px;
    color: #666;
    display: block;
    text-align: center;
    line-height: 2em;
}
.h_lang_a a:hover,.nav li .b_nav a:hover{
    background:#0074a7;
    color: #fff;
}
.nav{
    display: flex;
    align-items: center;
}
.nav li{
    position: relative;
    margin-right: 100px;
    transition:0.5s;
}
.nav li:last-child{
    margin-right: 0;
}
.nav li:last-child:after{
    display: none;
}
.nav li:last-child a.a1{
    background: #0074a7;
    border-radius: 20px;
    height: 40px;
    padding:0 15px;
    color: #fff;
    font-size: 14px;
    transition: all 0.4s ease-out;
}
.nav li:last-child a.a1 i{
    background: url(../images/arrow2.png) no-repeat center;
    background-size: 16px;
    width: 16px;
    height: 16px;
}
.nav li:last-child:hover a.a1{
    color: #fff;
    /*text-decoration: underline;*/
    /*box-shadow: 0 0 10px #0074a7;*/
    background: #414142;
}
.nav li:last-child:hover a.a1 i{
    /*margin-left: 12px;*/
    /*width:10px;*/
    /*height: 6px;*/
    background:url(../images/arrow2.png) no-repeat center;
    background-size: 16px;
}

.nav li a{
    display: block;
    font-size: 18px;
    color: #1a1a1a;
    text-align: center;
    line-height: 100px;
}
.nav li a.a1{
    display: flex;
    align-items:center;
}
.nav li a.a1 i{
    margin-left: 12px;
    width:10px;
    height: 6px;
    background:url(../images/arrow.png) no-repeat center;
}
.nav li:after{
    content:'';
    position: absolute;
    left:50%;
    bottom:0;
    width: 0%;
    height: 3px;
    background: #0074a7;
    transition: all 0.4s ease-out;
}
.nav li:hover:after{
    left:0;
    width:100%;
}
.nav li:hover a.a1{
    color: #0074a7;
}
.nav li:hover a.a1 i{
    background:url(../images/arrow.png) no-repeat center;    
}
.nav li .b_nav{
    display: none;
    position: absolute;
    top:100px;
    left:-10%;
    z-index: 999;
    /*background-color: #fff;*/
    width: 120%;
    box-shadow: 0 0 10px #eee;


    width: 400vh;
    left: 50%;
    transform: translateX(-50%);
    background: #fcfcfc;
}
.b_nav_c{
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}
.b_nav_c a{

}
.nav li .b_nav a{
    font-size: 16px;
    color: #666;  
    /*line-height: 1.5; */
    /*padding:10px 5px; */
    margin:0 20px;
    line-height: 60px;
}
.nav li .b_nav a:hover{
    color: #0074a7;
    background:#fff;
}

#index_banner{
    /*height: calc(100vh - 150px);*/
    position: relative;
    width: calc(100% - 20px);
    border-radius: 10px;
    height: 90vh;
}
#index_banner video{
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
#index_banner .swiper-slide{
    position: relative;
    z-index: 9;
    overflow: hidden;
    height: auto;
    max-height: 100%;
}
#index_banner .swiper-slide:after{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 1;
    display: none;
}
.banner_text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
}
.banner_text .wrap{
    
}
/*.banner_text .txt{
    margin-bottom:82px;
    width: 55%;
}*/
.banner_text  .p1{
    font-size:62px;
    color: #fff;
    line-height: 1.1;
}
.banner_text .p2{
    font-size:42px;
    color: #fff;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 28px;
    padding-left: 150px;
    background:url(../images/line1.png) no-repeat 65px center;
}
.banner_text .p3{
    font-size:18px;
    color: #fff;
    font-family: "puhui65";
    line-height: 1.2;
    /*margin-bottom: 65px;*/
}
.banner_text a{
    margin-top: 65px;
    color: #0074a7;
    min-width: 185px;
}
a.more1{
    /*background: #0074a7;*/
    background: #fff;
    border: 1px solid #0074a7;
    width: 200px;
    height: 56px;
    border-radius: 320px;
    font-size: 16px;
    color: #0074a7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease-out;
    padding: 0 20px;
}
a.more1 i{
    margin-left: 15px;
    transition: all 0.4s ease-out;
}
a.more1 i img:nth-child(2){
    display: none;
}
a.more1:hover{
    /*box-shadow: 0 0 10px #0074a7;*/
    /*text-decoration: underline;*/
    background: #0074a7;
    color: #fff;
}
a.more1:hover i img:nth-child(1){
    display: none;
}
a.more1:hover i img:nth-child(2){
    display: inline-block;
}
/*a.more1:hover i{*/
/*    transform: rotate(45deg);*/
    
/*}*/
#index_banner .swiper-pagination{
    bottom:64px;
    display: none;
}
#index_banner .swiper-pagination .swiper-pagination-bullet{
    width:105px;
    height: auto;
    background:none;
    border-radius: 0;
    margin:0;
    position: relative;
    font-size:24px;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,.5);
    opacity: 1;
    margin-left: -2px;
}
#index_banner .swiper-pagination .swiper-pagination-bullet:before{
    content:'';
    position: absolute;
    left:0px;
    bottom:0;
    width:2px;
    height: 6px;
    background:rgba(255,255,255,.5);
}
#index_banner .swiper-pagination .swiper-pagination-bullet:nth-child(1){
    margin-left:0;
}
#index_banner .swiper-pagination .swiper-pagination-bullet:after{
    content:'';
    position: absolute;
    right:0;
    bottom:0;
    width:2px;
    height: 6px;
    background:rgba(255,255,255,.5);
}
#index_banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    border-bottom: 2px solid rgba(255,255,255,1);
}
#index_banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before,#index_banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after{
    background:rgba(255,255,255,1);
}
.h_zw{
    width:100%;
    height: 100px;
}
#index_banner .m_img{
    display:none;
}
.banner_down{
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform:translateX(-50%);
    text-align: center;
    z-index: 9;
    animation: down 1.5s infinite ease-in-out;
}
@keyframes down {
  0% {
    bottom: 55px;
  }
  50% {
    bottom: 35px;
  }
  100% {
    bottom: 55px;
  }
}
@media(max-width:1620px){
    .logo img{
        max-height: 60px;
    }
    .nav li{
        margin-right: 65px;
    }
    .nav li a.a1{
        line-height: 80px;
    }
    .nav li .b_nav,.h_lang_a{
        top:80px;
    }
    .nav li .b_nav a{
        font-size:14px;
    }
    .h_lang{
        margin-left: 65px;
    }
    .h_lang_img,.h_zw{
        height: 80px;
    }
    /*#index_banner{*/
    /*    height: calc(100vh - 80px);*/
    /*}*/
    .banner_text .p1,.banner_text .p2{
        font-size:32px;
    }
    .banner_text .p2{
        padding-left: 80px;
        background:url(../images/line1.png) no-repeat 5px center;
    }
    .banner_text .p3{
        font-size:15px;
    }
    .banner_text a{
        margin-top: 50px;
    }
    a.more1 {
        width: 185px;
        height: 50px;
        font-size:15px;
    }
    #index_banner .swiper-pagination{
        bottom:50px;
    }
}
@media(max-width: 1440px){
    .nav li{
        margin-right: 50px;
    }
    .h_lang{
        margin-left: 50px;
    }
}
@media(max-width:1280px){
    .nav li{
        margin-right: 40px;
    }
    .h_lang{
        margin-left: 40px;
    }
    .banner_text .p1,.banner_text .p2{
        font-size:32px;
    }
    .banner_text .p2{
        padding-left: 80px;
        background:url(../images/line1.png) no-repeat 5px center;
        background-size: 60px;
    }
    .banner_text .p3{
        font-size:14px;
    }
    .banner_text a{
        margin-top: 35px;
    }
    a.more1 {
        width: 140px;
        height: 45px;
        font-size:14px;
        padding:0 15px;
    }
    #index_banner .swiper-pagination{
        bottom:40px;
    }
    #index_banner .swiper-pagination .swiper-pagination-bullet{
        width:90px;
        font-size:20px;
    }
}
@media(max-width:1130px){
    .wrap{
        width: 94%;
    }
    .nav li{
        margin-right: 25px;
    }
    .h_lang{
        margin-left: 25px;
    }
}
@media(max-width:991px){
    .nav,.h_lang{
        display: none;
    }
    .logo img{
        max-height: 45px;
    }
    .h_zw{
        height: 50px;
    }
    /*#index_banner{*/
    /*    height: calc(100vh - 50px);*/
    /*}*/
    .banner_text .p1,.banner_text .p2{
        font-size:28px;
    }
    .banner_text .p2{
        padding-left: 60px;
        background:url(../images/line1.png) no-repeat 5px center;
        background-size: 50px;
    }
    .banner_text .p3{
        font-size:14px;
    }
    .banner_text a{
        margin-top: 35px;
    }
    a.more1 {
        /*width: 120px;*/
        height: 45px;
        font-size:14px;
    }
    a.more1 i{
        margin-left: 10px;
    }
}
@media(max-width:820px){
    .banner_text .p1,.banner_text .p2{
        font-size:24px;
    }
    .banner_text .p2{
        padding-left: 50px;
        background:url(../images/line1.png) no-repeat 5px center;
        background-size: 40px;
    }
    .banner_text .p3{
        font-size:13px;
    }
    .banner_text a{
        margin-top: 25px;
    }
    a.more1 {
        width: 135px;
        height: 42px;
        font-size:13px;
        padding:0 15px;
    }
    a.more1 i{
        margin-left: 8px;
    }
    #index_banner .swiper-pagination{
        bottom:25px;
    }
    #index_banner .swiper-pagination .swiper-pagination-bullet{
        width:70px;
        font-size:18px;
    }
}
@media(max-width:767px){
    #index_banner{
        height:auto;
    }
    #index_banner video{
        display:none;
    }
    #index_banner .m_img{
        display:block;
    }
    .banner_text a{
        min-width:150px;
    }
}
@media(max-width:640px){
    .banner_text .p1,.banner_text .p2{
        font-size:20px;
    }
    .banner_text .p2{
        margin-bottom: 20px;
    }
    .banner_text .p3{
        display: none;
    }
    #index_banner .swiper-pagination{
        display: none;
        bottom:10px;
    }
    #index_banner .swiper-pagination .swiper-pagination-bullet{
        width:50px;
        font-size:15px;
    }
    a.more1 {
        /*width: 100px;*/
        height: 36px;
        font-size: 12px;
    }
    a.more1 i {
        margin-left: 5px;
    }

}


.index_about{
    padding:120px 0;
    background:#f7f7f7;
}
.index_t1{
    text-align: center;
}
.index_t1 h2{
    font-size:48px;
    color: #000;
    line-height: 1;
}
.index_about .text{
    font-size:18px;
    color: #666;
    line-height: 1.4;
    padding:64px 0 100px;
    max-width: 1100px;
    margin:0 auto;
/*    text-align: center;*/
}
.num_list1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.num_list1 dl{
    text-align: center;
}
.num_list1 dl dt{
    /*width:160px;*/
    /*height: 160px;*/
    display: flex;
    align-items:center;
    justify-content: center;
    font-size: 80px;
    color: #0074a7;
    /*background: #0074a7;*/
    /*border-radius: 50%;*/
    line-height: 1.2;
    font-family: "Manrope", Sans-serif;
}
.num_list1 dl dt span{
    font-family: "Manrope", Sans-serif;
}
.num_list1 dl dt sup{
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: -10px;
}
.num_list1 dl dd{
    font-size: 20px;
    color: #000;
    margin-top:24px;
    line-height: 1;
}
@media(max-width: 1600px){
    .index_about{
        padding:100px 0;
    }
    .index_t1 h2{
        font-size:36px;
    }
    .num_list1 dl dt{
        font-size:52px;
        /*width:140px;*/
        /*height: 140px;*/
    }
    .num_list1 dl dd {
        font-size: 17px;
        margin-top: 20px;
    }
    .index_about .text {
        font-size: 15px;
        padding: 40px 0 85px;
    }
}
@media(max-width: 1280px){
    .index_about{
        padding:75px 0;
    }
    .index_t1 h2 {
        font-size: 32px;
    }
    .index_about .text{
        font-size: 14px;
        padding: 30px 0 60px;
    }
    .num_list1 dl dt{
        font-size: 42px;
        /*width: 125px;*/
        /*height: 125px;*/
    }
    .num_list1 dl dd{
        font-size: 15px;
        margin-top: 15px;
    }
}
@media(max-width: 1199px){
    .num_list1 dl dt{
        font-size:36px;
    }
}
@media(max-width: 991px){
    .index_t1 h2{
        font-size:28px;
    }
    .index_about .text {
        padding: 25px 0 40px;
    }
    .num_list1 dl dt{
        /*width:110px;*/
        /*height: 110px;*/
        font-size:32px;
    }
    .num_list1 dl dt sup{
        top:-5px;
        font-size:15px;
    }
}
@media(max-width: 820px){
    .index_about{
        padding:55px 0;
    }
    .index_t1 h2{
        font-size:26px;
    }
    .num_list1 dl dt{
        /*width:100px;*/
        /*height: 100px;*/
        font-size:28px;
    }
    .num_list1 dl dt sup{
        font-size:14px;
    }
}
@media(max-width: 640px){
    .index_about{
        padding:40px 0;
    } 
    .index_t1 h2{
        font-size:22px;
    } 
    .num_list1 dl dt{
        /*width:70px;*/
        /*height: 70px;*/
        font-size:20px;
        margin:0 auto;
    } 
    .num_list1 dl dt sup{
        /*top:-2px;*/
        font-size:12px;
    }
    .num_list1 dl dd{
        font-size:13px;
    }
}
@media(max-width: 640px){
    .index_about .text {
        padding: 20px 0px 25px;
    }
    .num_list1 dl dt{
        /*width:65px;*/
        /*height: 65px;*/
        font-size:18px;
    } 
    .num_list1 dl dd{
        font-size:12px;
    }    
}


.index_product{
    padding:120px 0;
}
.index_t1 p{
    font-size:24px;
    color: #666;
    line-height: 1.2;
    margin-top:30px;
    display: none;
}
.index_product_content{
    margin-top:60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.index_product_l{
    width:23%;

}
.index_product_l li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(217, 217, 217, 1);
    box-shadow: 0px 4px 10px  rgba(238, 238, 244, 1);   
    transition: all 0.4s ease-out; 
/*    width: 326px;*/
    height: 83px;
    color: #000;
    padding:15px 30px;
    margin-bottom: 10px;
    cursor: pointer;
}
.index_product_l li h3,a.index_product_l_more{
    font-size:32px;
    line-height: 1;
    font-weight: normal;
    font-family: "puhui55";
}
.index_product_l li .text{
    opacity: 0;
    height: 0;    
}
.index_product_l li p{
    font-size:16px;
    margin:22px 0 50px;
    line-height: 1.4;
}
.index_product_l li a{
    font-size:18px;
    color: #000;
}
.index_product_l li.cur{
    background: #0074a7;
    color: #fff;
    height: 230px;
}
.index_product_l li h3, a.index_product_l_more{
    font-size:18px;
}
.index_product_l li.cur h3,.index_product_l li.cur p,.index_product_l li.cur a{
    color: #fff;
}
.index_product_l li.cur .text{
    opacity: 1;
    height: auto;
}
a.index_product_l_more{
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    justify-content: space-between;
    border-radius: 20px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(217, 217, 217, 1);
    box-shadow: 0px 4px 10px  rgba(238, 238, 244, 1);   
    transition: all 0.4s ease-out; 
    width:100%;
    height: 83px;
    color: #000;
    padding:15px 30px;
}
a.index_product_l_more i{
    width: 48px;
    height: 48px;
    background: url(../images/more3.png) no-repeat #0074a7 center;    
    border-radius: 50%;
}
a.index_product_l_more:hover{
    color: #0074a7;
}
a.index_product_l_more:hover i{

}

.index_product_r{
    border-radius: 20px;
    width:73%;
}
.index_product_r .img1{
    display: none;
    background: rgba(224, 224, 226, 1);
    border-radius: 20px;
    overflow: hidden;
}
.index_product_r .img1 img{
    transition: all 0.4s ease-out;
}
.index_product_r .img1:hover img{
    transform: scale(1.1);
}
@media(max-width: 1600px){
    .index_product{
        padding:100px 0;
    }
    .index_t1 p{
        font-size:20px;
    }
    .index_product_l li,a.index_product_l_more{
        height: 75px;
    }
    .index_product_l li.cur{
        height: 200px;
    }
    .index_product_l li h3, a.index_product_l_more{
        font-size:28px;
    }
    .index_product_l li p{
        font-size: 14px;
        margin: 18px 0 35px;
    }
    .index_product_l li a{
        font-size:16px;
    }
    a.index_product_l_more i{
        width:40px;
        height: 40px;
    }
}
@media(max-width: 1280px){
    .index_product{
        padding:75px 0;
    }
    .index_t1 p{
        font-size:17px;
    }
    .index_product_content{
        margin-top:40px;
    }
    .index_product_l li,a.index_product_l_more{
        height: 70px;
        border-radius: 15px;
        padding: 12px 20px;
    }
    .index_product_l li.cur{
        height: 180px;
    }
    .index_product_l li h3, a.index_product_l_more{
        font-size:24px;
    }
    .index_product_l li p{
        font-size: 13px;
        margin: 15px 0 25px;
    }
    .index_product_l li a{
        font-size:15px;
    }
    a.index_product_l_more i{
        width:35px;
        height: 35px;
    }
}
@media(max-width: 1199px){
    .index_product_l li,a.index_product_l_more{
        height: 60px;
        border-radius: 10px;
        padding: 12px 15px;
    }
    .index_product_l li.cur{
        height: 150px;
    }
    .index_product_l li h3, a.index_product_l_more{
        font-size:20px;
    }
    .index_product_l li p{
        font-size: 12px;
        margin: 10px 0 15px;
    }
    .index_product_l li a{
        font-size:14px;
    }
    a.index_product_l_more i{
        width:30px;
        height: 30px;
    }
}
@media(max-width: 991px){
    .index_t1 p{
        font-size:15px;
        margin-top:20px;
    }
    .index_product_content{
        margin-top:25px;
    }
    .index_product_l{
        width:100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .index_product_l ul{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 15px;
        width:100%;
    }
    .index_product_l li{
/*        width:32%;*/
        padding:10px 15px;
    }
    a.index_product_l_more{
        width:100%;
        padding:10px 15px;
    }
    .index_product_l li,.index_product_l li.cur,a.index_product_l_more{
        height: 45px;
    }
    .index_product_l li.cur p{
        display: none;
    }
    .index_product_l li.cur a{
        display: none;
    }
    .index_product_l li h3, a.index_product_l_more{
        font-size:16px;
    }
    a.index_product_l_more i {
        width: 25px;
        height: 25px;
        display:none;
    }
    .index_product_r{
        width:100%;
        margin-top:15px;
    }
}
@media(max-width: 820px){
    .index_product{
        padding:55px 0;
    }
    .index_t1 p{
        font-size:14px;
        margin-top:15px;
    }
    .index_product_l li h3, a.index_product_l_more {
        font-size: 18px;
    }

}
@media(max-width: 640px){
    .index_product{
        padding:40px 0;
    } 
    .index_t1 p{
        margin-top:10px;
    }  
    .index_product_l ul{
        gap:5px;
    }
    .index_product_l li{
        margin-bottom:0;
    }
    .index_product_l li,a.index_product_l_more{
        padding:10px 8px;
    }
    .index_product_l li h3, a.index_product_l_more {
        font-size: 16px;
        text-align:center;
    }
    a.index_product_l_more{
        justify-content:center;
    }
}




.index_news{
    padding:120px 0;
    background:#f7f7f7;
}
.news_list1{
    margin-top:58px;
    margin-bottom: 56px;
}
.news_list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;    
}
.news_list li{
    transition: all 0.4s ease-out;
    height: 100%;
}
.news_list li a{
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background:#fff;
    transition: all 0.4s ease-out;
    height: 100%;
}
.news_list li a .text{
    padding:32px 24px;
}
.news_list li a p.p1{
    font-size:16px;
    color: #0074a7;
    line-height: 1;
}
.news_list li a p.p2{
    font-size:20px;
    color: #000;
    margin:24px 0 64px;
    white-space: nowrap; 
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1;
}
.news_list li a p.p3{
    font-size: 16px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items:center;
}
.news_list li a p.p3 i{
    width:48px;
    height: 48px;
    border-radius: 50%;
    background:url(../images/more1_h.png) no-repeat center;
    transform: rotate(45deg);
    border:1px solid #0074a7;
    transition: all 0.4s ease-out;
}
.news_list li:hover{
    transform: translateY(-30px);
}
.news_list li:hover {
    box-shadow: 10px 10px 10px #dddede;
    border-radius: 10px;
}
.news_list li a:hover .img img{
    transform: scale(1.1);
}
.news_list li a:hover p.p3 i{
    background:url(../images/more1.png) no-repeat center #0074a7;
    transform: rotate(0deg);
}
.index_news a.more1{
    margin:0 auto;
}
.index_bottom{
    padding:70px 0;
    background:url(../images/index_bottom.jpg) no-repeat bottom center #f3f3f3;
    background-size: contain;
}
.index_bottom .wrap{
    max-width: 1500px;
}
.index_bottom .wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index_bottom h3{
    font-size:36px;
    color: #1B1B1B;
    line-height: 1.4;
    font-family: "puhui65";
    width:calc(100% - 180px);
}
.index_bottom h3 font{
    color: #0074a7;
}
.index_bottom a{
    text-decoration: underline;
}
.more3{

}
.more3 a{
    display: flex;
    justify-content: space-between;
    align-items:center;
    font-size:18px;
    color: #000;
}
.more3 a i{
    display: inline-block;
    width: 48px;
    height: 48px;
    background: url(../images/more3.png) no-repeat center #0074a7; 
    border-radius: 50%;  
    margin-left: 24px; 
}
.more3 a:hover{
    color: #0074a7;
}
.more3 a:hover i{
    box-shadow:  0 0 #0074a7;
}
.more4 a{
    display: flex;
    justify-content: space-between;
    align-items:center;  
    font-size: 14px;
    color: #fff;
    background: #0074a7;
    border-radius: 20px;
    height: 40px;
    padding: 0 15px;
    transition: all 0.4s ease-out;
    text-decoration: none;
}
.more4 a i {
    background: url(../images/arrow2.png) no-repeat center;
    background-size: 16px;
    width: 16px;
    height: 16px;
    margin-left: 12px;
}
.more4 a:hover{
    background: #414142;
    color: #fff;
    /*text-decoration: underline;*/
    /*box-shadow: 0 0 10px #0074a7;*/
}
.index_news_date{
    display: flex;
    align-items: center;
    line-height: 1;
}
.index_news_date b {
    font-size: 50px;
    color: #0074a7;
    /*font-family: 'bebas';*/
}
.index_news_date span{
    font-size: 18px;
    color: #b5b5b6;
    line-height: 24px;
    margin: 0 30px 0 10px;
    position: relative;
    top: 2px;
}
.index_news_date strong{
    width: 76px;
    height: 1px;
    background: #b5b5b6;
}
.news_list li a h3{
    font-size: 20px;
    color: #28292a;
    line-height: 30px;
    padding: 15px 0;
    min-height: 40px;
}
.news_list li a .txt{
    font-size: 14px;
    color: #707070;
    line-height: 24px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news_list li a{
    background: #fff;
}
.news_list li a:hover .text{
    background: #f7f8f8;
}
.news_list li a:hover .text{background:#fff;}
@media(max-width: 1600px){
    .index_news{
        padding:100px 0;
    }
    .news_list1{
        margin-top:45px;
    }
    .news_list li a p.p3 i {
        width: 40px;
        height: 40px;
    }
    .index_bottom{
        padding:55px 0;
    }
    .index_bottom h3{
        font-size:28px;
    }
    .index_news_date b{
        font-size:42px;
    }
    .index_news_date span{
        font-size:16px;
        line-height:20px;
    }
    .news_list li a p.p3{
        font-size:15px;
    }
    .more3 a{
        font-size:16px;
    }
    .more3 a i {
        width: 40px;
        height: 40px;
        margin-left: 15px;
    }
}
@media(max-width: 1280px){
    .index_news{
        padding:75px 0;
    }
    .news_list li a .text {
        padding: 25px 20px;
    }
    .news_list li a p.p2 {
        font-size: 18px;
        margin: 20px 0 45px;
    }
    .news_list li a p.p3 i {
        width: 35px;
        height: 35px;
    }
    .news_list li a p.p3{
        font-size:14px;
    }
}
@media(max-width: 1199px){
    .news_list1 {
        margin-top: 40px;
    }
    .news_list li a p.p1{
        font-size:15px;
    }
    .news_list li a p.p2 {
        font-size: 16px;
        margin: 15px 0 25px;
    }

}
@media(max-width: 991px){
    .news_list li a p.p3 i {
        width: 30px;
        height: 30px;
    }
    .index_bottom{
        padding:40px 0;
    }
}
@media(max-width: 820px){
    .index_news{
        padding:55px 0;
    }
    .news_list1{
        margin-top:35px;
    }
    .index_bottom h3 {
        font-size: 22px;
    }
    .index_news_date b{
        font-size:36px;
    }
    .index_news_date span{
        font-size:15px;
        line-height:18px;
    }
}
@media(max-width: 640px){
    .index_news{
        padding:40px 0;
    } 
    .news_list1{
        margin-top:25px;
    }
    .news_list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
    .index_bottom{
        padding:30px 0;
    }
    .index_bottom .wrap{
        flex-wrap: wrap;
    }
    .index_bottom h3{
        width:100%;
        margin-bottom: 15px;
        font-size:20px;
    }
    .index_news_date b{
        font-size:32px;
    }
    .index_news_date span{
        font-size:14px;
        line-height:16px;
    }
}
@media(max-width: 500px){
    .news_list1{
        margin-bottom: 35px;
    }
    .news_list {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 15px;
    }    
}



/*页面底部*/
footer{
    position: relative;
}
.go_top{
    position: absolute;
    top:-34.5px;
    left:50%;
    margin-left: -34.5px;
    width: 69px;
    height: 61px;
    z-index: 9;
    cursor: pointer;
    outline: none;
}
.foot{
    padding:74px 0 135px;
}
.foot .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;    
}
.f_contact{
    width: 35%;
    font-size:14px;
    color: #000;
}
.f_contact p{
    margin-bottom: 18px;
    padding-left: 70px;
    position: relative;
    height: 46px;
    display: flex;
    align-items:center;
    line-height: 1.4;
    font-size:14px;
    color: #000;
}
.f_contact p:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width:46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(153, 153, 153, 1);
}
.f_contact p:nth-child(1):before{
    background:url(../images/f_contact_ico1.png) no-repeat center;
}
.f_contact p:nth-child(2):before{
    background:url(../images/f_contact_ico2.png) no-repeat center;
}
.f_contact p:nth-child(3):before{
    background:url(../images/f_contact_ico3.png) no-repeat center;
    margin-bottom: 18px;
}
.f_contact p img{
    margin-right: 20px;
}
.f_nav{

}
.f_nav{
    display: flex;
    justify-content: space-between;
    width: 60%;
}
.f_nav dl{
    color: #999;
}
.f_nav dl dt,.f_nav2 a{
    font-size:18px;
    color: rgba(27, 27, 27, 1);
    margin-bottom: 10px;
}
.f_nav dl dd{

}
.f_nav dl dd a{
    display: block;
    color: #1b1b1b;
}
.f_nav a:hover{
    text-decoration: underline;
}
.f_nav2{

}
.f_nav2 a{
    display: block;
}
.f_share dl{
    text-align: center;
}
.f_share dl dd{
    font-size: 15px;
    color: #333;
}
.copyright {
    line-height: 1.4;
    padding:30px 0;
    color: #fff;
    background:#0074a7;
}
.copyright .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.copyright a{
    color: #fff;   
}
.copyright a:hover{
    text-decoration: underline;
}
@media(max-width: 1600px){
    .foot{
        padding:55px 0 100px;
    }
    .f_contact p:before{
        width:38px;
        height: 38px;
    }
    .f_contact p{
        height: 36px;
    }
    .copyright{
        padding:20px 0;
    }
}
@media(max-width: 1280px){
    .foot{
        padding:50px 0 75px;
    }
    .index_bottom h3 {
        font-size: 24px;
    }
}
@media(max-width: 1199px){

}
@media(max-width: 991px){
    .foot {
        padding: 40px 0;
    }
    .f_contact{
        width:100%;
    }
    .f_contact p {
        height: 33px;
        padding-left: 50px;
    }
    .f_contact p:last-child{
        margin-bottom: 0;
    }
    .f_contact p:before {
        width: 33px;
        height: 33px;
    }
    .f_nav{
        display: none;
    }
}
@media(max-width: 820px){

}
@media(max-width: 640px){
    footer{
        margin-bottom:56px;
    }   
    .foot{
        padding:30px 0;
    } 
}

/*----- Common css ------*/

.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

.dib {
    *display: inline;
    _zoom: 1;
    _display: inline;
    _font-size: 0px;
}
.f_none{
    display: none;
}



/*------------内页-------------------*/
.n_banner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.n_banner img {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: block;
}
.n_banner_text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;    
}
.n_banner_text h2{
    font-size:60px;
    color: #fff;
    font-family: "puhui65";
    padding-top:50px;
}

.n_main{
    background:#f3f3f3;
    padding:100px 0 0;
    min-height: 65vh;
}
.sitemp {
    margin-bottom: 40px;
}
.sitemp .site,.sitemp .site a{
    font-size:16px;
    color: #808080;
}
.site_arrow{
    margin:0 9px;
}
.sitemp .site .cc,.sitemp .site a:last-child{
    color: #1a1a1a;
}
.n_top{

}
.n_top .wrap{
/*    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;*/
    border-bottom: 2px solid #e0e0e0;
    height: 62px;
}
h2.n_t1{
    padding-left: 28px;
    position: relative;
    font-size:40px;
    color: #383838;
    line-height: 1;
    float: left;
/*    margin-bottom: 22px;*/
}
h2.n_t1:before{
    content:'';
    position: absolute;
    left:0;
    top:0;
    width: 9px;
    height: 100%;
    background:#0074a7;
}
.sort{
    display: flex;
    flex-wrap: wrap;
    float: right;
}
.sort li{
    margin-right: 58px;
}
.sort li:last-child{
    margin-right: 0;
}
.sort li a{
    display: block;
    font-size: 20px;
    color: #999;
    /*font-weight: bold;*/
    line-height: 60px;
    position: relative;
}
.sort li a:after{
    content:'';
    position: absolute;
    left:50%;
    bottom:-2px;
    width: 0;
    height: 4px;
    background:#0074a7;
    transition: all 0.4s ease-out;
}
.sort li a.on,.sort li a:hover,.sort li.on a.a1{
    color: #0074a7;
}
.sort li a.on:after,.sort li a:hover:after,.sort li.on a.a1:after{
    width: 100%;
    left:0;
}
@media(max-width: 1600px){
    .n_banner_text h2{
        font-size:52px;
    }
    .n_top .wrap{
        height:52px;
    }
    h2.n_t1{
        font-size:32px;
    }
    .sort li a{
        font-size:18px;
        line-height:50px;
    }
    .sort li a:after{
        height:3px;
    }
}
@media(max-width: 1280px){
    .n_banner_text h2{
        font-size:46px;
    }
    .n_main{
        padding:75px 0 0px;
    }
    h2.n_t1{
        font-size:28px;
    }
    .sort li{
        margin-right:35px;
    }
    .sitemp {
        margin-bottom: 30px;
    }
}
@media(max-width: 1099px){


}
@media(max-width: 1024px){
    .n_banner_text h2{
        font-size:42px;
    }  

}
@media(max-width: 991px){
    .n_main{
        padding:140px 0 0px;
    }
    .sort li{
        margin-right:20px;
    }
}
@media(max-width: 820px){
    .n_banner_text h2{
        font-size:36px;
        padding-top:0;
    } 
    .n_main{
        padding:55px 0 0px;
    }
    h2.n_t1{
        font-size:26px;
    }

    .sort li a {
        font-size: 16px;
    }
    .sitemp {
        margin-bottom: 25px;
    }
}
@media(max-width: 767px){
    .n_banner_text h2{
        font-size:26px;
    } 
    .n_main{
        padding:40px 0 0px;
    }
    h2.n_t1{
        font-size:22px;
    }
    .n_top .wrap{
        height:auto;
    }
    .sort{
        width:100%;
        margin-top:15px;
    }
}



/*关于*/
.index_about2{
    padding: 110px 0 68px;
    background:url(../images/about_bg.jpg) no-repeat center;
    background-size: cover;
}
.index_about2 .text{
    font-size:20px;
    color: #333333;
    /*text-align: center;*/
    line-height: 1.6;
    padding:26px 0 35px;
}
.index_about2 .index_t1{
    /*max-width:200px;*/
    text-align:left;
    display:inline-block;
}

a.more2{
    color: #0075cf;
    border:1px solid #0075cf;
    margin:0 auto;
}
a.more2:hover{
    color: #fff;
}
.index_about2 a{
    margin:0;
}
.num_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*margin-top:112px;*/
}
.num_list dl{
    border-right: 2px solid #f9f9f9;
    padding: 24px 0 24px 32px;
    background: #fff;
    width: 25%;
}
.num_list dl dt{
    font-size:62px;
    /*color: #111111;*/
    color: #0074a7;
    font-family: "puhui65";
    line-height: 1;
}
.num_list dl dt sup{
    font-size:16px;
    /*color: #666666;*/
    color: #0074a7;
    font-family: "puhui55";
    margin-left: 6px;
    position: relative;
    top: -5px;
}
.num_list dl dd{
    font-size:16px;
    color: #666;
    margin-top:10px;
}
.index_about2_c{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
}
.index_about2_txt{
    width:48%;
}

.index_about2_c .img{
    width: 50%;
}
.index_about2_c .img:hover img{
    transform: scale(1.1);
}
.about1{
    position: relative;
}
.about1 .index_about2_txt{
    width: 42%;
}
.about1 .index_about2_txt .text{
    font-size: 16px;    
}
.about1 .text{
    padding-bottom: 0;
}
@media(max-width: 1600px){
    .index_about2{
        padding: 100px 0 68px;
    }
    .index_about2 .text{
        font-size:17px;
    }
    .num_list{
        margin-top: 0px;
    }
    .num_list dl dt{
        font-size:52px;
    }
    .num_list dl dt sup,.num_list dl dd{
        font-size:14px;
    }
}
@media(max-width: 1280px){
    .index_about2 .text{
        font-size:16px;
    }
    .num_list dl dt{
        font-size:42px;
    }   
}
@media(max-width: 1024px){
    .index_about2{
        padding: 75px 0 68px;
    }
    .num_list dl dt{
        font-size:32px;
    }
    .num_list dl dt sup{
        font-size: 12px;
    }
    .num_list dl dd{
        margin-top:5px;
    }
}
@media(max-width: 820px){
    .index_about2{
        padding:55px 0;
    }  
    .index_about2 .text{
        font-size:14px;
        padding: 15px 0 25px;
    }
}
@media(max-width: 640px){
    .index_about2{
        padding:40px 0;
    }
    .index_about2_c .img{
        width:100%;
    }
    .index_about2 .text{
        font-size:14px;
        
    }
    .index_about2_c .img{
        margin-top:20px;
    }
    .num_list dl{
        width:50%;
        padding:20px 0 20px 20px;
        border-bottom: 2px solid #f9f9f9;
    }
    .num_list dl dt {
        font-size: 28px;
    }
    .num_list dl dt sup {
        font-size: 10px;
    }
    .num_list dl dd {
        font-size: 13px;
    }
}


.dingwei{
    position: absolute;
    top:-85px;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
/*关于*/
.about1{
    position: relative;
}
.about1 .index_about2_txt{
    width: 42%;
}
.about1 .index_about2_txt .text{
    font-size: 16px;    
}
.about1 .text{
    padding-bottom: 0;
}
.about2{
    padding:100px 0 ;
    position: relative;
    background:#fff;
}
.wh_list{
    margin-top:62px;
    display: flex;
    flex-wrap: wrap;
}
.wh_list li{
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    background:#edf1f5;
    border-radius: 6px;
    padding:20px 54px;
    height: 180px;
    margin-bottom: 20px;
    width: 32%;
    margin-right: 2%;
}
.wh_list li:nth-child(3n){
    margin-right: 0;
}
.wh_list li .img{
    width: 120px;
}
.wh_list li .text{
    width: calc(100% - 120px);
}
.wh_list li .text h3{
    font-size:30px;
    color: #000000;
    font-family: "puhui65";
    line-height: 1;
    margin-bottom: 15px;
}
.wh_list li .text p{
    font-size:16px;
    line-height: 1.6;
}
.about4{
    padding:105px 0;
    position: relative;
    background: #f7f7f7;
}
.hzhb,.gshj{
    margin-top:50px;
}
#gshj{
    padding-bottom: 60px;
}
#gshj .swiper-pagination{
    bottom: 0;
}
#gshj img:hover{
    transform: scale(1.1);
}
.about5{
    padding:105px 0;
    position: relative;    
}
.about3-2{
    padding:90px 0;
    background: #f7f7f7;
    position: relative;
}
.ryzz01{
    margin-top:50px;
}
#ryzz01{
    padding-bottom: 60px;
    padding-top:5px;
    padding-left: 5px;
    padding-right: 5px;
}
#ryzz01 .swiper-slide{
    box-shadow: 0px 0px 10px #ccc;
    border-radius: 6px;
}
#ryzz01 .img{
    /*padding:30px;*/
    /*background:#d9d9d9;*/
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 292px;*/
    border-radius: 6px 6px 0 0;
}
#ryzz01 .img img{
    max-height: 100%;
}
#ryzz01 p{
    font-size:16px;
    color: #1a1a1a;
    line-height: 1.4em;
    height: calc(2.8em + 15px);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 120px;*/
    border-radius: 0 0 6px 6px ;
    padding:7.5px 10px;
    /*display: none;*/
}
.about3{
    position: relative;
    padding:64px 0 80px;
    background:url(../images/fzlc_bg.jpg) no-repeat center;
    background-size: cover;
}
#fzlc{
    position: relative;
    margin-top:90px;
}
#fzlc_b{
    
}
#fzlc_b .swiper-slide{
    opacity: 0;
    visibility: hidden;
}
#fzlc_b .swiper-slide-active{
    opacity: 1;
    visibility: visible;
}
#fzlc_b dl{
    display: flex;
    flex-wrap: wrap;
    padding:0 198px;
}
#fzlc_b dl dt{
    width:285px;
    font-size:120px;
    color:#0074a7;
    line-height: 1;
}
#fzlc_b dl dd{
    width:calc(100% - 285px);
    padding-left: 106px;
}
#fzlc_b dl dd .p1{
    font-size:24px;
    color: #333;
    font-family: "puhui75";
    line-height: 1;
    position: relative;
    padding-bottom: 23px;
    margin-bottom: 22px;
}
#fzlc_b dl dd .p1:after{
    content:'';
    position: absolute;
    bottom:0;
    left:0;
    width:50px;
    height: 2px;
    background:#0074a7;
}
#fzlc_b dl dd .txt{
    font-size:16px;
    line-height: 1.625em;
    height: 3.25em;
    overflow: hidden;
}
.fzlc_t{
    margin-top:164px;
    position: relative;
}
.fzlc_t:before{
    content:'';
    position: absolute;
    top:13px;
    left:0;
    width:100%;
    height:19px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px 0px rgba(174,174,174,0.4);
    border-radius: 50px 50px 50px 50px;
}
#fzlc_t{

}
#fzlc_t .swiper-slide{
    font-size:24px;
    color: #666666;
    line-height: 1.5;
    text-align: center;
    padding-top:86px;
    cursor: pointer;
}
#fzlc_t .swiper-slide.swiper-slide-thumb-active{
    color: #0074a7;;
}
#fzlc_t .swiper-slide.swiper-slide-thumb-active:before{
    content:'';
    position: absolute;
    top:0px;
    left:50%;
    margin-left: -22.5px;
    width: 45px;
    height: 45px;
    background: #0074a7;
    box-shadow: 0px 0px 0px 0px #E9827B;
    border-radius: 50%;
}
/*#fzlc_t .swiper-slide:after{
    content:'';
    position: absolute;
    top:13px;
    left:0%;
    width: 50%;
    height: 19px;
    background: #0074a7;
    border-radius: 50px 50px 50px 50px;
}*/
.fzlc_btn{
    position: relative;
    display: flex;
    justify-content: center;
    margin-top:73px;
}
.fzlc_btn .swiper-button-prev,.fzlc_btn .swiper-button-next{
    width: 52px;
    height: 52px;
    border-radius: 5px;
    border: 1px solid #0074a7;
    background:url(../images/left2.png) no-repeat center #0074a7;
    opacity: 1!important;
    position: relative;
    top:0;
    left:0;
    right:0;
    margin-top:0;
}
.fzlc_btn .swiper-button-next{
    transform:rotate(180deg);
    margin-left: 92px;
}
.fzlc_btn .swiper-button-prev:hover{
    background:url(../images/left2.png) no-repeat center #0074a7;    
}
.fzlc_btn .swiper-button-next:hover{
    background:url(../images/left2.png) no-repeat center #0074a7;    
}

#hzhb{
    padding-bottom: 50px;
}
#hzhb .swiper-pagination{
    bottom:0;
}
.about4{
    background: #fff;
}
@media(max-width: 1600px){
    .wh_list li{
        padding:20px 30px;
    }
    .wh_list li .img {
        width: 100px;
    }
    .wh_list li .text {
        width: calc(100% - 100px);
    }
    .wh_list li .text h3{
        font-size:24px;
        margin-bottom: 10px;
    }
    .wh_list li .text p{
        font-size:14px;
    }

    .about4,.about5{
        padding:90px 0;
    }
    .about1 .text{
        padding-top:20px;
    }
    .about1 .index_about2_txt .text{
        font-size:14px;
    }
    #ryzz01 p{
        font-size:15px;
    }
    #fzlc_b dl{
        padding:0 120px;
    }
    #fzlc_b dl dt{
        font-size:100px;
    }
    .fzlc_t{
        margin-top:100px;
    }
    .fzlc_btn{
        margin-top:55px;
    }
}
@media(max-width: 1280px){
    .about2{
        padding:55px 0 75px;
    }  
    .wh_list,.scjd,.hzhb{
        margin-top: 40px;
    }
    .wh_list li .text p{
        font-size:13px;
    }

    .about3-2,.about4,.about5{
        padding:75px 0;
    }
}
@media(max-width: 1024px){
    .wh_list li{
        padding: 15px 20px;
        height:150px;
    }
    .wh_list li .img{
        width: 70px;
    }
    .wh_list li .img img{
        max-width:55px;
        max-height:60px;
    }
    .wh_list li .text {
        width: calc(100% - 70px);
    }
    .wh_list li .text h3{
        font-size:20px;
    }
    .wh_list li .text p{
        font-size:12px;
    }
    .about1 .index_about2_txt{
        width:46%;
    }
    .about1 .text{
        padding-top:15px;
    }
    .about1 .index_about2_txt .text{
        font-size:13px;
    }
    #ryzz01 p{
        font-size:14px;
        padding:5px 10px;
        height: calc(2.8em + 10px);
    }
   #fzlc{
        margin-top:75px;
    }
    #fzlc_b dl{
        padding: 0 80px;
    }
    #fzlc_b dl dt{
        width:210px;
        font-size: 82px;
    }
    #fzlc_b dl dd {
        width: calc(100% - 210px);
        padding-left: 80px;
    }
    #fzlc_b dl dd .txt{
        font-size:14px;
    }
    .fzlc_t {
        margin-top: 75px;
    }
    .fzlc_t:before{
        top:9px;
        height:12px;
    }
    #fzlc_t .swiper-slide{
        padding-top:70px;
    }
    #fzlc_t .swiper-slide.swiper-slide-thumb-active:before {
        margin-left: -16px;
        width: 32px;
        height: 32px;
    }
    .fzlc_btn{
        margin-top:40px;
    }
    .fzlc_btn .swiper-button-prev, .fzlc_btn .swiper-button-next{
        width:42px;
        height:42px;
    }
    .fzlc_btn .swiper-button-next{
        margin-left:50px;
    }
}
@media(max-width: 820px){
    .about2{
        padding:35px 0 55px;
    }   
    .wh_list li{
        padding: 12px 15px;
        height:135px;
        width:49%;
        margin-bottom:15px;
    }
    .wh_list li:nth-child(3n) {
        margin-right: 2%;
    }
    .wh_list li:nth-child(2n) {
        margin-right: 0;
    }
    .wh_list li .img{
        width: 60px;
    }
    .wh_list li .img img{
        max-width:45px;
        max-height:52px;
    }
    .wh_list li .text {
        width: calc(100% - 60px);
    }
    .wh_list li .text h3{
        font-size:18px;
    }

    .about3,.about3-2,.about4,.about5{
        padding:55px 0;
    }
    .about1 .index_about2_txt,.index_about2_c .img{
        width:100%;
    }
    .index_about2_c .img{
        margin-top:20px;
    }
    #fzlc{
        margin-top: 55px;
    }
    #fzlc_b dl{
        padding:0;
    }
    #fzlc_b dl dt{
        width: 150px;
        font-size: 62px;
    }
    #fzlc_b dl dd{
        width: calc(100% - 150px);
        padding-left: 50px;
    }
    #fzlc_b dl dd .p1{
        font-size:22px;
        padding-bottom: 18px;
        margin-bottom: 18px;        
    }
    .fzlc_t {
        margin-top: 50px;
    }
}
@media(max-width: 640px){
    .about2{
        padding:20px 0 40px;
    }
    .wh_list, .scjd, .hzhb {
        margin-top: 25px;
    }
    .wh_list li{
        width:100%;
        margin-right:0;
        height:auto;
        padding:12px;
        margin-bottom:12px;
    }
    .wh_list li:last-child{
        margin-bottom:0;
    }
    .wh_list li .img img {
        max-width: 36px;
        max-height: 40px;
    }
    .wh_list li .text h3{
        font-size:16px;
    }

    .about3,.about3-2,.about4,.about5{
        padding:40px 0;
    }
    .hzhb,.gshj{
        margin-top:30px;
    }
    #ryzz01 p{
        font-size:13px;
    }
    #fzlc{
        margin-top: 40px;
    }
    #fzlc_b dl dt{
        width:100%;
        font-size:42px;
        margin-bottom:20px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    #fzlc_b dl dd{
        width:100%;
        padding-left:0;
    }
    #fzlc_b dl dd .p1{
        font-size:20px;
    }
    .fzlc_t {
        margin-top: 35px;
    }
    .fzlc_t:before {
        top: 9px;
        height: 8px;
    }
    #fzlc_t .swiper-slide {
        padding-top: 50px;
        font-size:20px;
    }
    #fzlc_t .swiper-slide.swiper-slide-thumb-active:before {
        margin-left: -12px;
        width: 24px;
        height: 24px;
    }
    .fzlc_btn .swiper-button-prev, .fzlc_btn .swiper-button-next {
        width: 32px;
        height: 32px;
    }
    .fzlc_btn .swiper-button-next {
        margin-left: 30px;
    }
}

/*产品*/
.n_product{
    padding:55px 0;
}
.product_list{
    display: flex;
    flex-wrap: wrap;
}
.product_list li{
    width: 32%;
    margin-right: 2%;
    margin-bottom: 35px;
}
.product_list li:nth-child(3n){
    margin-right: 0;
}
.product_list li a{
    height: 100%;
    display: block;
    background: #fff;
}
.product_list li .img{
    text-align: center;
    height: 330px;
    line-height: 330px;
    transition:all 0.5s ease-out;
}
.product_list li .text{
    background:#fff;
    padding:25px 32px 35px;
    display: flex;
    justify-content: space-between;
    align-items:flex-end;
}
.product_list li .text .txt{
    width: calc(100% - 67px);
}
.product_list li .text .txt p{
    font-size:16px;
    color: #0074a7;
}
.product_list li .text .txt h3{
    font-size:26px;
    color: #000000;
    line-height: 1.2em;
    /*height: 2.8em;*/
    margin-top:5px;
}
.product_list li:hover{
    box-shadow: 5px 5px 10px #ccc;
}
.product_list li:hover .img img{
    transform: scale(1.1)
}
/*.product_list li:hover .img{*/
/*    background:#f0f0f2;*/
/*}*/
.p_more{
    width: 50px;
    height: 50px;
    background:url(../images/more1.png) no-repeat center #b3b3b3;
    transition:all 0.5s ease-out;
}
.p_more:hover,.product_list li:hover .p_more{
    background:url(../images/more1.png) no-repeat center #0074a7;    
}
.p_sort01{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;    
}
.p_sort01 li{
    
}
.p_sort01 li a{
    display: block;
}
.p_sort01 li a .img{
    text-align: center;
}
.p_sort01 li a .text{
    
}
.p_sort01 li a .text h3{
    font-size: 20px;
    color: #000;
    text-align: center;
    margin-top:10px;
}
@media(max-width: 1600px){
/*    .n_product{
        padding:90px 0;
    }*/
    .product_list li .img{
        height: 280px;
        line-height: 280px;
    }
    .product_list li .text{
        padding:20px 25px;
    }
    .product_list li .text .txt p{
        font-size:15px;
    }
    .product_list li .text .txt h3{
        font-size:22px;
    }
}
@media(max-width: 1280px){
/*    .n_product{
        padding:75px 0;
    }*/
    .product_list li .text .txt h3{
        font-size:18px;
    }
}
@media(max-width: 1024px){

}
@media(max-width: 991px){
    .product_list li .img {
        height: 220px;
        line-height: 220px;
    }
    .product_list li .text{
        padding:20px 15px;
    }
    .product_list li .text .txt p{
        font-size:14px;
    }
    .product_list li .text .txt h3{
        font-size:16px;
    }
    .p_more{
        width: 40px;
        height: 40px;
    }
}
@media(max-width: 820px){
/*    .n_product{
        padding:55px 0;
    }*/
    .product_list li .text .txt h3{
        font-size:15px;
    }
    .product_list li .img {
        height: 200px;
        line-height: 200px;
    }
}
@media(max-width: 640px){
    .n_product{
        padding:40px 0;
    }
    .product_list li{
        width: 49%;
    }
    .product_list li:nth-child(3n){
        margin-right: 2%;
    }
    .product_list li:nth-child(2n){
        margin-right: 0;
    }
    .product_list li .text .txt h3{
        font-size:14px;
    }
}
@media(max-width: 460px){
    .product_list li{
        width: 100%;
        margin-right: 0!important;
        margin-bottom: 20px;
    }
    .product_list li .img {
        height: 240px;
        line-height: 240px;
    }
}


.pd1{
    background: url(../images/pd_bg1.jpg) no-repeat center;
    background-size: cover;
    padding:60px 0 65px;
}
.pd1 .wrap{

}
.pd1 .text{
    width: 38.5%;
    float: right;
}
.pd1 .text p.p1{
    font-size:20px;
    color: #0074a7;
    font-family: "puhui65";
    /*display: none;*/
}
.pd1 .text h2{
    font-size:36px;
    color: #333333;
    font-family: "puhui75";
    line-height: 1.3;
    padding:18px 0 15px;
    border-bottom: 1px solid #ccc;
}
.pd1 .text .txt{
    font-size:16px;
    color: #808080;
    margin: 35px 0 80px;
    margin-bottom: 0!important;
}
a.p_more2{
    background: #0074a7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 52px;
    border-radius: 6px;
    cursor: pointer;
    font-size:16px;
    color: #fff;
}
a.p_more2 i{
    margin-left: 40px;
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url(../images/more4.png) no-repeat center #fff;
    background-size: 9px;
    transition:all 0.3s ease-out;
}
.pd1 .imgs{
    width: 45%;
    float: left;
    text-align: center;
}
#pd1{
    padding-bottom: 45px;
}
#pd1 .swiper-wrapper{
    align-items: center;
}
#pd1 .swiper-pagination{
    bottom:0;
}
#pd1 .swiper-pagination span{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background:#0074a7;
    margin:0 12px;
    opacity: .2;
}
#pd1 .swiper-pagination span.swiper-pagination-bullet-active{
    opacity: 1;
}
.pd2{
    padding:100px 0 120px;
}
.p_table{
    margin-top:55px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.p_table::-webkit-scrollbar{
  /*滚动条整体样式*/
  /*高宽分别对应横竖滚动条的尺寸*/
    width:6px;
    height:6px;
    background-color:#0074a7;
}
.p_table table{
    /*border: 1px solid #cbcbcc;*/
    min-width: 100%;
}
.p_table table tr{
    min-height:48px;
}
.p_table table tr:nth-child(odd) {
    background: #fafafa;
}
.p_table table tr td{
    font-size:22px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.6;
    padding:3px;
    /*background:#f7f7f7;*/
    /*border-bottom: 1px solid #e0e0e0;*/
    /*border-right: 1px solid #e0e0e0;*/
    min-width: 50px;
}
.p_table table tr td:nth-child(1){
    text-align: left;
    padding:24px 24px;
}
/*.p_table table tr:nth-child(2n + 1) td{
    background: #cbcbcc;
}*/
/*.p_table table tr:nth-child(1) td{*/
/*    background: #528d5f;*/
/*    color: #fff;*/
/*}*/
.p_table table tr:last-child td{
    border-bottom:none;
}
.pd3.xg_p{
    padding:0 0 120px;
}
.p_other{
    margin-top:75px;
}
.product_detail .txt p em,.pd3 p em{
    font-size: 18px;
    color: #000000;
    padding-left: 20px;
    display: block;
    position: relative;
    margin-bottom: 15px;
    font-style: normal;
}
.product_detail .txt p em:before,.pd3 p em:before{
    content:'';
    position: absolute;
    left:0;
    top:50%;
    margin-top:-8px;
    width: 8px;
    height: 16px;
    background:#0074a7;
}
.product_detail p a font{
    color: #0074a7!important;
}
.pd3{
    padding:50px 0 100px;
    /*background: #f7f7f7;*/
    font-size: 16px;
}
.ys_cont{
    margin-top:50px;
}
.ys_cont ul{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}
.ys_cont ul li{
    background: #f3f3f3;
    text-align: center;
    padding:80px 50px;
}
.ys_cont ul li .img img{
    height: 70px;
}
.ys_cont ul li .txt{
    font-size: 16px;
    color: #333;
    margin-top:12px;
}
@media(max-width: 1600px){
    .pd1 .text{
        width: 45%;
    }
    .pd1 .text p.p1{
        font-size:18px;
    }
    .pd1 .text h2{
        font-size:32px;
        padding: 10px 0 20px;
    }
    .pd1 .text .txt {
        font-size: 15px;
        margin: 20px 0 50px;
    }
    a.p_more2{
        width: 150px;
    }
    a.p_more2 i{
        margin-left: 15px;
        width:20px;
        height:20px;
        background-size:6px;
    }
    .pd2{
        padding:90px 0;
    }
    .p_table table tr td{
        font-size:17px;
    }
    .pd3.xg_p{
        padding:0 0 90px;
    }
    #pd1 .swiper-slide img{
        max-height: 480px;
    }
    #pd1 .swiper-pagination span{
        width:10px;
        height:10px;
    }
    .ys_cont ul li{
        padding:40px 15px;
    }
    .ys_cont ul li .img img {
        height: 60px;
    }
    .ys_cont ul li .txt{
        font-size:15px;
    }
}
@media(max-width: 1280px){
    .pd1 .text h2{
        font-size:28px;
        padding: 5px 0 10px;
    }
    #pd1 .swiper-slide img{
        max-height: 400px;
    }
    .pd2{
        padding:70px 0;
    }
    .p_table table tr td{
        font-size:16px;
    } 
    .pd3.xg_p{
        padding:0 0 70px;
    }  
    .p_table{
        margin-top:40px;
    }
    .pd3{
        padding:40px 0 75px;
    }
}
@media(max-width: 1024px){
    .pd1 .text h2{
        font-size:26px;
    }
}
@media(max-width: 820px){
    .pd1 .text {
        width: 52%;
    }
    .pd1 .text h2 {
        font-size: 24px;
    }
    .pd1 .text .txt {
        font-size: 14px;
        margin: 15px 0 35px;
    }
    #pd1 .swiper-slide img {
        max-height: 300px;
    }
    .pd2{
        padding:55px 0;
    }
    .pd3.xg_p{
        padding:0 0 55px;
    } 
    .p_table{
        margin-top:30px;
    } 
    .p_other{
        margin-top:55px;
    }
    .pd3{
        padding:30px 0 55px;
    }
    #pd1 .swiper-pagination span{
        width:6px;
        height:6px;
    }
}
@media(max-width: 767px){
    .ys_cont ul{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;        
    }
    .ys_cont ul li {
        padding: 25px 15px;
    }   
    .pd1 .text{
        width: 100%;
    }
    .pd1 .imgs{
        width: 100%;
        margin-bottom:30px;
    }
}
@media(max-width: 640px){
    .pd1{
        padding:35px 0;
    }
    .pd1 .text h2 {
        font-size: 20px;
    }
    #pd1 .swiper-slide img {
        max-height: 240px;
    }
    .pd2{
        padding:35px 0;
    }
    .p_table{
        margin-top:35px;
    }
    .p_table table{
        width: 640px;
    }
    .p_table table tr td {
        font-size: 15px;
    }
    .pd3.xg_p{
        padding:0 0 35px;
    }
    .p_other{
        margin-top:40px;
    }
    .pd3{
        padding:20px 0 40px;
    }
}
@media(max-width: 460px){
    .pd3.xg_p .product_list2 li a{
        position: absolute;
    }
}



/*案例*/
.n_case{
    padding:55px 0;
}
.case_list02{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;    
}
.case_list02 li a{
    display: block;
}
.case_list02 li a .img{
    border:1px solid #dbdbdb;
}
.case_list02 li a:hover .img{
    border:1px solid #0074a7;
}
.case_list02 li a:hover .img img{
    transform: scale(1.1)
}
.case_list02 li a h3{
    color: #333;
    font-size: 16px;
    line-height: 1.4;
    margin-top:10px;
    text-align: center;
    font-weight: normal;
    width: 100%;
}
.case_list02 li a:hover h3{
    color: #0074a7;
}
.case_detail{
    padding:50px 0;
}
.case_list{

}
.case_list li{
    display: flex;
    flex-wrap: wrap;
    margin-bottom:25px;
    background:#fff;
    padding:30px 120px;
}
.case_list li a.img{
    display: block;
    position: relative;
    width: 40%;
}
.case_list li a.img img{
    width: 100%;
    height: 100%;
}
.case_list li .text{
    padding:20px 0px 20px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
}
.case_list li .text h3{
    font-size:24px;
    color: #333333;
}
.case_list li .text .txt{
    font-size:16px;
    color: #808080;
    line-height: 1.6;
    margin:10px 0 0px!important;
    /*text-overflow: ellipsis;*/
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 4;*/
    /*-webkit-box-orient: vertical;*/
    /*overflow: hidden;*/
}
.case_list li:hover a.img img{
    transform:scale(1.1);
}
.case_list li:hover .text h3{
    color: #0074a7;
}
/*.case_list li:hover .text a{
    color: #fff;
    background:#0074a7;
}
.case_list li:hover .text a i{
    background: url(../images/more.png) no-repeat center;
}*/
.case_detail .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.case_detail .wrap .imgs{
    width: 55%;
}
.case_detail .wrap .text{
    width: 40%;
}
.case_detail .wrap .text h3{
    font-size: 24px;
    color: #333333;    
}
.case_detail .wrap .text .txt{
    font-size: 16px;
    color: #808080;
    line-height: 1.6;
    margin: 10px 0 0px !important;    
}
.case_detail .wrap .text .txt strong{
    color: #333;
}
.case_detail_li{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;    
    margin-top:20px;
}
.case_detail_li p{
    border:1px solid #dbdbdb;   
    background: #fff;
    cursor: pointer;
}
.case_detail_li p.cur{
    border:1px solid #0074a7;
}
.case_detail .wrap .imgs p{
    display: none;
    overflow: hidden;
}
/*.case_detail .wrap .imgs:hover p img{*/
/*    transform: scale(1.1);*/
/*}*/
.product_list02 .p_more{
    background: url(../images/more1_h.png) no-repeat center;
    border:1px solid #0074a7;
    border-radius: 50%;
}
.product_list02 li:hover .p_more{
    background: url(../images/more1.png) no-repeat center #0074a7;
}
@media(max-width: 1600px){
    .case_list li{
        padding:25px 90px;
    }
    .case_list li .text{
        padding:20px 0px 20px 70px;
    }
    .case_list li .text h3{
        font-size:22px;
    }
    .case_list li .text .txt,.case_list02 li a h3{
        font-size:14px;
    }
}
@media(max-width: 1280px){
    .case_detail .wrap .text h3{
        font-size:20px;
    }
/*    .n_main1 {
        padding: 55px 0 20px;
    }   */ 
}
@media(max-width: 1024px){
    .n_case{
        padding:40px 0;
    }
    .case_list li{
        padding:25px 50px;
    }
    .case_list li .text{
        padding:20px 0 20px 50px;
    }
    .case_list li .text h3{
        font-size:20px;
    }
    .case_list li .text .txt{
        margin: 5px 0 20px;
        -webkit-line-clamp: 3;
    }    
}
@media(max-width: 820px){
    .case_list li{
        padding:25px 30px;
    }
    .case_list li .text{
        padding:20px 0 20px 35px;
    }
   
}
@media(max-width: 640px){
    .case_list li{
        padding:20px;
    }
    .case_list li a.img{
        width:100%;
    }
    .case_list li .text{
        padding:20px 0px 0;
        width:100%;
    }
    .case_list li .text h3 {
        font-size: 16px;
    }
    .case_list02{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;    
    }
    .case_detail {
        padding: 30px 0;
    }
    .case_detail .wrap .imgs,.case_detail .wrap .text{
        width:100%;
    }
    .case_detail .wrap .text{
        margin-top:20px;
    }
    .case_detail .wrap .text h3{
        font-size:17px;
    }
}



/*新闻*/
.n_news{
    padding:55px 0;
}


.news_detail{
    padding:70px 0;
    max-width: 1200px;
    margin:0 auto;
}
h1.title{
    font-size: 28px;
    color: #333;
    text-align: center;
    font-weight: normal;
    line-height: 1.4;
}
.info_title{
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-bottom: 1em;
    border-bottom:1px dashed #dcdcdc;
    margin-bottom: 30px;
    font-weight: normal;
}
.news_detail .content{
    font-size: 16px;
    margin-bottom: 25px;
}
@media(max-width: 1600px){


    h1.title{
        font-size:24px;
    }
    .info_title {
        margin-bottom: 20px;
    }
    .news_detail .content{
        font-size: 15px;
    }
}
@media(max-width: 1440px){

}
@media(max-width: 1259px){
    .n_news{
        padding:75px 0;
    }

    h1.title{
        font-size:20px;
    } 
    .info_title{
        padding-bottom: 10px;
        margin-bottom:15px;
    }
    .news_detail{
        padding:50px 0;
    }
}
@media(max-width: 992px){
 
}
@media(max-width: 820px){
    .n_news{
        padding:55px 0;
    }

    h1.title{
        font-size:18px;
    }
}
@media(max-width: 640px){
    .n_news{
        padding:40px 0;
    }

    .news_detail{
        padding:35px 0;
    }
    h1.title{
        font-size:18px;
    }
    .info_title {
        padding-bottom: 5px;
        margin-bottom: 10px;
    }     
}


/*联系*/
/*联系我们*/
.contact1{
    margin-top:70px;
}
.contact1 .wrap{
    background:url(../images/contact.jpg) no-repeat center;
    background-size: cover;
    padding:85px 80px;
}
h2.ab_t2{
    font-size:40px;
    line-height: 1;
    color: #131313;
}
.contact_cont{
    margin-top:85px;
    display: flex;
    flex-wrap: wrap;
    align-items:flex-end;
}
.contact_list{
    width: 72%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact_list dl{
    width: 49%;
    margin-bottom: 40px;
}
.contact_list dl:nth-child(5),.contact_list dl:nth-child(6){
    margin-bottom: 0;
}
.contact_list dl dt{
    display: flex;
    align-items:center;
}
.contact_list dl dt i{
    width: 34px;
    display: inline-block;
}
.contact_list dl dt span{
    font-size:16px;
    color: #383838;
    font-family: "puhui65";    
}
.contact_list dl dd{
    font-size: 22px;
    color: #707070;
    line-height: 1.4;
    margin-top:12px;
}
.contact_code{
    width: 125px;
    text-align: center;
    margin-left: 70px;
}
.contact_code p{
    font-size:16px;
    color: #383838;
    margin-top:5px;
    line-height: 1.6;
}

.message2{
    padding:80px 0 145px;
    position: relative;
}
.message2 h2{
    font-size:40px;
    color: #1a1a1a;
    line-height: 1.3;
    font-family: "puhui65";
    margin-bottom: 40px;
}
.message2 ul{
    display: flex;
    flex-wrap: wrap;
}
.message2 ul li{
    width: 49%;
    margin-right: 2%;
    margin-bottom: 25px;
}
.message2 ul li:nth-child(2n){
    margin-right: 0;
}
.message2 ul li:last-child{
    margin-right: 0;
    width: 100%;
    margin-bottom:0;
}
.message2 ul li input{
    width: 100%;
    background:#fff;
    padding:0 25px;
    font-size:18px;
    color: #808080;
    line-height: 60px;
    height: 60px;
    border:none;
    outline: none;
    border-radius: 4px;
    display: block;
}
.message2 ul li textarea{
    width: 100%;
    background:#fff;
    padding:0 25px;
    font-size:18px;
    color: #808080;
    line-height: 60px;
    height: 180px;
    border:none;
    outline: none;
    border-radius: 4px;
    display: block;
    font-family: "puhui55";
}
.message_bottom{
    margin-top:50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items:center;
    flex-direction: row-reverse;
}
#code2{
    display: flex;
}
#code2 input{
    border:none;
    outline: none;
    font-size:16px;
    color: #999999;
    padding:0 18px;
    width: 120px;
}
.message_bottom .msgbtn{
    width: 160px;
    height: 60px;
    font-size:18px;
    color: #fff;
    background:#005fa3;
    display: flex;
    align-items:center;
    justify-content: center;
    border:none;
    outline: none;
    cursor: pointer;
    margin-right: 24px;
    margin-top:0;
}
@media(max-width: 1600px){
    h2.ab_t2{
        font-size:30px;
    }
    .contact_cont{
        margin-top:65px;
    }
    .contact1 .wrap{
        padding: 60px 45px;
    }
    .contact_list dl dd{
        font-size:16px;
        margin-top: 7px;
    }
    .contact_code{
        font-size:15px;
    }

    .message2 h2{
        font-size:32px;
    }
    .message2 ul li{
        margin-bottom: 15px;
    }
    .message2 ul li input {
        padding: 0px 20px;
        font-size: 16px;
        line-height: 50px;
        height: 50px;
    }
    .message2 ul li textarea{
        padding: 0px 20px;
        font-size: 16px;
        line-height: 50px;
        height: 200px;        
    }
}
@media(max-width: 1280px){
    h2.ab_t2{
        font-size:26px;
    }
    .contact_cont{
        margin-top:50px;
    }
    .message2{
        padding:75px 0;
    }
}
@media(max-width: 1099px){   
    .message2 h2{
        font-size:28px;
    }
}
@media(max-width: 991px){
    .contact1{
        margin-top:50px;
    }
    .contact1 .wrap {
        padding: 35px 30px;
    }
    .contact_list{
        width:65%;
    }
    .contact_list dl{
        margin-bottom:25px;
    }
    .contact_list dl dd{
        font-size:15px;
    }
    .contact_code{
        margin-left:50px;
    }
}
@media(max-width: 820px){
    .contact1{
        margin-top:35px;
    }
    h2.ab_t2{
        font-size:24px;
    }
    .contact_cont{
        margin-top:40px;
    }
    .message2{
        padding:50px 0;
    } 
    .message2 h2{
        font-size:26px;
    }
}
@media(max-width: 640px){
    h2.ab_t2{
        font-size:20px;
    }
    .contact_cont{
        margin-top:25px;
    }
    .contact_list{
        width:100%;
    }
    .contact_code{
        width:100%;
        padding-top:25px;
        margin-left:0;
    }
    .message2{
        padding:35px 0;
    }
    .message2 h2{
        font-size:22px;
        margin-bottom: 25px;
    }
    .message2 ul li{
        margin-bottom: 10px;
    }
    .message2 ul li textarea{
        height: 150px;
    }
    .message_bottom{
        margin-top:30px;
    }
}
@media(max-width: 640px){
    .contact_list dl{
        width:100%;
        margin-bottom:20px;
    }
    .contact_list dl:nth-child(5){
        margin-bottom:20px;
    }
    .message_bottom{
        margin-top:20px;
    }
    #code2{
        width:100%;
        justify-content:center;
        margin-bottom:20px;
    }
    .message_bottom .msgbtn {
        width: 120px;
        height: 50px;
        font-size: 16px;
        margin-right: 0px;
    
    }
}


/*留言*/
.message{
    padding:105px 0 110px;
    background:#fff;
    position: relative;
}
.message h2{
    font-size:40px;
    color: #1a1a1a;
    line-height: 1.3;
    font-family: "puhui65";
    margin-bottom: 40px;
}
.message ul{
    display: flex;
    flex-wrap: wrap;
}
.message ul li{
    width: 49%;
    margin-right: 2%;
    margin-bottom: 25px;
}
.message ul li:nth-child(2n){
    margin-right: 0;
}
.message ul li:last-child{
    margin-right: 0;
    width: 100%;
    margin-bottom:0;
}
.message ul li input{
    width: 100%;
    background:#f5f5f5;
    padding:0 25px;
    font-size:18px;
    color: #808080;
    line-height: 60px;
    height: 60px;
    border:none;
    outline: none;
    border-radius: 4px;
    display: block;
}
.message ul li textarea{
    width: 100%;
    background:#f5f5f5;
    padding:0 25px;
    font-size:18px;
    color: #808080;
    line-height: 60px;
    height: 180px;
    border:none;
    outline: none;
    border-radius: 4px;
    display: block;
    font-family: "puhui55";
}
.msgbtn{
    width: 160px;
    height: 60px;
    font-size:18px;
    color: #fff;
    background:#0074a7;
    border-radius: 6px;
    display: flex;
    align-items:center;
    justify-content: center;
    margin:50px auto 0;
    border:none;
    outline: none;
    cursor: pointer;
}
@media(max-width: 1600px){
    .message h2{
        font-size:32px;
    }
    .message ul li{
        margin-bottom: 15px;
    }
    .message ul li input {
        padding: 0px 20px;
        font-size: 16px;
        line-height: 50px;
        height: 50px;
    }
    .message ul li textarea{
        padding: 0px 20px;
        font-size: 16px;
        line-height: 50px;
        height: 200px;        
    }
}
@media(max-width: 1280px){
    .message{
        padding:75px 0;
    }
}
@media(max-width: 1099px){   
    .message h2{
        font-size:28px;
    }
}
@media(max-width: 991px){
    .message ul li input {
        padding: 0px 15px;
        font-size: 14px;
        line-height: 40px;
        height: 40px;
    }
    .message ul li textarea{
        padding: 0px 15px;
        font-size: 14px;
        line-height: 40px;
        height: 160px;        
    }   
}
@media(max-width: 820px){
    .message{
        padding:50px 0;
    } 
}
@media(max-width: 640px){
    .message{
        padding:35px 0;
    }
    .message h2{
        font-size:24px;
        margin-bottom: 25px;
    }
    .message ul li{
        margin-bottom: 10px;
    }
    .message ul li textarea{
        height: 120px;
    }
    .msgbtn {
        width: 120px;
        height: 50px;
        font-size: 17px;
        margin: 30px auto 0;
    }
}
@media(max-width: 460px){
    .message ul li{
        width: 100%;
        margin-right: 0;
    }
}


#job3{
    background:#f1f1f1;
    padding:100px 0 130px;
}
#job3 h2{
    text-align: center;
    font-size:44px;
    color: #333333;
    line-height: 1;
    margin-bottom: 42px;
}
.job_list{

}
.job_list li{
    background:#ffffff;
    margin-bottom: 10px;
}
.job_top{
    padding:0 60px;    
}
.job_t{
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    cursor: pointer;
}
.job_list li.on .job_t{
    border-bottom:1px solid #e0e0e0;
}
.j1{
   width: 31%;    
}
.j_name{
    font-size:20px;
    color: #333333;
    font-weight: bold;
}
.j_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 32px 0;
    width: 45%;
}
.j_c p{
    font-size:16px;
    color: #999999;
    padding-left: 24px;
}
.j_c p:nth-child(1){
    background:url(../images/job_ico1.png) no-repeat left center;
}
.j_c p:nth-child(2){
    background:url(../images/job_ico2.png) no-repeat left center;
}
.j_c p:nth-child(3){
    background:url(../images/job_ico3.png) no-repeat left center;
}
.j_c p:nth-child(4){
    background:url(../images/job_ico4.png) no-repeat left center;
}
.j_date{
    width: 24%;
    float: right;
    font-size:16px;
    color: #999999;
    text-align: right;
}
.j_date span{
    display: inline-block;
}
.job_t i{
    display: block;
    width: 14px;
    height: 30px;
    background:url(../images/j_down.png) no-repeat center;
}

.job_list li .j_cont{
    display: none;
    padding:70px 60px;
    transition: all 0.6s ease-out;
}
.j_cont1{
    display: flex;
    flex-wrap: wrap;
}
.j_cont1 h3{
    font-size:16px;
    color: #333;
    width: 95px;
}
.j_cont1_c{
    font-size:15px;
    color: #666666;
    width: calc(100% - 95px);
}
.j_cont2{
    margin:40px 0 110px;
}
.j_contact{
    background: #f2f2f2;
    color: #5b5b5b;
    border-radius: 6px;
}
.j_contact p{
    padding:0 40px;
    line-height: 64px;
    float: left;
    font-size:14px;
    color: #5b5b5b;
    font-family: "微软雅黑";
}
.j_contact a{
    display: block;
    float: right;
    width: 205px;
    line-height: 64px;
    background:#4d4d4d;
    font-size:18px;
    color: #fff;
    font-family: "puhui85";
    text-align:center;
    border-radius: 6px;
}
.job_list li.on .j_cont{
    display: block;
}
.job_list li.on .j_date img{
    transform:rotate(-180deg);
}


@media(max-width: 1600px){
    #job3 h2{
        font-size:36px;
    }

    .job_top{
        padding:0 40px;
    }
    .j_c{
        padding:25px 0;
    }
    .job_list li .j_cont{
        padding:50px 40px;
    }
    .j_cont2 {
        margin: 30px 0 70px;
    }
    .j_contact p{
        line-height: 50px;
        padding: 0 30px;
    }
    .j_contact a{
        line-height: 50px;
        width: 180px;
    }
}
@media(max-width: 1280px){
    #job3 h2{
        font-size:32px;
    }
    .job_top{
        padding:0 30px;
    }
    .j_c{
        padding:15px 0;
    }
    .job_list li .j_cont{
        padding:40px 30px;
    }
    .j_cont2 {
        margin: 20px 0 40px;
    }
    .j_contact p{
        padding: 0 20px;
    }    
}
@media(max-width: 1024px){
    #job3 h2{
        font-size:28px;
    }

}
@media(max-width: 820px){

    #job3{
        padding:75px 0;
    }
    .job_top {
        padding: 0 20px;
    }
    .j_name{
        font-size:16px;
    }
    .j_c p,.j_date{
        font-size:14px;
    }  
    .j_c p{
        padding: 0 20px;
    }  
    .job_list li .j_cont {
        padding: 30px 20px;
    }    
}
@media(max-width: 767px){
    #job3{
        padding:50px 0;
    }
    #job3 h2{
        margin-bottom: 25px;
        font-size: 22px;
    }
    .job_list li{
        margin-bottom: 12px;
    }
    .job_top {
        padding: 0 10px;
    }
    .j_name{
        padding:5px 0;
        width: 76%;
    }
    .j_c,.j_c p{
        display: none;
    }
    .j_cont1 h3{
        width: 100%;
        font-size:15px;
    }
    .j_cont1_c{
        width: 100%;
        font-size:14px;
    }
    .job_list li .j_cont {
        padding: 20px 10px;
    }
    .j_contact{
        padding:15px 0 0;
    }
    .j_contact p{
        width: 100%;
        line-height: 2em;
        float: none;
    }
    .j_contact a{
        float: none;
        margin:15px auto 0;
        line-height: 42px;
        width: 120px;
        font-size:15px;
    }    
}


h3.tag{
    font-size: 14px;
    color: #666;
    font-weight: normal;
}
.page{
    font-size: 14px;
    color: #666;    
}
.page a{
    font-size: 14px;
    color: #666;    
}
.online-server{
    position: fixed;
    right: 18px;
    bottom: 10%;
    width: 48px;
    background-color: #ffffff;
    border-radius: 24px;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 999;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 13%);
}
.online-server a{
    display: block;
    width: 100%;
    height: 48px;
    border-radius: 50%;
    color: #000;
    position: relative;
    cursor: pointer;
}
.online-server a p{
    position: absolute;
    width: 200px;
    left:-205px;
    top:4px;
    line-height: 40px;
    padding:0 10px 0 40px;
    font-size: 16px;
    color: #fff;
    opacity: 0;
    border-radius: 6px;
    background: url(../images/r_i1_h2.png) no-repeat 10px center #00a2e7;
    display: none;
}
.online-server a:hover p{
    opacity: 1;
    display: block;
}
.online-server a:nth-child(1){
    background: url(../images/r_i1.png) no-repeat center;
    background-size: 27px;
}
.online-server a:nth-child(1):hover{
    background: url(../images/r_i1_h.png) no-repeat center;
    background-size: 27px;
}
.online-server a:nth-child(2){
    background: url(../images/r_i2.png) no-repeat center;
    background-size: 27px;
}
.online-server a:nth-child(2):hover{
    background: url(../images/r_i2_h.png) no-repeat center;
    background-size: 27px;
}
.online-server a:nth-child(3){
    background: url(../images/r_i3.png) no-repeat center;
    background-size: 27px;
}
.online-server a:nth-child(3):hover{
    background: url(../images/r_i3_h.png) no-repeat center;
    background-size: 27px;
}
/*2025右侧浮动栏*/
.right_fixed{
    position: fixed;
    top: calc(45%);
    transform:translateY(-50%);
    right: 20px;
    margin: auto 0;
    max-width: 100% !important;
    width:54px;
    background:#ECE8DD;
    border-radius: 50px;
    z-index: 9999;
}
.right_fixed dl{
    width:100%;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    position: relative;
}
.right_fixed dl dt{
    padding:14px 12px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}
.right_fixed dl:first-child dt{
    border-radius: 50px 50px 8px 8px;
}
.right_fixed dl:last-child dt{
    border-radius: 8px 8px 50px 50px;    
}
.right_fixed dl dt:hover{
    background:#fff;
}
/*.right_fixed dl:last-child dt:hover{
    background:none;
}*/
.right_fixed dl dt img{
    max-width: 30px;
    max-height: 30px;
}
.right_fixed dl dt p{
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    width: 100%;
    text-align: center;
    cursor: default;
}
.right_fixed dl dd{
    position: absolute;
    top: 50%;
    right: 100%;
    padding-right: 18px;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(10px) translateY(-50%);
    opacity: 0;
    transition: all .5s;
    z-index: 99999;
}
.right_fixed dl:hover dd{
    visibility: visible;
    pointer-events: all;
    transform: translateX(0) translateY(-50%);
    opacity: 1;    
}
.right_fixed_box{
    position: relative;
    z-index: 1;
    width: 220px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 19px 10px rgba(22, 44, 112, .05);
    border-radius: 8px;
    padding: 12px 15px ;
}
.right_fixed_box:after{
    content: "";
    position: absolute;
    right: calc(-16px / 1.414 / 2);
    top: 50%;
    z-index: -1;
    width: 16px;
    height: 16px;
    transform: translateY(-50%) rotate(45deg);
    background: #fff;
}
.right_fixed_box2{
    width: 156px;
    padding:15px;
}
.right_fixed_tel a{
    font-size:18px;
    color: #333;
    font-weight: 700;
}
.right_fixed_code{

}
.right_fixed_code img{
    max-width: 106px;
}
@media(max-width: 1600px){
    .online-server{
        right:5px;
    }
}
@media(max-width: 991px){
    .online-server,.right_fixed{
        display: none!important;
    }
}
@media(max-width: 768px){
    h1.title{
        font-size: 18px;
    }
}

.pageController{
    text-align: center;
    color:#505050;margin:0 auto;
    margin:2em 0;
    line-height:24px;
}
.pageController a{background-color:#FFF;vertical-align:middle; border:#efefef 1px solid; 
    color:#505050;padding:5px 8px; margin-right:3px;margin-left:3px;
}
.pageController a:hover{background-color:#2b70bb;color:#fff; text-decoration:none;border:#2b70bb 1px solid;}
.pageController .currPage {background-color: #2b70bb;color:#fff;border:#2b70bb 1px solid;}
.pageController .t1{
    float:left;margin-right:5px;height:24px;line-height:22px;white-space:nowrap;
    display: none;
}
.pageController .t2{vertical-align:middle;line-height:39px;}
.pageController .t2 #current{
    line-height: 39px;
    background-color: #2b70bb;
    vertical-align: middle;
    border: 1px solid #2b70bb; 
    color: #fff;padding: 5px 8px;
    margin-right: 3px;
    margin-left: 3px;
    width: 39px;
}
.pageController .t1 span{
    /*padding-left:4px;
    padding-right:4px;*/
    width: 39px;
}
.pageController select{height:24px;vertical-align:middle;text-align:center;line-height:24px;
    display: none;
}
.pageController select option{vertical-align:middle;}


.m_f_fixed{
    position: fixed;
    bottom:0;
    left:0;
    background: #0074a7;
    color: #fff;
    z-index:9999;
    justify-content: center;
    width: 100%;
    display:none;

}
.m_f_fixed a{
    flex:1;
    font-size: 14px;
    color: #fff;
    display: block;
    text-align: center;
    padding:8px 0 0;
}
.m_f_fixed a img{
    width: 22px;
    display: block;
    margin:0 auto 0px;
}
#gotop{
    position: fixed;
    right: 0;
    bottom: 30px;
    cursor: pointer;
}
@media(max-width: 1199px){
    #gotop{
        display: none;
    }
}
@media(max-width:640px){
    .m_f_fixed{
        display: flex;
    }
}


/*客服1*/
.client-2 {
    position: fixed;
    right: -170px;
    top: 50%;
    z-index: 900;
}

.client-2 li a {
    text-decoration: none;
}
.client-2 li {
    margin-top: 1px;
    clear: both;
    height: 71px;
    position: relative;
    background: #222;
}

.client-2 li i {
    background: url(../images/fx.png) no-repeat;
    display: block;
    width: 30px;
    height: 27px;
    margin: 0px auto;
    text-align: center;
}

.client-2 li p {
    height: 20px;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.client-2 .my-kefu-qq i {
    background-position: 4px 5px;
}

.client-2 .my-kefu-tel i {
    background-position: 0 -21px;
}

.client-2 .my-kefu-liuyan i {
    background-position: 4px -53px;
}

.client-2 .my-kefu-weixin i {
    background-position: -34px 4px;
}

.client-2 .my-kefu-weibo i {
    background-position: -30px -22px;
}

.client-2 .my-kefu-ftop {
    display: none;
}

.client-2 .my-kefu-ftop i {
    width: 33px;
    height: 35px;
    background-position: -27px -51px;
}

.client-2 .my-kefu-left {
    float: left;
    width: 77px;
    height: 47px;
    position: relative;
}

.client-2 .my-kefu-tel-right {
    font-size: 16px;
    color: #fff;
    float: left;
    height: 24px;
    line-height: 22px;
    padding: 0 15px;
    border-left: 1px solid #fff;
    margin-top: 14px;
}

.client-2 .my-kefu-right {
    width: 20px;
}

.client-2 .my-kefu-tel-main {
    background: #222;
    color: #fff;
    height: 56px;
    width: 247px;
    padding:9px 0 6px;
    float: left;
}

.client-2 .my-kefu-main {
    background: #222;
    width: 97px;
    height: 56px;
    position: relative;
    padding:9px 0 6px;
    float: left;
}

.client-2 .my-kefu-weixin-pic {
    position: absolute;
    left: -140px;
    top: -24px;
    display: none;
    z-index: 333;
}

.my-kefu-weixin-pic img {
    width: 140px;
    height: 140px;
}

@media(max-width: 1199px){
    .client-2{
        display: none;
    }
}


/* 右侧浮窗 客服2 */

#c-right-fixed {
    display: none;
    position: fixed;
    top: 50%;
    right: 5px;
    z-index: 905;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#c-right-fixed a {
    position: relative;
    right: 0;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    width: 60px;
    height: 60px;
    text-align: center;
    color: #777;
    background: #fff;
}

#c-right-fixed a:last-child {
    margin-bottom: 0;
}

#c-right-fixed a:nth-child(3) {
    z-index: 9;
}

#c-right-fixed .c-wrap {
    border: 1px solid #fff;
    padding: 11px 0;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    transition: all .5s;
    position: relative;
    z-index:9;
}

#c-right-fixed .c-wrap img {
    height: 28px;
}

#c-right-fixed .c-wrap img:nth-child(2),
#c-right-fixed a:hover .c-wrap img:nth-child(1) {
    display: none;
}

#c-right-fixed a:hover .c-wrap img:nth-child(2) {
    display: inline-block;
}

#c-right-fixed .c-title {
    padding-top: 5px;
    font-size: 12px;
    line-height: 1;
}

#c-right-fixed a:last-child .c-title {
    font-family: "Arial";
    font-weight: bold;
}

#c-right-fixed .c-text {
    flex: 0 0 auto;
    width: 170px;
    font-weight: bold;
    font-size: 20px;
    line-height: 40px;
    border-left: 1px solid #fff;
    color: #fff;
    transition: all .5s;
}

#c-right-fixed .c-img {
    position: absolute;
    right: -300px;
    top: -1px;
    z-index: -1;
    padding: 5px;
    width: 148px;
    border: 1px solid #eff1f5;
    background: #fff;
    transition: .5s;
    box-shadow: 0 0 50px rgba(0, 0, 0, .1);
    z-index:8;
}

#c-right-fixed .c-img::before {
    content: "";
    position: absolute;
    top: 34px;
    right: -8px;
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

#c-right-fixed .c-img img {
    width: 100%;
}

#c-right-fixed .c-img .c-text2 {
    padding: 5px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #777;
}

#c-right-fixed a .c-box {
    position: absolute;
    top: 0;
    left: 0;
    padding: 11px 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    transition: all .5s;
    overflow: hidden;
}

#c-right-fixed a:hover .c-wrap {
    color: #fff;
    border-color: #ffaf04;
    background: #ffaf04;
}

#c-right-fixed a:last-child .c-wrap {
    color: #fff;
    border-color: #ffaf04;
    background: #ffaf04;
}

#c-right-fixed a:first-child:hover .c-box {
    width: 250px;
    height: 60px;
    -webkit-transform: translateX(-180px);
    transform: translateX(-180px);
    overflow: none;
    background: #ffaf04;
}

#c-right-fixed a:hover .c-img {
    right: 84px;
}


@media(max-width: 1259px){
    #c-right-fixed{
        display: none;
    }
}


/*客服3*/
.Fast_contact {
    height: 265px;
    position: fixed;
    right: 0;
    top: 50%;
    margin-top: -132.5px;
    z-index: 97
}

.Fast_contact ul li.onlineservice_li {
    width: 48px;
    height: 48px;
    position: relative;
    text-align: center;
    margin-bottom: 5px;
    background-color: #d9d9d9;
}

.Fast_contact ul > li.onlineservice_li > a {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-top: 10px;
}

.Fast_contact ul > li:hover .onlineservice_tips {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}

.onlineService_qq {
    background-image: url("../images/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

.onlineService_form {
    background-image: url("../images/fastForm.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

.Fast_contact ul > li.onlineservice_li > a.onlineService_tel {
    width: 30px;
    height: 30px;
    background-image: url("../images/fastPhone.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

.onlineService_whatsApp {
    background-image: url("../images/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -139px;
}

.onlineService_email {
    background-image: url("../images/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -111px;
}

.onlineService_skype {
    background-image: url("../images/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -28px;
}

.onlineService_wechat {
    background-image: url("../images/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -266px;
}

.for_wechat span {
    display: block;
    text-align: center;
}

.onlineservice_tips {
    padding: 5px 8px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: absolute;
    right: 58px;
    top: 6px;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transition: all .4s;
    transition: all .4s;
}

.onlineservice_tips li {
    width: auto;
    height: auto;
    white-space: nowrap;
}

.onlineservice_tips li a {
    display: block;
    min-height: 22px;
    text-align: center;
    line-height: 22px;
    color: #737578;
    font-size: 15px;
}

.onlineservice_tips li a.for_wechat {
    height: auto;
}

.onlineservice_tips li a.for_wechat img {
    max-width: 240px;
}

.onlineservice_tips li a:hover {
    text-decoration: underline;
}

.onlineservice_tips:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #ccc;
    border-color: transparent #ccc #ccc transparent;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: -6px;
    top: 10px;
    background-color: #fff;
}
@media(max-width:1220px){
    .Fast_contact{
        display:none;
}