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

}
.wrap{
    width: 90%;
    max-width: 1700px;
    margin: 0 auto;
}
.head .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    max-width: 1700px;
}
.logo{
/*    width: 30%;*/
}
.head_r{
    max-width: 80%;
    display: flex;
    align-items:center;
    justify-content: space-between;
}
.h_lang{
    position: relative; 
    cursor: pointer;
    /*display: none;*/
    margin-left: 20px;
}
.h_lang_img{
    width: 115px;
    height: 35px;
    background:#ebf0f4;
    border-radius: 4px;
    display: flex;
/*    justify-content: center;*/
    align-items:center;
    font-size:16px;
    color: #333333;
    padding:0 12px;
    position: relative;
}
.h_lang_img img{
    max-width: 16px;
}
.h_lang_img span{
    margin-left: 8px;
}   
.h_lang_img:after{
    content:'';
    position: absolute;
    right:12px;
    top:50%;
    width: 11px;
    height: 7px;
    background:url(../images/down_btn.png) no-repeat center;
    margin-top:-3.5px;
}
.h_lang_a{
    position: absolute;
    top:35px;
    left:0%;
    width: 100%;
/*    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:#1a81c5;
    color: #fff;
}
.nav{
    display: flex;
}
.nav li{
    position: relative;
    margin-right: 52px;
    transition:0.5s;
}
.nav li:last-child{
    margin-right: 0;
}
.nav li a{
    display: block;
    font-size: 20px;
    color: #1a1a1a;
    text-align: center;
    line-height: 90px;
}
.nav li a.a2 i{
    width: 15px;
    display: inline-block;
    margin-right: 5px;
}
.nav li:hover a.a1{
    color: #1a81c5;
}
.nav li .b_nav{
    display: none;
    position: absolute;
    top:90px;
    left:-25%;
    z-index: 999;
    background-color: #fff;
    width: 150%;
    box-shadow: 0 0 10px #eee;
}
.nav li .b_nav a{
    font-size: 14px;
    color: #666;  
    line-height: 2em;  
}

#index_banner{

}
#index_banner .img{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    z-index: -1;
}
#index_banner video{
    display: block;
    object-fit:fill;
    width: 100%;
}
.banner_text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    color: #fff;
    background: rgba(0,0,0,.5);
}
.banner_text .txt{
    max-width: 835px;
    width: 55%;
    padding-left: 92px;
}
.banner_text h2{
    font-size:60px;
    font-family: "puhui85";
    line-height: 1.2;   
}
.banner_text p{
    font-size: 21px;
    line-height: 1.6;
    margin-top: 25px;
}
.banner_text a{
    margin-top:65px;
}
a.more1{
    display: flex;
    width: 200px;
    height: 52px;
    justify-content: center;
    align-items:center;
    border:1px solid #fff;
    border-radius: 6px;
}
a.more1 font{
    font-size:18px;
    color: #ffffff;
}
a.more1 i{
    margin-left: 27px;
    width: 39px;
    height: 14px;
    background:url(../images/more1.png) no-repeat center;
}
a.more1:hover{
    background:#1a81c5;
    border:1px solid #1a81c5;
}
.index_banner_pagination{
    position: absolute;
    bottom:60px;
    left:0;
    width: 100%;
}
.index_banner_pagination_cont{
    margin-left: 92px; 
    position: relative;  
    width: 175px;
    height: 4px; 
}
.index_banner_pagination_cont:after{
    content:'';
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;
    height: 1px;
    background:#9c9f9f;
    z-index: 9;
}
.index_banner_pagination_cont .swiper-pagination-progressbar{
    width: 100%;
    height: 100%;
    background:none;
}
.index_banner_pagination_cont .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background:#2386c7;
}

@media(max-width: 1670px){
    .nav li{
        margin-right: 40px;
    }
    .nav li a{
        font-size:18px;
    }
    .h_lang_img{
        width: 100px;
    }
    .banner_text .txt{
        padding-left:60px;
    }
    .banner_text h2{
        font-size:42px;
    }
    .banner_text p{
        font-size: 16px;
        margin-top: 20px;
    }
    .banner_text a{
        margin-top: 50px;
    }
    a.more1{
        width: 150px;
        height: 46px;
    }
    a.more1 font{
        font-size: 15px;
    }
    a.more1 i{
        width:30px;
        margin-left: 20px;
        background-size:30px;
    }
    a.more1:hover i{
        background-size:30px;
    }
    .index_banner_pagination{
        bottom:45px;
    }
    .index_banner_pagination_cont{
        margin-left:60px;
    }
}
@media(max-width: 1440px){
    .nav li{
        margin-right: 30px;
    }
    .nav li a{
        font-size:17px;
    }   
    .h_lang_img{
        width:90px;
        font-size:14px;
    }
    .h_lang_img span{
        margin-left:5px;
    }
}
@media(max-width: 1280px){
    .head .wrap{
        height:75px;
    }
    .logo img{
        max-height:60px;
    }
    .nav li{
        margin-right: 25px;
    }
    .nav li a{
        font-size:16px;
        line-height:75px;
    }
    .nav li .b_nav{
        top:75px;
    }
    .h_lang{
        /*margin: 0 20px 0 30px;*/
    }
    .banner_text h2{
        font-size:32px;
    }
    .banner_text .txt p{
        font-size:15px;
    }
    a.more1{
        width: 135px;
        height: 42px;
    }  
    a.more1 font{
        font-size: 14px;
    }
    a.more1 i{
        margin-left:15px;
    }
    .banner_text .txt{
        padding-left:40px;
    }
    .index_banner_pagination_cont{
        margin-left:40px;
    }
}
@media(max-width: 1199px){
    .nav li{
        margin-right: 20px;
    }
}
@media(max-width: 1120px){
    .nav li{
        margin-right: 20px;
    }
    .nav li a{
        font-size:16px;
    }
/*}*/
/*@media(max-width: 1020px){*/
    .wrap{
        width: 94%;
    } 
    .nav,.h_lang{
        display: none;
    }  
    .menu-button{
        display: block;
    } 
    .banner_text .txt{
        padding-left:0px;
    }
    .index_banner_pagination{
        bottom:20px;
    }
    .index_banner_pagination_cont{
        margin-left:0px;
    }
}
@media(max-width: 991px){
 
}
@media(max-width: 820px){
    .banner_text .txt h2{
        font-size:28px;
    }
    .banner_text .txt p{
        font-size:14px;
    }
    a.more1 {
        width: 110px;
        height: 38px;
    }
    a.more1 font{
        font-size:13px;
    }
    a.more1 i {
        width: 22px;
        background-size: 22px;
        margin-left:12px;
    }
    .banner_text a {
        margin-top: 25px;
    }
}
@media(max-width: 640px){
    .head .wrap{
        height:60px;
    }
    .logo img{
        max-height: 45px;
    }
    .h_lang{
        line-height: 60px;
    }
    .h_lang_a{
        top:60px;
    }
    .menu-button{
        top:25px;
    }
    .banner_text{
        /*margin-bottom:25px;*/
        /*position:relative;*/
    }
    .banner_text .txt {
        margin-bottom: 20px;
        width:100%;
        text-align:center;
    }
    .banner_text .txt h2{
        font-size:20px;
    }
    .banner_text .txt p{
        font-size:13px;
        margin-top:8px;
    }
    .banner_text a {
        margin:10px auto 0;
        display:none;
    }
    .index_banner_pagination{
        display:none;
    }
}

/*搜索*/
.show{
    display: block!important;
}
.search{
    height: 100%;
    margin:0 0px 0 80px;
}
.ss{
    cursor: pointer;
}
.h_search{
    position: fixed;
    left: 0;
    top: 90px;
    width: 100%;
    height: 160px;
    border-top: 1px solid #dfdede;
    z-index: 99;
    background: #fff;
    display: none;
    transition: top 0.36s;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
}
.h_search_c{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#formsearch{
    width: 690px;
    padding: 8px;
    border-bottom: 1px solid #dfdede;
    display: flex;
    align-items: center;
}
#keyword{
    outline: none;
    border:none;
    width: calc(100% - 30px);
    height: 26px;
    font-size: 16px;
    color: #333;
    line-height: 20px;
    padding: 3px 0;
    padding-right: 12px;
}
#s_btn{
    width: 50px;
    height: 40px;
    background: url(../images/ss.png) no-repeat center #fff;
    font-size:16px;
    color: #1a81c5;
    line-height: 40px;
    border:none;
    outline: none;
    cursor: pointer;
    border-radius: 0;
}
.search:hover #formsearch{
    display: flex;
}
.search_ts{
    position: absolute;
    top:42px;
    left:0;
    width: 100%;
    background: #1a81c5;
    border: 1px solid #dbdbdb;
    display: none;
    z-index: 999;
}
.search_ts ul{
    color: #333333;
    display: block;
    outline: none;
    cursor: default;
    max-height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #1a81c51a81c5;    
}
.search_ts ul li a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding:0 10px;
    line-height: 1.2;
    height: 30px;
    font-size:12px;
    color: #333;
    cursor: pointer;
}
.search_ts ul li a:hover{
    background: #fafafa;
}
.tag_total{
    font-size: 20px;
    color: #333;
}
@media(max-width:1600px){
    .search{
        margin:0 0px 0 50px;
    }
}
@media(max-width:1440px){
    .search{
        margin:0 0px 0 40px;
    }
}
@media(max-width:1280px){
    .h_search{
        top:75px;
    }
    #keyword{
        font-size:14px;
    }
    #s_btn{
        font-size:12px;
    }
}
@media(max-width:1199px){
    .search{
        margin:0 0px 0 20px;
    }
    #formsearch{
        padding:3px 8px;
    }
    .ss img{
        width:16px;
    }
}
@media(max-width:1099px){
    .search{
        margin:0 0px 0 0;
    }
    #s_btn{
        font-size:12px;
    }
}
@media(max-width:767px){
    .h_search{
        height: auto;
        padding:15px 0;
    }
    .h_search_c {
        position: relative;
        top: 0%;
        left: 0%;
        transform: translate(0%, 0%);
        width: 100%;
    }
    #formsearch {
        width: 88%;
        margin: 0 auto;
    }
    #s_btn{
        line-height: 32px;
        height: 32px;
    }
}
@media(max-width:640px){
    .h_search{
        top:60px;
    }
}


