﻿/*头部样式*/
.head{
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    -o-backdrop-filter: blur(20px);
    -ms-backdrop-filter: blur(20px);
    z-index: 999999;
}
.logo{
}
.head_r{
    max-width: 70%;
    display: flex;
    height: 100%;
    align-items: center;
}
.language{
    position: relative;
    margin-right: 22px;
    font-size:16px;
    color: #333333;
    cursor: pointer;
}
.language:after{
    content:'';
    position: absolute;
    top:50%;
    right:0;
    width: 1px;
    height: 18px;
    background: #a3a3a3;
    margin-top:-9px;
}
.language p{
    padding-right: 26px;
    display: flex;
    align-items: center;
    line-height: 90px;
}
.language p i{
    margin-left: 8px;
    display: block;
    width: 10px;
    height: 5px;
    background: url(../images/dian1.png) no-repeat center;
}
.language_a{
    position: absolute;
    top:90px;
    left:0;
    width: 100%;
    background: #fff;
    z-index: 99;
    display: none;
}
.language_a a{
    display: block;
    text-align: center;
}
.language_a a:hover{
    background: #ff732a;
    color: #fff;
}
.language:hover .language_a{
    display: block;
}
.h_tel{
    padding-left: 28px;
    background: url(../images/tel.png) no-repeat left center;
}
.nav{
    display: flex;
    margin-right: 200px;
}
.nav li{
    position: relative;
    padding:0 21px;
    height: 90px;
    display: flex;
    align-items: center;
}
.nav li a.a1{
    display: block;
    font-size: 16px;
    color: #333333;
    text-align: center;
    font-family: "alibabapuhui";
    position: relative;
}
.nav li a.a1:after{
    content:'';
    position: absolute;
    left:50%;
    bottom:-5px;
    width: 0%;
    height: 3px;
    background:#ff732a;
    transition:all 0.4s ease-out;
}
.nav li:hover a.a1
/*,.nav li.on a.a1*/
{
    color: #ff732a;
}
.nav li:hover a.a1:after
/*,.nav li.on a.a1:after*/
{
    width: 100%;
    left:0;
}
.nav li .b_nav{
    display: none;
    position: absolute;
    top:90px;
    left:50%;
    z-index: 999;

    width: 160px;
    margin-left: -80px;
    overflow: visible!important;
}
.nav li .b_nav .cont{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*padding:20px 0;*/
}
.nav li .b_nav a.a2{
    display: block;
    font-size: 15px;
    color: #000;  
    line-height: 40px; 
    text-align: center;
    width: 100%;
    background: rgba(255,255,255,.8);
    /*margin:0 15px;*/
}
.nav li .b_nav a.a2:hover{
    background: #ff732a;  
    color: #fff;
}
.nav li .b_nav .cont dl{
    position: relative;
    width: 100%;
}
.nav li .b_nav .cont dl .sec{
    position: absolute;
    left: 100%;
    top: 0;
    width: 145px;  
    visibility: hidden;
}
.nav li .b_nav .cont dl .sec a{
    display: block;
    font-size: 14px;
    color: #000;  
    line-height: 30px; 
    text-align: left;
    width: 100%;
    background: #f9f9f9;
    padding:0 5px;
}
.nav li .b_nav .cont dl .sec a:hover{
    background: #ff732a;  
    color: #fff;
}
.nav li .b_nav .cont dl:hover .sec{
    visibility: visible;
}
.nav li .b_nav p{
    position: relative;
}
.n_nav_2{
    position: absolute;
}

.menu-button{
    display: none;
    position: absolute;
    top: 20px;
    right: 10px;
/*    padding: 7px;*/
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
/*    background-color: #c52b31;*/
    z-index: 99999;
}
.menu-button .bar {
    display: block;
    height: 2px;
    background: #ccc;
    margin: 9px 0;
    opacity: 1;
    transition: all .5s ease;
    width: 35px;
    transform-origin: left center;
}

.mnav .bar:nth-child(1){
    transform:rotate(45deg);
    /*width: 40px;*/
}
.mnav .bar:nth-child(2){
    opacity: 0;
}
.mnav .bar:nth-child(3){
    transform:rotate(-45deg);
    position: relative;
    top: 2px;
    /*width: 40px;*/
}

.mobileNav{
    display: none;
    background-color: #c52b31;
    text-align: center;
    position: absolute;
    left:0;
    top:72px;
    z-index: 99999;
    width: 100%;
/*    height: 100vh;*/
}
.mobileNav li {
    line-height: 2em;
    padding:1em 0;
}
.mobileNav li a{
    font-size: 1rem;
    color: #fff;
}
.wrap{
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
}
.h90{
    width: 100%;
    height: 90px;
}
@media(max-width: 1860px){
    .head_r {
        max-width: 80%;
    }
    .nav{
        margin-right: 150px;
    }
    .nav li .b_nav .cont dl .sec a{
        font-size:13px;
    }
}
@media(max-width: 1600px){
    .head{
        padding:0 30px;
    }
    .nav{
        margin-right: 50px;
    }
    .nav li{
        padding:0 16px;
    }
    .nav li .b_nav a{
        /*margin:0 10px;*/
    }
    .wrap{
        width: 88%;
    }
}
@media(max-width: 1360px){
    .nav{
        margin-right: 20px;
    }
}
@media(max-width: 1280px){
    .wrap{
        width: 90%;
    }
    .language{
        margin-right: 15px;
        font-size: 15px;
    }
    .language p {
        padding-right: 16px;
    }
    .nav li .b_nav{
        width:140px;
        margin-left:-70px;
    }
    .nav li .b_nav a{
        font-size:14px;
    }
}
@media(max-width: 1199px){
    .h_tel{
        display: none;
    }
    .language {
        margin-right: 0px;
        font-size: 14px;
    }
    .language:after{
        display: none;
    }
}
@media(max-width: 1024px){
    .head {
        padding: 0 20px;
    }
    .wrap{
        width: 94%;
    } 
    .nav li {
        padding: 0 10px;
    }  
    /*.nav li .b_nav a{*/
    /*    font-size:14px;*/
    /*    margin:0 7px;*/
    /*}*/
}
@media(max-width: 899px){
    .nav {
        margin-right: 12px;
    }
    .nav li{
        padding:0 6px;
    }
    .language p{
        padding-right:0;
    }
}
@media(max-width: 820px){
    .head{
        height: 70px;
    }
    .logo img{
        max-height: 50px;
    }
    .head_r{
        flex-direction: row-reverse;
    }
    .h_tel{
        margin-right: 25px;
        font-size: 16px;
    }
    .h_tel,.menu-button{
        display: block;
    }
    .language,.nav{
        display: none;
    }
    .nav li{
        height:70px;
    }
    .nav li .b_nav{
        top:70px;
    }
    .h90{
        height:70px;
    }
}
@media(max-width: 640px){
    .head{
        height: 60px;
        padding:0 15px;
    }
    .logo{
/*        width: 40%;*/
/*        float: none;*/
    }
    .logo img{
        max-height: 40px;
    }
    .h_tel{
        margin-right: 10px;
        font-size: 14px;
        padding-left:22px;
    }
    .menu-button{
        top:25px;
    }
    .h90{
        height:60px;
    }
}


#c-banner1{
    width: 100%;
    height: calc(100vh - 90px);
    /*display: none;*/
}
#c-banner1 .swiper-pagination{
    display: none;
}
#c-banner1 .swiper-wrapper{
    display: flex;
}
#c-banner1 .swiper-slide{
    height: auto;
}
.banner_list{
    display: flex;
    flex-wrap: wrap;
/*    align-content: flex-end;*/
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #fff;
    margin: 30px 0;
}
.banner_list li{
    width: 32%;
    margin-right: 2%;
    height: 100%;
}
.banner_list li:nth-child(3n){
    margin-right:0
}
.banner_list li a{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.banner_list li .img{
    display: none;
}
.banner_list li .text{
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
    -o-backdrop-filter: blur(4px);
    -ms-backdrop-filter: blur(4px);
    color: #fff;
    text-align: center;
    position: absolute;
    bottom:-500px;
    left:0;
    width: 100%;
    background: rgba(255,155,42,.82);
    transition:all 0.5s ease-out;
    height: 390px;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner_list li:hover .text{
    bottom:0;
}
.banner_list li .text h3{
    font-size:46px;
    line-height: 1.2;
}
.banner_list li .text p{
    font-size:26px;
    line-height: 1.6;
    margin:10px 0 45px;
}
.banner_list li .text span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 58px;
    border-radius: 10px;
    font-size:22px;
    color: #ff732a;
    background: #fff;
    margin:0 auto;
}
#c-banner1 .banner_about{
    margin-top:0;
    min-height: auto;
    height: 100%;
}
.about_slide{
    background: url(../images/index_about.jpg) no-repeat center;
    background-size: cover
}
@media(max-width: 1600px){
    .banner_list li .text{
        height: 320px;
    }
    .banner_list li .text h3{
        font-size:32px;
    }
    .banner_list li .text p{
        font-size:20px;
    }
    .banner_list li .text span {
        width: 150px;
        height: 45px;
        font-size: 16px;
    }
}
@media(max-width: 1280px){
    .banner_list li .text {
        height: 260px;
    }
    .banner_list li .text h3{
        font-size:28px;
    }
    .banner_list li .text p{
        font-size:16px;
    }
    .banner_list li .text span {
        width: 120px;
        font-size: 14px;
    }
}
@media(max-width: 1024px){
    .banner_list li .text {
        height: 200px;
        padding:20px 10px;
    }
    .banner_list li .text h3{
        font-size:24px;
    }  
    .banner_list li .text p{
        font-size:14px;
        margin: 10px 0 25px;
    }  
}
@media(max-width: 820px){
    #c-banner1{
        height: 420px;
    }
    .banner_list li .text h3{
        font-size:20px;
    }   
}
@media(max-width: 640px){
    #c-banner1{
        height: 200px;
        background:#fff;
    }
    .banner_list{
        height:auto;
    }
    .banner_list li{
        width:100%;
        height:300px;
        overflow:hidden;
    }
    .banner_list li .text{
        bottom:0;
        height:auto;
        padding:20px;
    }
    .banner_list li .text h3{
        font-size:14px;
    }  
    .banner_list li .text p{
        font-size:12px;
        margin: 6px 0 15px;
    }  
    .banner_list li .text span {
        width: 90px;
        font-size: 13px;
        height: 36px;
    }
    #c-banner1 .index_about{
        padding:20px 0;
    }
    #c-banner1 .index_about .wrap .text{
        display:none;
    }
    #c-banner1 .index_about_r{
        margin-top:0;
    }
    #c-banner1 .num_list1 li{
        height:auto;
        padding:15px 20px;
    }
#c-banner1 .num_list1 li .p1 span {
    font-size: 24px;
}
}


