/*头部样式*/
#c-header.c-head-hide{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 4px #ccc;
    z-index: 999999;
}
.head{
    line-height: 70px;
    box-shadow: 0px 2px 5px #ccc;
}
.container{
    max-width: 1560px;
    margin: 0 auto;
    width: 92%;
}
.logo{
    float: left;
}
.language{
    float: right;
}
.language a{
    display: block;
    padding-left: 28px;
    background:url(../images/language.png) no-repeat left center;
}
.search{
    float: right; 
    margin:0 0px 0 50px;   
    position: relative;
    padding:0 25px;
}
.ss{
    width: 40px;
    height:70px;
    background:url(../images/ss.png) no-repeat center;
    cursor: pointer;
}
#formsearch{
    display: none;
    position: absolute;
    top: 50px;
    left: -100px;
    width: 250px;
    z-index: 9;
    border: 1px solid #e5e5e5;
    background:#fff;
}
#formsearch input{
    border:none;
    outline: none;
}
#keyword{
    float: left;
    width: 200px;
    line-height: 50px;
    text-indent: 15px;
}
#s_btn{
    float: right;
    width: 50px;
    line-height: 50px;
    font-size:0;
    background: url(../images/ss.png) no-repeat center #fff;
    margin-left: -2px;
}
.search:hover #formsearch{
    display: flex;
}
.nav{
    display: flex;
    flex-wrap: wrap;
    float:right;
}
.nav li{
    position: relative;

}
.nav li a{
    display: block;
    font-size: 16px;
    color: #222;
    text-align: center;
    padding:0 27px;
    font-weight: bold;
}
.nav li a:hover{
    color: #df4729;
}
.nav li .b_nav{
    display: none;
    position: absolute;
    top:40px;
    left:0px;
    z-index: 999;
    background-color: #171ce1;
    width: 100%;
}
.nav li .b_nav a{
    font-size: 14px;
    color: #fff;  
    line-height: 2em;  
}


.menu-button{
    display: none;
    position: absolute;
    top: 15px;
    right: 10px;
/*    padding: 7px;*/
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
/*    background-color: #df4729;*/
    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: #df4729;
    text-align: center;
    position: absolute;
    left:0;
    top:65px;
    z-index: 99999;
    width: 100%;
/*    height: 100vh;*/
}
.mobileNav li {
    line-height: 2em;
    padding:1em 0;
}
.mobileNav li a{
    font-size: 1rem;
    color: #fff;
}

@media(max-width: 1600px){

}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    .container{
        width: 96%;
    }
    .search{
        display: none;
    }
}
@media(max-width: 1024px){
    
}
@media(max-width: 860px){
    .nav li a{
        padding:0 20px;
    }    
}
@media(max-width: 768px){
    .language{
        display: none;
    }
    .menu-button{
        display: block;
    }
    .nav{
        display: none;
    }
}
@media(max-width: 640px){
    .head{
        line-height: 60px;
    }
    .logo{
        width: 70%;
        float: none;
    }
    .menu-button{
        top:10px;
    }
    .mobileNav{
        top: 58px;
    }
}