.index_product{
    padding:60px 0 98px;
}
.index_product_top{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    margin-bottom: 55px;
}
.index_t1{

}
.index_t1 h2{
    line-height: 1;
}
.index_t1 h2 span{
    display: inline-block;
    width: 90px;
    height: 27px;
    line-height: 27px;
    border-radius: 4px;
    background:#1a81c5;
    text-align: center;
    font-size:16px;
    color: #fff;
}
.index_t1 p{
    font-size:48px;
    color: #333333;  
    font-family: "puhui85";  
    line-height: 1.2;
    margin-top:18px;
}
.index_t1 p span{
    color: #1a81c5;
    font-family: "puhui85";
}
.index_sort{
    display: flex;
    flex-wrap: wrap;
    align-items:flex-end;
}
.index_sort li{
    margin-right: 48px;
    position: relative;
}
.index_sort li:after{
    content:'';
    position: absolute;
    bottom:0;
    left:0;
    width: 0;
    height: 3px;
    background:#1a81c5;
    transition: all 0.4s ease-out;
}
.index_sort li:last-child{
    margin-right: 0;
}
.index_sort li:hover:after,.index_sort li.cur:after{
    width: 100%;
}
.index_sort li a{
    font-size:20px;
    color: #111111;
    display: flex;
    align-items: center;
}
.index_sort li:hover a,.index_sort li.cur a{
    color: #1a81c5;
}
.index_sort li i{
    display: inline-block;
    width: 18px;
    height: 16px;
    background:url(../images/index_p_ico.png) no-repeat center;
    margin-right: 7px;
}
.index_p_tabs{

}
.index_p_tab{
    display: none;
}
.product_list1{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 33px;
}
.product_list1 li{

}
.product_list1 li .img{
    border-radius: 10px;
    background: #969aa3;
    padding:20px 10%;
}
.product_list1 li h3{
    font-family: "puhui55";
}
.product_list1 li h3 a{
    display: flex;
    /*flex-wrap:wrap;*/
    align-items:center;
    justify-content: space-between;
    width: 100%;
    height: 103px;
    position: relative;
    font-size:18px;
    color:#111111;
}
.product_list1 li h3 a span{
    line-height: 1.4;
}
.product_list1 li:hover .img img{
    transform: scale(1.05);
}
.product_list1 li:hover h3 a{
    color: #1a81c5;
}
.product_list1 li h3 a:before{
    content:'';
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;
    height: 1px;
    background:#c1c8d1;
    z-index: 1;
}
.product_list1 li h3 a:after{
    content:'';
    position: absolute;
    left:0;
    bottom:0;
    width: 0%;
    height: 1px;
    background:#1a81c5;
    z-index: 2;
    transition: all 0.5s ease-out;
}
.product_list1 li:hover h3 a:after{
    width: 100%;
}
.product_list1 li h3 i{
    width: 38px;
    height: 14px;
    background:url(../images/more2.png) no-repeat center;    
}
.product_list1 li:hover h3 i{
    background:url(../images/more2_h.png) no-repeat center;     
}
@media(max-width: 1600px){
    .index_t1 p{
        font-size:36px;
    }
    .index_sort li{
        margin-right: 40px;
    }
    .index_sort li a{
        font-size:17px;
    }
    .product_list1 li .img{
        padding: 15px;
    }
    .product_list1 li h3 a{
        height:80px;
        font-size:16px;
    }
    .product_list1 li h3 i{
        width:30px;
    }
    .product_list1 li h3 i,.product_list1 li:hover h3 i{
        background-size:30px;
    }
}
@media(max-width: 1280px){
    .index_product{
        padding:60px 0 75px;
    }
    .index_t1 p{
        font-size:32px;
    }
}
@media(max-width: 1199px){
    .index_t1 p{
        font-size:28px;
    }
    .product_list1 li h3 a{
        height:70px;
        font-size:15px;
    }
}
@media(max-width: 991px){

}
@media(max-width: 820px){
    .index_product{
        padding:55px 0;
    }
    .index_t1 p{
        font-size:24px;
    }
    .index_sort li{
        margin-right:25px;
    }
    .product_list1 li h3 a{
        height:50px;
    }
    .product_list1 li h3 i{
        width:22px;
    }
    .product_list1 li h3 i,.product_list1 li:hover h3 i{
        background-size:22px;
    }
}
@media(max-width: 640px){
    .index_product{
        padding:40px 0;
    }
    .index_t1{
        width:100%;
    }
    .index_t1 h2 span{
        width:80px;
    }
    .index_t1 p{
        font-size:20px;
    }   
    .index_sort{
        width:100%;
        margin-top:25px;
    }
    .index_sort li{
        margin-right:20px;
    }
    .index_sort li a{
        font-size:15px;
    }
    .product_list1 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}
@media(max-width:460px){
    .product_list1 li .img{
        padding: 10px;
    }
}

.index_case{
    position: relative;
    overflow: hidden;
    padding-top:130px;
}
.index_case_imgs{

}
.index_case_imgs p{
/*    display: none;*/
    opacity: 0;
    transition: all 0.4s ease-out;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: -9;
}
.index_case_imgs p img{
    opacity: 0;
}
.index_case_imgs p.cur{
    opacity: 1;
    z-index: -1;
}
.index_t2 h2 span{
    background:#e4ae3a;
}
.index_t2 p{
    color: #fff;
}