.index_about{
    background: url(../images/index_about.jpg) no-repeat center;
    background-size: cover;
    padding:125px 0;
    min-height: 940px;
    color: #fff;
    background-attachment: fixed;
    margin-top:60px;
}
.index_fixed{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-image: url(../images/m_index_about.jpg);
    background-size: cover;
    background-position: 50% 0;
    z-index: -9;
    transition: all 0.3s ease-out;
    opacity: 0;
}
.index_about .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.index_t1{
    text-align: center;
}
.index_t1 h2{
    font-size:60px;
    color: #1a1a1a;
    line-height: 1;
    font-weight: normal;
}
.index_about .index_t1{
    text-align: left;
}
.index_about .index_t1 h2{
    color: #fff;
}
.index_about .wrap .text{
    width: calc(100% - 600px);
    padding-right: 50px;
    animation-delay: 0.3s;
}
.index_about .wrap .text .txt{
    max-width: 635px;
    margin:32px 0 88px;
    font-size:18px;
}
.index_about .wrap .text a.more1{
    border:1px solid #ff732a;
    background: #ff732a;
    color: #fff;
}
.index_about .wrap .text a.more1 i{
    background: url(../images/more1_h.png) no-repeat center;
}
.index_about .wrap .text a.more1:hover i{
    margin-left: 25px;
}
.index_about_r{
    width: 600px;
    animation-delay: 0.6s;
}
.num_list1{
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    overflow: hidden;
}
.num_list1 li{
    width: 50%;
    background: rgba(255,255,255,.08);
    padding:50px 20px 20px 52px ;
    height: 180px;
}
.num_list1 li:nth-child(1),.num_list1 li:nth-child(2){
    border-bottom: 1px solid rgba(255,255,255,.25);
}
.num_list1 li:nth-child(1),.num_list1 li:nth-child(3){
    border-right: 1px solid rgba(255,255,255,.25);
}
.num_list1 li .p1{
    font-size:18px;
    line-height: 1;
}
.num_list1 li .p1 span{
    font-size:64px;
    font-family: "苹方";
    font-weight: bold;
    text-shadow: 0.551px 1.923px 5px rgba(0, 0, 0, 0.27);
}
.num_list1 li .p2{
    font-size:18px;
}
@media(max-width: 1600px){
    /*.index_about{*/
    /*    min-height: 700px;*/
    /*}*/
    .index_t1 h2{
        font-size:42px;
    }
    .index_about .index_t1 h2{
        font-size:42px;
    }
    .index_about .wrap .text .txt {
        margin: 30px 0 60px;
        font-size: 15px;
    }
    .num_list1 li {
        padding: 35px 20px 20px 52px;
        height: 150px;
    }
    .num_list1 li .p1{
        font-size:16px;
    }
    .num_list1 li .p1 span{
        font-size:42px;
    }
    .num_list1 li .p2 {
        font-size: 15px;
    }

}
@media(max-width: 1280px){
    .index_about {
        /*min-height: 550px;*/
        padding:90px 0;
    }
    .index_t1 h2{
        font-size:32px;
    }
    .index_about .index_t1 h2{
        font-size:32px;
    }
}
@media(max-width: 1024px){
    .index_about {
        /*min-height: 450px;*/
        padding:70px 0;
    }
    .index_t1 h2{
        font-size:28px;
    }
    .index_about .index_t1 h2{
        font-size:28px;
    }
    .index_about .wrap .text a.more1:hover i{
        margin-left: 20px;
    } 
    .index_about .wrap .text{
        width: 50%;
        padding-right: 35px;
    }
    .index_about .wrap .text .txt {
        margin: 25px 0 40px;
        font-size: 14px;
    }
    .index_about_r{
        width: 50%;
    }
    .num_list1 li{
        height: 120px;
        padding:20px 20px 20px 35px;
    }
    .num_list1 li .p1 {
        font-size: 15px;
    }
    .num_list1 li .p1 span {
        font-size: 32px;
    }
    .num_list1 li .p2 {
        font-size: 14px;
    }
}
@media(max-width: 820px){
    .num_list1 li{
        padding:20px;
        height: 105px;
    }
}
@media(max-width: 640px){
    .index_about {
        /*min-height: 450px;*/
        padding: 45px 0;
        margin-top:30px;
        /*background: url(../images/m_index_about.jpg) no-repeat center;*/
        /*background-size:cover;*/
        background:none;
    } 
    .index_fixed{
        opacity:1;
    }
    .index_about .wrap .text {
        width: 100%;
        padding-right: 0px;
    }
    .index_t1 h2,.index_about .index_t1 h2 {
        font-size: 22px;
    }
    .index_about .wrap .text .txt {
        margin: 20px 0 30px;
    }
    .index_about_r{
        width: 100%;
        margin-top:30px;
    }
    .num_list1 li{
        height: 100px;
    }
    .num_list1 li .p1 span {
        font-size: 28px;
    }  
    
}


.index_case1{
    position: relative;
    overflow: hidden;
    padding:158px 0 98px;
}
.c_tab1_img .imgs,.c_tab1_img2 .imgs{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -9;
    transform:scale(1.1);
    transition:all 0.5s ease-out;
}
.c_tab1_img .imgs.on,.c_tab1_img2 .imgs.on{
    opacity: 1;
    z-index: -1;
    transform:scale(1);
}

.c_tab1_text{
    color: #fff;
    animation-delay: 0.3s;
}
.c_tab1_text .text{
    display: none;
}
.c_tab1_text .text.on{
    display: block;
}
.c_tab1_text .text h3{
    font-size:60px;
    font-weight: normal;
    line-height:1;
}
.c_tab1_text .text .txt{
    font-size:20px;
    line-height: 1.6em;
    height: 4.8em;
    margin:25px 0 70px;
    max-width: 725px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.c_tab1_text .text a.more1{
    color: #fff;
    border:1px solid #fff;
}
.c_tab1_text .text a.more1 i{
    background: url(../images/more1_h.png) no-repeat center;
}
.c_tab1_text .text a.more1:hover{
    border:1px solid #ff732a;    
}
.c_tab1_li{
    margin-top:170px;
    animation-delay: 0.3s;
}
.c_tab1_li .wrap{
    display: flex;
}
.c_tab1_li a{
    display: block;
    width: 23.5%;
    margin-right: 2%;
    border-radius: 10px;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
    -o-backdrop-filter: blur(4px);
    -ms-backdrop-filter: blur(4px);
    /*background: url(../images/tab1li_bg2.png);*/
}
.c_tab1_li a:nth-child(4n){
    margin-right: 0;
}
.c_tab1_li a dl{
    display: flex;
    align-items: center;
    height: 180px;
    padding:20px 38px;
}
.c_tab1_li a dl dt{
    width: 72px;
    height: 75px;
    position: relative;
    overflow: hidden;
}
.c_tab1_li a dl dt img{
    display: inline-block;
    position: absolute;
    top:0;
    left:0;
}
.c_tab1_li a dl dd{
    width: calc(100% - 72px);
    padding-left: 35px;
}
.c_tab1_li a dl dd h3{
    font-size:30px;
    color: #1a1a1a;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom:10px;
}
.c_tab1_li a dl dd p{
    font-size:14px;
    color: #666666;
    display: flex;
    align-items: center;
}
.c_tab1_li a dl dd p i{
    background: url(../images/more2.png) no-repeat center;
    width: 21px;
    height: 7px;
    display: block;
    margin-left: 12px;
    /*opacity: 0;*/
    transition: all 0.3s ease-out;
}
.c_tab1_li a.on{
    background: url(../images/tab1li_bg.jpg) no-repeat center #ff732a;
    background-size: contain;
}
.c_tab1_li a.on dl dt img{
    top:-75px;
}
.c_tab1_li a.on dl dd h3,.c_tab1_li a.on dl dd p{
    color: #fff;
}
.c_tab1_li a.on dl dd p i{
    background: url(../images/more1_h.png) no-repeat center;
    margin-left: 22px;
}

@media(max-width: 1600px){
    .index_case1{
        padding:100px 0 65px;
    }
    .c_tab1_text .text h3{
        font-size:42px;
    }
    .c_tab1_text .text .txt{
        font-size:15px;
        line-height: 1.8em;
        height: 5.4em;
    }
    .c_tab1_li a dl{
        padding:20px 20px;
        height: 150px;
    }
    .c_tab1_li a dl dt{
        width: 50px;
        height: 52px;
    }
    .c_tab1_li a.on dl dt img{
        top:-52px;
    }
    .c_tab1_li a dl dd {
        width: calc(100% - 50px);
        padding-left: 20px;
    }
    .c_tab1_li a dl dd h3 {
        font-size: 24px;
    }
}
@media(max-width: 1280px){
    .c_tab1_text .text h3{
        font-size:32px;
    }
    .c_tab1_li a dl dd h3 {
        font-size: 20px;
    }    
}
@media(max-width: 1024px){
    .index_case1 {
        padding: 70px 0 50px;
    }
    .c_tab1_text .text h3{
        font-size:28px;
    }
    .c_tab1_text .text .txt{
        margin: 20px 0 45px;
    }
    .c_tab1_li{
        margin-top:120px;
    }
    .c_tab1_li a dl{
        padding:15px 15px;
        height: 120px;
    }
    .c_tab1_li a dl dd h3 {
        font-size: 17px;
    }
    .c_tab1_li a dl dd p i{
        margin-left: 15px;
    }
}
@media(max-width: 820px){

    .c_tab1_li {
        margin-top: 60px;
    }
    .c_tab1_li .wrap{
        flex-wrap: wrap;
    }
    .c_tab1_li a{
        width: 49%;
        margin-bottom: 10px;
    }
    .c_tab1_li a:nth-child(2n) {
        margin-right: 0;
    }
}
@media(max-width: 640px){
    .index_case1 {
        padding: 50px 0 ;
    }    
    .c_tab1_text .text h3{
        font-size:22px;
    }
    .c_tab1_li {
        margin-top: 45px;
    }
    .c_tab1_li a dl{
        height: 90px;
    }
    .c_tab1_li a dl dt {
        width: 35px;
        height: 36.5px;
    }
    .c_tab1_li a.on dl dt img {
        top: -36.5px;
    }
    .c_tab1_li a dl dd {
        width: calc(100% - 35px);
        padding-left: 10px;
    }
    .c_tab1_li a dl dd h3 {
        font-size: 16px;
        margin-bottom:6px;
    }
    .c_tab1_li a dl dd p{
        font-size:13px;
    }
    .c_tab1_img{
        display:none;
    }
    .c_tab1_img2{
        display:block;
    }
}


.index4{
    background: url(../images/index4.png) no-repeat center;   
    background-size: cover; 
    padding:180px 0 88px;
}
.index4 .index_t1{
    text-align: left;
    margin-bottom: 460px;
    animation-delay: 0.3s;
}
.index4 .index_t1 h2 {
    font-weight: bold;
}
.index4 .index_t1 h2 span{
    display: block;
    color: #ff732a;
    margin-top:10px;
}
.index4 .index_t1 p{
    margin-top:20px;
    font-size:20px;
    color: #4c4c4c;
}
.num_list2{
    display: flex;
    flex-wrap: wrap;
    margin-left: 7.5%;
    width: 92.5%;
    animation-delay: 0.5s;
}
.num_list2 li{
    display: flex;
    width: 23.5%;
    margin-right: 2%;
    padding: 50px 20px 20px 60px;
    background: #fff;
    border-radius: 10px;
    height: 244px;
}
.num_list2 li:nth-child(4){
    margin-right: 0;
}
.num_list2 li .img1{
    width: 44px;
}
.num_list2 li .text{
    width: calc(100% - 44px);
    padding-left: 45px;
}
.num_list2 li .text h3{
    font-size:38px;
    color: #ff732a;
    font-weight: normal;
    line-height: 1;
}
.num_list2 li .text .p1{
    font-size:30px;
    color: #333333;
    font-family: "puhui65";
}
.num_list2 li .text .p1 span{
    font-family: "puhui75";
}
.num_list2 li .text .txt{
    font-size:16px;
    color: #808080;
    line-height: 1.6;
}
@media(max-width: 1600px){
    .index4{
        padding:120px 0 90px;
    }
    .index4 .index_t1 p{
        font-size:16px;
    }
    .num_list2{
        margin-left: 6%;
        width: 94%;        
    }
    .num_list2 li{
        padding:35px 20px 20px 25px;
        height: 190px;
    }
    .num_list2 li .text{
        padding-left: 20px;
    }
    .num_list2 li .text h3{
        font-size:24px;
    }
    .num_list2 li .text .p1{
        font-size:26px;
    }
    .num_list2 li .text .txt{
        font-size:15px;
    }
}
@media(max-width: 1280px){
    .num_list2{
        margin-left: 5%;
        width: 95%;        
    }
    .num_list2 li .text .txt {
        font-size: 14px;
    }    
}
@media(max-width: 1024px){
    .index4 {
        padding: 90px 0 70px;
    }
    .num_list2{
        width: 97%;
        margin-left: 3%;
    }
    .num_list2 li {
        padding: 20px 15px;
        height: 160px;
    }
    .num_list2 li .img1 {
        width: 35px;
    }
    .num_list2 li .text {
        width: calc(100% - 35px);
        padding-left: 15px;
    }
    .num_list2 li .text h3 {
        font-size: 20px;
    }
    .num_list2 li .text .p1 {
        font-size: 22px;
    }
    .num_list2 li .text .txt{
        font-size:13px;
    }
}
@media(max-width: 820px){
    .index4 {
        padding: 70px 0 ;
    }
    .index4 .index_t1 p {
        font-size: 15px;
        line-height: 1.6;
    }
    .num_list2 li{
        width: 49%;
        margin-bottom: 10px;
    }
    .num_list2 li:nth-child(2n){
        margin-right: 0;
    }
}
@media(max-width: 640px){
    .index4 {
        padding: 50px 0 30px;
        background: url(../images/m_index4.jpg) no-repeat center;   
        background-size: cover; 
    }
    .index4 .index_t1{
        margin-bottom: 240px;
    } 
/*    .num_list2 li{
        width: 100%;
        margin-right: 0;
    }*/
    .num_list2{
        width: 94%;
    }
    .num_list2 li {
        padding: 17px 10px;
        height: 160px;
    }
    .num_list2 li .img1 {
        width: 25px;
    }
    .num_list2 li .text {
        width: calc(100% - 25px);
        padding-left: 10px;
    }
    .num_list2 li .text h3 {
        font-size: 16px;
    }
    .num_list2 li .text .p1 {
        font-size: 20px;
    } 
    .num_list2 li .text .txt {
        font-size: 12px;
    }  
}


.index3{
    padding:120px 0 185px;
    width: 100%;
    background: #fff;
    /*overflow: hidden;*/
}
.index3 .index_t1{
    padding-bottom: 40px;
    animation-delay: 0.3s;
}
#index3_c{
    margin-top:28px;
    width: 100%;
    position: relative;
    cursor: inherit !important;
/*    overflow: inherit !important;*/
    overflow: visible;
}
#index3_c .swiper-slide.on .case_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: none!important;
    /*width: 1920px;*/
    /*left:50%;*/
    /*margin-left: -960px;*/
}
.index3_ul {
    width: 100%;
    /*position: relative;*/
}
.index3_li {
    width: 21% !important;
    margin: 0 11px;
    border-radius: 14px;
    overflow: hidden;
}
.index3_case {
    display: block;
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.index3_img {
    width: 100%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}
.index3_img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 90px;
    width: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.01));
    z-index: 10;
    opacity: 0;
    transition: all 0.36s;
}
.index3_li.swiper-slide-active .index3_case {
    transform: scale(0.94);
}