.message{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 995;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    transition: all .8s ease;
    display: none;
}
.message.cur{
    display: flex;
}
.applyForm {
    width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
    padding: 40px 60px 20px;
    position: relative;
}
.mess_t{
    text-align: center;
}
.mess_t h3 {
    color: #333;
    font-size: 30px;
    font-weight: normal;
    line-height: 1em;
}
.mess_t p {
    color: #666;
    font-size: 16px;
    margin: 16px 0 40px;
}
.close1 {
	position: absolute;
	top: 45px;
	right: 45px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.close1 span{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.close1 span:before,.close1 span:after {
	content: '';
	width: 90%;
	height: 2px;
	background: #333;
	display: block;
	margin: auto;
	position: absolute;
}
.close1 span:before {
	transform: rotate(45deg);
	top: 14px;
	left: 1px;
}
.close1 span:after {
	transform: rotate(-45deg);
	left: 1px;
	top: 14px;
}
.message ul{
    display: flex;
    flex-wrap: wrap;
}
.message ul li{
    width: 48%;
    margin-right: 4%;
    margin-bottom: 10px;
}
.message ul li:nth-child(2n){
    margin-right: 0;
}
.message ul li:last-child{
    width: 100%;
    margin-right: 0;
}
.message ul li label{
    font-size: 16px;
    color: #333;
    display: block;
}
.message ul li input{
    outline: none;    
    width: 100%;
    display: block;
    line-height: 40px;
    border: 1px #E3E3E3 solid;
}
.message ul li textarea{
    outline: none;   
    font-family: "微软雅黑";
    width: 100%;
    display: block;
    border: 1px #E3E3E3 solid;
    height: 160px;
}
.mess_btn input{
    border:none;
    outline: none;
    display: block;
    width: 300px;
    height: 50px;
    line-height: 50px;
    background-color: #2E3F51;
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin: 40px auto;
}



@media screen and (max-width: 1500px){
    .to_phone_scroll {
        overflow: hidden;
        overflow-y: scroll;
    } 
    .applyForm {
        padding: 20px 30px;
    }
    .mess_t h3 {
        font-size: 24px;
    }
    .mess_t p {
        font-size: 14px;
        margin: 0px 0 15px;
    }
}

@media screen and (max-width: 1024px){
    .to_phone_scroll {
        width: 100%;
        height: 80vh;
    }  
    .applyForm {
        width: 90%;
        padding: 20px;
    }
}

@media(max-width:768px){
    .mess_t h3 {
        font-size: 20px;
    } 
    .close1{
        right:20px;
        top:20px;
    }
    .mess_btn input{
        margin: 20px auto 0;
        width:200px;
    }
    .message ul li label{
        font-size:14px;
    }
}
@media(max-width:640px){
    .applyForm {
        padding: 25px 10px;
    }  
    .mess_t p{
        font-size:13px;
    }
    .close1{
        right:15px;
        top:10px;
    }
    .message ul li {
        width: 100%;
        margin-right: 0%;
        margin-bottom:0;
    }
    .message ul li input{
        line-height:32px;
    }
    .message ul li textarea{
        line-height:32px;
        height:96px;
    }
    .mess_btn input {
        width: 150px;
        height: 42px;
        line-height: 42px;
        font-size: 15px;
        margin: 10px auto 0;
    }
}


/*#swiper-container1 .swiper-slide img{
    transform: scale(1);
    transition: all 3s ease-out;
    height: 100%;    
}
#swiper-container1 .swiper-slide-active img{
    transform: scale(1.05);
}*/
.banner_text{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    z-index: 9;
    color: #fff;
}
.banner_text .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.banner_text .container h3{
    font-size:52px;
    line-height: 1em;
}
.banner_text .container p{
    font-size: 20px;
    line-height: 1em;
    margin:20px 0 80px;
}
.banner_text .container a{
/*    display: block;
    width: 200px;
    line-height: 60px;
    background:url(../images/jt4.png) no-repeat 90% center #df4729;
    font-size:16px;
    color: #fff;
    text-indent: 35px;
    border-radius: 5px;
    cursor: pointer;*/
}
#swiper-container1 .swiper-pagination span{
    background-color: #df4729;
}

@media(max-width: 1600px){
    .banner_text .container h3{
        font-size: 40px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    .banner_text .container h3{
        font-size:32px;
    }
    .banner_text .container p {
        font-size: 16px;
        line-height: 1em;
        margin: 20px 0 50px;
    }
}
@media(max-width: 1024px){
    
}
@media(max-width: 768px){
    .banner_text .container h3 {
        font-size: 26px;
    }
    .banner_text .container p {
        font-size: 15px;
        margin: 10px 0 30px;
    }    
}
@media(max-width: 767px){
    .banner_text .container h3 {
        font-size: 20px;
    }
    .banner_text .container p {
        font-size: 14px;
        margin: 10px 0 0px;
    }
    .banner_text .container a{
        display: none!important;
    }
    #swiper-container1 .swiper-pagination{
        bottom:5px!important;
    }
}


.banner_news{
    padding:30px 0;
    background:#df4729;
}
.news_list1{
    display: flex;
    flex-wrap: wrap;
}
.news_list1 li{
    width: 31%;
    margin-right: 3.5%;
}
.news_list1 li:last-child{
    margin-right:0;
}
.news_list1 li a{
    display: block;
    color: #fff;
    padding: 0 52px;
    background:url(../images/list1.png) no-repeat left center;
    border-right: 1px solid #fff;
}
.news_list1 li:last-child a{
    border: none;
}

.news_list1 li a span{
    display: block;
}
.news_list1 li a h3{
    font-size:16px;
    text-indent: -8px;
    white-space: nowrap; 
    text-overflow: ellipsis;
    overflow: hidden;
}

@media(max-width: 1600px){
    .news_list1 li a h3{
        font-size:15px;
    }
}
@media(max-width: 1440px){
    .banner_news{
        padding:20px 0;
    }    
}
@media(max-width: 1259px){
    .banner_news{
        padding:15px 0;
    }
    .news_list1 li{
        width: 32%;
        margin-right: 2%;
    }
    .news_list1 li a{
        padding: 0 25px 0 50px;
    }
    .news_list1 li a h3{
        font-size:14px;
    }
}
@media(max-width: 1024px){
    
}
@media(max-width: 768px){
    
}
@media(max-width: 767px){
    .banner_news{
        display: none;
    }
}




.imdex_product{
    padding-top:60px;
}
.index_t1{
    text-align: center;
}
.index_t1 h2{
    font-size:42px;
    color: #212121;
    max-width: 1200px;
    margin:0 auto;
    line-height: 1.4em;
    margin-bottom: 24px;
}
.index_t1 h2 span{
    color: #df4729;
}
.index_t1 p{
    font-size:16px;
    color: #4f4f4f;
    max-width: 1000px;
    margin:0 auto;
}
.product_list1{
    padding:0 50px;
    display: flex;
    flex-wrap: wrap;
    margin-top:50px;
}
.product_list1 li{
    width: 49%;
    margin-right: 2%;
    margin-bottom:18px;
    background-image: url(/data/upload/image/20211026/1635214539354359.png);
    background-repeat:no-repeat;
    background-position:right top;
    position: relative;
}
.product_list1 li:nth-child(2n){
    margin-right: 0;
}
.product_list1 li a{
    display: block;

}
.product_list1 li a .text{
    padding: 75px 50px 75px 130px;     
}
.product_list1 li a .text p{
    font-size:26px;
    color: #999999;
}
.product_list1 li a .text h3{
    font-size:32px;
    color: #333;
    line-height: 1.2em;
}
.product_list1 li a .text span{
    display: block;
    font-size: 16px;
    padding-left: 65px;
    background:url(../images/jt1.png) no-repeat left center;
    line-height: 46px;
    height: 46px;
    color: #4c4c4c;
    margin-top:140px;
}
.product_list1 li a .img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
    opacity: 0;
}
.product_list1 li a .img img{
    max-width: 319px;
    display: block;
    margin:0 auto;
}
.product_list1 li a .txt{
    position: absolute;
    top:50%;
    left:50%;
    margin-left: -110px;
    margin-top:-110px;
    background:rgba(221,71,41,.9);
    width: 220px;
    height: 200px;
    border-radius: 50%;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index:10;
    color: #fff;
    opacity: 0;
    transition: all 0.6s ease-out;
}
.product_list1 li a .txt h3{
    font-size: 18px;
    max-width: 180px;
    margin: 0 auto;
    line-height: 1.6em;
    padding-top: 25px;
}
.product_list1 li a .txt span{
    display: block;
    margin-top:25px;
}
.product_list1 li:hover a .text{
    opacity: 0;
}
.product_list1 li:hover a .img{
    opacity: 1;
}
.product_list1 li:hover a .txt{
    opacity: 1;
}
@media(max-width: 1600px){
    .index_t1 h2{
        font-size:30px;
        margin-bottom:10px;
    }
    .product_list1 li a .text{
        padding: 60px 50px 60px 80px;
    }
    .product_list1 li a .text p{
        font-size:20px;
    }
    .product_list1 li a .text h3{
        font-size:24px;
    }
    .product_list1 li a .txt h3{
        font-size:16px;
        line-height:1.4;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    .index_t1 h2{
        font-size:24px;
    }
    .index_t1 p{
        font-size:13px;
        max-width: 100%;
    }
    .product_list1{
        padding:0 2%;
    }
    .product_list1 li a .text {
        padding: 30px 20px;
    }
    .product_list1 li a .text p{
        font-size:16px;
    }
    .product_list1 li a .text h3{
        font-size:20px;
    }
    .product_list1 li a .text span{
        font-size:14px;
        margin-top:80px;
        padding-left: 50px;
        background: url(../images/jt1.png) no-repeat left center;
        line-height: 36px;
        height: 36px;
        background-size: 36px;
    }
    .product_list1 li a .img,.product_list1 li a .txt{
        display: none!important;
    }
    .product_list1 li a .txt h3{
        font-size:16px;
    }
}
@media(max-width: 1024px){
    .index_t1{
        padding:0 2%;
    }
}
@media(max-width: 768px){
    .imdex_product{
        padding-top:40px;
    }
    .index_t1 h2{
        font-size:20px;
    }
    .product_list1{
        margin-top:30px;
    }
    .product_list1 li a .text h3 {
        font-size: 16px;
    }
}
@media(max-width: 767px){
    .imdex_product{
        padding-top:30px;
    } 
    .index_t1 h2{
        font-size:18px;
    }
    .product_list1 {
        margin-top: 20px;
    }
    .product_list1 li {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 15px;
    }
    .product_list1 li a .text {
        padding: 15px 10px;
    }
    .product_list1 li a .text p{
        font-size: 14px;
    }
    .product_list1 li a .text h3 {
        font-size: 16px;
    }  
    .product_list1 li a .text span{
        margin-top:30px;
        padding-left: 40px;
        background: url(../images/jt1.png) no-repeat left center;
        line-height: 30px;
        height: 30px;
        background-size: 30px;
    } 
}



.imdex_case{
    padding:50px 50px 65px;
}
.imdex_case_cont{
    position: relative;
    background:rgba(0,0,0,.4);
    padding:130px 0 98px;
    margin-top:35px;
}
.tab1li{

}
.tab1li ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.tab1li ul li{
    text-align: center;
    color: #fff;
    max-width: 248px;
    position: relative;
    cursor: pointer;
    margin:0 50px;
}
.tab1li ul li .txt{
    position: absolute;
    width: 100%;
    height:100%;
    background:#df4729;
}
.tab1li ul li h4{
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    line-height: 1.4;
}
.tab1li ul li h4:before{
    content:'';
    position: absolute;
    top:50%;
    left:50%;
    width: 20px;
    height: 1px;
    background:#fff; 
    margin-top: -30px;
    margin-left: -10px;
}
.tab1li ul li h4:after{
    content:'';
    position: absolute;
    top:50%;
    left:50%;
    width: 20px;
    height: 1px;
    background:#fff; 
    margin-top: 30px;
    margin-left: -10px;
}
.tab1li ul li img{
    border:1px solid #fff;
    opacity: 0;
}
.tab1li ul li h3{
    position: absolute;
    bottom:5px;
    left:0;
    width: 100%;
    font-size:16px;
    opacity: 0;
    line-height: 1.4;
}
.tab1li ul li.cur .txt{
    opacity: 0;
}
.tab1li ul li.cur img{
    opacity: 1;
}
.tab1li ul li.cur h3{
    opacity: 1;
}
.imdex_case_text{

}
.tab1{
    color: #fff;
    text-align: center;
    display: none;
}
.tab1 p{
    max-width: 1230px;
    margin:0 auto;
    font-size:16px;
    padding:50px 0 65px;
}
.tab1 a{
    color: #fff;
    display: inline-block;
    text-align: center;
    padding-left: 68px;
    background:url(../images/jt1.png) no-repeat left center;

    line-height: 46px;
    height: 46px;
    font-size:16px;
}
.tab1 a:hover{
    background:url(../images/jt2.png) no-repeat left center;    
    background-size: 46px;
}
.imdex_case_img{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index:-1;
}
.tab1_2{
    width: 100%;
    height: 100%;
    display: none;
}
@media(max-width: 1600px){
    .tab1li ul li h4{
        font-size:17px;
    }
    .tab1li ul li h3{
        font-size:15px;
    }
    .tab1 p{
        padding:50px 0;
        font-size:15px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    .imdex_case {
        padding: 50px 2% 65px;
    }
    .imdex_case_cont{
        padding: 80px 0 60px;      
    }
    .tab1li ul li{
        margin:0 15px;
        max-width: 220px;
    }
    .tab1 p {
        padding: 30px 2%;
        font-size: 14px;
    }
}
@media(max-width: 1024px){
    .imdex_case_cont{
        padding:60px 0;
    }
}
@media(max-width: 768px){
     .tab1li ul li h4{
        font-size:14px;
        line-height: 16px;
        font-weight:500
    }
    .tab1li ul li h3{
        font-size:14px;
        line-height: 16px;
        font-weight:500
    }
    .tab1 p{
        padding:50px 0;
        font-size:12px;
    }
    .imdex_case {
        padding: 50px 2%;
    }
    .imdex_case_cont{
        padding:40px 0;
    } 
    .tab1li ul li{
        margin:0 15px;
        max-width: 180px;
    }  

}
@media(max-width: 767px){
    .imdex_case {
        padding: 30px 2%;
    }
    .imdex_case_cont{
        padding:25px 0;
    }  
    .tab1li ul li{
        width: 30%;
        margin:0 2% 0 0;
    } 
    .tab1li ul li:last-child{
        margin-right:0;
    }
    .tab1li ul li h3,.tab1li ul li h4{
        font-size:13px;
    }
    .tab1li ul li h4:before{
        margin-top:-20px;
        display:none;
    }
    .tab1li ul li h4:after{
        margin-top: 20px;
        display:none;
    }
    .tab1 p{
        padding:20px 2%;
    }
    .tab1 a {
        padding-left: 46px;
        line-height: 36px;
        height: 36px;
        font-size: 15px;
        background-size: 36px;
    }
    
}




.index_news{
    padding-bottom: 75px;
}
.news_list2{
    margin-top:50px;
    display: flex;
    flex-wrap: wrap;
}
.news_list2 li{
    width: 32%;
    margin-right: 2%;
}
.news_list2 li:nth-child(3n){
    margin-right: 0%;
}
.news_list2 li a{
    display: block;
/*    background:#fafafa;*/
    position: relative;
}
.news_list2 li a:before{
    width: 100%;
    content: "";
    display: block;
    height: 80px;

    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fafafa;
    padding: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index:-1;
}
.news_list2 li a .img{
    overflow:hidden;
}
.news_list2 li a .img img{
    transition: all 0.6s ease-out;
}
.news_list2 li a .text{
    padding:32px 50px 20px;
}
.news_list2 li a .text font{
    display: block; 
    font-size:14px;
    color: #df4729;   
}
.news_list2 li a .text h3{
    font-size:24px;
    color: #212121;
    line-height: 1.4em;
    padding:10px 0 85px;
    white-space: nowrap; 
    text-overflow: ellipsis;
    overflow: hidden;
}
.news_list2 li a .text span{
    display: block;   
    color: #999999;
    font-weight: bold; 
}
.news_list2 li a .text em{
    display: block;
    font-style: normal;
    width: 46px;
    height: 46px;
    background:url(../images/jt3.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    bottom:20px;
    right:35px;
}
.news_list2 li a:hover:before{
    height: 100%;
}
.news_list2 li a:hover .img img{
    transform: scale(1.1);
}
.news_list2 li a:hover .text em{
    background:url(../images/jt1.png) no-repeat center;
}

@media(max-width: 1600px){
    .news_list2 li a .text{
        padding: 20px 30px;
    }
    .news_list2 li a .text h3 {
        font-size: 20px;
        padding: 10px 0 60px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    .index_news {
        padding-bottom: 60px;
    }
    .news_list2 li a .text {
        padding: 15px 10px;
    }
    .news_list2 li a .text h3 {
        font-size: 16px;
        padding: 10px 0 30px;
    } 
    .news_list2 li a .text em {
        width: 32px;
        height: 32px;
        bottom: 10px;
        right: 10px;
        background-size: 100%!important;
    }   
}
@media(max-width: 1024px){
    .news_list2{
        margin-top:30px;
    }
}
@media(max-width: 768px){
    .index_news {
        padding-bottom: 40px;
    }
    .news_list2 li a .text h3 {
        font-size: 15px;
        padding: 0px 0 20px;
    }
    .news_list2 li a .text em {
        width: 26px;
        height: 26px;
        bottom: 15px;
        right: 10px;
    }    
}
@media(max-width: 767px){
    .index_news {
        padding-bottom: 30px;
    }
    .news_list2 {
        margin-top: 20px;
    }
    .news_list2 li {
        width: 100%;
        margin-right: 0%;
        margin-bottom:10px;
    }    
}



.index_bottom{
    padding-bottom: 110px;
}
.index_bottom ul{
    display: flex;
    flex-wrap: wrap;
    padding:0 77px;
    margin-top:50px;
}
.index_bottom ul li{
    width: 49%;
    margin-right: 2%;
}
.index_bottom ul li:last-child{
    margin-right: 0;
}
.index_bottom ul li a{
    display: block;
    text-align: center;
}
.index_bottom ul li .img{
    overflow:hidden;
}
.index_bottom ul li .img img{
    transition: all 0.6s ease-out;
}
.index_bottom ul li h3{
    font-size:24px;
    color: #222222;
    padding:30px 0 15px;
    font-weight: normal;
}
.index_bottom ul li span{
    display: block;
    width: 200px;
    line-height: 55px;
    background: url(../images/jt4.png) no-repeat 90% center #df4729;
    font-size: 16px;
    color: #fff;
    text-indent: 35px;
    border-radius: 5px;
    cursor: pointer;
    margin:0 auto;
    text-align:left;
    transition: all 0.3s ease-out;
}
.index_bottom ul li span:hover{
    text-indent: 40px;
    background: url(../images/jt4.png) no-repeat 85% center #df4729;    
}
.index_bottom ul li:hover .img img{
    transform: scale(1.1);
}
@media(max-width: 1600px){
    .index_bottom {
        padding-bottom: 70px;
    }
    .index_bottom ul li h3 {
        font-size: 20px;
        padding: 25px 0 15px;
    }
    .index_bottom ul li span{
        width: 160px;
        text-indent: 15px;
    }
    .index_bottom ul li span:hover{
        text-indent: 25px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    .index_bottom ul {
        padding: 0;
        margin-top: 30px;
    }    
    .index_bottom ul li h3{
        font-size:17px;
    }
}
@media(max-width: 1024px){
    
}
@media(max-width: 768px){
    .index_bottom {
        padding-bottom: 50px;
    }
    .index_bottom ul li h3 {
        font-size: 16px;
        padding: 15px 0 10px;
    }  
    .index_bottom ul li span {
        width: 140px;
        text-indent: 12px;
        font-size: 14px;
        line-height: 45px;
    } 
    .index_bottom ul li span:hover{
        text-indent: 16px;
    }
}
@media(max-width: 767px){
    .index_bottom ul{
        margin-top:20px;
    }
    .index_bottom ul li {
        width: 100%;
        margin-right: 0%;
        margin-bottom:10px;
    }
    .index_bottom ul li h3{
        font-size:16px;
    }
    .index_bottom ul li span{
        width: 120px;
    }
}


/*友情链接*/

.f_link {
    width: 1200px;
    margin: 0 auto;
    margin-top: 15px;
    line-height: 30px;
    line-height: 30px;
    background-color: #ececec;
    text-indent: 20px;
}

/*页面底部*/

#footer {
    background:#2f353a;
    color: #fff;
}
.foot{
    padding:60px 0 25px;
}
.foot a {
    color: #fff;
}

.foot a:hover {
    color: #e87518;
    text-decoration: none;
}
.f_nav{
    
}
.f_nav li{
    float:left;
    width: 18%;
}
.f_nav li:last-child{
    width: 28%;
}
.f_nav li h3{
    font-size:20px;
    font-weight: normal;
    padding-bottom: 15px;
    border-bottom:1px solid #43484c;  
    line-height: 65px;
    margin-bottom:36px;  
}
.f_nav_a{

}
.f_nav_a a{
    display: block;
}
.f_nav_c{
    margin-bottom:85px;
}
.wxbox{

}
.ulbox{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;    
}
.ulbox .li {
    width: 27px;
    height: 27px;
    line-height: 27px;
    border-radius: 5px;
    margin-right: 20px;
    cursor: pointer;
    position: relative;
    background:#fff;
    text-align: center;
}
.foot .ulbox .wxbox {
    position: absolute;
    bottom: 45px;
    padding: 6px;
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 5px;
    left: calc(50% - 50px);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.foot .ulbox .wxbox:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}
.foot .ulbox .wxbox img {
  width: 100%;
}
.foot .ulbox  .li:hover .wxbox {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.copyright {
    line-height: 25px;
    padding:15px 0;
    border-top:1px solid #43484c;
    color: #a9a9a9;
}
.copyright a{
    color: #a9a9a9;
}
.copyright_l{
    float:left;
    margin-right: 15px;
}
.copyright_r{
    float:right;
}
@media(max-width: 1600px){
    .foot {
        padding: 40px 0 20px;
    }
    .f_nav li h3{
        font-size:18px;
        line-height: 40px;
        margin-bottom: 20px;
        height: 56px;
    }
    .f_nav li:last-child h3 img{
        line-height: 40px;
        height: 40px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    
}
@media(max-width: 1024px){
    .copyright_l,.copyright_r{
        float:none;
        text-align: center;
    }
}
@media(max-width: 768px){
    .f_nav li{
        display: none;
    }
    .f_nav li:last-child{
        width: 100%;
        display: block;
    }
    .f_nav_c{
        margin-bottom:0;
    }
    .tit-14{
        display: none;
    }
}
@media(max-width: 767px){
    
}


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

.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

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



/*------------内页-------------------*/
.n_banner {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.n_banner img {
    width: 100%;
    margin: 0 auto
}
/*#container{*/
/*    padding:;*/
/*}*/
.products{

}
.products_intro{
    background:#f8f8f9;
    padding:65px 0;
}
.product_list{
    padding: 40px 0 90px;
    display: flex;
    flex-wrap: wrap;
}
.product_list li{
    width: 49%;
    margin-right: 2%;
    margin-bottom:35px;
}
.product_list li:nth-child(2n){
    margin-right: 0;
}
.product_list li a{
    display: flex;
    flex-wrap: wrap;
    background:#efefef;
    padding:50px 45px;
}
.product_list li a .text{
    width: 60%;
    padding-right: 10px
}
.product_list li a .text font{
    font-size:22px;
    color: #999999;
}
.product_list li a .text h3{
    font-size:28px;
    color: #333;
    line-height: 1.6em;
}
.product_list li a .text span{
    display: block;
    font-size: 16px;
    padding-left: 58px;
    background: url(../images/jt1.png) no-repeat left center;
    background-size: 40px;
    line-height: 40px;
    height: 40px;
    color: #4c4c4c;
    margin-top: 140px;
}
.product_list li a:hover .text span{
    color: #df4729;
    background: url(../images/jt3.png) no-repeat left center;
}
.product_list li a .img{
    width: 40%;
    /*overflow: hidden;*/
}
.product_list li a .img img{
    transition: all 0.6s ease-out;
}
.product_list li a:hover .img img{
    transform: scale(1.05);
}
.index_bottom2{
    padding:60px 0;
    background:#f7f7f7;
}
.index_bottom2 p{
    font-size:32px;
    color: #333;
    font-weight: bold;
    float: left;
    max-width: 70%;
    line-height: 1.6;
}
.index_bottom2 p span{
    color: #df4729;
}
.index_bottom2 a{
    display: block;
    float: right;
    padding-right: 72px;
    background:url(../images/jt5.png) no-repeat right center;
    line-height: 44px;
    font-size:16px;
    color: #333;
    font-weight: bold;
    margin-top:15px;
}
.index_bottom2 a:hover{
    text-decoration:underline;
    color: #df4729;
}

.product1{
    padding:25px 0 85px;
    background:#f8f8f9;
}
.site{
    padding-left: 18px;
    background:url(../images/home.png) no-repeat left center;
}
.product1_cont{
    display: flex;
    flex-wrap: wrap;
    padding-top:60px;
}
.wrap{
    max-width: 1200px;
    margin:0 auto;
    width: 96%;
}
.product1_cont .img{
    width: 40%;
    text-align: center;
}
.product1_cont .text{
    width: 60%;
    padding-left: 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product1_cont .text h1{
    font-size:42px;
    color: #212121;
}
.product1_cont .text .txt{
    font-size:16px;
    color: #212121;
    margin:20px 0 60px;
}
.product1_cont .text .txt p:nth-child(1){
    font-weight: bold;
}
.product1_cont .text .txt p:nth-child(2){
    
}
a.more1{
    display: block;
    width: 200px;
    line-height: 55px;
    background: url(../images/jt4.png) no-repeat 90% center #df4729;
    font-size: 16px;
    color: #fff;
    text-indent: 35px;
    border-radius: 5px;
    cursor: pointer;
    text-align: left;
    transition: all 0.6s ease-out;
}
a.more1:hover{
    text-indent: 40px;
    background: url(../images/jt4.png) no-repeat 85% center #df4729;    
}
.product_detail{
    padding:80px 0;
}
.pds{
    padding:30px 0;
    border-top:1px solid #e0e0e0;
}
.pds h2{
    font-size:30px;
    color: #212121;
    float:left;
}
.pds .text{
    float:right;
    width: 716px;
}
.product3 .text{
    color: #4f4f4f;
}
.xgcp{
    background:#f7f7f7;
    padding:95px 0 60px;
}
.xgcp h2{
    line-height: 1em;
    font-size: 42px;
    color: #212121;
    margin-bottom:65px;
    text-align: center;
}
.xg_list{
    padding:0;
}
.xg_list li a{
    background:#fff;
}
@media(max-width: 1600px){
    .product_list li a{
        padding:30px 20px;
    }
    .product_list li a .text font{
        font-size:16px;
    }
    .product_list li a .text h3{
        font-size:22px;
    }
    .product_list li a .text span{
        margin-top:100px;
    }
    a.more1{
        width: 160px;
        text-indent: 15px;
    }
    a.more1:hover{
        text-indent: 20px;
    }
    .product1_cont .text h1,.xgcp h2{
        font-size:30px;
    }
    .product1_cont .text .txt{
        font-size: 15px;
        margin: 20px 0 30px;
    }
    .pds{
        padding:20px 0;
    }
    .pds h2{
        font-size:20px;
    }
    .xgcp{
        padding:60px 0;
    }
    .xgcp h2{
        margin-bottom: 40px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    
}
@media(max-width: 1024px){
    .product_list li{
        margin-bottom:20px;
    }
    .product_list li a{
        padding:20px 10px;
    }
    .product_list li a .text font{
        font-size:14px;
    }
    .product_list li a .text h3{
        font-size:18px;
    }
    .product_list li a .text span{
        margin-top:50px;
    }
    a.more1{
        width: 140px;
        text-indent: 12px;
        line-height: 45px;
        font-size:14px;
    } 
    a.more1:hover{
        text-indent: 16px;
    }
    .product1_cont .text h1,.xgcp h2{
        font-size:24px;
    }
}
@media(max-width: 768px){
    .product_list li a .text h3{
        font-size:16px;
    }  
    .product_list li a .text span{
        margin-top:30px;
    }
    .product_detail{
        padding:50px 0;
    }
    .product1{
        padding:25px 0;
    }
    .product1_cont .text{
        padding-left:5%;
    }
    .product1_cont .text h1,.xgcp h2{
        font-size:20px;
    }
    .product1_cont .text .txt{
        font-size: 15px;
        margin: 10px 0 20px;
    }
    .pds{
        padding:20px 0;
    }
    .pds h2{
        font-size:16px;
        margin-bottom:5px;
        float:none;
    }
    .pds .text{
        width:100%;
        float:none;
    }
    .xgcp{
        padding:30px 0;
    }
    .xgcp h2{
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .product_list li{
        width:100%;
        margin-right:0;
        margin-bottom:12px;
    }
    .product_list li a .text span{
        background-size:30px;
        line-height: 40px;
        height: 40px;
        font-size:14px;
        padding-left: 40px;
        margin-top:20px;
    }
    .product_list li a:hover .text span{
        background-size:30px;
    }
    a.more1{
        width: 120px;
    }
    .product_detail{
        padding:30px 0;
    }
    .product1_cont .text{
        padding-left:2%;
    }
    .product1_cont .text .txt {
        font-size: 14px;
        margin: 0px 0 10px;
    }
    .pds{
        padding:15px 0;
    }
}



.index_t2 p{
    max-width: 970px;
}
.case_list{
    padding:70px 115px 0;
    display: flex;
    flex-wrap: wrap;
}
.case_list li{
    width: 27%;
    margin-right: 9.5%;
}
.case_list li:last-child{
    margin-right: 0;
}
.case_list li a{

}
.case_list li a .img{
    overflow:hidden;
} 
.case_list li a .img img{

} 
.case_list li a .text{

}
.case_list li a .text h3{
    font-size:16px;
    color: #212121;
    padding-left: 38px;
    background:url(../images/jt1.png) no-repeat left center;
    background-size: 26px;
    line-height: 26px;
    margin: 24px 0 20px;
}
.case_list li a .text p{
    color: #4c4c4c;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.case_bottom{
    text-align: center;
    padding:80px 0 90px;
}
.case_bottom .index_t1 h2{
    margin-bottom:15px;
}
.case_bottom .img{
    margin:45px 0;
    overflow:hidden;
}
.case_bottom h3{
    font-size:28px;
    color: #222222;
    font-weight: normal;
}
.case_bottom a.more1{
    margin:20px auto 0;
}
.product1 .index_t3{
    padding:20px 0 65px;
}
.index_t3 p{
    max-width: 100%;
}
.case_detail{
    padding:80px 0 90px;
}
.case_detail h1{
    font-size:42px;
    color: #212121;
    text-align: center;
}
.cases{

}
.cases .text{
    width: 63%;
    float:left;
    padding-right: 10%;
}
.cases .text h2{
    font-size:26px;
    color: #df4729;
    margin-bottom:10px;
}
.cases .text p{
    color: #4f4f4f;
}
.cases .text p strong{
    font-size:16px;
    color: #212121
}
.cases .img{
    width: 37%;
    float:right;
    padding-top:25px;
}
.cases .img p{
    color: #999999;
}
.case1{
    padding:30px 0 60px;
}
.case1 .index_t1 p{
    max-width: 100%;
}
.case_detail1{
    padding: 55px 0 95px;
}
.case_detail2 .img img{
    display: inline-block;
    margin-bottom:20px;
}
.case_detail3{
    padding: 20px 0 0px;
}
.case_detail3 .txt{
    margin-top:55px;
}
@media(max-width: 1600px){
    .case_list{
        padding: 50px 50px 0;
    }
    .case_list li{
        width:30%;
        margin-right:5%;
    }
    .case_list li a .text h3 {
        margin: 15px 0;
    }
    .case_bottom{
        padding:60px 0;
    }
    .case_bottom .img{
        margin:30px 0;
    }
    .case_bottom h3{
        font-size:24px;
    }
    .case_detail{
        padding:60px 0;
    }
    .case_detail h1{
        font-size:30px;
    }
    .case_detail1{
        padding:50px 0;
    }
    .cases .text h2{
        font-size:20px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    
}
@media(max-width: 1024px){
    .case_list{
        padding: 30px 0px 0;
    }
    .case_list li{
        width:32%;
        margin-right:2%;
    }
    .case_list li a .text h3 {
        margin: 10px 0;
    }
    .case_bottom{
        padding:50px 0;
    }
    .case_bottom .img{
        margin:20px 0;
    }
    .case_bottom h3{
        font-size:20px;
    }
    .case_detail{
        padding:40px 0;
    }
    .case_detail h1{
        font-size:24px;
    }
}
@media(max-width: 768px){
    .case_bottom{
        padding:30px 0;
    }
    .case_detail h1{
        font-size:20px;
    }
    .case_detail1{
        padding:30px 0;
    }
    .cases .text{
        padding-right:5%;
    }
    .cases .text h2{
        font-size:16px;
    }
}
@media(max-width: 640px){
    .case_bottom h3{
        font-size:16px;
    }
    .case_detail{
        padding:30px 0;
    }
    .case_detail1{
        padding:20px 0;
    }
    .cases .text{
        width:100%;
        float: none;
        padding-right:0;
    }
    .cases .img {
        width: 100%;
        float: none;
        padding-top: 15px;
        text-align:center;
    }
}
@media(max-width: 460px){
    .case_list li{
        width:100%;
        margin-right:0;
        margin-bottom:15px;
    }
}


.n_banner h2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    font-size:42px;
    color: #fff;    
}
.theme-tainbox h2, .themeh2 {
    font-size: 42px;
    color: #222;
    line-height: 54px;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

.haboutb{padding: 80px 0;}
.theme-p2{
    text-align: left;
    font-size:16px;
    color: #212121;
}
.haboutbmh5{font-size:18px;text-align: center;line-height: 70px;z-index: 10;background: #fff;color:#333;font-weight:normal;}
.haboutbm li:nth-child(odd) .haboutbmh5{background: #f8f8f9;}
.haboutbmdesc{color:#fff;}
.haboutbm li{width: 25%;float: left;position: relative;height: 100%;padding-top: 70px;box-sizing: border-box;}
.haboutbm{position: relative;}
.haboutbmdesc{position: absolute;width: 100%;text-align: center;color:#fff;font-size:24px;top:260px;padding: 0 25px;}
.haboutbm {height: 840px;}
.haboutbm{background-position:bottom center;background-repeat: no-repeat;background-size: cover;}
.haboutbmh5{position:absolute;width: 100%;left:0;top:0;}
.haboutbmdesc p{
    min-height: 188px;
    line-height: 1.6;
}

.haboutc{padding: 0 0 70px;background: #fff;}
.haboutbm{margin-top: 60px;}
.haboutbm li:before,.haboutbm li:after{position: absolute;content: '';left:0;bottom:0;height: 100%;width: 100%;transition: all 0.3s ease;}
.haboutbm li:before{background: #000;opacity: 0.3;}
.haboutbm li:after{background: #fff;opacity: 0.3;}
.haboutbm li:nth-child(odd):before{opacity: 0;}
.haboutbm li:hover:after{opacity:0;}
.haboutbvideo{ position: relative;height: 740px;color:#fff; overflow: hidden;transition:all 0.3s ease;}
.habwideom p{
    font-size:34px;position: relative;z-index: 5;padding:0 60px;font-weight:bold;
    max-width: 1130px;
    margin:0 auto;
    text-align: center;
    line-height: 1.6em;
}
.habwideom{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.habwideomi{width: 100px;height: 100px;position: absolute; background:url(../images/habwideom1.png) center no-repeat;background-size:cover; right:60px;top:0;cursor: pointer;}
.haboutbvideo{background-position: center;background-repeat: no-repeat;margin-top:100px;}
.habwideobg{ position: absolute;width: 1200px;height: 500px;border:600px solid #fff;left:50%;top:50%;margin-left:-1200px;box-sizing:content-box;margin-top:-900px;}

.w14{
    width: 92%;
    max-width: 1400px;
    margin:0 auto
}

.about3{
    background:url(../images/cpys_bg.jpg)no-repeat center;
    background-size: cover;
    padding:150px 0;
}
.about3 ul{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
}
.about3 ul li{
    display: inline-block;vertical-align: top;width: 33.333%;position: relative;padding: 30px 0;
    text-align: center;
}
.about3 ul li::after {content: '';display: block;position: absolute;width: 1px;height: 100%;background: #d9dbdb;top: 0;right: 0;}
.about3 ul li:last-child::after {display: none;}
.about3 ul li i{display: inline-block;}
.about3 ul li h3{font-size: 22px;color: #1a1a1a;margin: 20px 0 5px;}
.about3 ul li h5{width: 80%;font-size: 15px;line-height: 22px;opacity: .6;font-weight: normal;color: #1a1a1a;margin: 0 auto;min-height: 100px;}

.about4{
    padding-bottom:75px;
}
.company-honor {overflow: hidden;padding: 200px 0 100px 0;position: relative;}
.company-honor .title-style{margin-left: 13%;}
.company-honor .title-style h2{
    margin: 0;
    text-transform: uppercase;
    font-size: 42px;
    line-height: 60px;
    color: #1a1a1a;
}
.company-honor .title-style h5{color: 999999;font-size: 16px;}
.company-honor-swiper {width: 100%;height: 390px;margin: auto;background: url("../images/honort.png") center bottom repeat-x;
margin-top: 100px; padding-bottom:40px;}
.company-honor-swiper .swiper-slide {width: auto;height: 300px;display: table;}
.table-bottom {display: table-cell;vertical-align: bottom;}
.honor-img {overflow: hidden;display:block;position: relative;max-width: 221px;}
.honor-img .htop{height: 7px;width: 100%;background: url("../images/honor1.png") no-repeat;background-size: 100% 100%;}
.honor-img .hbottom{height: 27px;width: 100%;background: url("../images/honor3.png") no-repeat;background-size: 100% 100%;}
.honor-img .hcenter {padding:0px 7px;background: url("../images/honor2.png") no-repeat;background-size:100% 100%;}
.honor-img .hcenter img {display: block;}
.honor-img a {display: block;}
.honor-img a::before {content: '';width: 50px;height: 50px;position: absolute;left: 50%;top: 50%;margin-left: -25px;
margin-top: -35px;z-index: 10;background: url("../images/fd.png") no-repeat;display: none;}
.honor-img a:hover::before {display: block; }
.honor-img a:hover {opacity: .6;}
.rpagination {position: relative;height:40px;}
.swiper-r {position: absolute;right:13%;top: 25%;width: 400px;}
.swiper-pagination-progressbar {width: 100%;height: 3px;background: rgba(0,0,0,.1);margin-top: 10px;}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#df4729;}
.swiper-pagination-num #current {font-size: 24px;color: #000;}
.swiper-pagination-num{font-size: 14px;color: #b2b2b2;}
.lbtip {width: 112px;height: 26px;position: absolute;left: 13%;bottom: 10%;}
@media(max-width: 1600px){
    .theme-tainbox h2, .themeh2{
        font-size:32px;
        line-height: 46px;
        margin-bottom: 20px;
    }
    .theme-p2{
        font-size:15px;
    }
    .haboutbvideo{
        margin-top:50px;
        height:600px;
    }
    .habwideom p{
        font-size:26px;
    }
    .haboutbm{
        margin-top:40px;
        height:600px;
    }
    .haboutbmh5 {
        font-size: 17px;
        line-height: 60px;
    }
    .haboutbmdesc{
        top:180px;
        padding: 0 15px;
        font-size:20px;
    }
    .haboutbmdesc p {
        min-height: 160px;
    }
    .about3{
        padding:100px 0;
    }
    .about3 ul li h3{
        font-size:18px;
    }
    .about3 ul{
        margin-top: 40px;
    }
    .company-honor .title-style h2,.index_bottom2 p{
        font-size:32px;
    }
}
@media(max-width: 1440px){
    .haboutb {
        padding: 60px 0;
    }
    .theme-tainbox h2, .themeh2{
        font-size:30px;
    }
    .theme-p2{
        font-size:14px;
    }  
    .haboutbvideo{
        height:500px;
    } 
    .company-honor{
        padding: 100px 0;
    }
    .company-honor .title-style h2,.index_bottom2 p{
        font-size:30px;
    } 
}
@media(max-width: 1259px){
    .about3{
        padding: 60px 0;
    }
    .about3 ul{
        margin-top:30px;
    } 
    .about4{
        padding-bottom: 0;
    } 
    .company-honor .title-style{
        margin-left: 2%;
    }
    .lbtip{
        left:2%;
    }
    .swiper-r {
        right: 2%;
        top: 12%;
        width: 300px;
    }  
    .index_bottom2{
        padding:30px 0;
    }
    .company-honor .title-style h2, .index_bottom2 p {
        font-size: 24px;
    }
    .index_bottom2 a{
        padding-right: 60px;
        margin-top: 0px;
    }
}
@media(max-width: 1024px){
    .n_banner h2{
        font-size:32px;
    }
    .theme-tainbox h2, .themeh2 {
        font-size: 26px;
    }
   .haboutbvideo{
        margin-top:30px;
   }
    .haboutbm{
        height: 500px;
    }
    .haboutc {
        padding: 0 0 50px;
    }    
    .haboutbmdesc {
        top: 180px;
        padding: 0 15px;
        font-size: 17px;
    }
    .haboutbmdesc p {
        min-height: 120px;
    }
    .haboutbmdesc img{
        max-width: 50px;
    }
    .about3 ul li{
        padding:15px 0;
    }
    .about3 ul li h3 {
        font-size: 16px;
    }
    .about3 ul li h5 {
        width: 90%;
        font-size: 14px;
        min-height: 88px;
    }
}
@media(max-width: 768px){
    .n_banner h2{
        font-size:26px;
    }
    .theme-tainbox h2, .themeh2{
        font-size:24px;
        margin-bottom: 15px;
    }
    .haboutbvideo{
        height: 360px;
    }
    .habwideobg{
        height: 500px;
    }
    .habwideom p {
        font-size: 20px;
        padding:0;
    }
    .haboutb {
        padding: 30px 0;
    } 
    .haboutbm{
        height: 360px;
    }
    .haboutbmh5 {
        font-size: 16px;
        line-height: 46px;
    }
    .haboutbmdesc {
        top: 110px;
        padding: 0 15px;
        font-size: 15px;
    }
    .about3{
        padding: 30px 0;
    } 
    .about3 ul li h3 {
        margin: 20px 0 5px;
    } 
    .company-honor {
        padding: 60px 0;
    }  
    .company-honor-swiper{
        margin-top: 50px;
    }
    .company-honor .title-style h2, .index_bottom2 p {
        font-size: 20px;
    }
}
@media(max-width: 767px){
    .n_banner h2{
        font-size:20px;
    }
    .theme-tainbox h2, .themeh2 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .habwideobg {
        height: 400px;
    }
    .haboutbvideo {
        height: 230px;
    }
    .habwideom {
        top: 30%;
        transform: translate(-50%,-25%);
    }
    .habwideom p {
        font-size: 16px;
    }
    .haboutc{
        display: none;
    }
    .about3 ul li{
        padding:15px 0;
        width: 100%;
    }
    .about3 ul li::after{
        display: none;
    }
    .about3 ul{
        margin-top: 20px;
    }
    .about3 ul li h3 {
        font-size: 16px;
        margin: 10px 0 0;
    }
    .about3 ul li h5{
        min-height: auto;
        font-size:14px;
    }  
    .about3 ul li i img{
        max-height: 40px;
    }  
    .company-honor {
        padding: 30px 0;
    }
    .swiper-r {
        top: 6%;
        width: 150px;
    }
    .swiper-pagination-progressbar{
        margin-top:5px;
    }
    .index_bottom2 {
        padding: 15px 0;
    }
    .index_bottom2 p {
        font-size: 16px;
        float: none;
        max-width: 100%;
    }
    .index_bottom2 a{
        float: none;
        max-width: 125px;
        font-size: 14px;
        padding-right: 40px;
        background-size: 30px;
        margin-top:2px;
    }
}


.news{
    padding:50px 0;
}
.news_list li{
    margin-bottom:30px;
}
.news1{
    padding:30px 0 60px;
}
.news1 .index_t1 h2{
    max-width: 100%;
    font-size:32px;
    margin-bottom: 10px;
}
.news_detail{
    padding:30px 0;
}
.news_detail .content{
    font-size:16px;
    color: #333;
}
@media(max-width: 1600px){
    .news_list{
        margin-top:0;
    }
    .news_list li{
        margin-bottom:15px;
    }
    .news1 .index_t1 h2{
        font-size:24px;
    }
    .index_t1 p{
        font-size:14px;
    }
    .news_detail .content{
        font-size:15px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    .products_intro {
        padding: 50px 0;
    } 
    .news_detail .content{
        font-size:14px;
    }   
}
@media(max-width: 1024px){
    
}
@media(max-width: 768px){
    .products_intro {
        padding: 30px 0;
    } 
    .news {
        padding: 30px 0 20px;
    }
    .news1 {
        padding: 30px 0 20px;
    }
    .news1 .index_t1 h2 {
        font-size: 20px;
    } 
    .news_detail {
        padding: 20px 0;
    }  
}
@media(max-width: 767px){
    .news_list li{
        margin-bottom:10px;
    }
    .product1 .index_t1{
        margin-top:15px;
    }
    .news1 .index_t1 h2 {
        font-size: 16px;
    }  
    .news_detail {
        padding: 15px 0;
    }    
}


.service1{
    padding:90px 0 100px;
}
.service1 .img{
    margin-bottom:55px;
    text-align: center;
}
.service1 .text{
    position: relative;
    padding:0 130px;
    max-width: 1300px;
    margin:0 auto;
    font-size:26px;
    color: #212121;
    text-align: center;
}
.service1 .text:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width: 51px;
    height: 41px;
    background:url(../images/y1.png) no-repeat left center;
}
.service1 .text:after{
    content:'';
    position: absolute;
    top:0;
    right:0;
    width: 51px;
    height: 41px;
    background:url(../images/y2.png) no-repeat left center;    
}
.service2{
    background:#f7f7f7;
    padding:60px 0 90px;
}
.service2 h2{
    font-size:42px;
    color: #222;
    text-align: center;
    margin-bottom:30px;
}
.service2 ul{
    display: flex;
    flex-wrap: wrap;
    max-width: 1224px;
    margin:0 auto;
}
.service2 ul li{
    width: 30%;
    margin-right: 5%;
    position: relative;
    text-align: center;
    color: #fff;
}
.service2 ul li:last-child{
    margin-right: 0;
}
.service2 ul li .img{
    overflow:hidden;
}
.service2 ul li .img img{
    transition: all 0.6s ease-out;
}
.service2 ul li .text{
    position: absolute;
    bottom:35px;
    left:0;
    width: 100%;
    padding:0 10px;
}
.service2 ul li .text h3{
    font-size:30px; 
    line-height: 1.4;    
}
.service2 ul li .text p{
    font-size:22px;   
    line-height: 1.6em;
}
@media(max-width: 1600px){
    .service1 .text {
        padding: 0 80px;
        font-size: 20px;
    }
    .service2{
        padding:60px 0;
    }
    .service2 h2{
        font-size:32px;
    }
    .service2 ul li .text h3{
        font-size:22px;
    }
    .service2 ul li .text p{
        font-size:17px;
    }

}
@media(max-width: 1440px){
    
}
@media(max-width: 1259px){
    .service1 {
        padding: 60px 0;
    }
    .service1 .text {
        padding: 0 75px;
        font-size: 18px;
    }
    .service2 h2{
        font-size:26px;
    }
}
@media(max-width: 1024px){
    
}
@media(max-width: 768px){
    .service1,.service2 {
        padding: 40px 0;
    }
    .service1 .img{
        margin-bottom: 30px;
    }
    .service1 .text{
        font-size:16px;
    }
    .service2 h2{
        font-size:20px;
    }   
    .service2 ul li{
        width: 32%;
        margin-right: 2%;
    } 
    .service2 ul li .text{
        bottom:10px;
        padding:0 5px;
    }
    .service2 ul li .text h3{
        font-size:16px;
    }
    .service2 ul li .text p{
        font-size:14px;
        line-height: 1.6em;
    }
}
@media(max-width: 767px){
    .service1,.service2 {
        padding: 30px 0;
    }  
    .service1 .img{
        margin-bottom: 15px;
    }  
    .service1 .text{
        padding:0 35px;
        font-size:14px;
    }
    .service1 .text:before,.service1 .text:after{
        width: 30px;
        height: 25px;
        background-size: 100%;
    }
    .service2 h2{
        margin-bottom:15px;
    }
    .service2 ul li .text{
        bottom:5px;
    }
    .service2 ul li .text p{
        font-size:12px;
    }
}
@media(max-width: 460px){
/*    .service2 ul li{
        width: 100%;
        margin-right: 0%;
    } */
}


.contact1{
    padding:105px 0 55px;
}
.contact1 .txt{
    width: 25%;
    float:left;
}
.contact1 .txt h2{
    font-size:21px;
    color: #212121;
    line-height: 1.4em;
    margin-bottom:10px;
}
.contact1 .txt p{
    font-size:16px;
    color: #4f4f4f;
    line-height: 1.6em;
}
.contact1 ul{
    width: 66%;
    float:right;
    display: flex;
/*    flex-wrap: wrap;*/
}
.contact1 ul li{
    padding:0 55px;
    position: relative;
}
.contact1 ul li:before{
    content:'';
    position: absolute;
    top:0;
    right:0;
    width: 1px;
    height: 110px;
    background:#e0e0e0;
}
.contact1 ul li:first-child{
    padding-left: 0;
    width: 220px;
}
.contact1 ul li:last-child{
    padding-right: 0;
    max-width: 360px;
}
.contact1 ul li:last-child:before{
    display: none;
}
.contact1 ul li .img{
    height: 41px;
    line-height: 41px;
}
.contact1 ul li .text{
    
}
.contact1 ul li .text h3{
    font-size:15px;
    color: #212121;
    line-height: 1.4em;
}
.contact1 ul li .text p{
    font-size:14px;
    color: #4f4f4f;
    padding:15px 0 5px;
}

.n_map{
    overflow:hidden;
    height: 600px;
    padding:0 120px;
    margin-bottom:65px;
}
.n_job{
    padding:70px 0 130px;
    background:#f7f7f7;
}
.n_job h2{
    font-size:42px;
    color: #222;
    text-align: center;
}
.recruitment-list {padding:4% 0;overflow: hidden;}
.recruitment {width: 87%;margin: auto;}
.recruitment .rcontact{ margin-bottom: 1%;}
.recruitment .rcontact .rtitle{padding:2% 5%;position: relative;cursor: pointer;overflow: hidden;background: #fff;}
.recruitment .rcontact .rtitle * {display: inline-block;vertical-align: middle;}
.recruitment .rcontact .rtitle h3 {width: 20%;font-size: 18px;color: #1a1a1a;}
.recruitment .rcontact .rtitle li {width: 59%;}
.recruitment .rcontact .rtitle li h5{font-size: 14px;color: #999999;font-weight: normal;}
.recruitment .rcontact .rtitle li i {width: 1px;height:20px;background: #333;display: inline-block;vertical-align: middle;margin: 0 34px;opacity: .4; -ms-transform:rotate(35deg);-moz-transform:rotate(35deg);-webkit-transform:rotate(35deg);-o-transform:rotate(35deg);transform:rotate(35deg);}
.recruitment .rcontact .rtitle h4{width: 16%;text-align: right;font-size: 14px;color: #999999;padding-right:3%; font-weight: normal;position: relative;}
.recruitment .rcontact .rtitle h4 i{width:15px;height: 30px;opacity: 0.5; background: url("../images/dd1.png") center no-repeat;position: absolute;right:0;top: 50%;margin-top: -15px;}
.recruitment .rcontact .rtitle.cur {font-weight: bold;}
.recruitment .rcontact .rtitle.cur h4 i {background: url("../images/dd2.png") center no-repeat;}
.recruitment .rcontact ul{background: #fff;border-top: 1px solid #ededed; padding:3% 5%;font-size: 14px;line-height: 24px;color: #666666;}
.recruitment .rcontact ul.children{ display: none;}
.recruitment .rcontact.cur {}
.recruitment .rcontact.cur ul.children{ display:block;}
.recruitment .rcontact .rtitle:hover h3{color: #df4729;}
a.applyjobs {background: #df4729;color: #fff;width: 200px;height: 50px;border: 1px solid #fff;line-height: 50px;text-align: center;display: block;margin: 30px 0;}
a.applyjobs:hover {background: #fff;color: #df4729;border: 1px solid #df4729;}
@media(max-width: 1600px){
    .contact1 .txt h2{
        font-size:20px;
    }
    .contact1 ul{
        width: 70%;
    }
    .contact1 ul li{
        padding:0 25px;
    }
    .contact1 ul li .text h3{
        font-size:15px;
    }
    .n_map{
        height: 500px;
        padding:0 70px;
    }
    .n_job {
        padding: 70px 0;
    }
    .n_job h2{
        font-size:32px;
    }
    .recruitment-list{
        padding:3% 0;
    }
    a.applyjobs{
        width: 150px;
    }
}
@media(max-width: 1440px){
    .contact1 {
        padding: 80px 0 50px;
    }    
    .contact1 .txt p{
        font-size:14px;
    }
}
@media(max-width: 1259px){
    .contact1 .txt h2{
        font-size:18px;
    }
    .contact1 .txt{
        width: 27%;
    }
    .contact1 ul li {
        padding: 0 15px;
    }
    .n_map{
        padding:0 2%;
        height: 350px;
    }
    .n_job {
        padding: 60px 0;
    }
    .n_job h2{
        font-size:26px;
    }    
}
@media(max-width: 1024px){
    .contact1 {
        padding: 60px 0 50px;
    } 
    .contact1 .txt h2{
        font-size:17px;
    }
    .contact1 ul li:first-child {
        padding-left: 0;
        width: 180px;
    }
    .contact1 ul li .text h3{
        font-size:15px;
    }
    a.applyjobs{
        width: 120px;
    }   
    .recruitment{
        width: 100%;
    } 
    .recruitment .rcontact .rtitle{
        padding:2% 15px;
    }
    .recruitment .rcontact .rtitle h3{

    }
    .recruitment .rcontact .rtitle li{
        width: 57%;
    }
    .recruitment .rcontact .rtitle h4{
        width: 18%;
    }
}
@media(max-width: 768px){
    .contact1 {
        padding: 40px 0;
    } 
    .contact1 .txt{
        float:none;
        width: 100%;
    }
    .contact1 .txt h2{
        font-size:16px;
    }
    .contact1 ul li:first-child {
        padding-left: 0;
        width: 150px;
    }
    .contact1 ul {
        float:none;
        width: 100%;
        margin-top:15px;
    }
    .n_map{
        height: 300px;
        margin-bottom:30px;
    }
    .n_job {
        padding: 40px 0;
    }
    .n_job h2{
        font-size:22px;
    } 

    a.applyjobs{
        width: 100px;
    }       
}
@media(max-width: 767px){
    .contact1 {
        padding: 30px 0;
    } 
    .n_job {
        padding: 25px 0;
    }
    .n_job h2{
        font-size:20px;
    }
    .recruitment .rcontact .rtitle {
        padding: 2% 10px;
    }
    .recruitment .rcontact .rtitle h3 {
        width: 50%;
        font-size: 15px;
    }
    .recruitment .rcontact .rtitle li{
        display: none;
    }    
    .recruitment .rcontact .rtitle h4 {
        width: 48%;
        padding-right: 6.5%;
    } 
}
@media(max-width: 640px){
    .contact1 ul{
        flex-wrap: wrap;
    }
    .contact1 ul li{
        width: 100%!important;
        padding:0;
        border:none;
        display: flex;
        margin-bottom: 10px;
    }  
    .contact1 ul li .img{
        width: 35px;
        text-align: center;
    }
    .contact1 ul li .text{
        width: calc(100% - 40px);
        padding-left: 15px;
    }
    .contact1 ul li .text p{
        padding:0;
    }  
    .n_map{
        height: 250px;
        margin-bottom:20px;
    }
}


h1.title{
    font-size: 22px;
    color: #333;
    text-align: center;
    padding:2em 0 0.5em 0;
    font-weight: normal;
}
.info_title{
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-bottom: 1em;
    border-bottom:1px dashed #dcdcdc;
    margin-bottom: 2em;
}
h3.tag{
    font-size: 14px;
    color: #666;
    font-weight: normal;
    display: none;
}
.page{
    font-size: 14px;
    color: #666;  
    margin-top:20px;  
}
.page a{
    font-size: 14px;
    color: #666;    
}

@media(max-width: 768px){
    h1.title{
        font-size: 18px;
    }
}

.pageController{
    text-align: center;
    color:#505050;margin:0 auto;
    margin:2em 0;
    line-height:24px;
}
.pageController a{background-color:#FFF;vertical-align:middle; border:#efefef 1px solid; 
    color:#505050;padding:5px 8px; margin-right:3px;margin-left:3px;
}
.pageController a:hover{background-color:#df4729;color:#fff; text-decoration:none;border:#efefef 1px solid;}
.pageController .currPage {background-color: #df4729;color:#ff0000;border:#efefef 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: #df4729;
    vertical-align: middle;
    border: 1px solid #df4729; 
    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: #df4729;
    color: #fff;
    z-index:9999;
    justify-content: center;
    width: 100%;
    display:none;

}
.m_f_fixed a{
    flex:1;
    font-size: 16px;
    color: #fff;
    display: block;
    text-align: center;
    padding:10px 0;
}
.m_f_fixed a img{
    width: 25px;
    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:70px;
    }
}


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


/* 右侧浮窗 */

#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: 5px;
    display: flex;
    align-items: center;
    width: 70px;
    height: 70px;
    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: 2;
}

#c-right-fixed .c-wrap {
    border: 1px solid #fff;
    padding: 11px 0;
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    transition: all .5s;
}

#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);
}

#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: #df4729;
    background: #df4729;
}

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

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

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


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