.index_case_tab{
    display: none;
    padding:90px 0 182px;
    color: #fff;
}
.index_case_tab .p1{
    font-size:28px;
    line-height: 1;
}
.index_case_tab .p2{
    font-size:18px;
    margin:17px 0 60px;
    width: 50%;
    max-width: 723px;
    line-height: 1.8em;
    height: 3.6em;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.index_case_tab a{
    font-size:16px;
    color: #fff;
}
.index_case_tab a i{
    display: inline-block;
    width: 39px;
    height: 14px;
    background:url(../images/more1.png) no-repeat center;
    margin-left: 16px;
    transition: all 0.4s ease-out;
}
.index_case_tab a:hover{
    color: #e4ae3a;
}
.index_case_tab a:hover i{
    margin-left: 25px;
}
.index_case_li{
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    position: relative;
}
.index_case_li:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 1px;
    background:rgba(255,255,255,.5);
}
.index_case_li p{
    width:calc(100% / 6);
    height: 105px;
    text-align: center;
    font-size:22px;
    color: #fff;
    position: relative;
    line-height: 1.4;
    display: flex;
    align-items:center;
    justify-content:center;
    cursor: pointer;
}
.index_case_li p.cur{
    color: #e4ae3a;
    font-family: "puhui85";
}
.index_case_li p.cur:before{
    content:'';
    position: absolute;
    top:-1.5px;
    left:0;
    width: 100%;
    height: 4px;
    background:#e4ae3a;
}
@media(max-width: 1600px){
    .index_case{
        padding-top:110px;
    }
    .index_case_tab{
        padding:70px 0 150px;
    }
    .index_case_tab .p2{
        font-size:15px;
    }
    .index_case_tab a i{
        width:30px;
        background-size:30px;
    }
    .index_case_li p{
        font-size:20px;
        height:85px;
    }

}
@media(max-width: 1280px){
    .index_case{
        padding-top:90px;
    }   
    .index_case_tab{
        padding:70px 0 120px;
    }
}
@media(max-width: 1199px){
    .index_case_tab{
        padding:55px 0 90px;
    }
}
@media(max-width: 991px){

}
@media(max-width: 820px){
    .index_case{
        padding-top:75px;
    }
    .index_case_tab{
        padding:40px 0 60px;
    }
    .index_case_tab .p1{
        font-size:24px;
    }
    .index_case_tab .p2{
        margin:15px 0 50px;
        font-size:14px;
    }
    .index_case_tab a i {
        width:22px;
        background-size: 22px;
    }
}
@media(max-width: 640px){
    .index_case{
        padding-top:50px;
    }  
    .index_case_tab {
        padding: 30px 0 40px;
    }
    .index_case_tab .p1{
        font-size:22px;
    }
    .index_case_li_scroll{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .index_case_li_scroll::-webkit-scrollbar{
        height:2px;
    }
    .index_case_li{
        width:130%;
    }
    .index_case_li p{
        /*width:calc(100% / 3);*/
        height:50px;
        font-size:16px;
    }
}


.index_about{
    padding:110px 0 90px;
    background:url(../images/index_about_bg.png) no-repeat 590px 80px;
}
.index_about_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.index_about_l{
    width: 53.1%;
}
.index_t1 h2 font{
    font-size:22px;
    color: #333333;
    line-height: 27px;
    margin-left: 13px;
}
.index_about_l .text{
    font-size:18px;
    color: #333333;
    margin:45px 0 80px;
}
.index_about_l a{
    font-size:16px;
    color: #1a81c5;
    border:1px solid #1a81c5;
}
.index_about_l a i{
    background:url(../images/more2_h.png) no-repeat center;
}
.index_about_l a:hover{
    color: #fff;
    border:1px solid #fff;
}
.index_about_l a:hover i{
    background:url(../images/more1.png) no-repeat center;
}
.index_about_r{
    width: 21%;
}
.index_about_r dl{
    display: flex;
    align-items:center;
    margin-bottom: 65px;
}
.index_about_r dl:last-child{
    margin-right: 0;
}
.index_about_r dl dt{
    width: 92px;
}
.index_about_r dl dd{
    width: calc(100% - 92px);
    line-height: 1;
    padding-left: 28px;
}
.index_about_r dl dd .p1 span{
    font-size:60px;
    color: #1a81c5;
    font-family: "puhui85";
}
.index_about_r dl dd .p1 sub{
    font-size:18px;
    color: #333333;
    margin-left: 5px;
}
.index_about_r dl dd .p2{
    font-size:20px;
    color: #333333;
    margin-top:10px;
    line-height: 1.6;
}

.index_hz{
    margin-top:90px;
}
.index_t3{
    position: relative;
}
.index_t3 h2{
    font-size:22px;
    color: #1a81c5;
    font-weight: bold;
    line-height: 1;
}
.index_t3:after{
    content:'';
    position: absolute;
    top:50%;
    left:122px;
    width: calc(100% - 240px);
    height: 1px;
    background:#c9cfd7;
}
.index_hz_scroll{
    margin-top:50px;
    position: relative;
}
.index_hz_arrow{
    position: absolute;
    top:-61px;
    right:0;
    display: flex;
    flex-wrap: wrap;
}
.index_hz_arrow .swiper-button-prev,.index_hz_arrow .swiper-button-next{
    position: relative;
    top:0;
    width: 43px;
    height: 43px;
    border:1px solid #dbdddf;
    border-radius: 50%;
}
.index_hz_arrow .swiper-button-prev{
    left:0;
    background:url(../images/left1.png) no-repeat center;
}
.index_hz_arrow .swiper-button-prev:hover{
    background:url(../images/right1_h.png) no-repeat center #1a81c5;
    transform: rotate(-180deg);
    border:1px solid #1a81c5;
}
.index_hz_arrow .swiper-button-next{
    right:0;  
    background:url(../images/left1.png) no-repeat center;
    transform: rotate(-180deg);
    margin-left: 7px;
}
.index_hz_arrow .swiper-button-next:hover{
    background:url(../images/right1_h.png) no-repeat center #1a81c5;
    transform: rotate(-0deg);
    border:1px solid #1a81c5;
}
@media(max-width: 1600px){
    .index_t1 h2 font{
        font-size:20px;
    }
    .index_about_l .text{
        font-size:15px;
        margin: 30px 0 55px;
    }
    .index_about_r dl dt {
        width: 80px;
    }
    .index_about_r dl dd {
        width: calc(100% - 80px);
        padding-left: 25px;
    }
    .index_about_r dl dd .p1 span{
        font-size:46px;
    }
    .index_about_r dl dd .p1 sub{
        font-size:16px;
    }
    .index_about_r dl dd .p2{
        font-size:18px;
    }
    .index_hz {
        margin-top: 75px;
    }
    .index_about_l a i,.index_about_l a:hover i{
        background-size:30px;
    }
}
@media(max-width: 1280px){
    .index_about{
        padding:75px 0;
    }
    .index_t1 h2 font{
        font-size:18px;
    }
    .index_about_l .text{
        font-size:14px;
        margin: 20px 0 50px;
    }
    .index_about_r{
        width:30%;
    }
    .index_about_r dl dd .p1 span{
        font-size:42px;
    }
    .index_hz {
        margin-top: 55px;
    }
}
@media(max-width: 1199px){
    .index_about_r dl dd .p1 span{
        font-size:36px;
    }
}
@media(max-width: 991px){

}
@media(max-width: 820px){
    .index_t1 h2 font{
        font-size:16px;
    }
    .index_about_r dl dt {
        width: 65px;
    }
    .index_about_r dl dd {
        width: calc(100% - 65px);
        padding-left: 20px;
    }
    .index_about_r dl dd .p1 span{
        font-size:32px;
    }
    .index_about_r dl dd .p1 sub {
        font-size: 14px;
    }
    .index_about_r dl dd .p2 {
        font-size: 16px;
    }
    .index_about_l a{
        font-size:14px;
    }
    .index_about_l a i, .index_about_l a:hover i {
        background-size: 22px;
    }
}
@media(max-width: 640px){
    .index_about_l{
        width:100%;
    }
    .index_about_r{
        display:flex;
        width:100%;
        margin-top:30px;
    }
    .index_about_r dl{
        margin-bottom:0;
        margin-right:4%;
        width:48%;
    }
    .index_about_r dl:last-child{
        margin-right:0;
    }
    .index_about_r dl dt {
        width: 45px;
    }
    .index_about_r dl dd {
        width: calc(100% - 45px);
        padding-left: 15px;
    }
    .index_about_r dl dd .p1 span{
        font-size:26px;
    }
    .index_about_r dl dd .p2 {
        font-size: 14px;
        margin-top:2px;
    }
    .index_about_l .text {
        margin: 20px 0 20px;
    }
    .index_about_l a{
        font-size:13px;
    }
}


.index_news{
    padding:75px 0 88px;
    background:#ebf0f4;
}
.index_news_top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}
.index_news_c{

}
.index_news_tab{
    display: none;
}
.index_news_tab_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.index_news_tab_c:after{
    content:'';
    position: absolute;
    left:50%;
    margin-left: -0.5px;
    top:0;
    width: 1px;
    height: 100%;
    background:#ccd8e1;
}
.news_list1{
    width: 50%;
    padding-left: 54.5px;
}
.news_list1 li{
/*    width: 50%;*/
}
.news_list1 li:nth-child(1){
    display: none;
}
.news_list1 li:nth-child(3){
    padding:35px 0;
    margin:35px 0;
    border-top:1px solid #ccd8e1;
    border-bottom:1px solid #ccd8e1;
}
.news_list1 li a{
    display: flex;
    align-items:center;
    background:#fff;
}
.news_list1 li .img{
    width: 320px;
}
.news_list1 li:hover .img img,.news_list2 li:hover .img img{
    transform: scale(1.1);
}
.news_list1 li .text{
    width: calc(100% - 320px);
    padding:20px 38px;
}
.news_list1 li .text h3{
    font-size:22px;
    color:#333333;
    font-family: "puhui55";
    line-height: 1.6em;
    height: 3.2em;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news_list1 li .text p{
    display: none;
}
.news_list1 li .text font,.news_list2 li .text font{
    display: block;
    margin-top:25px;
    color: #666;
    line-height: 1.6;
}
.news_list1 li:hover .text h3,.news_list2 li:hover .text h3{
    color: #1a81c5;
}
.news_list2{
    width: 50%;
    padding-right: 54.5px;
}
.news_list2 li{
    height: 100%;
}
.news_list2 li a{
    display: block;
    height: 100%;
    background:#fff;
}
.news_list2 li a .img{
    width: 100%;
}
.news_list2 li .text{
    width: 100%;
    padding:40px 28px;
}
.news_list2 li .text h3{
    font-size:24px;
    color: #333333;
    font-family: "puhui55";
    line-height: 1.6;
} 
.news_list2 li .text p{
    display: block;
    font-size:16px;
    color: #666666;
    margin-top:16px;
    white-space: nowrap; 
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.6;
}
.news_list2 li .text font{
    margin-top:35px;
}
.news_list1 li .img{
    width: 280px;
}
.news_list1 li .text {
    width: calc(100% - 280px);
    padding: 20px 25px;
}
@media(max-width: 1600px){
    .news_list2 li .text{
        padding:35px 25px;
    }
    .news_list2 li .text h3{
        font-size:20px;
    }
    .news_list2 li .text p{
        font-size:15px;
    }
    .news_list1 li .text h3{
        font-size:18px;
    }
    .news_list1 li .text font, .news_list2 li .text font{
        font-size:15px;
        margin-top:20px;
    }
    .news_list1 li:nth-child(3){
        padding:25px 0;
        margin:25px 0;
    }
}
@media(max-width: 1280px){
    .news_list2{
        padding-right:34.5px;
    }
    .news_list2 li .text {
        padding: 25px 20px;
    }
    .news_list2 li .text h3 {
        font-size: 18px;
    }    
    .news_list1{
        padding-left:34.5px;
    }
    .news_list1 li .img{
        width:240px;
    }
    .news_list1 li .text{
        width:calc(100% - 240px);
        padding: 15px 25px;
    }
    .news_list1 li .text h3 {
        font-size: 16px;
    }
}
@media(max-width: 1199px){

}
@media(max-width: 991px){
    .news_list2{
        padding-right:24.5px;
    }
    .news_list1{
        padding-left:24.5px;
    }
}
@media(max-width: 820px){
    .index_news{
        padding:55px 0;
    }
    .index_news_top{
        margin-bottom:35px;
    }
    .index_news_tab_c:after{
        display:none;
    }
    .news_list2{
        display:none;
    }
    .news_list1{
        width:100%;
        padding-left:0;
    }
    .news_list1 li:nth-child(1){
        display:block;
        padding-bottom:20px;
        margin-bottom:20px;
        border-bottom: 1px solid #ccd8e1;
    }
    .news_list1 li:nth-child(3) {
        padding: 20px 0;
        margin: 20px 0;
    }
}
@media(max-width: 640px){
    .index_news{
        padding:40px 0;
    }
    .news_list1 li a{
        flex-wrap:wrap;
    }
    .news_list1 li .img,.news_list1 li .text{
        width:100%;
    }
    .news_list1 li .text{
        padding:20px;
    }
}


.index_bottom{
    background:url(../images/bottom.jpg) no-repeat center;
    background-size: cover;
    padding:155px 0 112px;
    color: #fff;
}
.index_bottom h2{
    font-size:56px;
    line-height: 1;
}
.index_bottom p{
    font-size:20px;
    line-height: 1.6;
    margin:22px 0 60px;
}

/*页面底部*/
footer{
    background:#1a1e23;
}
.f_top{
    background:url(../images/line1.jpg) repeat-x bottom;
    padding:55px 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.f_logo{

}
.f_logo img{
    max-height: 68px;
}
.f_link{
    position: relative;
}
.f_link p{
    width: 267px;
    height: 43px;
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    justify-content: space-between; 
    font-size:15px;
    color: rgba(255,255,255,.8);
    background:#484b4f; 
    border-radius: 4px;
    padding:0 23px; 
    cursor: pointer; 
}
.f_link_c{
    position: absolute;
    top:43px;
    left:0;
    display: none;
    z-index: 99;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}
.f_link_c a{
    display: block;
    background:#fff;
    font-size:15px;
    padding:5px 10px;
}
.f_link:hover .f_link_c{
    display: block;
}
.f_link_c a:hover{
    background:#1a81c5;
    color: #fff;
}
.foot{
    display: flex;
    justify-content: space-between;
    padding:65px 0 130px;
}
.foot_l{
    width: 35%;
}

.f_nav{
    display: flex;
    justify-content: space-between;
    width: 63%;
}
.f_nav dl{
    color: #ffffff;
}
.f_nav dl dt{
    font-size:18px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.f_nav dl dd{

}
.f_nav dl dd a{
    display: block;
    font-size:16px;
    color: #fff;
    opacity: .6;
    font-family: "puhui45";
    margin-bottom: 8px;
}
.f_nav dl dd a:last-child{
    margin-bottom: 0;
}
.f_nav dl dd a:hover{
    color: #1a81c5;
    opacity: 1;
}
.f_contact{
    width: 23.5%;
}
.f_contact .txt{
    font-size:30px;
    color: #ffffff;
    font-family: "Arial";
    margin-bottom: 20px;
    line-height: 1.2;
}
.f_contact .txt2{
    font-size:16px;
    color: #ffffff;
    opacity: .8;
    font-family: "Arial";
}
.f_contact .txt p,.f_contact .txt2 p{
    font-family: "Arial";    
}
.f_share{
    display: flex;
    flex-wrap: wrap;
    margin-top:45px;
}
.f_share li{
    position: relative;
    cursor: pointer;
    margin-right: 20px;
}
.f_share li:last-child{
    margin-right: 0;
}
.f_code{
    position: absolute;
    width:110px;
    height: 110px;
    background:#fff;
    left:50%;
    margin-left: -55px;
    display: none;
    top:-120px;
}
.f_share li:hover .f_code{
    display: block;
}
.copyright {
    padding:30px 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size:16px;
    color: rgba(255,255,255,.6);
    background:url(../images/line1.jpg) repeat-x top;
}
.copyright a{
    font-size:16px;
    color: rgba(255,255,255,.6); 
}
.copyright a:hover{
    color: #fff;
}
@media(max-width: 1600px){
    .index_bottom{
        padding:120px 0 110px;
    }
    .index_bottom h2{
        font-size:42px;
    }
    .index_bottom p {
        font-size: 16px;
        margin: 20px 0 50px;
    }
    .foot{
        padding:50px 0 90px;
    }
    .f_contact .txt2,.f_nav dl dd a,.copyright,.copyright a{
        font-size:15px;
    }
    .f_contact{
        width:30%;
    }
    .copyright {
        padding: 20px 0;
    }
}
@media(max-width: 1280px){
    .index_bottom{
        padding:90px 0;
    }
    .index_bottom h2{
        font-size:36px;
    }
    .index_bottom p {
        font-size: 15px;
        margin: 20px 0 40px;
    }
}
@media(max-width: 1199px){
    .index_bottom h2{
        font-size:32px;
    }
    .foot {
        padding: 35px 0 55px;
    }
}
@media(max-width: 991px){

}
@media(max-width: 820px){
    .index_bottom{
        padding:55px 0;
    }
    .index_bottom h2{
        font-size:28px;
    }
    .foot {
        padding: 25px 0 40px;
    }
    .f_contact .txt2, .f_nav dl dd a, .copyright, .copyright a{
        font-size:14px;
    }
}
@media(max-width: 640px){
    footer{
        margin-bottom:56px;
    } 
    .index_bottom{
        padding:40px 0;
    }
    .index_bottom h2{
        font-size:24px;
    }
    .index_bottom p {
        font-size: 14px;
        margin: 15px 0 30px;
    }
    .f_top{
        padding:40px 0 20px;
    }
    .f_logo img{
        max-height:45px;
    }
    .f_link{
        display:none;
    }
    .foot{
        padding: 25px 0;
    }
    .f_nav{
        display: none;
    }
    .f_contact{
        width:100%;
    }
    .f_share{
        display:none;
    }
    .copyright {
        padding: 12px 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_body{
    position: relative;
}
.n_body_bg{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    z-index: -1;
}
.sitemp {
    padding:30px 0 0;
}
.sitemp .site,.sitemp .site a{
    font-size:16px;
    color: #7a7a7a;
}
.n_banner {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.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;
}


@media(max-width: 1600px){
    .n_banner_text h2{
        font-size:52px;
    }
}
@media(max-width: 1280px){
    .n_banner_text h2{
        font-size:46px;
    }
}
@media(max-width: 1024px){
    .n_banner_text h2{
        font-size:42px;
    }    
}
@media(max-width: 991px){

}
@media(max-width: 820px){
    .n_banner_text h2{
        font-size:36px;
        padding-top:0;
    }    
}
@media(max-width: 767px){
    .n_banner_text h2{
        font-size:26px;
    }    
    .h80{
        height:60px;
    }
    .sitemp{
        padding:20px 0 0;
    }
}


/*关于我们*/
.dingwei{
    position: absolute;
    top:-80px;
    left:0;
    width: 100%;
}
.about1{
    padding:100px 0 ;
    position: relative;
/*    background:url(../images/about1_bg.jpg) no-repeat center;
    background-size: cover;*/
}
.about1_c{
/*    padding-top:100px;*/
}
.about1 .wrap .imgs{
    position: relative;
    width: 45%;
    float: left;
    margin-left:-5%;
}
.about1 .wrap .imgs p img{
    /*border-radius: 10px;   */
}
.about1 .wrap .imgs .img2{
    position: absolute;
    left:-10%;
    bottom: 48px;
    display: none;
}
.about1 .wrap .text{
    width: 48%;
    float: right;
}
.about1 .wrap .text h2{
    font-size:36px;
    color: #1a81c5;
    line-height: 1;
}
.about1 .wrap .text .txt{
    font-size:18px;
    color: #4c4c4c;
    line-height: 1.8;
    margin:16px 0 90px;
}
.about_num2{
    display: flex;
    flex-wrap: wrap;
/*    justify-content: space-between;*/
}
.about_num2 dl{
    width: 30%;
    margin-right: 5%;
}
.about_num2 dl:last-child{
    margin-right: 0;
}
.about_num2 dl dt{
    font-size:50px;
    color: #1a81c5;
    line-height: 1;
}
.about_num2 dl dd{
    font-size:18px;
    color: #333333;
    margin-top:5px;
}
.about2{
    padding:60px 0 95px;
    position: relative;
    overflow: hidden;
/*    background:url(../images/about2_bg.png) no-repeat bottom center;*/
/*    background-size: contain;*/
}
.n_index_t1{
/*    text-align: center;*/
}
.n_index_t1 h2{
    font-size:42px;
    color: #333;
    line-height: 1;
}
.n_index_t1 p{
    margin-top:10px;
    font-size:20px;
    color: #666666;
    line-height: 1.2;
    font-family: "puhui45";
    text-transform: capitalize;
}
.about2_img{
    position: absolute;
    left:0;
    bottom:0;
    z-index: -1;
    width: 100%;
}
.about2 .text .n_index_t1{
    margin-bottom: 62px;
}
.about2 .text{
    float: left;
    width: 41.5%;
}
.about2 .text dl{
    margin-bottom: 58px;
}
.about2 .text dl:last-child{
    margin-bottom: 0;
}
.about2 .text dl dt{
    font-size:30px;
    color: #1a81c5;
    font-family: "puhui85";
    line-height: 1;
    margin-bottom: 18px;
}
.about2 .text dl dd{
    font-size:16px;
    color: #666666;
    line-height: 1.8;
}
.about2 .text:nth-child(2){
    float: right;
}

.about3{
    position: relative;
    padding:120px 0;
    background:#f1f3f5;
}
.fzlc{
    position: relative;
    margin-top:58px;
}
.fzlc .swiper-button-prev,.fzlc .swiper-button-next{
    width: 58px;
    height: 58px;
    background:url(../images/right2.png) no-repeat center;
    top:-115px;
    margin-top:0;
    border:1px solid #1a81c5;
    border-radius: 50%;
}
.fzlc .swiper-button-prev{
    left:calc(100% - 145px);
    transform: rotate(-180deg);
}
.fzlc .swiper-button-prev:hover{
    background:url(../images/left2.png) no-repeat center #1a81c5;   
    transform: rotate(-0deg); 
}
.fzlc .swiper-button-next{

}
.fzlc .swiper-button-next:hover{
    background:url(../images/left2.png) no-repeat center #1a81c5;  
    transform: rotate(-180deg);  
}
#fzlc{
    padding:10px;
}
#fzlc .swiper-slide{
    background: #fff;
    background-size: contain;
/*    box-shadow: 0 0 10px #ccc;*/
    height: 500px;
    padding:20px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
#fzlc .swiper-slide .img{
    
}
#fzlc .swiper-slide .text{
    
}
#fzlc .swiper-slide .text .p2{
    font-size: 24px;
    color: #1a81c5;
    line-height: 1.6;
    margin:20px 0 10px;
}
#fzlc .swiper-slide .text .txt2{
    font-size: 15px;
    color: #333;
    line-height: 1.6;    
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#fzlc .swiper-slide .p1{
    margin-bottom: 200px;
}
#fzlc .swiper-slide .p1 span{
    padding:0 26px;
    line-height: 55px;
    display: inline-block;
    border:1px solid #1a81c5;
    font-size:30px;
    color: #131313;
    border-radius: 35px;
}
#fzlc .swiper-slide:hover .p1 span{
    color: #1a81c5;
}
#fzlc .swiper-slide .txt{
    font-size:20px;
    color: #999999;
    line-height: 1.4;
    position: absolute;
    bottom:0;
    left:45px;
    padding:0 0px 75px;
    max-width: 262px
}
#fzlc .swiper-slide:after{
    content:'';
    position: absolute;
    bottom:0;
    left:50%;
    width: 0%;
    height: 8px;
    background:#1a81c5;
    transition: all 0.4s ease-out;
}
#fzlc .swiper-slide:hover:after{
    left:0;
    width: 100%;
}