.index3_li.swiper-slide-active .index3_img::after {
    opacity: 1;
}

.index3_li.swiper-slide-active {
    margin: 0;
}
.index3_case p {
    font-size: 18px;
    line-height: 1.75;
    color: #fff;
    height: 30px;
    overflow: hidden;
    text-align: center;

    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 26px;
    opacity: 0;
    transition: all 0.36s;
}

.index3_li.swiper-slide-active .index3_case p{
    opacity: 1;
}
.index3_li .img1{
    display: none;
}
.index3_arrow {
    position: absolute;
    bottom: -95px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.index3_bx{
    width: 52px;
    height: 52px;
    border:1px solid #999;
    margin: 0 6px;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
}
.index3_bx:hover{
    border:1px solid #ff732a;
}
.index3_l{
    background:url(../images/left1.png) no-repeat center;
/*    background-size: contain;*/
}
.index3_l:hover{
    background:url(../images/left1_h.png) no-repeat center #ff732a;
/*    background-size: contain;*/
}
.index3_r{
    background:url(../images/right1.png) no-repeat center;
/*    background-size: contain;*/
}
.index3_r:hover{
    background:url(../images/right1_h.png) no-repeat center #ff732a;
/*    background-size: contain;*/
}
.index3_tabs .case_content.on{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.index3_case p {
    font-size: 18px;
    line-height: 1.75;
    color: #fff!important;
    height: 30px;
    overflow: hidden;
    text-align: center;
}
@media(max-width: 1600px){
    .index3_case p{
        font-size:16px;
    }
}
@media(max-width: 1280px){
    .index3{
        padding:90px 0 120px;
    }
}
@media(max-width: 1199px){
    .index3{
        padding:70px 0;
    } 
    .index3 .index_t1 {
        padding-bottom: 20px;
    }
    #index3_c{
        padding-bottom: 65px;
    }
    .index3_arrow{
        bottom:0;
    }
}
@media(max-width: 1024px){
    #index3_c{
        overflow: hidden;
    }
}
@media(max-width: 820px){
    .index3{
        padding:50px 0;
    }  
    .index3_li{
        width:32%!important;
    }
}
@media(max-width: 640px){
    .index3{
        padding:35px 0 ;
    } 
    #index3_c{
        padding-bottom:120px;
    }
    .index3_arrow{
        bottom:0;
    }
    .index3_bx{
        width:40px;
        height:40px;
    }
    .index3_li{
        width:49%!important;
    }
}
@media(max-width: 640px){
    .index3 .index_t1{
        padding-bottom: 0;
    }
    .index3_li{
        width:100%!important;
    }  
    #index3_c {
        padding-bottom: 60px;
    }  
}


.index_news{
    padding:120px 0 130px;
    background: #f5f5f7;
}
.index_top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.index_news .index_t1{
    text-align: left;
    animation-delay: 0.3s;
}
a.more1{
    border:1px solid #808080;
    width: 220px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size:16px;
    color: #666666;
    animation-delay: 0.5s;
}
a.more1 i{
    margin-left: 12px;
    display: block;
    width: 21px;
    height: 7px;
    background: url(../images/more1.png) no-repeat center;
    transition:all 0.3s ease-out;
}
a.more1:hover{
    background: #ff732a;
    color: #fff;
    border:1px solid #ff732a;
}
a.more1:hover i{
    background: url(../images/more1_h.png) no-repeat center;
}
.news_list1{
    display: flex;
    flex-wrap: wrap;
    margin-top:58px;
    animation-delay: 0.7s;
}
.news_list1 li{
    width: 23.5%;
    margin-right: 2%;
}
.news_list1 li:nth-child(4n){
    margin-right: 0;
}
.news_list1 li a{
    display: block;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px #eee;
}
.news_list1 li a .img{
    border-radius: 10px 10px 0 0;
    max-height: 200px;
    overflow: hidden;
}
.news_list1 li a .text{
    padding: 30px 30px;
    border-radius: 0 0 10px 10px;
}
.news_list1 li a .text p.p1{
    font-size:16px;
    color: #666666;
}
.news_list1 li a .text h3{
    font-size:24px;
    color: #1a1a1a;
    line-height: 1.4em;
    height: 2.8em;
    font-weight: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin:10px 0;
    overflow: hidden;
}
.news_list1 li a .text .txt{
    font-size:14px;
    color: #808080;
    line-height: 1.6;
    margin-bottom: 45px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news_list1 li a .text .p2{
    font-size:16px;
    color: #4c4c4c;
    display: flex;
    align-items: center;
}
.news_list1 li a .text .p2 i{
    display: block;
    width: 21px;
    height: 7px;
    background: url(../images/more2.png) no-repeat center;
    margin-left: 14px;
}
.news_list1 li a:hover{
    box-shadow: 0px 0px 10px rgba(204,204,204,1);
}
.news_list1 li a:hover .img img{
    transform:scale(1.1);
}
.news_list1 li a:hover .text h3{
    color: #ff732a;
}
.m_index_news{
    position: absolute;
    opacity: 0;
    height: 0;
    z-index: -9999;
}
#news1{
    padding-bottom: 30px;
}
#news1 span.swiper-pagination-bullet-active{
    background: #ff732a;
}
@media(max-width: 1600px){
    .index_news{
        padding:90px 0;
    }
    .news_list1 li a .img{
        height:160px;
    }
    .news_list1 li a .text {
        padding: 20px 20px;
    }
    .news_list1 li a .text p.p1{
        font-size:14px;
    }
    .news_list1 li a .text h3 {
        font-size: 18px;
    }
    .news_list1 li a .text .txt{
        margin-bottom:25px;
    }
    .news_list1 li a .text .p2{
        font-size:14px;
    }
    a.more1 {
        width: 150px;
        height: 50px;
        font-size: 15px;
    }
}
@media(max-width: 1280px){
    .index_news{
        padding:70px 0;
    }  
    .news_list1 li a .img{
        height:140px;
    }
    .news_list1 li a .text h3 {
        font-size: 16px;
    }  
}
@media(max-width: 1099px){
    .news_list1 li a .img{
        height:120px;
    }    
}
@media(max-width: 1024px){
    a.more1 {
        width: 120px;
        height: 46px;
        font-size: 14px;
    }  
}
@media(max-width: 991px){
    .news_list1 li a .img{
        height:100px;
    }
}
@media(max-width: 820px){
    .index_news{
        padding:55px 0;
    }    
    .news_list1{
        margin-top:35px;
    }
    .news_list1 li {
        width: 49%;
        margin-right: 2%;
        margin-bottom:15px;
    } 
    .news_list1 li:nth-child(2n) {
        margin-right: 0;
    }
}
@media(max-width: 640px){
    .index_news{
        padding:35px 0;
    }  
    .news_list1 {
        margin-top: 30px;
    }
    .news_list1 li {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 15px;
    }  
    .news_list1 li a .img{
        height:140px;
    }
    a.more1{
        height: 42px;
        font-size:13px;
    }
    .pc_news{
        display:none;
    }
    .m_index_news{
        position: relative;
        opacity: 1;
        height: auto;
        z-index: 9;
        margin-top:25px;
    }
}

footer{
    border-top:10px solid #ff732a;
    background: #fff;
}
.foot{
    display: flex;
    flex-wrap: wrap;
    padding:103px 0 113px;
}
.foot h2{
    font-size:32px;
    color: #333333;
    position: relative;
    line-height: 1;
    padding-bottom: 17px;
}
.foot h2:after{
    content:'';
    position: absolute;
    left:0;
    bottom: 0;
    width: 62px;
    height: 2px;
    background: #ff732a;
}
.f_logo{
    width: 25%;
}
.f_nav{
    width: 15%;
}
.f_nav_a{
    margin-top:26px;
}
.f_nav_a a{
    display: block;
    font-size:20px;
    color: #666666;
    font-weight: 500;
}
.f_nav_a a:hover{
    color: #ff732a;
}
.f_contact{
    width: 31.5%;
}
.f_contact .cont{
    margin-top:36px;
}
.f_contact .cont p{
    padding-left: 36px;
    font-size:15px;
    color: #666666;
    line-height: 2;
    margin-bottom: 10px;
}
.f_contact .cont p strong{
    font-size:26px;
    color: #333333;
}
.f_contact .cont p:nth-child(1){
    background: url(../images/f_ico1.png) no-repeat 5px center;
}
.f_contact .cont p:nth-child(2){
    background: url(../images/f_ico2.png) no-repeat 7px 8px;
}
.f_share{
    display: flex;
    flex-wrap: wrap;
    padding-top:35px;
}
.f_share a{
    display: block;
    position: relative;
    margin-right: 12px;
    cursor: pointer;
}
.f_share a:last-child{
    margin-right: 0;
}
.f_code{
    width: 120px;
    height: 120px;
    background: #fff;
    position: absolute;
    top:60px;
    left:50%;
    margin-left: -60px;
    display: none;
}
.f_share a:hover .f_code{
    display: block;
}

.f_message{
    width: 28.5%;
}
.message2{
    margin-top:40px;
}
.message2 ul{

}
.message2 ul li{
    margin-bottom:12px;
}
.message2 ul li input{
    font-size:15px;
    color: #999999;
    background: #ededed;
    outline: none;
    border-radius: 6px;
    border:none;
    display: block;
    line-height: 52px;
    width: 100%;
    padding:0 20px;
}
.message2 ul li input::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
    color: #999999;
}
.message2 ul li input:-moz-placeholder { /* Mozilla Firefox 4 to 18 适配火狐 */
    color: #999999;
}
.message2 ul li input::-moz-placeholder { /* Mozilla Firefox 19+ 适配火狐 */
    color: #999999;
}
.message2 ul li input:-ms-input-placeholder { /* Internet Explorer 10+  适配ie*/
    color: #999999;
}
.message2 ul li textarea{
    font-size:15px;
    color: #999999;  
    background: #ededed;
    outline: none; 
    border-radius: 6px;
    border:none; 
    display: block;
    line-height: 52px;
    height: 104px;
    width: 100%;
    font-family: "微软雅黑";
    padding:0 20px;
}
.message2 ul li textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999999;
}
.message2 ul li textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999999;
}
.message2 ul li textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999999;
}
.message2 ul li textarea::-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999999;
}
.mess_intro{
    font-size:15px;
    color: #808080;
    padding:0px 0 20px;
}
.mess_tn input{
    display: block;
    width: 218px;
    line-height: 56px;
    font-size:18px;
    color: #fff;
    background: #ff732a;
    border-radius: 6px;
    text-align: center;
    border:none;
    outline: none;
    cursor: pointer;
}

.copyright{
    font-size:15px;
    color: #999999;
    border-top:1px solid #999999;
    padding:16px 0;
}
.copyright a{
    font-size:15px;
    color: #999999;    
}
.copyright a:hover{
    color: #ff732a;
}
.copyright .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.copyright_l{

}
.copyright_r{
    
}
@media(max-width: 1600px){
    .foot{
        padding: 75px 0;
    }
    .f_logo{
        width: 20%;
    }
    .foot h2{
        font-size:24px;
    }
    .f_nav_a a{
        font-size:15px;
    }
    .f_contact .cont p strong{
        font-size:20px;
    }
    .f_contact .cont p{
        font-size:14px;
    }
    .message2 ul li input,.message2 ul li textarea{
        font-size:14px;
        padding: 0 15px;
    }
    .mess_intro{
        font-size:14px;
    }
    .mess_tn input {
        width: 150px;
        line-height: 45px;
        font-size: 15px;
    }
    .copyright {
        font-size: 14px;
        padding: 5px 0;
    }
}
@media(max-width: 1280px){
    
}
@media(max-width: 1024px){
    .foot {
        padding: 40px 0;
    }
    .f_nav{
        display: none;
    }
    .f_contact{
        width: 45%;
    }
    .f_message{
        width: 35%;
    }
}
@media(max-width: 820px){
    
}
@media(max-width: 640px){
    .f_logo{
        width: 100%;
        display: none;
    }
    .f_contact{
        width: 100%;
    }
    .f_contact .cont{
        margin-top:25px;
    }
    .f_share{
        display: none;
    }
    .f_message{
        width: 100%;
        margin-top:30px;
    }
    .message2 {
        margin-top: 25px;
    }
    .mess_tn input{
        width: 120px;
    }
}

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

.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

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



/*------------内页-------------------*/
.n_banner {
    width: 100%;
    margin: 0 auto;
    height: 640px;
    width: 100%;
}
.n_banner img {
    width: 100%;
    margin: 0 auto;
    opacity:0;
}
.n_h90{
    display: none;
}
.sitemp{
    margin:30px 0;
    line-height: 1.6;
}
.site{
    padding-left: 25px;
    background:url(../images/home.png) no-repeat left center;
    font-size:16px;
    color: #808080;  
}
.site a{
    font-size:16px;
    color: #808080;    
}
.sort{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom:55px;
}
.sort li{
    margin-right: 15px;
}
.sort li:last-child{
    margin-right: 0;
}
.sort li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 66px;
    font-size:24px;
    color: #333333;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.sort li a:before{
    position: absolute;
    top: 50%;
    height: 0;
    width: 0;
    background-color: #ff732a;
    font-size: 0;
    overflow: hidden;
    content: '';
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
    display: none\9;
    z-index: -1;
}
.sort li.cur a,.sort li a:hover{
    color: #fff;
}
.sort li.cur a:before,.sort li a.cur:before,.sort li a:hover:before{
    width: 100%;
    height: 100%;
}
@media(max-width: 1600px){
    .n_banner{
        height:500px;
    }
    .sort{
        padding-bottom: 40px;
    }
    .sort li a{
        width:140px;
        height:52px;
        font-size:20px;
    }
    .site,.site a{
        font-size:14px;
    }
}
@media(max-width: 1280px){
    .n_banner{
        height:400px;
    }  
    .sort{
        padding-bottom: 30px;
    }
    .sort li a{
        width:100px;
        height:42px;
        font-size:16px;
    }
}
@media(max-width: 1024px){
    
}
@media(max-width: 820px){
    .n_banner{
        height:auto;
        background:none!important;
    } 
    .n_banner img{
        opacity:1;
    }
    .sort{
        padding-bottom: 20px;
    }
    .sort li a{
        font-size:15px;
        width:90px;
        height:40px;
    }
    .n_h90{
        display:block;
    }
}
@media(max-width: 640px){
    .n_banner{
        height:auto;
    }    
}

.p_sort{
    display: flex;
    flex-wrap: wrap;
    margin-top:-90px;
    background:#f2f2f2;
    border-radius: 10px;
}
.p_sort a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    width: 25%;
    border-radius: 10px;
    position: relative; 
}
.p_sort a:after{
    content:'';
    position: absolute;
    left:50%;
    bottom:12px;
    margin-left: -6.5px;
    width: 22px;
    height: 13px;
    background:url(../images/down.png) no-repeat bottom center;
}
.p_sort a .img1{
    width: 72px;
    height: 75px;
    position: relative;
    overflow: hidden;
    margin-right: 14px;
}
.p_sort a .img1 img{
    display: inline-block;
    position: absolute;
    top:0;
    left:0;
}
.p_sort a p{
    font-size:30px;
    color: #1a1a1a;
    font-family: "puhui65";
}
.p_sort a.cur{
    background: url(../images/tab1li_bg.jpg) no-repeat center #ff732a;
    background-size: contain;
    color: #fff;    
}
.p_sort a.cur p{
    color: #fff;     
}
.p_sort a.cur .img1 img{
    top:-75px;
}
.p_list_intro{
    margin-top:77px;
    margin-bottom: 80px;
}
.p_list_intro .wrap{
    height: 500px;
    border-radius: 10px;
    padding:50px 120px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.p_list_intro .wrap h3{
    font-size:60px;
    font-family: "puhui65";
    line-height: 1;
    margin-bottom:30px;
}
.p_list_intro .wrap p{
    font-size:20px;
    font-family: "puhui45";
    max-width: 725px;
    line-height: 1.6;
}
.n_product{
    padding:0 0 110px;
}
.n_product h2{
    font-size:50px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 55px;
}
.product_list{
    display: flex;
    flex-wrap: wrap;
}
.product_list li{
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 50px;
}
.product_list li:nth-child(4n){
    margin-right: 0;
}
.product_list li a{

}
.product_list li a .img{
    position: relative;
    border-radius: 10px;
}
.product_list li a .img:after{
    content:'';
    position: absolute;
    right:0;
    bottom:0;
    width: 44px;
    height: 44px;
    background:url(../images/more.png) no-repeat center;
/*    opacity: .7;*/
}
.product_list li a .text{

}
.product_list li a .text h3{
    font-size:24px;
    line-height: 1;
    color: #1a1a1a;
    font-family: "pihui65";
    border-bottom:1px solid #cccccc;
    padding:36px 0 20px;
    margin-bottom: 12px;
}
.product_list li a .text p{
    font-size: 16px;
    color: #808080;
    line-height: 1.6em;
    height: 3.2em;
    overflow: hidden;
}
.product_list li a:hover .img img{
    transform:scale(1.1);
}
.product_list li a:hover .img:after{
    background:url(../images/more_h.jpg) no-repeat center;
    opacity: 1;
}
.product_list li a:hover .text h3{
    color: #ff732a;
}
.pd1{
    padding-bottom:52px;
}
.pd1 .text{
    width: 45%;
    float: left;
}
.pd1 .text h1{
    font-size:56px;
    line-height: 1;
    color: #333333;
    padding-bottom:30px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom:40px;
}
.pd1 .text .txt{
    font-size:15px;
    font-family: "puhui45";
}
.pd1 .text .txt p.p1{
    font-size:20px;
    color: #ff732a;
    font-family: "puhui85";
}
.pd1 .imgs{
    width: 45%;   
    float: right; 
}
.pd1 .text ul{
    margin:30px 0 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 85px;
    max-width: 630px;
    background:#ffffff;
    border-radius: 4px;
    box-shadow: 0px 0px 10px #ccc;
}
.pd1 .text ul li{
    padding:0 25px;
    display: flex;
    align-items: center;
}
.pd1 .text ul li p{
    margin-left: 8px;
    font-size:15px;
    color: #333333;
}
.pd1_more{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.pd_tel{
    padding-left: 52px;
    background:url(../images/tel2.png) no-repeat left center;
    margin-left: 68px;
}
.pd_tel p:nth-child(1){
    font-size:16px;
    color: #ff732a;
    line-height: 1.6;
}
.pd_tel p:nth-child(2){
    font-size:22px;
    color: #4c4c4c;
    font-family: "puhui85";
    line-height: 1;
}
.f_headzha {
    height: 100px;
    background:#fff;
}
.pd2{
    background:#ffffff;
    padding:0px 0 115px;
}
.pd2 .wrap .cont{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.left2{
    width: calc(100% - 390px);
    float: left;
    padding-right: 11%;
    font-size: 16px;
    color: #808080;
}
.p_t1{
    font-size: 40px;
    font-weight: normal;
    color: #333333;
    line-height: 1;
    font-family: "puhui85";
    padding-left: 30px;
    position: relative;
}
.p_t1:before{
    content:'';
    position: absolute;
    left:0;
    top:0;
    width: 16px;
    height: 100%;
    background:#ff732a;
    border-radius: 2px;
}
.product1{
    padding-bottom: 60px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 75px;
}
.product2{
    padding:0px 0 60px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 80px;
}
.product3{
    padding:0px 0 80px;   
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 80px;   
}
.product4{
    padding:0px 0 80px;   
    margin-bottom: 95px;   
    border-bottom: 2px solid #f0f0f0;
}
.p_table{

}
.p_table table{
    border-top:1px solid #dbdbdb;
    border-left:1px solid #dbdbdb;
}
.p_table table tr td{
    border-bottom:1px solid #dbdbdb;
    border-right:1px solid #dbdbdb; 
    text-align: center;
    padding:5px;   
    font-size:16px;
    color: #333333;
}
/*.p_table table tr td:nth-child(1){
    font-size:20px;
    background:#ff732a;
    color: #fff;
    width: 190px;
}*/
.product5{
    padding:0px 0 60px; 
    margin-bottom: 85px;  
    border-bottom: 2px solid #f0f0f0;    
}
.product6{
    padding:0px 0 118px;  
    margin-bottom: 80px;     
}
.left2 .text1{
    margin-top:40px;
}
.left2 .text1 p{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size:16px;
}
.left2 .text1 p:last-child{
    margin-bottom: 0;
}
.left2 .text1 strong{
    display: block;
    font-family: "puhui85";
    width: 80px;
}
.left2 .text1 em{
    display: block;
    font-style: normal;
    font-family: "puhui55";
    width: calc(100% - 80px);
}
.left2 .text2{
    margin-top:40px;
}
.left2 .text2 p{
    font-size:16px;
    color: #666666;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    margin-bottom: 12px;
}
.left2 .text2 p:before{
    content:'';
    position: absolute;
    top:7px;
    left:0;
    width: 9px;
    height: 9px;
    background:#ff732a;
    border-radius: 50%;
}
.left2 .text2 p:last-child{
    margin-bottom: 0;
}
.left2 .text3{
    margin-top:35px;
}
.left2 .text4{
    margin-top:60px;
}
.left2 .text5{
    margin-top:60px;
    /*position: relative;*/
}
.product5 a.img{
    display: block;
    border-radius: 6px;
}
.product5 .swiper-button-prev,.product5 .swiper-button-next{
    position: absolute;
    margin-top:-30px;
    width: 40px;
    height: 40px;
    border:1px solid #999999;
    border-radius: 6px;
}
.product5 .swiper-button-prev{
    left:-58px;
    background:url(../images/left1.png) no-repeat center;
    background-size: 15px;
}
.product5 .swiper-button-prev:hover{
    background:url(../images/left1_h.png) no-repeat center #ff732a;
    background-size: 15px;
    border:1px solid #ff732a;
}
.product5 .swiper-button-next{
    right:-58px;
    background:url(../images/right1.png) no-repeat center;
    background-size: 15px;
}
.product5 .swiper-button-next:hover{
    background:url(../images/right1_h.png) no-repeat center #ff732a;
    background-size: 15px;
    border:1px solid #ff732a;
}
#xgsb p a{
    font-size:18px;
    color: #333333;
    display: block;
    text-align: center;
    width: 100%;
}
.left2 .text6{
    margin-top:65px;
}
.right2{
    width: 390px;
    float: right;
    position: sticky;
    top: 90px;
}

.nav1{
    margin-bottom: 80px;
}
.nav1 a{
    display: block;
    line-height: 57px;
    border-bottom: 3px solid #fff;
    border-radius: 10px;
    overflow:hidden;
    font-size: 18px;
    color: #808080;
    text-align: center;
    margin-bottom: 15px;
}
.nav1 a.on{
    border-bottom: 3px solid #ff732a;  
    color: #ff732a;
    font-weight: bold;
    background:#f5f5f5;
}
.r_contact{
    border-radius: 10px;
    overflow:hidden;
}
.r_contact .img{

}
.r_contact .text{
    padding:25px 35px;
    background:#f8f8f8;
}
.r_contact .text h3{
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 22px;
    color: #333333;
    font-weight: normal;
}
.r_contact .text .txt{

}
.r_contact .text .txt p{
    display: flex;
    flex-wrap: wrap;
    padding-left: 36px;
    margin-bottom: 7px;
    font-size:16px;
}
.r_contact .text .txt p:nth-child(1){
    background:url(../images/r_ico1.png) no-repeat left center;
}
.r_contact .text .txt p:nth-child(2){
    background:url(../images/r_ico2.png) no-repeat left center;
}
.r_contact .text .txt p strong{
    width: 42px;
    font-weight: normal;
    font-size: 14px;
    color: #333333;
}
.r_contact .text .txt p em{
    width: calc(100% - 42px);
    font-style: normal;
    font-size: 14px;
    color: #808080;    
}
.r_contact .text a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 52px;
    font-size:18px;
    color: #fff;
    background:#ff732a;
    border-radius: 6px;
    font-family: "puhui85";
    margin-top:28px;
}
.pd3{
    display: none;
    background:#ffffff;
}
.p_table{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;    
}
.djsb_c{
    border:none;
    margin-bottom: 0;
}
@media(max-width: 1600px){
    .p_sort{
        margin-top:-80px;
    }
    .p_sort a{
        height:160px;
    }
    .p_sort a .img1{
        width:50px;
        height:52px;
    }
    .p_sort a.cur .img1 img {
        top: -52px;
    }
    .p_sort a p{
        font-size:24px;
    }
    .p_list_intro .wrap{
        height:400px;
    }
    .p_list_intro .wrap h3,.n_product h2{
        font-size:42px;
    }
    .p_list_intro .wrap p{
        font-size:16px;
    }
    .product_list li{
        margin-bottom:35px;
    }
    .product_list li a .text h3 {
        font-size: 18px;
        padding: 25px 0 15px;
    }
    .product_list li a .text p{
        font-size:15px;
    }
    .pd1 .text h1{
        font-size:36px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    .pd1 .text .txt{
        font-size:14px;
    }
    .p_t1{
        font-size:32px;
    }
    .left2 .text1 p,.left2 .text2 p,.p_table table tr td,#xgsb p a{
        font-size:15px;
    }
    .r_contact .text h3{
        font-size:20px;
    }
    .r_contact .text .txt p{
        font-size:15px;
    }
    .pd1 .text ul li{
        padding:0 20px;
    }
    .pd2{
        padding:0 0 90px;
    }
}
@media(max-width: 1280px){
    .p_sort a p{
        font-size:22px;
    }
    .p_list_intro .wrap h3, .n_product h2{
        font-size:32px;
    }
    .pd1 .text h1{
        font-size:32px;
    }
    .pd1 .text{
        width:50%;
    }
    .pd2{
        padding:0 0 70px;
    }
}
@media(max-width: 1024px){
    .p_sort {
        margin-top: -50px;
    }
    .p_sort a {
        height: 100px;
    }
    .p_sort a p {
        font-size: 18px;
    }
    .p_sort a .img1 {
        width: 40px;
        height: 41.5px;
    }
    .p_sort a.cur .img1 img {
        top: -41.5px;
    }
    .pd1 .text ul {
        margin: 30px 0 50px;
        height: 60px;
    }
    .pd1 .text ul li {
        padding: 0 10px;
    }
    .pd1 .text ul li p{
        font-size:14px;
    }
    .left2{
        padding-right:5%;
        width: calc(100% - 320px);
    }
    .right2{
        width:320px;
    }
    .pd_tel{
        margin-left:35px;
    }
    .product5 .swiper-button-next,.product5 .swiper-button-prev{
        display:none;
    }
}
@media(max-width: 820px){
    .n_product {
        padding: 0 0 60px;
    }
    .p_list_intro .wrap h3, .n_product h2 {
        font-size: 26px;
    }
    .p_list_intro {
        margin-top: 50px;
        margin-bottom: 50px;
    } 
    .p_list_intro .wrap {
        height: 300px;
        padding: 35px 50px;
    }
    .n_product h2{
        margin-bottom:30px;
    }
    .pd1 .text h1{
        font-size:26px;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    .pd1 .text ul {
        margin: 30px 0 35px;
        height: 70px;
    }
    .pd1 .text ul li{
        width:50%;
    }
    .pd_tel{
        margin-left:15px;
        padding-left: 46px;
    }    
    .pd_tel p:nth-child(2){
        font-size:16px;
    }
    .f_headzha{
        height:70px;
    }
    .p_t1{
        font-size:26px;
    }
    .left2 .text1 p{
        margin-bottom:0;
    }
    .product1,.product2,.product3,.product4,.product5{
        padding-bottom: 30px;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 35px;
    }
    .product6 {
        padding: 0px 0 30px;
        margin-bottom: 30px;
    }
    .pd1 .text .txt p.p1{
        font-size:18px;
    }
    .pd2{
        padding:0 0 50px;
    }
}
@media(max-width: 640px){
    .n_product {
        padding: 0 0 40px;
    }   
    .p_sort{
        margin-top:25px;
    }
    .p_sort a{
        height:auto;
        width:50%;
        padding:15px 15px;
    }
    .p_sort a:after{
        display:none;
    }
    .p_sort a .img1{
        margin-right:10px;
    }
    .p_sort a p{
        font-size:16px;
    }
    .p_list_intro .wrap h3, .n_product h2 {
        font-size: 22px;
    }
    .p_list_intro {
        margin-top: 35px;
        margin-bottom: 35px;
    } 
    .p_list_intro .wrap {
        height: 260px;
        padding: 25px 20px;
    }
    .p_list_intro .wrap h3{
        margin-bottom:15px;
    }
    .n_product h2{
        margin-bottom:25px;
    }
    .product_list li{
        width:49%;
        margin-bottom:20px;
    }
    .product_list li:nth-child(4n) {
        margin-right: 2%;
    }
    .product_list li:nth-child(2n) {
        margin-right: 0;
    }
    .product_list li a .text h3 {
        font-size: 16px;
        padding: 15px 0 10px;
    }
    .product_list li a .text p{
        font-size:13px;
    }
    .pd1 {
        padding-bottom: 35px;
    }
    .pd1 .text{
        width:100%;
        margin-bottom:30px;
    }
    .pd1 .text h1 {
        font-size: 22px;
    }
    .pd1 .text ul{
        display:none;
    }
    .pd1_more{
        margin-top:25px;
    }
    .pd_tel {
        padding-left: 35px;
        background: url(../images/tel2.png) no-repeat left center;
        background-size: 26px;
    }
    .pd_tel p:nth-child(1){
        font-size:15px;
    }
    .pd1 .imgs{
        width:100%;
    }
    #p_detail {
        padding-bottom: 45px;
    }
    .f_headzha{
        height:60px;
    }
    .left2{
        width:100%;
    }
    .p_t1 {
        font-size: 22px;
        padding-left:22px;
    }
    .p_t1:before{
        width:10px;
    }
    .left2 .text1,.left2 .text2,.left2 .text3,.left2 .text4,.left2 .text5,.left2 .text6{
        margin-top:30px;
    }
    .p_table table{
        width:500px;
    }
    .p_table table tr td{
        font-size:14px;
    }
    .right2{
        display:none;
    }
    .pd2{
        padding:0 0 35px;
    }
}


#p_detail{
    padding-bottom: 55px;
}
.album_sort{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:50px auto 40px;
    border-bottom: 1px solid #e0e0e0;
}
.album_sort a{
    display: block;
    padding:0 30px;
    position: relative;
    font-size:18px;
    color: #4c4c4c;
    font-family: "puhui45";
    line-height: 50px;
}
.album_sort a:after{
    content:'';
    position: absolute;
    left:0;
    bottom:-1px;
    width: 0%;
    height: 3px;
    background:#ff732a;
    transition:all 0.4s ease-out;
}
.album_sort a:hover,.album_sort a.cur{
    color: #ff732a;
}
.album_sort a:hover:after,.album_sort a.cur:after{
    width: 100%;
}
.album_list{
    display: flex;
    flex-wrap: wrap;
}
.album_list li{
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 50px;
}
.album_list li:nth-child(4n){
    margin-right: 0;
}
.album_list li a{
    display: block;
    height: 480px;
    overflow: hidden;
    position: relative;
    padding:90px 25px 25px;
    background:#ffffff;
    box-shadow:0px 0px 10px #eee;
    text-align: center;
}
.album_list li a:after{
    content:'';
    position: absolute;
    left:50%;
    bottom:0;
    width: 0;
    height: 4px;
    background:#ff732a;
    transition:all 0.4s ease-out;
}
.album_list li a p{
    margin-top:30px;
    line-height: 1.4;
    font-size:20px;
    color: #4c4c4c;
    font-family: "puhui45";
}
.album_list li a:hover{
    box-shadow:0 0 10px #ccc;
}
.album_list li a:hover:after{
    width: 100%;
    left:0;
}
.album_list li a:hover p{
    color: #ff732a;
}
@media(max-width: 1600px){
    .album_sort a{
        padding:0 15px;
        font-size:16px;
    }
    .album_list li{
        margin-bottom:30px;
    }
    .album_list li a{
        height:360px;
        padding:60px 20px 25px;
    }
    .album_list li a p{
        font-size:17px;
    }
}
@media(max-width: 1280px){
    .album_sort a{
        padding:0 12px;
        font-size:15px;
        line-height:40px;
    } 
    .album_list li{
        margin-bottom:20px;
    }
    .album_list li a{
        height:300px;
        padding:40px 20px 25px;
    }
    .album_list li a p{
        font-size:16px;
    }
}
@media(max-width: 1024px){
    
}
@media(max-width: 820px){
    .album_sort{
        margin:35px auto 30px;
    }
    .album_list li{
        width:32%;
    } 
    .album_list li:nth-child(4n) {
        margin-right: 2%;
    }
    .album_list li:nth-child(3n) {
        margin-right: 0;
    }
    .album_list li a {
        height: 260px;
        padding: 30px 20px 25px;
    }
    .album_list li a p{
        font-size:15px;
    }
}
@media(max-width: 640px){
    .album_sort{
        margin:20px auto 25px;
    }
    .album_list li{
        width:49%;
    } 
    .album_list li:nth-child(3n) {
        margin-right: 2%;
    }
    .album_list li:nth-child(2n) {
        margin-right: 0;
    } 
    .album_list li a {
        height: 200px;
        padding: 30px 20px 20px;
    }
    .album_list li a p {
        font-size: 14px;
        margin-top:20px;
    }
}