.about4,.about5{
    position: relative;
    padding:140px 0 125px;
}
.about4 .n_index_t1,.about5 .n_index_t1{
    text-align: center;
}
#ryzz,.gshj{
    margin-top:48px;
    padding-bottom: 10px;
}
#ryzz .swiper-slide .ryzz_cont{
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#ryzz .img img{
    width: 100%;
}
#ryzz .text{
  padding: 25px 30px;
  height: 140px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items:center;
}
#ryzz h3.c-title{
    position: relative;
    z-index: 2;
/*    margin-top: 15px;*/
    font-size: 18px;
    line-height: 28px;
    color: #333;
    font-family: "puhui55";
    text-align: center;
}
.about5{
    background:#f7f7f7;
}
.gshj{

}
#gshj{
    padding-bottom: 30px;    
}
#gshj .swiper-pagination{
    bottom:0;
}
#gshj .img{
    border-radius: 10px;
}
#gshj p{
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-top:10px;
}
@media(max-width: 1600px){
    .about1,.about3,.about4,.about5{
        padding:90px 0;
    }
    .n_index_t1 p{
        font-size:16px;
    }
    .about1 .wrap .text h2{
        font-size:30px;
    }
    .about1 .wrap .text .txt{
        font-size:14px;
        margin: 16px 0 55px;
    }
    .about_num2 dl dt{
        font-size:42px;
    }
    .about_num2 dl dd{
        font-size:15px;
    }
    .about2 {
        padding: 30px 0 90px;
    }
    .about2 .text{
        width:44%;
    }
    .about2 .text dl{
        margin-bottom:40px;
    }
    .about2 .text dl dt{
        font-size:24px;
    }
    .about2 .text dl dd{
        font-size:14px;
    }
    #fzlc .swiper-slide{
        height:420px;
        padding:15px;
    }
    #fzlc .swiper-slide:after{
        height:6px;
    }
    #fzlc .swiper-slide .text .p2{
        font-size:20px;
        margin:15px 0 5px;
    }
    #fzlc .swiper-slide .text .txt2{
        font-size:14px;
    }
    #fzlc .swiper-slide .p1{
        margin-bottom:150px;
    }
    #fzlc .swiper-slide .p1 span {
        padding: 0 20px;
        line-height: 45px;
        font-size: 24px;
        border-radius: 22.5px;
    }
    #fzlc .swiper-slide .txt{
        font-size:16px;
    }
    #ryzz .text{
        height:100px;
    }
    #ryzz h3.c-title{
        font-size:17px;
    }
    #gshj p{
        font-size:15px;
    }
}
@media(max-width: 1280px){
    .about1,.about3,.about4,.about5{
        padding:75px 0;
    } 
    .n_index_t1 p{
        font-size:15px;
    }
    .about1 .wrap .text h2{
        font-size:26px;
    }
    .about1 .wrap .text .txt{
        margin: 15px 0 40px;
    }
    .about_num2 dl dt{
        font-size:32px;
    }
    .about_num2 dl dd {
        font-size: 14px;
    }
    .about2 {
        padding: 30px 0 95px;
    }
    .about2 .text dl dt {
        font-size: 20px;
    }
    #fzlc .swiper-slide{
        /*height:360px;*/
        /*padding:30px 30px 0;*/
    }
    #fzlc .swiper-slide .p1{
        margin-bottom:100px;
    }
    #fzlc .swiper-slide .p1 span {
        font-size: 20px;
    }
    #fzlc .swiper-slide .txt{
        font-size:15px;
        left: 30px;
        padding: 0 0px 50px;
    }
    #ryzz .text{
        height:75px;
        padding:15px 15px;
    }
    #ryzz h3.c-title{
        font-size:15px;
    }
}
@media(max-width: 1199px){
    .about1 .wrap .imgs{
        margin-left:-2%;
    }
    .about1 .wrap .imgs .img2{
        width:160px;
        left:-5%;
    }  
    .fzlc .swiper-button-prev, .fzlc .swiper-button-next{
        width:50px;
        height:50px;
    }
    #gshj p{
        font-size:14px;
    }
}
@media(max-width: 1099px){
    #fzlc .swiper-slide{
        height:380px;
        /*padding:30px 30px 0;*/
    }    
}
@media(max-width: 991px){
    .about1 .wrap .imgs{
        width:48%;
    }

}
@media(max-width: 820px){
    .about1,.about3,.about4,.about5{
        padding:55px 0;
    }
    .about2 {
        padding: 20px 0 95px;
    }
    .about1 .wrap .imgs{
        margin-left:-1%;
    }
    .about1 .wrap .imgs .img2{
        width:160px;
        left:-3%;
    }
    .about1 .wrap .text h2 {
        font-size: 22px;
    }
    .about1 .wrap .text .txt {
        margin: 15px 0 30px;
    }
    .about_num2 dl dt {
        font-size: 28px;
    }
    .fzlc{
        margin-top:35px;
    }
    .fzlc .swiper-button-prev, .fzlc .swiper-button-next{
        width:40px;
        height:40px;
        top: -80px;
        background-size:18px;
    }
    .fzlc .swiper-button-prev {
        left: calc(100% - 110px);
    }
    #ryzz,.gshj{
        margin-top:30px;
    }
}
@media(max-width: 640px){
    .about1,.about3,.about4,.about5{
        padding:40px 0;
    } 
    .about1 .wrap .imgs{
        width:100%;
        margin-left:0;
    }
    .about1 .wrap .text{
        width:100%;
        margin-top:25px;
    }
    .about2 {
        padding: 20px 0 75px;
    }
    .about2 .text{
        width:100%;
    }
    .about2 .text .n_index_t1{
        margin-bottom:30px;
    }
    .about2 .text dl {
        margin-bottom: 25px;
    }
    .about2 .text dl dt{
        font-size:18px;
        margin-bottom:10px;
    }
    .about2 .text dl dd{
        font-size:13px;
    }
    .about2 .text:last-child{
        margin-top:25px;
    }
    .fzlc{
        margin-top:25px;
    }
    .fzlc .swiper-button-prev, .fzlc .swiper-button-next{
        width:36px;
        height:36px;
        top: -75px;
        background-size:15px;
    }
    .fzlc .swiper-button-prev {
        left: calc(100% - 95px);
    }
    #fzlc .swiper-slide{
        height:auto;
    }
}