.n_case{
    padding:78px 0 105px;
}
.n_case .index2_list li{
    background: #f0f0f0;
}
.n_case .index2_list li:hover,.n_case .index2_list li.on{
    background: url(../images/index1_bg1.jpg) no-repeat center #00a2e7;
    background-size: contain;
}
.case_sort{
    margin-top:0;
    margin-bottom: 90px;
}
.index_t1 p{
    font-size:20px;
    color: #999999;
    padding-top:5px;
}
.case_list{
    display: flex;
    flex-wrap: wrap;
    margin-top:45px;
}
.case_list li{
    width: 32%;
    margin-right: 2%;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    /*position: unset;*/
    /*transform:none;*/
}
.case_list li:nth-child(3n){
    margin-right: 0;
}
.case_list li a.img1:after{
    content: '';
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;
    height: 100%;
    /*background: url(../images/case_bg.png) no-repeat bottom center;*/
    z-index: 1;
}
.case_list li a.img1{
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.case_list li a.img1 img{
    width: 100%;
}
.case_list li a.img1 p{
    position: absolute;
    left:0;
    bottom:0px;
    width: 100%;
    font-size:22px;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    padding:0 15px 25px;
    z-index: 9;
}
.case_list li a.img1:hover img{
    transform: scale(1.1);
}
.case_content{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,.6);
    z-index:9999999;
    display: none;
    padding:62px;
}
.case_content .cont{
    position: relative;
    padding: 75px 110px 75px 65px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 740px;
}
.close2{
    position: absolute;
    top:40px;
    right:40px;
    z-index:9;
    cursor: pointer;
}
.case_content .cont .img2{
    width: 54%;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.case_content .cont .img2 img{
    width: 100%;
/*    height: 100%;*/
    border-radius: 10px;
}
.case_content .cont .text{
    width: 46%;
    padding:20px 0 20px 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.case_content .cont .text h3{
    font-size:40px;
    color: #ff732a;
    line-height: 1.2;
}
.case_content .cont .text p.p1{
    font-size:24px;
    line-height: 1.4;
    color: #1a1a1a;
    border-bottom: 1px solid #000000;
    margin-bottom: 25px;
    padding:15px 0 30px;
}
.case_content .cont .text .txt{
    overflow-y: auto;
    padding-right: 10px;    
    max-height: 250px;
}
.case_content .cont .text .txt::-webkit-scrollbar {/*滚动条整体样式*/
    width: 3px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
.case_content .cont .text .txt::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #00a2e7;
}
.case_content .cont .text .txt::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #fff;
}
.case_content .cont .text p.p2{
    font-size:16px;
    color:#434343;
    line-height: 1.6;
}
.case_content .cont .text .txt2{
    font-size:24px;
    color: #434343;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-top:5px;
}
.case_content .cont .text .txt3{
    font-size:16px;
    color:#434343;
    line-height: 1.6;
    margin-bottom: 20px;
}
.case_content .cont .text .txt4{
    font-size:30px;
    color: #434343;
    line-height: 1.6;
}
.case_content .index_more{
    justify-content: flex-start;
    margin-top:65px;
}
.case_list li.on .case_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.yf1{
    padding:105px 0 50px;
}
.yf1 .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.yf1 .wrap .index_t1{
    text-align: left;
    width: 37.5%;
}
.yf1 .text{
    width: 62.5%;
    font-size:24px;
    color: #1a1a1a;
    line-height: 1.6;
}
.yf2{
    padding:50px 0 110px;
}
.yf2 .wrap{
    display: flex;
    flex-wrap: wrap;
}
.yf_list{
    width: 37.5%; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;   
}
.yf_list li{
    width: 76%;
    border-bottom: 1px solid #e0e0e0;
    padding:38px 0 8px;
    position: relative;
}
.yf_list li:after{
    content:'';
    position: absolute;
    left:0;
    bottom:0;
    width: 0;
    height: 1px;
    background: #00a2e7;
}
.yf_list li:nth-child(1):after{
    width: 75%;
}
.yf_list li:nth-child(2):after{
    width: 100%;
}
.yf_list li:nth-child(3):after{
    width: 85%;
}
.yf_list li:nth-child(4):after{
    width: 50%;
}
.yf_list li .p1{
    line-height: 1;
    color: #00a2e7;
}
.yf_list li .p1 span{
    font-size:40px;
    font-family: "Arial";
    font-weight: bold;
}
.yf_list li .p1 sup{
    position: relative;
    top:-15px;
    left:5px;
    font-size:18px;
}
.yf_list li .p2{
    font-size:20px;
    color: #4c4c4c;
    margin-top:2px;
}
.yf_img{
    width: 62.5%;    
}
.yf3{
    background: #f5f5f5;
    padding:105px 0;
}
.yf3 .wrap{
    max-width: 1050px;    
}
.yf3 .text{
    font-size:20px;
    color: #333333;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 50px;
}
#yanfa{
    padding-bottom: 60px;
}
#yanfa .img{
    border-radius: 10px;
}
#yanfa p{
    font-size:20px;
    color: #4c4c4c;
    text-align: center;
    padding-top:15px;
    line-height: 1.4;
}
#yanfa .swiper-pagination{
    bottom:0;
}
#yanfa .swiper-pagination .swiper-pagination-bullet{
    width: 66px;
    height: 3px;
    margin:0 11px;
    border-radius: 0;
}
#yanfa .swiper-pagination .swiper-pagination-bullet-active{
    background: #00a2e7;
}
.yjsl3{
    padding:100px 0 180px;
    background: none;
}
@media(max-width: 1600px){
    .n_case{
        padding:78px 0;
    }
    .index_t1 p{
        font-size:16px;
    }
    .case_sort{
        margin-bottom:60px;
    }
    .case_list li{
        margin-bottom:35px;
    }
    .case_list li a.img1 p{
        font-size:20px;
    }
    .case_content .cont .text h3{
        font-size:24px;
    }
    .case_content .cont .text p.p1{
        margin-bottom: 20px;
        padding: 10px 0 15px;        
    }
    .case_content .cont .text p.p2{
        font-size:14px;
    }
    .case_content .cont .text .txt2{
        font-size:18px;
    }
    .case_content .cont .text .txt3{
        font-size:14px;
    }
    .case_content .cont .text .txt4 {
        font-size: 24px;
    }
    .case_content .index_more {
        margin-top: 45px;
    }
    .yf1{
        padding: 90px 0 50px;
    }
    .yf1 .text{
        font-size:20px;
    }
    .yf_list li .p1 span{
        font-size:32px;
    }
    .yf_list li .p1 sup{
        top:-10px;
    }
    .yf_list li .p2{
        font-size:15px;
    }
    .yf2 {
        padding: 50px 0 90px;
    }
    .yf3{
        padding:90px 0;
    }
    .yf3 .text,#yanfa p{
        font-size:15px;
    }
}
@media(max-width: 1280px){
    .n_case,.yjsl3{
        padding:70px 0;
    }
    .case_list li a.img1 p{
        font-size:17px;
    }
    .case_content .cont{
        padding:50px 50px;
    }
    .index_t1 p{
        font-size:16px;
    }
    .close2 {
        top: 25px;
        right: 25px;
    }
    .case_content .cont{
        height:600px;
    }
    .case_content .cont .text {
        padding: 15px 0 15px 60px;
    }
    .yf1{
        padding: 70px 0 35px;
    }
    .yf1 .text{
        font-size:16px;
    }
    .yf2 {
        padding: 35px 0 70px;
    }
    .yf3{
        padding:70px 0;
    }
}
@media(max-width: 1199px){
    .case_list{
        margin-top:30px;
    }
    .case_content .cont {
        padding: 35px 35px;
    }
    .close2{
        width:40px;
        top: 10px;
        right: 10px;
    }
    .case_content .cont .text {
        padding: 15px 0 15px 40px;
    }
    .case_content .cont .text h3{
        font-size:20px;
    }
    .case_content .cont .text .txt2 {
        font-size: 16px;
    }
    .case_content .cont .text .txt4 {
        font-size: 20px;
    }
    .case_content .index_more {
        margin-top: 30px;
    }
    .yf_list li{
        padding: 25px 0 8px;
    }
    .yf_list li .p1 span{
        font-size:28px;
    }
    .yf_list li .p1 sup {
         top: -5px; 
    }
}
@media(max-width: 992px){
    .case_content .cont{
        height:800px;
    }
    .case_content .cont .img2{
        width:100%;
        max-height:300px;
    }
    .case_content .cont .img2 img{
        display:block;
    }
    .case_content .cont .text{
        width:100%;
        padding:20px 0 0;
        justify-content:flex-start;
    }
    .case_content .cont .text .txt{
        max-height:220px;
    }
    .case_content .cont .text p.p1{
        font-size:16px;
    }
}
@media(max-width: 820px){
    .n_case,.yjsl3{
        padding:55px 0;
    }
    .case_sort{
        margin-bottom:30px;
    }
    .case_list li{
        margin-bottom:20px;
    }
    .case_list li a.img1 p{
        font-size:16px;
    }

    .yf1{
        padding: 50px 0 25px;
    }
    .yf1 .text{
        font-size:16px;
    }
    .yf2 {
        padding: 25px 0 50px;
    }
    .yf3{
        padding:50px 0;
    }
    #yanfa {
        padding-bottom: 45px;
    }   
    #yanfa .swiper-pagination .swiper-pagination-bullet{
        width:50px;
    }
}
@media(max-width: 640px){
    .n_case,.yjsl3{
        padding:35px 0;
    } 
    .case_list{
        margin-top:20px;
    }
    .case_list li{
        width:100%;
        margin-right:0;
    }
    .case_list li a.img1 p{
        font-size:15px;
    }
    .case_content{
        padding: 50px 25px;
    }
    .case_content .cont{
        height:650px;
        padding: 35px 20px 20px;
        border-radius:12px;
    }
    .case_content .cont .text .txt{
        max-height:200px;
    }
    .close2{
        width:35px;
    }
    .case_content .cont .img2{
        /*display:none;*/
    }
    .case_content .cont .text h3{
        font-size:16px;
    }
    .case_content .cont .text .txt2,.case_content .cont .text .txt3{
        margin-bottom:15px;
    }
    .case_content .cont .text .txt2{
        font-size:14px;
    }
    .yf1{
        padding: 30px 0 15px;
    }
    .yf2 {
        padding: 15px 0 30px;
    }
    .yf3{
        padding:30px 0;
    }
    .yf1 .wrap .index_t1{
        width:100%;
    }
    .yf1 .text{
        font-size:15px;
        width:100%;
        margin-top:10px;
    }
    .yf_list{
        width:100%;
    }
    .yf_list li{
        width:100%;
    }
    .yf_list li .p1 span {
        font-size: 24px;
    }
    .yf_list li .p1 sup {
        top: -5px;
        left: 3px;
        font-size: 14px;
    }
    .yf_list li .p2 {
        font-size: 14px;
        margin-top:0;
    }
    .yf_img{
        width:100%;
        margin-top:25px;
    }
    #yanfa {
        padding-bottom: 30px;
    }
    #yanfa .swiper-pagination .swiper-pagination-bullet{
        width:30px;
        margin: 0 5px;
    }
}


.n_news{
    padding:27px 0 105px;
}
.news_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news_list li{
    width: 48%;
    margin-bottom:54px;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .03));
}
.news_list li a{
    display: flex;
    flex-wrap: wrap;
}
.news_list li a .img{
    width: 50%;
    max-height: 200px;
}
.news_list li a .img img{
    width: 100%;
}
.news_list li a .text{
    width: 50%;    
    background:#fff;
    padding:35px 50px 35px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news_list li a .text h3{
    font-size:22px;
    color: #333333;
    line-height: 1.4em;
    height: 2.8em;
}
.news_list li a .text .date1{
    font-size:16px;
    color: #999999;
    padding-left: 30px;
    background:url(../images/time.png) no-repeat left center;
}
.news_list li a:hover .img img{
    transform:scale(1.1);
}
.news_list li a:hover .text h3{
    color: #ff7c38;
}
.news_list li:hover{
    filter: drop-shadow(3px 3px 8px rgba(0, 3, 4, .05));
}
.news_detail{
    padding:70px 100px;
    background:#fff;
    max-width:1300px;
    margin-bottom: 90px;
}
.news_detail h1{
    font-size:28px;
    text-align: center;
    line-height: 1.4;
    color: #333;
    margin-bottom: 10px;
}
.info_title{
    text-align: center;
    font-size: 15px;
    color: #666;
    padding-bottom: 10px;
    border-bottom:1px dashed #dcdcdc;
    margin-bottom: 20px;
}
.news_detail .content{
    font-size:16px;
    margin-bottom: 20px;
}
@media(max-width: 1600px){
    .n_news {
        padding: 27px 0 95px;
    }
    .news_list li{
        margin-bottom:35px;
    }
    .news_list li a .text{
        padding:25px 30px;
    }
    .news_list li a .text h3{
        font-size:18px;
        line-height:1.6em;
        height:3.2em;
    }
    .news_list li a .text .date1 {
        font-size: 15px;
        padding-left: 25px;
    }
    .news_detail{
        margin-bottom:70px;
        padding:50px 70px;
    }
    .news_detail .content{
        font-size:15px;
    }
    .news_detail h1{
        font-size:24px;
    }
}
@media(max-width: 1280px){
    .n_news {
        padding: 27px 0 75px;
    }  
    .news_list li{
        margin-bottom:25px;
    }
}
@media(max-width: 1024px){
    .n_news {
        padding: 10px 0 75px;
    }
    .news_list li a .text {
        padding: 15px 20px;
    }
    .news_list li a .text h3{
        font-size:16px;
    }
}
@media(max-width: 820px){
    .n_news {
        padding: 10px 0 55px;
    } 
    .news_list li a .img{
        width:100%;
    }
    .news_list li a .text {
        padding: 15px 20px;
        width:100%;
    }
    .news_detail{
        margin-bottom:50px;
        padding: 35px 40px;
    }
    .news_detail h1 {
        font-size: 20px;
    }
}
@media(max-width: 640px){
    .n_news {
        padding: 0px 0 35px;
    }  
    .news_detail{
        margin-bottom:35px;
        padding: 22px 20px;
    }
    .news_detail h1 {
        font-size: 18px;
    }
    .info_title{
        font-size:14px;
        margin-bottom:15px;
        padding-bottom: 5px;
    }
}
@media(max-width: 460px){
    .news_list li{
        width:100%;
        margin-right:0;
    }    
}


#about1{
    background:url(../images/about1.jpg) no-repeat center;
    background-size: cover;
    padding:118px 0 150px;
}
.a_t1{

}
.a_t1 h2{
    line-height: 1;
    font-size:56px;
    color: #333333;
}
#about1 .a_t1{
    float: left;
    width: 33%;
}
#about1 .text{
    font-size:16px;
    color: #808080;
    float: right;
    width: 67%;
}
#about1 .text p.p1{
    font-size:38px;
    color: #ff732a;
    font-family: puhui85;
    margin-bottom:25px;
    line-height: 1.4;
}
.about1-2{
    background:url(../images/about1-2.jpg) no-repeat center;
    background-size: cover;
}
.about1-2 ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 300px;
}
.about1-2 ul li{
    display: flex;
    color: #fff;
}
.about1-2 ul li .img1{
    width: 59px;
    margin-top: 8px;
}
.about1-2 ul li .text{
    padding-left: 22px;
}
.about1-2 ul li .text .p1{
    line-height: 1;
}
.about1-2 ul li .text .p1 span{
    font-size: 74px;
    font-family: "微软雅黑";
    font-weight: bold;
    line-height: 1;
    display: inline-block;
}
.about1-2 ul li .text .p1 sub{
    font-size:18px;
    font-family: "puhui65";
    margin-left:3px;
    display: inline-block;
}
.about1-2 ul li .text .p2{
    font-size:18px;
    font-family: "puhui45";
    margin-top:6px;
}
#about2{
    padding:145px 0 105px;
}
.about2_top{
    display: flex;
    flex-wrap: wrap;
}
#about2 .a_t1{
    width: 26.5%;
}
.cy_tabli{
    width: 73.5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cy_tabli dl{
    position: relative;
    cursor: pointer;
}
.cy_tabli dl:after{
    content:'';
    position: absolute;
    bottom:0;
    left:0;
    width: 100%;
    height: 5px;
    background:#ff742a;
    opacity: 0;
}
.cy_tabli dl dt{
    width: 72px;
    height: 75px;
    position: relative;
    overflow: hidden;
}
.cy_tabli dl dt img{
    position: absolute;
    top:0;
    left:0;
    display: inline-block;
}
.cy_tabli dl dd{
    font-size:36px;
    color: #1a1a1a;
    font-family: "puhui65";
    line-height: 1;
    padding:18px 0 15px;
}
.cy_tabli dl:hover:after,.cy_tabli dl.on:after{
    opacity: 1;
}
.cy_c{
    margin-top:50px;
}
.cy_c .cy_tab{
    display: none;
    border-radius: 10px;
    overflow: hidden;
}
.cy_c .cy_tab.on{
    display: block;
}
.cy_c .cy_tab .text{
    max-width: 460px;
    background:#ff742a;
    padding:105px 45px 45px;
    color: #fff;
    height: 648px;
}
.cy_c .cy_tab .text h3{
    font-size:47px;
    font-family: "puhui65";
    line-height: 1;
    margin-bottom:32px;
}
.cy_c .cy_tab .text .txt{
    font-size:18px;
}
#about3{
    background:#f5f5f5;
/*    height: 100vh;*/
}
#about3 .wrap{
    position: relative;