/*新闻*/
.h_zw{
    height: 90px;
    width: 100%;
    display: none;
}
.n_news{
    padding:70px 0 110px;
}
.news_list{
    display: flex;
    flex-wrap: wrap;
}
.news_list li{
    width: 51.75%;
    padding-right: 3.5%;
    border-bottom: 1px solid #e0e0e0;
}
.news_list li:nth-child(2n){
    width: 48.25%;
    padding-right: 0;
}
.news_list li a{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:40px 0 44px;
}
.news_list li a .img{
    width: 56.5%;
    border-radius: 10px;
    float: left;
}
.news_list li a .text{
    float: right;
    width: 43.5%;
    padding:0 0 0 45px;
}
.news_list li a .text h3{
    font-size:22px;
    color: #333333;
    line-height: 1.3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news_list li a .text .txt{
    font-size:15px;
    color: #666666;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
    margin:15px 0 25px;
}
.news_list li a .text .news_more{
    display: flex;
    align-items: center;
    font-size:18px;
    color: #1a81c5;
}
.news_list li a .text .news_more i{
    display: block;
    width: 21px;
    height: 14px;
    background:url(../images/right2.png) no-repeat center;
    margin-left: 10px;
    transition: all 0.4s ease 0s;
}
.news_list li a:hover .img img{
    transform: scale(1.1);
}
.news_list li a:hover .text h3{
    color: #1a81c5;
}
.news_detail{
    max-width: 1300px;
    padding:70px 0;
}
.news_detail h1{
    font-size:28px;
    color: #333;
    font-weight: normal;
    line-height: 1.5;
    text-align: center;
}
.info_title{
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-bottom: 10px;
    border-bottom:1px dashed #dcdcdc;
    margin-bottom: 15px;
    margin-top:10px;
}
.news_detail .content{
    font-size:16px;
    margin-bottom: 20px;
}
.news_detail .content video{
    width: 50%;
    height: auto;
    margin:0 auto;
    display: block;
}
.news_list li a:hover .news_more i{
    margin-left: 20px;
}   

@media(max-width: 1600px){
    .n_news{
        padding: 55px 0 90px;
    }
    .news_list li a {
        padding: 30px 0;
    }
    .news_list li a .text h3{
        font-size:16px;
    }
    .news_list li a .text {
        padding: 0 0 0 30px;
    }
    .news_list li a .text .txt{
        font-size:14px;
        margin: 10px 0 15px;
    }
    .news_list li a .text .news_more{
        font-size:15px;
    }
    .news_detail h1{
        font-size:26px;
    }
    .news_detail .content{
        font-size:15px;
    }
}
@media(max-width: 1280px){
    .n_news{
        padding: 40px 0 75px;
    }   
    .news_detail h1{
        font-size:22px;
    } 
}
@media(max-width: 1099px){
    .h_zw{
        display: block;
        height:75px;
    }
}
@media(max-width: 991px){
    
}
@media(max-width: 820px){
    .n_news{
        padding: 35px 0 55px;
    }  
    .news_list li{
        width: 100%!important;
        padding-right: 0;
    }
    .news_list li a {
        padding: 20px 0;
    }  
    .news_detail{
        padding:50px 0;
    }
    .news_detail h1{
        font-size:18px;
    }
}
@media(max-width: 640px){
    .h_zw{
        height:60px;
    }
    .n_news {
        padding: 20px 0 40px;
    } 
    .news_list li a .img{
        width: 100%;
    }   
    .news_list li a .text{
        width: 100%;
        padding:20px 0 0;
    }
    .news_detail{
        padding:30px 0;
    }
    .news_detail h1{
        font-size:17px;
    }
    .info_title {
        padding-bottom: 8px;
        margin-bottom: 10px;
    }
}


/*应用领域*/
.n_case{
    padding:100px 0 120px;
}
.case_sort{
    display: flex;
    flex-wrap: wrap;
    margin:40px 0 65px;
}
.case_sort li{
    width: calc(16.66666666666667% - 50px);
    margin-right: 60px;
}
.case_sort li:last-child{
    margin-right: 0;
}
.case_sort li a{
    display: block;
    position: relative;
    cursor: pointer;
    background:#edeef0;
    border-radius: 10px;
    text-align: center;
    padding:27px 15px 15px;
}
.case_sort li .img{
    position: relative;
    width: 73px;
    height: 47px;
    margin:0 auto;
    transition:all 0s;
}
.case_sort li .img img{
    position: absolute;
    top:0;
    left:0;
    transition:all 0s;
}
.case_sort li p{
    font-size:18px;
    color: #666666;
    line-height: 1.5;
    margin-top:10px;
}
.case_sort li.cur a,.case_sort li:hover a{
    background:#1a81c5;
}
.case_sort li.cur .img img,.case_sort li:hover .img img{
    top:-47px;
}
.case_sort li.cur p,.case_sort li:hover p{
    color: #fff;
}
.case_intro{
    border-radius: 10px;
    padding:170px 104px;
    color: #fff;
}
.case_intro h2{
    font-size:40px;
    color: #fff;
    line-height: 1;
}
.case_intro .text{
    font-size:16px;
    color: #ffffff;
    font-family: "puhui45";
    line-height: 1.6;
    max-width: 480px;
    margin-top:20px;
}
.xg_yy{
    padding:78px 0 0;
}
.case_list{
    display: flex;
    flex-wrap: wrap;
    margin-top:35px;
}
.case_list2{
    margin-top:35px;    
}
.case_list li{
    width: 32%;
    margin-right: 2%;
    margin-bottom:35px;
    border-radius:  10px;
    border:1px solid #d2d6df;
}
.case_list li:nth-child(3n){
    margin-right: 0;
}
.case_list li .img{
    border-radius: 10px;
    display: block;
}
.case_list li .img img{
    width: 100%;
    display: block;
}
.case_list li .text{
    padding:45px 45px 35px;
/*    margin-top:-10px;*/
}
.case_list li .text h3 a{
    font-size:26px;
    color: #333333;
    font-family: "puhui65";
    line-height: 1;
}
.case_list li .text .txt{
    font-size: 16px;
    color: #666666;
    font-family: "puhui45";
    line-height: 1.6em;
    height: 4.8em;
    margin:15px 0 52px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.case_list li .text .index_btn1 .index_public_btn_text{
    color: #1a81c5;
}
.case_list li:hover .img img{
    transform: scale(1.1);
}
.case_list li:hover h3 a{
    color: #1a81c5;
}
.case_list li .text .index_btn1 .index_public_button:hover .index_public_btn_text{
    color: #fff;
}
.case_detail{
    /*max-width: 1200px;*/
    /*margin:0 auto;*/
}
.case_detail .img{
    text-align: center;
    /*margin:20px 0;*/
    float: left;
    width: 36%;
}
.case_detail .text{
    float: right;
    width: 60%;
}
.case_detail h1{
    font-size:32px;
    /*text-align: center;*/
    line-height: 1.4;
    color: #333;
}
.case_detail .content{
    font-size:14px;
    margin-top:15px;
}
@media(max-width: 1600px){
    .n_case {
        padding: 95px 0;
    }
    .case_sort {
        margin: 40px 0 50px;
    }
    .case_sort li {
        width: calc(16.66666666666667% - 30px);
        margin-right: 36px;
    }
    .case_sort li p{
        font-size:16px;
    }
    .case_intro{
        padding: 145px 95px;
    }
    .case_intro h2{
        font-size:36px;
    }
    .case_intro .text{
        font-size:14px;
    }
    .case_list li .text{
        padding:30px 20px;
    }
    .case_list li .text h3 a{
        font-size:24px;
    }
    .case_list li .text .txt {
        font-size: 14px;
        margin: 12px 0 35px;
    }
    .case_detail .content{
        font-size:14px;
    }
}
@media(max-width: 1280px){
    .n_case {
        padding: 75px 0;
    }
    .case_sort {
        margin: 30px 0 50px;
    }
    .case_sort li {
        width: calc(16.66666666666667% - 15px);
        margin-right: 18px;
    }
    .case_sort li p{
        font-size:15px;
    }
    .case_intro{
        padding: 145px 95px;
    }
    .case_intro h2{
        font-size:36px;
    }   
    .case_list li{
        margin-bottom:25px;
    }
    .case_list li .text{
        padding:25px 20px;
    }
    .case_list li .text h3 a{
        font-size:22px;
    }
    .case_list li .text .txt {
        margin: 12px 0 30px;
    }
}
@media(max-width: 1099px){
    
}
@media(max-width: 991px){
    .case_sort li a{
        padding:20px 15px 15px;
    }
    .case_sort li .img{
        width: 50px;
        height: 32px;
    }
    .case_sort li .img img{
        height:64px;
    }
    .case_sort li.cur .img img,.case_sort li:hover .img img{
        top:-32px;
    }
    .case_intro {
        padding: 100px 60px;
    }    
    .case_detail .img{
        width:100%;
    }
    .case_detail .text{
        width:100%;
        margin-top:25px;
    }
}
@media(max-width: 820px){
    .n_case {
        padding: 55px 0;
    }   
    .case_sort {
        margin: 25px 0 35px;
    }
    .case_sort li {
        width: calc(16.66666666666667% - 10px);
        margin-right: 12px;
    }
    .case_sort li .img {
        width: 56px;
        height: 36px;
    }
    .case_sort li .img img{
        height:72px;
    }
    .case_sort li.cur .img img,.case_sort li:hover .img img{
        top: -36px;
    }
    .case_intro {
        padding: 75px 45px;
    } 
    .case_intro h2 {
        font-size: 32px;
    }
    .xg_yy{
        padding-top:55px;
    }
    .case_detail h1{
        font-size:28px;
    }
}
@media(max-width: 640px){
    .n_case {
        padding: 40px 0;
    }
    .case_sort {
        margin: 25px 0 20px;
    }
    .case_sort li{
        width:32%;
        margin-right:2%;
        margin-bottom:10px;
    }
    .case_sort li:nth-child(3n){
        margin-right:0;
    }
    .case_sort li a{
        padding:12px 12px;
    }
    .case_sort li .img{
        width: 40px;
        height: 26px;
    }
    .case_sort li .img img{
        height:52px;
    }
    .case_sort li.cur .img img,.case_sort li:hover .img img{
        top:-26px;
    }
    .case_sort li p{
        font-size:14px;
        margin-top:5px;
    }
    .case_intro {
        padding: 40px 20px;
    }
    .case_intro h2 {
        font-size: 22px;
    }
    .case_intro .text{
        margin-top:12px;
    }
    .xg_yy{
        padding-top:40px;
    }
    .case_list li{
        width:49%;
        margin-bottom: 15px;
    }
    .case_list li:nth-child(3n){
        margin-right: 2%;
    }
    .case_list li:nth-child(2n){
        margin-right:0;
    }
    .case_list li .text {
        padding: 15px 12px;
    }
    .case_list li .text h3 a {
        font-size: 19px;
    }
    .case_list li .text .txt {
        margin: 7px 0 18px;
    }
    .case_detail h1{
        font-size:26px;
    }
}
@media(max-width:460px){
    .case_list li{
        width:100%;
        margin-right:0!important;
    }
}


/*产品中心*/
.n_product{
    padding:100px 0;
}
.n_product .index_product_top{
    margin-bottom: 48px;
    align-items:center;
}
.n_t1 h2{
    font-size:50px;
}
.p_sort{
    display: flex;
    flex-wrap: wrap;
}
.p_sort li{
    width: 200px;
    height: 60px;
    margin-right: 18px;    
}
.p_sort li:last-child{
    margin-right: 0;
}
.p_sort li a{
    display: flex;
    align-items:center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    font-size:18px;
    color: #333333;
    cursor: pointer;
    background:#e5e9ed;
}
.p_sort li.cur a,.p_sort li:hover a{
    background:url(../images/index_p_bg.jpg) no-repeat center #1a81c5;
    background-size: contain;
    color:#fff;
}
.product_list{
    display: flex;
    flex-wrap: wrap;
}
.product_list li{
    width: calc(100% / 3 - 20px);
    margin-right: 30px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 35px;
}
.product_list li:nth-child(3n){
    margin-right: 0;
}
.product_list li .img{
    /*background:url(../images/p_img_bg.jpg) no-repeat center;*/
    /*background-size: cover;   */
    text-align: center;
    background: #969aa3;
    padding:15px 10%; 
}
.product_list li h3 a{
    display: flex;
    justify-content: center;
    align-items:center;
    text-align: center;
    height: 80px;
    font-size:22px;
    line-height: 1.4;
    color: #333;
    font-family: "puhui65";
    background:#f1f1f1;
    background-size: cover; 
}
.product_list li:hover .img img{
    transform: scale(1.05);
}
.product_list li:hover h3 a{
    background:#1a81c5;
    color: #fff;
    background-size: cover; 
}
.pd1{
    padding:100px 0 120px;
}
.pd1 .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.pd1 .text{
    width: 45%;
}
.pd1 .text h1{
    font-size:58px;
    color: #333333;
    line-height: 1;
    font-family: "puhui65";
    margin-bottom: 95px;
}
.pd1_title{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom:13px;
    border-bottom: 1px solid #dbdfe4;
}
.p_t1{
    font-size:30px;
    color: #1a81c5;
    font-family: "puhui65";
    line-height: 50px;
}
.pd1_title .index_public_btn_read{
    justify-content: flex-start;
    padding-left: 20px;
}
.pd1 .text .txt{
    margin-top:25px;
}
.pd1 .text .txt p{
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
    margin-bottom: 7px;
}
.pd1 .text .txt p:last-child{
    margin-bottom: 0;
}
.pd1 .text .txt p:before{
    content:'';
    position: absolute;
    top:8px;
    left:0;
    width: 7px;
    height: 7px;
    background:#8e9bad;
    border-radius: 50%;
}
.pd1 .img{
    width: 45%;
    border:2px solid #dbdfe4;
    border-radius: 20px;    
    /*padding:38px 10px;*/
    text-align: center;
    background: #969aa3;
}

.pd2{
    background:#f1f3f5;
    padding:85px 0 95px;
}
.pd2_l{
    float: left;
    background:#fff;
    padding:55px 40px 120px;
    width: calc(100% - 495px)
}
.pd2_l strong{
    font-size:26px;
    color: #333333;
    font-family: "puhui85";
    line-height: 1.6;
    /*margin-bottom: ;*/
}
.pd2_2{
    margin-top:25px;
}
.p_table{

}
.p_table table{

}
.p_table tr{
    border-bottom: 2px solid #fff;
}
.p_table tr td{
    background:#dbdfe4;
    font-size:14px;
    color: #666666;
    border-right: 2px solid #fff;
    text-align: center;
    line-height: 1.3;
    height: 48px;
}
.p_table tr:nth-child(1) td{
    background:#1a81c5;
    color: #fff;
    height: 70px;
}
.p_table tr td:nth-child(1){
    background:#1a81c5;
    color: #fff;    
}
.pd2_3{
    margin-top:85px;
}
.p_td4{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p_td4 .img1{
    width: 43%;
}
.p_td4_c{
    width: 50%;
}
.p_table2{
    margin-bottom: 40px;
}
.p_table2:last-child{
    margin-bottom: 0;
}
.p_table2 table{

}
.p_table2 tr{
    border-bottom: 2px solid #fff;
}
.p_table2 tr td{
    background:#dbdfe4;
    font-size:14px;
    color: #666666;
    border-right: 2px solid #fff;
    text-align: center;
    line-height: 1.3;
    padding: 5px;
}
.p_table2 tr:nth-child(1) td{
    background:#1a81c5;
    font-size:16px;
    color: #fff;
    height: 60px;
    /*text-align: left;*/
    padding: 5px;
}
.pd2_r{
    float: right;
    width: 365px;
    position: sticky;
    top:100px;
}
a.back{
    display: inline-block;
    line-height: 40px;
}
a.back span{
    margin-left: 16px;
    font-size:16px;
    color: #333333;
}
a.back:hover span{
    color: #1a81c5;
}
.pd2_r .text{
    margin-top:68px;
    background:#fff;
    padding:40px 45px 25px;
}
.pd2_r .text h3{
    font-size:26px;
    color: #333333;
    font-family: "puhui55";
    line-height: 1.2;
    margin-bottom: 22px;
}
.pd2_r .text .txt{
    margin-bottom: 20px;
}
.pd2_r .text .txt p{
    padding-left: 28px;
    margin-bottom: 6px;
}
.pd2_r .text .txt p:nth-child(1){
    background:url(../images/c_ico1.png) no-repeat left center;
}
.pd2_r .text .txt p:nth-child(2){
    background:url(../images/c_ico2.png) no-repeat left center;
    margin-bottom: 0;
}
a.mess{
    display: flex;
    align-items:center;
    justify-content: center;
    width: 100%;
    height: 46px;
    background:#1a81c5;
    border-radius: 23px;
    font-size:16px;
    color: #fff;
}
a.mess:hover{
    opacity: .8;
}
.index_public_button {
    width: 160px;
    height: 50px;
    padding: 5px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
/*    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(3vw);
    transform: translateY(3vw);*/
}
.index_public_button:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #1a81c5;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: all .8s cubic-bezier(.55, .17, .37, .94);
    transition: all .8s cubic-bezier(.55, .17, .37, .94);
}
.index_public_button a {
    position: relative;
    z-index: 9;
    -webkit-align-items: center;
    align-items: center;
}
.index_public_btn_read {
    width: calc(100% - 40px);
    text-align: center;
    position: relative;
    justify-content: center;
}
.index_public_btn_content {
    position: relative;
}
.index_public_btn_text {
    color: #fff;
    line-height: 1;
    font-size: 16px;
    -webkit-transition: all .8s cubic-bezier(.55, .17, .37, .94);
    transition: all .8s cubic-bezier(.55, .17, .37, .94);
}
.index_public_btn_icon {
    width: 40px;
    height: 40px;
    position: relative;
    background: #fff;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: all .8s cubic-bezier(.55, .17, .37, .94);
    transition: all .8s cubic-bezier(.55, .17, .37, .94);
}
.index_public_btn_svg {
    width: 100%;
    height: 100%;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    z-index: 9;
}
.index_public_btn_svg svg {
    width: 20%;
    fill: #1a81c5;
    -webkit-transition: all .8s cubic-bezier(.55, .17, .37, .94);
    transition: all .8s cubic-bezier(.55, .17, .37, .94);
}
.index_public_btn_hover {
    position: absolute;
    left: 0;
    top: 0;
}
.index_public_btn_hover svg {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
}
/*图标鼠标经过*/
.index_public_button:hover .index_public_btn_default svg {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
    -webkit-transition: all .8s cubic-bezier(.55, .17, .37, .94);
    transition: all .8s cubic-bezier(.55, .17, .37, .94);
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.index_public_button:hover .index_public_btn_hover svg {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    -webkit-transition: all .8s cubic-bezier(.55, .17, .37, .94);
    transition: all .8s cubic-bezier(.55, .17, .37, .94);
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.index_public_button:hover .index_public_text_default {
    color: #fff;
}
.index_public_button:hover:after {
    width: 100%;
}
.index_public_button:hover  .index_public_btn_icon{
    background:#fff;
}
.index_public_button:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #1a81c5;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: all .8s cubic-bezier(.55, .17, .37, .94);
    transition: all .8s cubic-bezier(.55, .17, .37, .94);    
}
.index_btn1 .index_public_btn_icon{
    background:#1a81c5;
}
.index_btn1 .index_public_btn_svg svg{
    fill: #fff;
}
.index_btn1:hover .index_public_btn_svg svg{
    fill: #1a81c5;
}
.index_btn1 .index_public_btn_text{
    color: #333;
}
@media(max-width: 1600px){
    .n_product,.pd1{
        padding:90px 0;
    }
    .n_t1 h2{
        font-size:42px;
    }
    .p_sort li{
        margin-right:15px;
        width: 170px;
        height: 50px;
    }
    .p_sort li a{
        border-radius: 25px;
        font-size: 17px;
    }
    .product_list li h3 a{
        height:60px;
        font-size:18px;
    }
    .pd1 .text h1{
        font-size:42px;
        margin-bottom: 65px;
    }
    .p_t1{
        font-size:24px;
    }
    .pd1 .text .txt p{
        font-size:14px;
    }
    .pd1 .text .txt p:before{
        width:5px;
        height:5px;
    }
    .pd2_l{
        padding: 40px 30px 90px;
        width: calc(100% - 420px);
    }
    .pd2_l strong{
        font-size:24px;
    }
    .p_table tr td{
        font-size:14px;
    }
    .p_table tr:nth-child(1) td{
        font-size:17px;
        height:55px;
    }
    .p_table2 tr td{
        font-size:14px;
    }
    .p_table2 tr:nth-child(1) td{
        font-size:15px;
        height:55px;
    }
    .pd2_r{
        width:320px;
    }
    .pd2_r .text {
        margin-top: 45px;
        padding: 25px 20px 25px;
    }
    .pd2_r .text h3{
        font-size:22px;
    }
}
@media(max-width: 1280px){
    .n_product,.pd1{
        padding:75px 0;
    }
    .n_product .index_product_top{
        margin-bottom:35px;
    }
    .n_t1 h2{
        font-size:36px;
    }
    .p_sort li{
        width:auto; 
        height: 42px;
    }
    .p_sort li a{
        padding:0 30px;
        border-radius: 21px;
        font-size: 16px;
    }
    .product_list li h3 a{
        height:50px;
        font-size:16px;
    }
    .pd1 .text h1{
        font-size:36px;
    }
    .pd2_l {
        padding: 30px 20px 75px;
        width: calc(100% - 380px);
    }
    .pd2{
        padding:75px 0;
    }
}
@media(max-width: 1099px){
    
}
@media(max-width: 991px){
    .n_t1 h2{
        font-size:32px;
    }
    .p_sort li{
        margin-right:12px;
    }
    .p_sort li a{
        padding:0 20px;
        font-size:15px;
    } 
    .product_list li {
        width: calc(100% / 3 - 10px);
        margin-right: 15px;
        margin-bottom: 20px;
    }
    .pd2_l {
        padding: 25px 20px 55px;
        width: calc(100% - 320px);
    }
    .pd2_r{
        width:270px;
    }
    .pd2_r .text h3 {
        font-size: 20px;
    }
}
@media(max-width: 820px){
    .n_product,.pd1{
        padding:55px 0;
    }  
    .product_list li h3 a{
        font-size:15px;
    }
    .pd1 .text h1{
        font-size:32px;
    }
    .p_t1{
        font-size:22px;
    }
    .pd2_l{
        width:100%;
    }
    .pd2_r{
        display:none;
        width:100%;
    }
    .pd2{
        padding:55px 0;
    }
    .pd2_3{
        margin-top:55px;
    }
}
@media(max-width: 640px){
    .n_product,.pd1{
        padding:40px 0;
    }
    .n_product .index_product_top{
        margin-bottom:30px;
    }
    .n_t1 h2{
        font-size:26px;
    }
    .p_sort{
        width:100%;
        margin-top:20px;
    }
    .p_sort li{
        margin-right:4px;
        margin-bottom:5px;
        height:35px;
    }
    .p_sort li a{
        padding: 0 10px;
        font-size: 12px;
    }    
    .product_list li {
        width: calc(100% / 2 - 7.5px);
        margin-bottom: 15px;
    }
    .product_list li:nth-child(3n) {
        margin-right: 15px;
    }
    .product_list li:nth-child(2n) {
        margin-right: 0;
    }
    .product_list li h3 a{
        height:50px;
        font-size:15px;
        padding:5px;
    }
    .product_list li .img{
        padding:15px;
    }
    .pd1 .text{
        width:100%;
    }
    .pd1 .text h1{
        font-size:24px;
        margin-bottom: 35px;
    }
    .pd1_title{
        padding-bottom:8px;
    }
    .p_t1{
        font-size:20px;
    }
    .pd1_title .index_public_btn_read{
        padding-left:15px;
    }
    .pd1 .img{
        width:100%;
        margin-top:25px;
        text-align:center;
        /*padding:20px;*/
    }
    /*.pd1 .img img{*/
    /*    max-width:200px;*/
    /*}*/
    .pd2{
        padding:40px 0;
    }
    .pd2_l {
        padding: 25px 15px;
    }
    .pd2_l strong {
        font-size: 22px;
    }
    .p_table tr:nth-child(1) td {
        font-size: 14px;
        height: 45px;
    }
    .p_table tr td {
        font-size: 13px;
        padding:5px;
    }
    .pd2_3{
        margin-top:30px;
    }
    .p_td4 .img1{
        width:100%;
    }
    .p_td4_c{
        width:100%;
        margin-top:15px;
    }
    .p_table2 tr td {
        font-size: 13px;
    }
    .p_table2 tr:nth-child(1) td {
        font-size: 14px;
        height: 45px;
    }
    .pd2_r{
        display:block;
        margin-top:25px;
        position:relative;
        top:0;
    }
    .pd2_r .text {
        margin-top: 30px;
        padding: 20px ;
    }
}

/*技术支持*/
.gongyi{
    padding:66px 0 148px;
}
.gy_list{

}
.gy_list li{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:125px 0;
    border-bottom: 1px solid #e7e7e7;
}
.gy_list li:first-child{
    padding:0 0 110px;
}
.gy_list li:last-child{
    padding-bottom:0;
    border:none;
}
.gy_list li .img{
    position: relative;
    padding:20px 0 0 20px;
    width: 51%;
}
.gy_list li .img:after{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: #1a81c5;
    z-index: 1;
    opacity: 0;
    clip-path: polygon(0% 0%, 100% 0, 100% 0, 100% 85%, 90% 100%, 0% 100%);
    transition: all .4s ease;
}
.gy_list li .img img{
    clip-path: polygon(0% 0%, 100% 0, 100% 0, 100% 85%, 90% 100%, 0% 100%);
    position: relative;
    z-index: 9;
}
.gy_list li .text{
    width: 49%;
    padding:108px 75px 0 0;
}
.gy_list li .text h3{
    font-size:56px;
    color:#000000;
/*    font-family: "puhui75";*/
    line-height: 1;
    margin-bottom: 28px;
}
.gy_list li .text .txt{
    font-size:20px;
    color: #666666;
    line-height: 1.8;
}
.gy_list li .img:hover:after{
    opacity: 1;
}
.gy_list li:nth-child(2n){
    flex-direction: row-reverse;
}
.gy_list li:nth-child(2n) .text{
    padding:108px 0 0 90px;    
}
@media(max-width: 1600px){
    .gongyi {
        padding: 66px 0 100px;
    }  
    .gy_list li{
        padding:100px 0;
    }
    .gy_list li .text {
        padding: 85px 65px 0 0;
    }  
    .gy_list li .text h3{
        font-size:42px;
    }
    .gy_list li .text .txt{
        font-size:16px;
    }
    .gy_list li:nth-child(2n) .text{
        padding:85px 0 0 75px;    
    }
}
@media(max-width: 1280px){
    .gongyi {
        padding: 66px 0 75px;
    }   
    .gy_list li{
        padding:75px 0;
    } 
    .gy_list li .text {
        padding: 55px 65px 0 0;
    }   
    .gy_list li .text h3{
        font-size:36px;
    } 
    .gy_list li .text .txt {
        font-size: 15px;
    }
    .gy_list li:nth-child(2n) .text{
         padding: 55px 0 0 65px;
    }
    .gy_list li:first-child{
        padding: 0 0 75px;
    }
}
@media(max-width: 1199px){
    
}
@media(max-width: 991px){
    .gy_list li .text {
        padding: 45px 50px 0 0;
    }   
    .gy_list li .text h3{
        font-size:32px;
        margin-bottom: 20px;
    } 
    .gy_list li .text .txt {
        font-size: 14px;
    } 
    .gy_list li:nth-child(2n) .text{
         padding: 45px 0 0 50px;
    }
}
@media(max-width: 820px){
    .gongyi {
        padding: 55px 0;
    }
    .gy_list li{
        padding:55px 0;
    } 
    .gy_list li .text {
        padding: 30px 35px 0 0;
    }   
    .gy_list li .text h3{
        /*font-size:26px;*/
        /*margin-bottom: 15px;*/
    }  
    .gy_list li:nth-child(2n) .text{
         padding: 30px 0 0 35px;
    }
    .gy_list li:first-child{
        padding: 0 0 55px;
    }
}
@media(max-width: 640px){
    .gongyi {
        padding: 35px 0;
    }
    .gy_list li{
        padding:35px 0;
    }   
    .gy_list li .text{
        width: 100%;
        padding:0 0 20px;
    }
    /*.gy_list li .text h3{*/
    /*    font-size:20px;*/
    /*    margin-bottom: 12px;*/
    /*} */
    .gy_list li:nth-child(2n) .text{
         padding: 0 0 20px;
    }
    .gy_list li .img{
        width: 100%;
    } 
    .gy_list li .img:after{
        opacity:1;
    }
    .gy_list li:first-child{
        padding: 0 0 35px;
    }
}


.download_list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}
.download_list li{
    
}
.download_list li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dbdbdb;
    padding:20px 0;
    position: relative;
    color: #111;
}
.download_list li a p{
    font-size: 16px;
    line-height: 1.6;
    width: calc(100% - 85px);
}
.download_list li a span{
    max-width: 80px;
}
.download_list li:hover a p,.download_list li:hover a span{
    color: #1a81c5;
}
.download_list1{
    display: flex;
    flex-wrap: wrap;
}
.download_list1 li{
    line-height:80px;
    height: 86px;
    border:1px solid #e5e5e5;
    margin-bottom: 20px;
    width: 48%;
    position: relative;
    overflow: hidden;
    margin-right: 4%;
    display: flex;
    flex-wrap: wrap;
}
.download_list1 li:nth-child(2n){
    margin-right: 0;
}
.download_list1 li h1{
    width: calc(100% - 90px);
    float: left;   
    font-size: 18px;
    color: #333;
    font-weight: normal;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}
.download_list1 li .xiaz{
    display: block;
    width: 90px;
    float: right;
}
.download_list1 li .xiaz img{
    width: 100%;
}
@media(max-width: 1600px){
    .download_list1 li {
        margin-bottom:15px;
    }
    .download_list1 li h1{
        font-size:16px;
        
    }
}
@media(max-width: 1280px){
   
}
@media(max-width: 1199px){

}
@media(max-width: 820px){
    .download_list1 li {
        margin-bottom:15px;
    } 
    .download_list1 li h1{
        padding-left: 20px;
        
    }    
}
@media(max-width: 767px){
    .download_list1 li{
        width: 100%;
        margin-right:0;
    }
    .download_list1 li h1{
        font-size:15px;
        padding-left:10px;
    }
}

/*联系我们*/
.n_contact{
    padding:100px 0 110px;
}
.n_contact .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact1{
    position: relative;
    width: 40%;
}
h2.c_t1{
    font-size:36px;
    color: #333333;
    line-height: 1;
    margin-bottom: 46px;
}
.c_contact{
    margin:0 0 25px;
}
.c_contact{
    font-size:16px;
    color: #757575;
    margin:50px 0 40px;
}
.c_contact p{
    padding-left: 28px;
    margin-bottom: 15px;
    line-height: 1.5;
}
.c_contact p:last-child{
    margin-bottom: 0;
}
.c_contact p:nth-child(1){
    background:url(../images/f_ico1.png) no-repeat left center;
}
.c_contact p:nth-child(2){
    background:url(../images/f_ico2.png) no-repeat left center;
}
.c_contact p:nth-child(3){
    background:url(../images/f_ico3.png) no-repeat 2px center;
}
.c_code{
    display: flex;
    flex-wrap: wrap;
}
.c_code li{
    margin-right: 38px;
    text-align: center;
}
.c_code li:last-child{
    margin-right: 0;
}
.c_code li p{
    font-size:14px;
    color: #757575;
    margin-top: 5px;
}
.contact2{
    width: 51%;
}
.message{

}
.message ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.message ul li{
    border-bottom: 1px solid #cccccc;
    margin-bottom: 30px;
    width: 48%;
}
.message ul li:last-child{
    margin-bottom: 0;
}
.message ul li label{
    font-size:18px;
    color: #333333;
    font-family: "puhui85";
}
.message ul li p input,.message ul li p textarea{
    width: 100%;
    border:none;
    outline: none;
    line-height: 45px;
    font-size:16px;
    color: #808080;
    font-family: "puhui45";
    background:none;
}
.message ul li:nth-child(3),.message ul li:nth-child(4){
    width: 100%;
}
.mess_tn{
    margin-top:50px;
}
.mess_tn button{
    display: flex;
    justify-content: space-between;
    align-items:center;
    width: 180px;
    height: 52px;
    background:#1a81c5;
    font-size:16px;
    color: #fff;
    font-family: "puhui45";
    outline: none;
    border:none;
    padding:0 30px;
    border-radius: 26px;
    cursor: pointer;
}
.mess_tn button i{
    width: 8px;
    height: 13px;
    background:url(../images/up_btn.png) no-repeat center;
    transform: rotate(90deg)
}
@media(max-width: 1600px){
    .download_list{
        gap: 20px 30px;
    }
    .download_list li a{
        padding:12px 0;
    }
    .n_contact{
        padding:90px 0;
    }
    h2.c_t1{
        font-size:30px;
        margin-bottom:35px;
    }
    .message ul li label{
        font-size:16px;
    }
    .message ul li p input, .message ul li p textarea{
        font-size:15px;
    }
    .c_map{
        height:500px;
        overflow:hidden;
    }
}
@media(max-width: 1280px){
    .download_list{
        gap: 15px 20px;
    }
    .download_list li a{
        padding:10px 0;
    }
    .n_contact{
        padding:75px 0;
    } 
    h2.c_t1{
        font-size:28px;
    }
}
@media(max-width: 1099px){
    
}
@media(max-width: 991px){
    
}
@media(max-width: 820px){
    .download_list{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 15px;
    }
    .download_list li a{
        padding:10px 0;
    }
    .n_contact{
        padding:55px 0;
    } 
    h2.c_t1{
        font-size:24px;
    }
    .c_map{
        height:400px;
    }
}
@media(max-width: 640px){
    .download_list{
        gap: 5px 10px;
    }
    .download_list li a{
        padding:8px 0;
    }
    .n_contact{
        padding:40px 0;
    } 
    .contact1{
        width:100%;
    }
    h2.c_t1{
        font-size:22px;
        margin-bottom:20px;
    }
    .contact2{
        width:100%;
        margin-top:35px;
    }
    .message ul li{
        margin-bottom:12px;
    }
    .mess_tn{
        margin-top:25px;
    }
    .c_map{
        height:220px;
    }
}
@media(max-width:500px){
    .download_list{
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 5px;
    }
}

#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;
    font-family: "puhui45";
}
.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 #1a81c5;
    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;
}
@media(max-width: 1600px){
    .online-server{
        right:5px;
    }
}
@media(max-width: 991px){
    .online-server{
        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:#1a81c5;color:#fff; text-decoration:none;border:#1a81c5 1px solid;}
.pageController .currPage {background-color: #1a81c5;color:#fff;border:#1a81c5 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: #1a81c5;
    vertical-align: middle;
    border: 1px solid #1a81c5; 
    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: #0067ac;
    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;
}