/*    height: 100vh;*/
}
#about3 .a_t1{
    position: absolute;
    top:140px;
    left:30px;
    z-index: 99;
}
.fzlc{
    min-width: 1760px;
/*    height: 100%;  */
/*    height: 100vh;*/
    overflow: hidden;
}
#fzlc{
    width: 100%;
    overflow: visible;  
/*    height: 100%;  */
/*    height: 100vh;*/
}
#fzlc .swiper-slide{
    padding:320px 21px 20px;
    border-left: 1px solid #dddee0;
    height: 100vh;
}
#fzlc h3{
    font-size:40px;
    color:#ff732a;
    font-family: "puhui55";
    line-height: 1;
}
#fzlc .p1{
    font-size:22px;
    color: #4c4c4c;
    font-family: "puhui85";
    line-height: 1.3em;
    height: 2.6em;
    overflow: hidden;
    margin:18px 0 24px;
}
#fzlc .txt{
    font-size:16px;
    color: #4c4c4c;
    line-height: 1.8em;
    height: 3.6em;
    overflow: hidden;
}
#fzlc .img{
    margin-top:52px;

}
#fzlc .img img{
    border-radius: 10px;
}
#about3 .swiper-button-prev,#about3 .swiper-button-next{
    width: 60px;
    height: 60px;
    border:2px solid #b4b4b4;
    border-radius: 6px;
}
#about3 .swiper-button-prev{
    top:140px;
    left:calc(100% - 145px);
    margin-top:0;
    background:url(../images/left1.png) no-repeat center;
}
#about3 .swiper-button-prev:hover{
    background:url(../images/left1_h.png) no-repeat center #ff732a;
    border:2px solid #ff732a;
}
#about3 .swiper-button-next{
    top:140px;
    right:0px;
    margin-top:0;
    background:url(../images/right1.png) no-repeat center;
}
#about3 .swiper-button-next:hover{
    background:url(../images/right1_h.png) no-repeat center #ff732a;
    border:2px solid #ff732a;
}
#about4{
    padding:130px 0 85px;
}
#about4 .a_t1{
    text-align: center;
}
.ryzz{
    margin-top:72px;
}
#ryzz{
    padding-bottom:65px;
}
#ryzz .swiper-slide{
    box-shadow: 0 0 10px #ccc;
    border-radius: 6px;
}
#ryzz .img{
    background:#d9d9d9;
    text-align: center;
    padding:25px;
    border-radius: 6px 6px 0 0;
    line-height: 237px;
    height: 290px;
}
#ryzz p{
    font-size:18px;
    color: #1a1a1a;
    line-height: 1.6;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 130px;
}
.swiper-pagination.pagination1{
    bottom:0!important;
}
.swiper-pagination.pagination1 span{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background:#ff742a;
    margin:0 12px;
}
#about5{
    padding:140px 0 130px;
    background:url(../images/hz_bg.jpg) no-repeat center;
    background-size: cover;
}
#about5 .a_t1{
    text-align: center;
}
.a_t1 p{
    font-size:18px;
    color: #2d2d2d;
    line-height: 1.6;
    max-width: 380px;
    margin:24px auto 0;
    opacity: .7;
}
.hzhb{
    margin-top:58px;
}
#hzhb{
    padding-bottom:120px;
}
#hzhb .swiper-slide{
    padding:7px;
}
#hzhb .swiper-slide img{
    border-radius: 6px;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, .06))
}
@media(max-width: 1600px){
    #about1,#about2,#about4{
        padding: 95px 0;
    }
    .a_t1 h2{
        font-size:42px;
    }
    .a_t1 p{
        font-size:15px;
    }
    #about1 .text{
        font-size:15px;
    }
    #about1 .text p.p1{
        font-size:26px;
    }
    .about1-2 ul li .text .p1 span{
        font-size:52px;
    }
    .cy_tabli dl dt{
        width: 50px;
        height: 52px;
    }
    .cy_tabli dl.on dt img{
        top:-52px;
    }
    .cy_tabli dl dd{
        font-size:24px;
    }
    .cy_c .cy_tab .text{
        height:550px;
    }
    .cy_c .cy_tab .text h3{
        font-size:36px;
    }
    .cy_c .cy_tab .text .txt{
        font-size:15px;
    }
    #about3 .a_t1,#about3 .swiper-button-prev,#about3 .swiper-button-next{
        top:100px;
    }
    #fzlc .swiper-slide{
        padding:240px 20px 20px;
    }
    #fzlc h3{
        font-size:26px;
    }
    #fzlc .p1{
        font-size:18px;
        margin: 15px 0 15px;
    }
    #fzlc .txt{
        font-size:15px;
    }
    #fzlc .img{
        margin-top:30px;
    }
    #about5{
        padding:100px 0;
    }
    #hzhb {
        padding-bottom: 90px;
    }
    #ryzz p{
        height:90px;
        font-size:16px;
    }
}
@media(max-width: 1280px){
    #about1, #about2, #about4 {
        padding: 75px 0;
    }
    .a_t1 h2{
        font-size:36px;
    }
    #about1 .text p.p1 {
        font-size: 22px;
        margin-bottom:20px;
    }
    .about1-2 ul{
        height:220px;
    }
    .about1-2 ul li .text .p1 span {
        font-size: 42px;
    }
    .about1-2 ul li .text .p2{
        font-size:16px;
    }
    .about1-2 ul li .text .p1 sub{
        font-size:15px;
        position: relative;
        top: -5px;
    }
    .about1-2 ul li .text .p2{
        margin-top:0;
        font-size:15px;
    }
    .cy_tabli dl dd {
        font-size: 22px;
    }
    #about3 .a_t1, #about3 .swiper-button-prev, #about3 .swiper-button-next {
        top: 75px;
    }
    #about3 .swiper-button-prev, #about3 .swiper-button-next{
        width:50px;
        height:50px;
    }
    #about3 .swiper-button-prev{
        left: calc(100% - 120px);
    }
    #fzlc .swiper-slide {
        padding: 220px 20px 20px;
    }
    #fzlc h3 {
        font-size: 20px;
    }
    #about5 {
        padding: 80px 0;
    }
    .hzhb {
        margin-top: 35px;
    }
    #hzhb {
        padding-bottom: 65px;
    }
}
@media(max-width: 1024px){
    .a_t1 h2{
        font-size:28px;
    }
    #about1 .a_t1{
        width:100%;
        margin-bottom:20px;
    }
    #about1 .text{
        width:100%;
    }
    #about1 .text p.p1 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .about1-2 ul {
        height: 180px;
    }
    .about1-2 ul li .img1{
        margin-top:0;
    }
    .about1-2 ul li .text .p1 span {
        font-size: 32px;
    }
    .cy_tabli dl dd {
        font-size: 18px;
    }
    .cy_tabli dl:after{
        height:3px;
    }
    .cy_c .cy_tab .text {
        height: 460px;
        padding:65px 35px 35px;
    }
    .cy_c .cy_tab .text h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    #fzlc .swiper-slide {
        padding: 180px 20px 35px;
        height:auto;
    }
    #fzlc .p1 {
        font-size: 16px;
        margin: 12px 0;
    }
    #fzlc .img {
        margin-top: 20px;
    }
    #about3 .swiper-button-prev, #about3 .swiper-button-next {
        width: 50px;
        height: 50px;
        border: 1px solid #b4b4b4;
    }
    #about3 .swiper-button-prev {
        left: calc(100% - 115px);
    }
    .ryzz{
        margin-top:50px;
    }
    #ryzz p{
        height:60px;
        font-size:15px;
    }  
    .swiper-pagination.pagination1 span{
        width:10px;
        height:10px;
    }
}
@media(max-width: 820px){
    #about1, #about2, #about4 {
        padding: 55px 0;
    } 
    .about1-2 ul li .img1{
        width:45px;
    }
    .about1-2 ul li .text {
        padding-left: 15px;
    }
    .about1-2 ul li .text .p1 span {
        font-size: 26px;
    }
    .about1-2 ul li .text .p1 sub{
        font-size:14px;
    }
    #about2 .a_t1{
        width:100%;
    }
    .cy_tabli{
        width:100%;
        margin-top:20px;
    }
    .cy_tabli dl dt {
        width: 40px;
        height: 41.5px;
    }
    .cy_tabli dl dd {
        font-size: 15px;
        padding: 10px 0 15px;
    }
    .cy_c {
        margin-top: 35px;
    }
    .cy_c .cy_tab .text {
        height: 400px;
        padding: 35px 25px 35px;
    }
    .cy_c .cy_tab .text h3 {
        font-size: 22px;
    }
    .fzlc{
        min-width:100%;
    }
    #about3 .swiper-button-prev {
        left: calc(100% - 110px);
    }
    #about3 .swiper-button-next{
        right:15px;
    }
    .ryzz{
        margin-top:35px;
    }
    #about5 {
        padding: 65px 0;
    }
}
@media(max-width: 640px){
    #about1, #about2, #about4 {
        padding: 35px 0;
    }
    .a_t1 h2{
        font-size:22px;
    }
    #about1 .text {
        font-size: 14px;
    }
    #about1 .text p.p1{
        font-size:17px;
    }
    .about1-2 ul {
        height: 160px;
        padding: 15px 10px;
    }
    .about1-2 ul li{
        width:50%;
        padding:5px 0;
    }
    .about1-2 ul li .img1 {
        width: 35px;
    }
    .about1-2 ul li .text .p1 span {
        font-size: 24px;
    }
    .about1-2 ul li .text .p2{
        font-size:14px;
    }
    .cy_c {
        margin-top: 25px;
    }
    .cy_c .cy_tab .text{
        height:380px;
        max-width:420px;
    }
    .cy_c .cy_tab .text h3 {
        font-size: 18px;
    }
    .cy_tabli dl dd{
        font-size:14px;
    }
    .cy_c .cy_tab .text {
        height: auto;
        padding: 25px 20px;
    }
    .ryzz{
        margin-top:25px;
    }
    #about3 .swiper-button-prev, #about3 .swiper-button-next {
        width: 38px;
        height: 38px;
    }
    #about3 .a_t1, #about3 .swiper-button-prev, #about3 .swiper-button-next {
        top: 50px;
    }
    #about3 .swiper-button-prev {
        left: calc(100% - 105px);
    }
    #fzlc .swiper-slide {
        padding: 135px 20px 35px;
    }
    #ryzz {
        padding-bottom: 50px;
    }
    #ryzz .img {
        padding: 20px;
        line-height: 200px;
        height: 245px;
    }
    #ryzz p {
        height: 50px;
        font-size: 14px;
    }
    #about5 {
        padding: 50px 0;
    }
    .a_t1 p{
        font-size:14px;
        margin: 10px auto 0;
    }
    .hzhb {
        margin-top: 20px;
    }
    #hzhb {
        padding-bottom: 50px;
    }
}


.contact1{
    padding:65px 0 115px;
    border-top: 1px solid #dbdbdb;
}
.contact1 h2{
    font-size:36px;
    color: #333333;
    line-height: 1.4;
}
.contact_l{
    width: 44.5%;
    float: left;
}
.contact_l .text{
    margin:30px 0 25px;
    font-size:16px;
    color: #333333;
}
.contact_l .text p:nth-child(1){
    padding-left: 25px;
    background:url(../images/c_ico1.png) no-repeat left center;
    margin-bottom: 10px;
}
.contact_l .text p:nth-child(1) strong{
    font-size:22px;
    color: #333333;
    font-family: "puhui65";
}
.contact_l .text p:nth-child(2){
    padding-left: 25px;
    background:url(../images/c_ico2.png) no-repeat left center;
    margin-bottom: 10px;
}
.contact_l .text p:nth-child(2) strong{
    font-size:32px;
    color: #333333;
    font-family: "puhui65";
    line-height: 1.4;
}
.contact_l .text p:nth-child(3){
    padding-left: 25px;
    background:url(../images/c_ico3.png) no-repeat left center;
}
.n_code{
    width: 152px;
    text-align: center;
    font-size:16px;
    color: #333333;
}
.contact_r{
    width: 55.5%;
    padding-right: 40px;
    float: right;
}
.message{

}
.message ul{
    margin-top:65px;
}
.message ul li{
    margin-bottom: 38px;
}
.message ul li:last-child{
    margin-bottom: 0;
}
.message ul li label{
    display: block;
    font-size:18px;
    color: #333333;
    line-height: 1;
    font-family: "puhui85";
    margin-bottom: 6px;
}
.message ul li p{

}
.message ul li p input{
    width: 100%;
    border:none;
    outline: none;
    border-bottom: 1px solid #cccccc;
    line-height: 45px;
    font-size:16px;
    color: #808080;
    font-family: "puhui45";
}
.mess_btn{
    margin-top:75px;
}
.mess_btn button{
    width: 180px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:#ff732a;
    font-size:16px;
    color: #fff;
    border-radius: 6px;
    border:none;
    outline: none;  
    padding:10px 26px 10px 30px;  
    cursor: pointer;
    transition:all 0.4s ease-out;
}
.mess_btn button i{
    width: 8px;
    height: 13px;
    background:url(../images/c_more1.png) no-repeat center;
}
.mess_btn button:hover{
    padding:10px 30px 10px 30px;  
}
.map-iframe {
    width: 100%;
    height: 600px;
}
@media(max-width: 1600px){
    .contact1{
        padding: 65px 0 95px;
    }
    .contact1 h2{
        font-size:28px;
    }
    .contact_l .text{
        font-size:15px;
    }
    .contact_l .text p:nth-child(1) strong{
        font-size:20px;
    }
    .contact_l .text p:nth-child(2) strong{
        font-size:26px;
    }
    .contact_r{
        padding-right:0;
        width:50.5%;
    }
    .message ul{
        margin-top:50px;
    }
    .message ul li {
        margin-bottom: 25px;
    }
    .message ul li label{
        font-size:16px;
    }
    .message ul li p input,.message ul li p textarea{
        font-size:15px;
    }
    .mess_btn {
        margin-top: 50px;
    }
    .map-iframe{
        height:500px;
    }
}
@media(max-width: 1280px){
    .mess_btn button{
        width:150px;
        padding:10px 20px 10px 20px;
    }

}
@media(max-width: 1024px){
    .contact1{
        padding: 65px 0 70px;
    }
    .contact1 h2{
        font-size:24px;
    } 
    .contact_l .text {
        font-size: 14px;
    }
    .contact_l .text p:nth-child(1) strong{
        font-size:18px;
    }
    .contact_l .text p:nth-child(2) strong{
        font-size:22px;
    }
    .contact-map{
        display:none;
    }
}
@media(max-width: 820px){
    .contact1 {
        padding: 55px 0;
    }    
}
@media(max-width: 640px){
    .contact1 {
        padding: 35px 0;
    } 
    .contact_l{
        width:100%;
    }
    .contact1 h2{
        font-size:20px;
    } 
    .contact_r{
        width:100%;
        margin-top:35px;
    }
}




/*加入我们*/
#job1{
    padding:20px 0 0;
}
#job1 .job1_c{
    padding:110px 90px 105px;
    background:url(../images/j_bg1.jpg) no-repeat center;  
    background-size: cover;  
    position: relative;
    border-radius: 10px;
}
#job1 .job1_c .cont{
    max-width: 880px;
    background:url(../images/j_bg1-2.png) no-repeat left center;   
    padding:65px 0 65px 125px;
}
#job1 .job1_c .cont .txt{
    max-width: 420px;
    color: #333;
}
#job1 .job1_c .cont .txt h2{
    font-size:46px;
    margin-bottom: 20px;
    line-height: 1.6;
}
#job1 .job1_c .cont .txt p{
    font-size:18px;
}

#job2{
    padding:90px 0;
}
#job2 h2{
    text-align: center;
    font-size:46px;
    color: #333;
    line-height: 1;
    margin-bottom: 65px;
}
.job2 ul{
    display: flex;
    flex-wrap: wrap;
}
.job2 ul li{
    width: 22%;
    margin-right: 4%;
    text-align: center;
    border:3px solid #ff732a;
    padding:100px 35px 115px;
    border-radius: 10px;
/*    background:url(../images/j_icon1.png) no-repeat bottom center;*/
}
.job2 ul li:nth-child(4n){
    margin-right: 0;
    
}
.job2 ul li .img1{
    position: relative;
    width: 54px;
    height:60px;
    overflow:hidden;
    margin:0 auto;
}
.job2 ul li .img1 img{
    display: inline-block;
    position: absolute;
    top:0;
    left:0;
    /*transition: all 0.3s ease-out;*/
}
.job2 ul li .text{

}
.job2 ul li .text h3{
    font-size:30px;
    color: #333333;
    font-weight: normal;
    margin: 55px 0 15px;
}
.job2 ul li .text p{
    font-size:16px;
    color: #999999;
    line-height: 1.6;
}
.job2 ul li:hover{
    /*url(../images/j_icon1-h.png) no-repeat bottom center*/
    background: #ff732a;    
}
/*.job2 ul li:hover .img1 img{
    top:-60px;
}*/
.job2 ul li:hover .img1 img{
    top:-60px;    
}
.job2 ul li:hover .text h3,.job2 ul li:hover .text p{
    color: #fff;
}

#job3{
    padding:105px 0 85px;
}
#job3 h2{
    text-align: center;
    font-size:46px;
    color: #333333;
    line-height: 1;
    margin-bottom: 45px;
}
.job3_cont{
    position: relative;
}
.job3_cont .swiper-button-prev,.job3_cont .swiper-button-next{
    width: 60px;
    height: 60px;
    border:2px solid #b7b7b7;
    border-radius: 6px;
    top:50%;
    margin-top:-30px;
}
.job3_cont .swiper-button-prev{
    background:url(../images/left1.png) no-repeat center;
    left:-100px;
}
.job3_cont .swiper-button-prev:hover{
    background:url(../images/left1_h.png) no-repeat center #ff732a;
    border:2px solid #ff732a;
}
.job3_cont .swiper-button-next{
    background:url(../images/right1.png) no-repeat center;
    right:-100px;
}
.job3_cont .swiper-button-next:hover{
    background:url(../images/right1_h.png) no-repeat center #ff732a;
    border:2px solid #ff732a;
}
.gshj .swiper-slide{
    overflow:hidden;
    border-radius: 10px;
}
.gshj .swiper-slide img{
    transition: all 0.6s ease-out;
}
.gshj .swiper-slide:hover img{
    transform: scale(1.1);
}

#job4{
    background:#f1f1f1;
    padding:105px 0;
}
#job4 h2{
    text-align: center;
    font-size:46px;
    color: #333;
    line-height: 1;
    margin-bottom: 65px;
}
.job_list{

}
.job_list li{
    background:#ffffff;
    margin-bottom: 15px;
}
.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: #717171;
    border-radius: 6px;
}
.j_contact p{
    padding:0 40px;
    line-height: 64px;
    float: left;
    font-size:14px;
}
.j_contact a{
    display: block;
    float: right;
    width: 205px;
    line-height: 64px;
    background:#ff732a;
    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){
/*.n_banner_text p{
    font-size:56px;
}*/
    #job1{
        padding:100px 0;
    }
    .job_top{
        padding:0 40px;
    }
    #job1 .job1_c{
        padding:100px 0 65px;
    }
    #job1 .job1_c .cont{
        padding:50px 0 50px 85px;
    }
    #job1 .job1_c .cont .txt h2{
        font-size:36px;
        margin-bottom: 20px;
    }
    #job1 .job1_c .cont .txt p{
        font-size:16px;
    }
    #job2 h2{
        font-size:36px;
        margin-bottom: 60px;        
    }
    .job2 ul li{
        width: 23.5%;
        margin-right: 2%;
        border: 2px solid #ff732a;
        padding:50px 30px;
    }
    .job2 ul li .text h3 {
        font-size: 22px;
        margin: 30px 0 10px;
    }
    .job2 ul li .text p{
        font-size:15px;
    }
    #job3 {
        padding: 90px 0 85px;
    }
    #job3 h2,#job4 h2{
        font-size:36px;
        margin-bottom: 50px;         
    }
    #job4{
        padding:100px 0;
    }
    .job_t{
        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: 1220px){
/*.n_banner_text p{
    font-size:42px;
}*/
    #job1{
        padding:70px 0;
    }
    .job_top{
        padding:0 30px;
    }
    #job1 .job1_c{
        padding:80px 0 50px;
    }
    #job1 .job1_c .cont{
        padding:40px 0 40px 40px;
    }
    #job1 .job1_c .cont .txt h2{
        font-size:28px;
        margin-bottom: 10px;
    }
    #job1 .job1_c .cont .txt p{
        font-size:15px;
    }
    #job2 h2{
        font-size:28px;
        margin-bottom: 40px;        
    }
    .job2 ul li{
        padding:40px 20px;
    }
    .job2 ul li .text h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }
    .job2 ul li .text p{
        font-size:14px;
    }
    #job3 {
        padding: 70px 0;
    }
    #job3 h2,#job4 h2{
        font-size:28px;
        margin-bottom: 40px;         
    }
    #job4{
        padding:70px 0;
    }
    .job_t{
        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: 768px){
/*    .n_banner_text p{
        font-size:32px;
    }*/
    #job1 {
        padding: 50px 0;
    }
    .job_top{
        padding:0 20px;
    }
    #job1 .job1_c {
        padding: 30px 0 ;
    }
    #job1 .job1_c .cont {
        padding: 15px 10px;
    }
    #job1 .job1_c .cont .txt h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    #job1 .job1_c .cont .txt p {
        font-size: 14px;
    }
    #job2 h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .job2 ul li {
        padding: 30px 10px 50px;
    }
    .job2 ul li .img1{
        width: 35px;
        height: 43px;
    }
    .job2 ul li .img1 img{

    }
    .job2 ul li .text h3 {
        font-size: 16px;
        margin: 10px 0 5px;
    }
    #job3,#job4 {
        padding: 30px 0;
    }
    #job3 h2, #job4 h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .job_t {
        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){
/*    .n_banner_text p{
        font-size:24px;
    }*/
    #job1 {
        padding: 30px 0;
    }
    .job_top{
        padding:5px 10px ;
    }
    .j_date img{
        width:36px;
    }
    #job1 .job1_c .cont .txt h2 {
        font-size: 16px;
        margin-bottom: 0px;
    }
    #job2 h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .job2 ul li {
        padding: 20px 10px 50px;
        width: 49%;
        margin-bottom: 15px;
    }
    .job2 ul li:nth-child(2n){
        margin-right: 0;
    }
    #job3,#job4 {
        padding: 30px 0;
    }
    #job3 h2, #job4 h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .job_list li{
        margin-bottom: 12px;
    }
    .job_t {
        padding: 0 10px;
    }
    .j_name{
        padding:5px 0;
    }
    .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;
    }
}





h1.title{
    font-size: 22px;
    color: #333;
    text-align: center;
    padding:2em 0 0.5em 0;
    font-weight: normal;
}

h3.tag{
    font-size: 14px;
    color: #666;
    font-weight: normal;
    font-family: "puhui55";
}
.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: 180px;
    left:-185px;
    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 #ff732a;
    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: 768px){
    h1.title{
        font-size: 18px;
    }
}
@media(max-width: 640px){
    .online-server{
        display: none;
    }
}

.pageController{
    text-align: center;
    color:#505050;margin:0 auto;
    margin:2em 0;
    line-height:24px;
}
.pageController a{background-color:#FFF;vertical-align:middle; border:#dbdbdb 1px solid; 
    color:#505050;padding:5px 8px; margin-right:3px;margin-left:3px;
}
.pageController a:hover{background-color:#ff732a;color:#fff; text-decoration:none;border:#ff732a 1px solid;}
.pageController .currPage {background-color: #ff732a;color:#fff;border:#ff732a 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: #ff732a;
    vertical-align: middle;
    border: 1px solid #ff732a; 
    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: #ff732a;
    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;
    }
    footer{
        margin-bottom:56px;
    }
}


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