﻿/*头部样式*/
header{
    position: fixed;
    top:0px;
    left:0;
    width: 100%;
    z-index:999999;

}
.head{
    position: relative;
    width: 100%;
    padding:0px 60px;
/*    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;*/

}
.logo{
    float: left;
    padding-top:20px;
}
.logo a{
    display: block;
    line-height: 47px;
}
.logo img.img2{
    display: none;
}
.head_a{
    display: flex;
    float: right;
    padding-top:20px;
}
.head_a a{
    border:1px solid #fff;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-top:5px;
    position: relative;
}
.head_a a:nth-child(1){
    background:url(../image/h_img1.png ) no-repeat center;
}
.head_a a:nth-child(2){
    background:url(../image/h_img2.png ) no-repeat center;
    margin:5px 22px 0;
}
.head_a a:nth-child(3){
    line-height: 34px;
    font-size:12px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}
.head_a a:nth-child(4){
    width: 128px;
    height: 47px;
    line-height: 45px;
    background:#ffff;
    border-radius: 25px;
    color: #333333;
    margin-left: 26px;
    text-align: center;
    font-weight: bold;
    margin-top:0px;
}
.head_a a .img1{
    position: absolute;
    top:50px;
    left:50%;
    margin-left: -60px;
    width: 120px;
    display: none;
    padding:5px;
    background: #fff;
}
.head_a a:hover .img1{
    display: block;
}
#c-header.show .head_a a:nth-child(1):hover,#c-header.c-head-hide .head_a a:nth-child(1):hover{
    background:url(../image/h_img1.png ) no-repeat center #333;
}
#c-header.show .head_a a:nth-child(2):hover,#c-header.c-head-hide .head_a a:nth-child(2):hover{
   background:url(../image/h_img2.png ) no-repeat center #333;
}
#c-header.show .head_a a:nth-child(3):hover,#c-header.c-head-hide .head_a a:nth-child(3):hover{
    color: #fff;
    background-color: #333;
}
#c-header.show .head_a a:nth-child(4):hover,#c-header.c-head-hide .head_a a:nth-child(4):hover{
    text-decoration: underline;
}

.nav{
    display: flex;
    float: left;
    margin-left: 22%;
}
.nav li{
    margin-right: 50px;
}
.nav li:last-child{
    margin-right: 0;
}
.nav li a{
    display: block;
    color: #fff;
    font-size:16px;
    font-weight: bold;
    line-height: 87px;
    display: flex;
}
.nav li a i{
    background:url(../image/h_icon1.png) no-repeat center;
    width: 10px;
    height: 87px;
    margin-left: 10px;
    display: inline-block;
}
.nav li .b_nav{
    position: absolute;
    top:87px;
    left:0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #eee;
    padding:60px 0;
    display: none;
}
.nav li .b_nav a{
    display: block;
    color:#1a1a1a;
    font-size:16px;
    line-height: 1;
}
.nav li .b_nav .b_nav_l{
    width: 35%;
    float: left;
}
.nav li .b_nav .b_nav_l .img1{
    display: none;
}

.nav li .b_nav .b_nav_r{
    width: 65%;
    float: right;
    padding-left: 90px;
    padding-top:70px;
}
.p_sort{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;    
}
.p_sort a{
    display: block;
    text-align: center;
    opacity: .4;
    line-height: 1;
    font-weight: normal;
}
.p_sort a .img2{

}
.p_sort a p{
    margin:12px 0 20px;
}
.p_sort a b{
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #c2c2c2;
    border-radius: 50%;
    margin:0 auto;
    position: relative;
}
@keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-moz-keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-o-keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.p_sort a b:before{
    content:'';
    position: absolute;
    top: 50%;
    margin-top: -11px;
    left: 50%;
    margin-left: -11px;
    width: 22px;
    height: 22px;
    background: rgba(211, 3, 1, 0.3);
    animation: scalemap 2s linear infinite;
    -moz-animation: scalemap 2s linear infinite;
    -webkit-animation: scalemap 2s linear infinite;
    z-index:8;
    border-radius: 50%;
    display: none;
}
.p_sort a:hover,.p_sort a.cur{
    opacity: 1;
}
.p_sort a:hover b,.p_sort a.cur b{
    background-color: #d30301;
}
.p_sort a:hover b:before,.p_sort a.cur b:before{
    display: block;
}
#c-header.c-head-hide,#c-header.show{
    background:#fff;
}

#c-header.show .logo img.img1,#c-header.c-head-hide .logo img.img1{
    display: none;
}
#c-header.show .logo img.img2,#c-header.c-head-hide .logo img.img2{
    display: inline-block;
}
#c-header.show .nav li a,#c-header.c-head-hide .nav li a{
    color: #333;
}
#c-header.show .nav li a i,#c-header.c-head-hide .nav li a i{
    background:url(../image/h_icon1_h.png) no-repeat center;    
}
#c-header.show .head_a a,#c-header.c-head-hide .head_a a{
    border-color: #333;
}
#c-header.show .head_a a:nth-child(1),#c-header.c-head-hide .head_a a:nth-child(1){
    background:url(../image/h_img1_h.png ) no-repeat center #fff;
}
#c-header.show .head_a a:nth-child(2),#c-header.c-head-hide .head_a a:nth-child(2){
    background:url(../image/h_img2_h.png ) no-repeat center #fff;
    margin:5px 22px 0;
}
#c-header.show .head_a a:nth-child(3),#c-header.c-head-hide .head_a a:nth-child(3){
    color: #333;
}
#c-header.show .head_a a:nth-child(4),#c-header.c-head-hide .head_a a:nth-child(4){
    background:#333;
    color: #fff;
}


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

@media(max-width: 1600px){
    .nav{
        margin-left: 15%;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1360px){
    .nav{
        margin-left: 10%;
    }
}
@media(max-width: 1220px){
    .head{
        padding:0 3%;
    }
    .head_a a:nth-child(1),.head_a a:nth-child(2){
        display: none;
    }
    .head_a a:nth-child(4){
        width: 100px;
    }
    .nav {
        margin-left: 10%;
    }
}
@media(max-width: 1024px){
    
}
@media(max-width: 768px){
    header{
        background:#fff;
        position: relative;
    }
    #c-header .logo img.img1{
        display: none!important;
    }
    #c-header .logo img.img2{
        display: block!important;
    }
    .menu-button{
        display: block;
    }
    .logo{
        padding:10px 0;
    }
    .nav,.head_a{
        display: none;
    }

}
@media(max-width: 640px){
    .logo{
        width: 40%;
        padding:5px 0;
/*        float: none;*/
    }
    .menu-button{
        top:25px;
    }

    
}
#c-banner1{
    height: 100vh;
}
#c-banner1 .swiper-slide img{
    height: 100%;
    width: 100%;
}
#c-banner1 .banner_text{
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    text-align:right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;    
    padding:0 155px;
    font-size:90px;
    color: #fff;
    line-height: 1.5;
    transition: all 0.6s ease-out;
    opacity: 0;
}
#c-banner1 .banner_text span{
    font-size: 42px;
}
#c-banner1 .swiper-slide-active .banner_text{
    left:0;
    opacity: 1;
}
.container{
    width: 90%;
    margin: 0 auto;
    max-width: 1300px;
}

@media(max-width: 1600px){
    .container{
        width: 86%;
    }
    #c-banner1 .banner_text{
        padding:0 60px;
        font-size:52px;        
    }
    #c-banner1 .banner_text span{
        font-size: 32px;
    }
}
@media(max-width: 1360px){

}
@media(max-width: 1220px){
    #c-banner1{
        height: auto;
    }
    #c-banner1 .swiper-slide img{
        height:auto;
        width: 100%;
    }
    .container{
        width: 94%;
    }
    #c-banner1 .banner_text{
        font-size:40px;
        padding:0 3%;
    }
    #c-banner1 .banner_text span{
        font-size: 24px;
    }
    .section_scroll2{
        display: none;
    }
}
@media(max-width: 768px){
    #c-banner1 .banner_text{
        font-size:28px;
    }
    #c-banner1 .banner_text span{
        font-size: 18px;
    }
}
@media(max-width: 640px){
    #c-banner1 .banner_text{
        font-size:22px;
    }
    #c-banner1 .banner_text span{
        font-size: 14px;
    }
}




.index_about{
    padding:145px 0 165px;
    background:url(../image/bg1.jpg) no-repeat center bottom;
    background-size: cover;
}
.index_about .container{
    padding:0 52px;
    text-align: center;
}
.index_about h2{
    font-size:48px;
    color: #333333;
    text-align:center;
    line-height: 1;
    margin-bottom: 30px;
    animation-delay: 0.3s;
}
.index_about .text{
    font-size:24px;
    color: #666666;
    animation-delay: 0.6s;
}
.num_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin:45px 0 110px;
    animation-delay: 0.9s;
}
.num_list li{
    padding:0 75px;
    position: relative;
}
.num_list li:nth-child(1){
    padding-left: 0;
}
.num_list li:last-child{
    padding-right: 0;
}
.num_list li:last-child:before{
    display: none;
}
.num_list li:before{
    content:'';
    position: absolute;
    top:50%;
    margin-top: -40px;
    right:0;
    width: 1px;
    height:80px;
    background-color: #e0e0e0;
}
.num_list li .p1{
    display: flex;
    flex-wrap: wrap;
/*    justify-content: center;*/
}
.num_list li .p1 span{
    font-size:46px;
    color: #1a1a1a;
    font-family: "宋体";
    font-weight: bold;
    line-height: 1.2;
}
.num_list li .p1 sup{
    font-size:20px;
    color: #1a1a1a;
    line-height: 1;
}
.num_list li .p2{
    display: flex;
    flex-wrap: wrap;
    font-size:15px;
    color: #4c4c4c;
    line-height: 26px;
}
.num_list li .p2 em{
    display: inline-block;
}
.num_list li .p2 span{
    margin-left: 7px;
    font-size:15px;
    color: #4c4c4c;
    line-height: 28px;
    display: inline-block;
}
.index_about a{
    overflow: visible;
    display: inline-block;
    margin-left: 0 auto;
    animation-delay: 1.2s;

/*    display: block;*/
}
.index_about a i {
    display: inline-block;
    vertical-align: middle;
    width: 70px;
    height: 70px;
    background: url(../image/player1.png) no-repeat;
    position: relative;
    cursor: pointer;
    margin-right: 30px;
}
.index_about a i:before,.index_about a i:after{    
    content: "";
    display: block;
    width: 72px;
    height: 72px;
    border: 1px dotted #df591e;
    border-radius: 100%;
    position: absolute;
    top: -1px;
    left: -1px;
    animation: videoDh 1.5s linear infinite;
    opacity: 0.8;
}
.index_about a i:before{
    animation-delay: 0.6s;
}
.index_about a i:after{
    animation-delay: 0s; 
}
.index_about a span{
    display: inline-block;
    line-height: 1;
    font-size: 18px;
    color: #d30301;
    font-weight: bold;
    position: relative;
    bottom: 0px;
    left:20px;
}

@keyframes videoDh { 
    from {
        transform: scale(1, 1); 
        opacity: 0.8;
    } 
    to {
        transform: scale(1.8, 1.8); 
        opacity: 0;
    } 
}


.cboxOverlay {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

.colorbox {
    position: fixed;
    width: 90%;
    height: 70%;
    top: 15%;
    left: 5%;
    background: #ffffff;
    z-index: 10001;
    display: none;
}

.colse_click {
    position: absolute;
    top: -30px;
    right: 0;
    width: 25px;
    height: 25px;
    background: url("../image/closeVideo.png") no-repeat center;
    cursor: pointer;
}

.colorbox iframe {
    width: 100%;
    height: 100%;
}
@media(max-width: 1600px){
    
    .index_about{
        padding:120px 0;
    }
    .index_about h2{
        font-size:36px;
    }
    .index_about .text{
        font-size:20px;
    }
    .num_list li .p1 span{
        font-size:32px;
    }
    .num_list li .p2 span{
        font-size:14px;
    }
    .index_about .container{
    padding:0 94px;
}
}
@media(max-width: 1440px){
    .index_about .text{
        font-size:18px;
    }
    .container {
         width: 90%;
    }
}
@media(max-width: 1360px){
    .num_list li{
        padding:0 50px;
        position: relative;
    } 
}
@media(max-width: 1024px){
    .index_about{
        padding:70px 0;
    }   
    .index_about h2{
        font-size:30px;
    } 
    .index_about .container{
        padding:0;
    }
    .num_list{
        margin:40px 0 80px;
    }
    .num_list li{
        padding:0 30px;
        position: relative;
    }   
}
@media(max-width: 768px){
    .index_about{
        padding:50px 0;
    }  
    .index_about h2{
        font-size:26px;
    }
    .index_about .text {
        font-size: 15px;
    }
    .num_list li{
        padding:0 20px;
        position: relative;
    } 
}
@media(max-width: 640px){
    .index_about{
        padding:30px 0;
    }
    .index_about h2{
        font-size:22px;
        margin-bottom: 15px;
    }  
    .num_list {
        margin: 20px 0 30px;
    }
    .num_list li{
        width: 50%;
        margin:10px 0;
    }
    .num_list li:before{
        height: 60px;
        margin-top:-30px;
    }
    .num_list li:nth-child(2):before{
        display: none;
    }
    .num_list li:nth-child(3){
        padding-left: 0;
    }
    .num_list li .p1 span{
        font-size:26px;
    }
    .index_about a i{
        width: 40px;
        height: 40px;
        background-size: contain;
        margin-right: 8px;
    }
    .index_about a i:before, .index_about a i:after{
        width: 42px;
        height: 42px;
/*        top: -11px;
        left: -11px;*/
    }
    .index_about .text {
        font-size: 14px;
    }
}


.index_product{
    position: relative;
}
.index_product_bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 52.5%;
    height: 100%;
}
.index_product_bg .mySwiper2{
    width: 100%;
    height: 100%;
}
.index_product_bg .mySwiper2 .swiper-slide{
    opacity: 0;
    height:100%;
    position: relative;
    z-index:-9;
}
.index_product_bg .mySwiper2 .swiper-slide-active{
    opacity: 1;
    z-index:9;
}



@keyframes width120 {
    0% {
        width: 0;
    }
    100% {
        width: 120%;
    }
}
@-moz-keyframes width120 {
    0% {
        width: 0;
    }
    100% {
        width: 120%;
    }
}
@-webkit-keyframes width120 {
    0% {
        width: 0;
    }
    100% {
        width: 120%;
    }
}
@-o-keyframes width120 {
    0% {
        width: 0;
    }
    100% {
        width: 120%;
    }
}



@keyframes width100 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@-moz-keyframes width100 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes width100 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@-o-keyframes width100 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.index_product_c{
    padding: 135px 0 65px;  
    max-width: 690px;
    width: 53%;
    float: right;
    position: relative;
    z-index:99999;
}
.index_product_t{
    text-align:right;
    color: #333333;
    animation-delay: 0.3s;
}
.index_product_t h2{
    font-size:48px;
    line-height: 1;
    margin-bottom: 15px;
}
.index_product_t p{
    font-size:22px;
}
.p_tab1li{
    margin: 105px 0;
    display: none;
    max-width: 600px;
    width: 100%;
    float: right;
    border-top: 1px solid #e0e0e0;
    min-height: 247px;
}
.p_tab1li a{
    line-height: 52px;
    padding:0 12px 0 25px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.1s ease-out;
    display: block;
    position: relative;
}
.p_tab1li a span{
    display: block;
    width: 130px;
    float: left;
    font-size:18px;
    color: #333333;
}
.p_tab1li a .img2{
    position: absolute;
    width: calc(100% - 150px);
    position: absolute;
    top:-53px;
    right:0;
    height: 192px;
    line-height: 192px;
    text-align: center;
    background:rgba(211,3,1,.3);
    transform: scale(0.8);
    transition: all 0.6s ease-out;
    opacity: 0;
/*    z-index:-1;*/
}
.p_tab1li a .img2 img{
    max-height: 160px;
}
.p_tab1li a em.more1{
    display: block;
    float: right;
}

.p_tab1li a:hover,.p_tab1li a.on{
    line-height: 86px;
}
.p_tab1li a:hover span,.p_tab1li a.on span{
    color: #d30301;
    font-weight: bold;
}
.p_tab1li a:hover .img2,.p_tab1li a.on .img2{
    opacity: 1;
    transform: translate(0,00px);
}
.p_tab1li a:hover em.more1,.p_tab1li a.on em.more1{
    display: none;
}

.index_product .mySwiper{
/*    margin-right: -90px;*/
}
.index_product .mySwiper .swiper-slide{
    text-align: center;
    color: #2b353c;

    cursor: pointer;
}
.index_product .mySwiper .swiper-slide:before{
    content: '';
    position: absolute;
    left: calc(100% + -20px);
    bottom: 15px;
    width: 120%;
    height: 1px;
    background: #e0e0e0;
    z-index:8;
}
.index_product .mySwiper .swiper-slide:after{
    content: '';
    position: absolute;
    left: calc(100% + -20px);
    bottom: 15px;
    width: 0%;
    height: 1px;
    background: #d30301;
    z-index:8;
}


.index_product .mySwiper .swiper-slide .img2{
    opacity: .2;
    height: 100px;
}   
.index_product .mySwiper .swiper-slide p{
    font-size:16px;
    opacity: .2;
    padding:5px 0;
}
.index_product .mySwiper .swiper-slide b{
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #c2c2c2;
    border-radius: 50%;
    margin:0 auto;
    position: relative;
}
.index_product .mySwiper .swiper-slide b:before{
    content:'';
    position: absolute;
    top: 50%;
    margin-top: -11px;
    left: 50%;
    margin-left: -11px;
    width: 22px;
    height: 22px;
    background: rgba(211, 3, 1, 0.3);
    animation: scalemap 2s linear infinite;
    -moz-animation: scalemap 2s linear infinite;
    -webkit-animation: scalemap 2s linear infinite;
    z-index:8;
    border-radius: 50%;
    display: none;
}
.index_product .mySwiper .swiper-slide-thumb-active:after{
    animation: width120 10s linear infinite;
    -moz-animation: width120 10s linear infinite;
    -webkit-animation: width120 10s linear infinite;
    width: 120%;
}
.index_product .mySwiper .swiper-slide-thumb-active .img2{
    opacity: 1;
}   
.index_product .mySwiper .swiper-slide-thumb-active p{
    opacity: 1;
}
.index_product .mySwiper .swiper-slide-thumb-active b {
    background-color: #d30301;
}
.index_product .mySwiper .swiper-slide-thumb-active b:before{
    display: block;
}



@media(max-width: 1600px){
    .index_product_t h2{
        font-size:36px;
    }
    .index_product_t p{
        font-size:16px;
    }
    .index_product .mySwiper .swiper-slide p{
        font-size:14px;
    }
    .p_tab1li a span{
        font-size:17px;
    }
}
@media(max-width: 1360px){
    .index_product_c{
        padding:100px 0 40px;
    }
}
@media(max-width: 1260px){
    .index_product .mySwiper .swiper-slide:before{
        width:100%;
    }
    .index_product .mySwiper .swiper-slide-thumb-active:after{
        animation: width100 10s linear infinite;
        -moz-animation: width100 10s linear infinite;
        -webkit-animation: width100 10s linear infinite;
        width: 100%;
    }
}
@media(max-width: 1024px){
    .index_product_c{
        padding:70px 0 30px;
    } 
    .p_tab1li{
        min-height: 196px;
        margin: 90px 0 60px;
    } 
    .p_tab1li a{
        line-height: 40px;
        padding: 0 10px;
    }  
    .p_tab1li a:hover, .p_tab1li a.on {
        line-height: 70px;
    } 
    .p_tab1li a .img2 {
        top: -41px;
        height: 152px;
        line-height: 152px;
    } 
    .p_tab1li a .img2 img{
        max-height:120px;
    }
    .p_tab1li a span{
        font-size:16px;
    }
    .index_product .mySwiper .swiper-slide:before,.index_product .mySwiper .swiper-slide:after{
        display: none;
    }
}
@media(max-width: 768px){
    .index_product_t h2{
        font-size:26px;
        margin-bottom: 5px;
    }
    .index_product_t p{
        font-size:14px;
    }
    .p_tab1li {
        min-height: 196px;
        margin: 50px 0 40px;
    }
    .p_tab1li a:hover, .p_tab1li a.on {
        line-height: 50px;
    }
    .p_tab1li a span{
        font-size:15px;
    }
    .p_tab1li a .img2 {
        height: 132px;
        line-height: 132px;
    }
    .p_tab1li a .img2 img{
        max-height:100px;
    }
}
@media(max-width: 767px){
    .index_product_bg{
        display: none;
    }
    .index_product_c{
        width: 100%;
        padding:30px 0;
        float: none;
    }
    .index_product_t h2{
        font-size:22px;
    }
}



.index_news{
    background:#202020;
    padding:175px 0 135px;
}
.index_news .index_t1{
    position: relative;
    bottom: -40px;
}
.index_t1{
    color:#fff;
    text-align:right;
    animation-delay: 0.3s;
}
.index_t1 h2{
    font-size:48px;
    line-height: 1;
    margin-bottom: 20px;
}
.index_t1 p{
    font-size:22px;
}

.news_list1{

}
.news_list1 li{
    position: relative;
    width: 46%;
    float: left;
    margin-bottom: 6%;
    margin-right: 8%;    
    animation-delay: 0.7s;
}
.news_list1 li:nth-of-type(2n) {
    margin-right: 0;
    position: relative;
    top: 130px;
}
.news_list1 li a{
    display: block;
    color: #fff;
}
.news_list1 li a h3{
    font-size: 24px;
    margin-top: 15px;
    -webkit-transition: all .2s;
    transition: all .2s;
    font-weight: normal;
}
.news_list1 li a p{
    color: #909090;
    margin-bottom: 15px;
}

.news_list1 li a:hover .img img{
    transform: scale(1.1);
}
.news_list1 li a:hover h3{
    color: #d30301;
}
a.more2{
    display: block;
    font-size:18px;
    color: #fff;
    font-weight: bold;
    margin-top:55px;
    -webkit-transition: all .2s;
    transition: all .2s;
}
a.more2:hover{
    color: #d30301;
}
@media(max-width: 1600px){
    .index_news{
        padding:100px 0;
    }
    .index_t1 h2{
        font-size:36px;
    }
    .index_t1 p{
        font-size:16px;
    }
    .news_list1 li{
        margin-bottom: 3%;
    }
    .news_list1 li a h3{
        font-size:18px;
        margin-top: 10px;
    }
    .news_list1 li:nth-of-type(2n){
        top:100px;
    }
    a.more2{
        margin-top:30px;
    }
}
@media(max-width: 1360px){
 
}
@media(max-width: 1024px){
    .index_news{
        padding:70px 0;
    }
    .index_t1 h2{
        font-size:30px;
    }
    .index_t1 p{
        font-size:14px;
    }
    .news_list1 li{
        margin-bottom: 2%;
    }
    .news_list1 li a h3{
        font-size:17px;
        margin-top: 8px;
    }
    .news_list1 li:nth-of-type(2n){
        top:70px;
    }
    a.more2{
        margin-top:20px;
    }      
}
@media(max-width: 768px){
    .index_news{
        padding:50px 0;
    }
    .index_t1 h2{
        font-size:26px;
    }
    .news_list1 li{
        width: 49%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
    .news_list1 li a h3{
        font-size:16px;
        margin-top: 5px;
    }
}
@media(max-width: 767px){
    .index_news{
        padding:30px 0;
    }
    .index_t1 h2{
        font-size:22px;
    }
}
@media(max-width: 460px){
    .index_news .index_t1 {
        bottom: 0px;
        margin-bottom: 20px;
        text-align: center;
    }
    .news_list1 li{
        width: 100%;
        margin-right: 0%;
/*        margin-bottom: 20px;*/
    }
    .news_list1 li:nth-of-type(2n){
        top:0;
    }

}


.index_bottom{
    padding:100px 0;
    background:url(../image/bg2.jpg) no-repeat right center;
    color: #fff;
    background-attachment: fixed;
    background-size: cover;
}
.index_bottom h2{
    font-size:68px;
    line-height: 1.2;
    animation-delay: 0.3s;
}
.index_bottom h2 span{
    display: block;
}
.index_bottom a{
    display: block;
    background:#fff;
    font-size:24px;
    color: #d30301;
    width: 200px;
    line-height: 74px;
    text-align: center;
    margin-top:35px;
    font-weight: bold;
    animation-delay: 0.9s;
}
.index_bottom a:hover{
    background:#d30301;
    color: #fff;    
}
@media(max-width: 1600px){
    .index_bottom h2{
        font-size:46px;
        line-height: 1.4;
    }
    .index_bottom a {
        font-size: 20px;
        width: 160px;
        line-height: 50px;
    }
}
@media(max-width: 1024px){
    .index_bottom h2{
        font-size:36px;
        line-height: 1.4;
    }
    .index_bottom a {
        font-size: 20px;
        width: 140px;
        line-height: 50px;
    }
}
@media(max-width: 768px){
    .index_bottom{
        padding:60px 0;
    }
    .index_bottom h2{
        font-size:30px;
        line-height: 1.4;
    }
    .index_bottom a {
        font-size: 16px;
        width: 120px;
        line-height: 45px;
    }
}
@media(max-width: 640px){
    .index_bottom{
        padding:40px 0;
    }
    .index_bottom h2{
        font-size:22px;
        line-height: 1.4;
    }
    .index_bottom a {
        font-size: 15px;
        width: 100px;
        line-height: 40px;
        margin-top:20px;
    }
}


/*友情链接*/

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

/*页面底部*/

.foot{
    padding:140px 0 175px;
}
.foot_l{
    width: 48%;
    float: left;
}
.f_nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 85px;
}
.f_nav li{

}
.f_nav li h3{
    font-size:24px;
    color: #333333;
    margin-bottom: 10px;
}
.f_nav_a{

}
.f_nav_a a{
    display: block;
    font-size:16px;
    color: #333333;
    padding:5px 0;
}
.f_nav_a a:hover{
    color: #d30301;
}
.search{
    
}
.search h3{
    font-size:24px;
    color: #333333;
    font-weight: normal;
}
#formsearch{
    border-bottom: 3px solid #333333;
    display: block;
    max-width: 455px;
    width: 100%;
    margin-bottom: 20px;
}
#formsearch input{
    border:none;
    outline: none;
    line-height: 56px;
}
#keyword{
    float: left;
    width: calc(100% - 20px);
    color: #b2b2b2;
    font-size:14px;
    padding:0 15px;
}
#s_btn{
    float: right;
    background:url(../image/ss.png) no-repeat center 15px;
    width: 20px;
    cursor: pointer;
}
.hotSearch{

}
.hotSearch a{
    font-size:14px;
    color: #666666;
    display: inline-block;
    margin-right: 20px;
}
.hotSearch a:hover{
    color: #4c4c4c;
}
.foot_r{
    width: 27%;
    float: right;
    font-size:16px;
    color: #333;
}
.foot_r h2{
    font-size:24px;
    color: #333333;
    font-weight: normal;
}
.f_c1{
    font-size:16px;
    color: #333333;
    padding:15px 0 30px;
}
.f_c1 p strong{
    font-size:24px;
}
.f_c2{

}
.f_c2 p:nth-child(1){
    margin-bottom: 15px;
}
.f_code h3{
    font-size:16px;
    color: #333;
    font-weight: normal;
    padding:45px 0 15px;
}
.f_code_img{

}
.f_code_img p{
    display: inline-block;
}
.f_code_img p:last-child{
    margin-left: 42px;
}

.copyright{
    background: #333333;
    padding:22px 0;
    color: #fff;
    font-size:16px;
}
.copyright a{
    color: #fff;
    font-size:16px;    
}
.copyright a:hover{
    text-decoration: underline;
}
.copyright_l{
    float: left;
}
.copyright_r{
    float: right;
}

@media(max-width: 1600px){
    .foot {
        padding: 100px 0;
    }
    .f_nav{
        margin-bottom: 50px;
    }
    .f_nav li h3,.foot_r h2{
        font-size:20px;
    }
    .f_nav_a a {
        font-size: 15px;
        padding: 0px 0;
    }
    .foot_r{
        font-size:15px;
        width: 32%;
    }
    .f_c1 {
        font-size: 15px;
        padding: 10px 0 15px;
    }
    .f_code h3 {
        font-size: 15px;
        padding: 25px 0 10px;
    }
    .f_code_img p:last-child{
        margin-left: 20px;
    }
}
@media(max-width: 1360px){

}
@media(max-width: 1024px){
    .foot{
        padding:70px 0;
    }
    .foot_l{
        width: 50%;
    }
    .foot_r{
        width: 35%;
    }
}
@media(max-width: 768px){
    .foot{
        padding:50px 0;
    }

    .foot_r{
        width: 45%;
    }
}
@media(max-width: 640px){
    .foot{
        padding:30px 0;
    }
    .f_c1 {
        font-size: 15px;
        padding: 0px 0 10px;
    }
    .f_c2 p:nth-child(1) {
        margin-bottom: 0px;
    }
    .f_c1 p strong{
        font-size:20px;
    }
    .copyright{
        padding:15px 0;
    }
    .copyright_l,
    .copyright_r{
        float: none;
        text-align: center;
    }
}
@media(max-width: 460px){
    .foot_l{
        width: 100%;
        display: none;
    }
    .foot_r{
        width: 100%;
    }
}




/*----- 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;
    max-height: 100vh;
    overflow: hidden;
}
.n_banner img {
    width: 100%;
    margin: 0 auto
}
.n_banner_text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    text-align:center;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;    
}
.n_banner_text h3{
    font-size:90px;
    font-weight: normal;
    color: #fff;
}
.about_banner{
    position: relative;
}
.about_banner:after{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width: 100%;height: 100%;
    background: rgba(0,0,0,.1)
}
.about_banner .n_banner_text{
    display: none;
}
.about_banner img{
    display: none;
}
.about_banner video{
    object-fit:fill;
    width: 100%;
}
@media(max-width: 1600px){
    .n_banner_text h3{
        font-size:42px;
    }
}
@media(max-width: 1260px){

}
@media(max-width: 1024px){
    .n_banner_text h3{
        font-size:32px;
    }
}
@media(max-width: 768px){

}
@media(max-width: 640px){
    .n_banner_text h3{
        font-size:24px;
    }
    .about_banner .n_banner_text{
        display: flex;
    }
    .about_banner img{
        display: block;
    }
    .about_banner video{
        display:none;
    }
}








#about1{
    padding:150px 0 125px;

}
.ab_container{
    max-width: 1550px;
    width: 88%;
    margin:0 auto;
}
#about1 .text{
    width: calc(100% - 585px);
    float: left;
    padding-right: 110px;
}
#about1 .text h3{
    font-size:46px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 35px;
}
#about1 .text .txt{
    font-size:17px;
    color: #4c4c4c;
    height: 320px;
    width: 100%;
    padding-right: 60px;
    overflow-y: auto;
}
#about1 .text .txt p{
    text-indent: 2em;
    margin-bottom: 28px;
}
#about1 .text .txt p:last-child{
    margin-bottom: 0;
}
#about1 .text .txt::-webkit-scrollbar {/*滚动条整体样式*/
    width: 3px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
#about1 .text .txt::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #d30301;
/*    height: 60px;
    width: 6px;*/
}
#about1 .text .txt::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #e0e0e0;
    overflow:hidden;
}
#about1 .img1{
    width: 585px;
    height: 454px;
    float: right;   
    background:url(../image/a_bg1-1.png) no-repeat center; 
    text-align: center;
    padding-top:115px;
}
#about1 .img1 a{
    display: inline-block;
    position: relative;
    margin-top:70px;
}
#about1 .img1 a:before,#about1 .img1 a:after{    
    content: "";
    display: block;
    width: 72px;
    height: 72px;
    border: 1px solid #fff;
    border-radius: 100%;
    position: absolute;
    top: -1px;
    left: -1px;
    animation: videoDh 1.5s linear infinite;
    opacity: 0.8;
}
#about1 .img1 a:before{
    animation-delay: 0.6s;
}
#about1 .img1 a:after{
    animation-delay: 0s; 
}
.ab_num{
    background:url(../image/ab2.jpg) no-repeat center;
    background-size: cover;
    padding:;
    margin:;
    position: relative;
    z-index:1;
    border-bottom: 1px solid #e0e0e0;
}
.ab_num ul{
    display: flex;
    flex-wrap: wrap;
}
.ab_num ul li{
    width:25%;
    position: relative;
    z-index:3;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.ab_num ul li:before{
    content:'';
    position: absolute;
    top:-15px;
    left:0;
    width: 100%;
    height: 230px;
    background:#d30301;
    z-index:2;
    opacity: 0;
}
.ab_num ul li p{
    position: relative;
    z-index:4;
}
.ab_num ul li .p1{
    color: #333333;
    font-size:50px;
    font-family: "宋体";
    line-height: 1.6;
}
.ab_num ul li .p1 sup{
    font-size:20px;
    font-family: "Adobe 黑体";
    display: inline-block;
    margin-left: 5px;
    line-height: 1;
}
.ab_num ul li .p2{
    display: flex;
    justify-content: center;
}
.ab_num ul li .p2 em{
    display: block;
    width: 24px;
    height: 25.5px;
    position: relative;
    overflow:hidden;
}
.ab_num ul li .p2 em img{
    display: inline-block;
    /*transition: all 0.3s ease-out;*/
    position: absolute;
    top:0;
    left:0;
}
.ab_num ul li .p2 span{
    padding-left: 10px;
    display: inline-block;
    font-size:16px;
    color: #666666;
    line-height: 1.6;
}
.ab_num ul li:hover:before{
    opacity: 1;
}
.ab_num ul li:hover .p1{
    color: #fff;
}
.ab_num ul li:hover .p2 span{
    color: #fff;
}
.ab_num ul li:hover .p2 em img{
    top:-25.5px;
}
.about1_2{
    background:url(../image/ab3.jpg) no-repeat right center;
    background-size: cover;
    padding:285px 0 270px;
    color: #fff;
    background-attachment: fixed;
}
.about1_2 h2{
    font-size:56px;
    line-height: 1;
    margin-bottom: 70px;
}
.about1_2 p{
    font-size:22px;
}

#about2{
    padding:110px 0 130px;
}
#about2 h2,.about5 h2{
    font-size:46px;
    color: #333333;
    text-align: center;
    line-height: 1;
    margin-bottom: 60px;
}
.about2 ul{
    display: flex;
    flex-wrap: wrap;
}
.about2 ul li{
    width: 32%;
    margin-right: 2%;
    min-height: 586px;
    box-shadow: 0px 0px 10px #ccc;
    position: relative;
    overflow:hidden;
}
.about2 ul li:before{
    content:'';
    position: absolute;
    bottom:0;
    left:0;
    width: 100%;
    height:4px;
    background:#d30301;
}
.about2 ul li:nth-child(3n){
    margin-right: 0;
}
.about2 ul li .text{
    padding:62px 24px 0;
    text-align: center;
    position: relative;
}
.about2 ul li .about2_t{
    display: flex;
    justify-content: center;
}
.about2 ul li .about2_t .img1{
    width: 41px;
    height: 41px;
    line-height: 41px;
    overflow:hidden;
    position: relative;
}
.about2 ul li .about2_t .img1 img{
    position: absolute;
    top:0;
    left:0;
    transition:all 0.6s ease-out;
}
.about2 ul li .about2_t h3{
    line-height: 41px;
    margin-left: 12px;
    font-size:24px;
    color: #1a1a1a;
}
.about2 ul li .img2{
    padding:45px 0 50px;    
}
.about2 ul li p{
    max-width: 290px;
    margin:0 auto;
    text-align: center;
    font-size:22px;
    color: #666;
    line-height: 1.6;
}
.about2 ul li .txt{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align:center;

    flex-direction: column;
    justify-content: center;
    z-index: 99;
    background:url(../image/wh1-3.jpg) no-repeat center;
    background-size: cover;
    padding:0 5%;
    transition:all 0.6s ease-out;
}
.about2 ul li .txt .about2_t{
    border-bottom:1px solid #fff;
    padding-bottom: 42px;
    max-width: 290px;
    margin:0 auto 24px;
    width: 100%;
}
.about2 ul li .txt .about2_t .img1 img{
    top:-41px;
}
.about2 ul li .txt .about2_t h3{
    color: #fff;
}
.about2 ul li .txt p{
    color: #fff;
}
.about2 ul li:hover .txt{
    display: flex;
}
#about3{
    padding:140px 0 100px;
    background:url(../image/ab4.jpg) no-repeat center;
    background-size: cover;
}
.about3_l{
    float: left;
    width: 50%;
    padding-top:10px;
}
.about3_l .about3_t{
    color: #333333;
    margin-bottom: 85px;
}
.about3_l .about3_t h2{
    font-size:46px;
    line-height: 1;
    margin-bottom: 10px;
}
.about3_l .about3_t p{
    font-size:24px;
}
.about3_l .text p{
    font-size:16px;
    line-height: 40px;
}

.about3_r{
    float: right;
    width: 50%;
}
.about3_r .c-banner2{
    max-height: 520px;
    overflow:hidden;
}
.about3_r .c-banner2 .swiper-pagination{
    left:0;
    opacity: 0;
}
#about3 .swiper-slide{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 260px;
    padding-bottom: 35px;
}   
#about3 .swiper-slide .imgs{
    max-width: 47%;
}

#about4{
    padding:140px 0 215px;
    background:url(../image/ab5.jpg) no-repeat center;
    background-size: cover;
    color: #fff;
}
#about4 h2{
    font-size:46px;
    color: #ffffff;
    text-align: center;
}
.swiper-history .swiper-history-time{text-align: center;background: url("../image/line1.png") center no-repeat;}
.swiper-history .swiper-history-time .year-num {font-size: 40px;}

.swiper-history .swiper-history-time .text{ font-size: 16px;line-height: 30px;color: #fff;margin: auto;overflow: hidden;display: none;}
.swiper-history .swiper-history-time .swiper-slide-active .year-num {
    font-size: 170px;
    color: #fff;
    padding-top: 70px;
    line-height: 1em;
    font-family: 'Impact';
}
.swiper-history .swiper-history-time .swiper-slide-active .text{
    display: block;
    height: 150px;
    font-size:24px;
    margin-top:45px;
}
.swiper-history .swiper-history-time .swiper-button-next,.swiper-history .swiper-history-time .swiper-button-prev {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    opacity: 1;
}
.swiper-history .swiper-history-time .swiper-button-next {
    right:18%;
    background: url("../image/right.png") center no-repeat;
}
.swiper-history .swiper-history-time .swiper-button-prev {
    left:18%;
    background: url("../image/left.png") center no-repeat;
}

.swiper-history .swiper-history-time .year-num {
    line-height: 90px;
    padding-top: 170px;
}    
.swiper-history .swiper-history-time .swiper-button-next, .swiper-history .swiper-history-time .swiper-button-prev {margin-top: -30px;} 

.swiper-mhistory {} 
.swiper-history-year {position: relative;} 
.swiper-history-year::before {content: '';display: block;width: 100%;height: 1px;background: #ccc;position: absolute; left: 0;top:20px;}
.swiper-history-year .swiper-slide{text-align: center;color: #999;font-size: 30px; background: #f6f6f6;font-family: 'Barlow-Light',Microsoft Yahei,Arial;}
.swiper-history-year .swiper-slide.swiper-slide-thumb-active {color:#00bf86;font-weight: bold;}
.about5{
    padding:0 0 75px;
}
@media screen and (max-width: 1680px){
    .swiper-history .swiper-history-time {
        background: url(../image/line1.png) center no-repeat;
        background-size: 100%;
    }
}
@media(max-width: 1600px){
    #about1,#about2,#about3,#about4 {
        padding: 100px 0;
    }
    #about1 .text h3,.about3_l .about3_t h2,#about4 h2{
        font-size:36px;
    }
    #about1 .text{
        padding-right: 60px;
    }
    #about1 .text .txt{
        font-size:15px;
    }
    #about1 .text .txt p {
        margin-bottom: 20px;
    }
    .ab_num ul li{
        height: 160px;
    }
    .ab_num ul li:before{
        height: 190px;
    }
    .ab_num ul li .p1{
        font-size:42px;
    }
    .ab_num ul li .p2 span{
        font-size:15px;
    }
    .about1_2{
        padding:200px 0;
    }
    .about1_2 h2 {
        font-size: 42px;
        margin-bottom: 50px;
    }
    .about1_2 p{
        font-size:20px;
    }
    #about2 h2,.about5 h2{
        font-size:36px;
        margin-bottom: 50px;
    }
    #about2 ul li{
        min-height: 500px;
    }
    #about2 ul li .img2 {
        padding: 30px 0;
    }
    #about2 ul li .text {
        padding: 40px 20px 0;
    }   
    #about2 ul li p{
        font-size:18px;
    } 
    .about3_l .about3_t{
        margin-bottom: 50px;
    }
    .about3_l .about3_t p{
        font-size:20px;
    }
    #about3 .swiper-slide{
        padding-bottom: 15px;
/*        height: 220px!important;*/
    }
    .swiper-history .swiper-history-time .text{
        font-size:15px;
    }
    .swiper-history .swiper-history-time .swiper-slide-active .text{
        height:180px;
    }
    .swiper-history .swiper-history-time .swiper-slide-active .year-num{
        font-size:150px;
    }
    .swiper-history .swiper-history-time .year-num{
        font-size:30px;
        padding-top:175px;
    }
}
@media(max-width: 1440px){
    .swiper-history .swiper-history-time .swiper-slide-active .text{
        font-size: 16px;
    }
}
@media(max-width: 1220px){
    #about1,#about2,#about3,#about4 {
        padding: 70px 0;
    }
    #about1 .text h3,.about3_l .about3_t h2,#about4 h2{
        font-size:32px;
    } 
    #about1 .text{
        width: calc(100% - 400px);
    }  
    #about1 .text h3{
        margin-bottom: 15px;
    }
    #about1 .text{
        padding-right: 30px;
    }
    #about1 .text .txt{
        padding-right: 15px;
        height: 240px;
    }
    #about1 .img1{
        width: 400px;
        height: 310px;
        padding-top: 40px;
        background-size: contain;
    }
    #about1 .img1 p img{
        max-width: 260px;
    }
    #about1 .img1 a{
        margin-top:50px;
    }
    .ab_num ul li .p2 span{
        font-size:15px;
    }

    .about1_2 {
        padding: 150px 0;
    }
    .ab_container{
        width: 92%;
    }
    .about1_2 h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .about1_2 p{
        font-size:16px;
    }

    #about2 h2,.about5 h2{
        font-size: 32px;
        margin-bottom: 40px;
    }
    #about2 ul li .text {
        padding: 30px 20px 0;
    }
    #about2 ul li {
        min-height: 430px;
    }
    #about2 ul li .about2_t h3{
        font-size:20px;
    }
    .about3_l .about3_t{
        margin-bottom: 40px;
    }
    .about3_l .about3_t p{
        font-size:16px;
    }
    #about3 .swiper-slide{
        padding-bottom: 0px;
/*        height: 220px!important;*/
    }
    .swiper-history .swiper-history-time .swiper-slide-active .year-num{
        font-size:100px;
    }
    .swiper-history .swiper-history-time .year-num{
        font-size:24px;
        padding-top:150px;
    }
    .swiper-corporate, .honor_swiper{
        margin-top:30px;
    }
    .swiper-history .swiper-history-time .swiper-slide-active .text{
        font-size: 15px;
    }
}

@media(max-width: 768px){
    #about1,#about2,#about3,#about4 {
        padding: 50px 0;
    }
    #about1 .text h3,.about3_l .about3_t h2,#about4 h2{
        font-size:26px;
    } 
    #about1 .text{
        width: calc(100% - 300px);
        padding-right: 20px;
    }  
    #about1 .text h3{
        margin-bottom: 5px;
    }
    #about1 .text .txt{
        padding-right: 10px;
        height: 200px;
        font-size:14px;
    }
    #about1 .img1{
        width: 300px;
        height: 233px;
        padding-top: 30px;
    }
    #about1 .img1 p img{
        max-width: 200px;
    }
    #about1 .img1 a{
        margin-top:40px;
    }
    #about1 .img1 a:before, #about1 .img1 a:after{
        width: 42px;
        height: 42px;
    }
    #about1 .img1 a img{
        max-width: 40px;
    }
    .ab_num ul li {
        height: 120px;
    }
    .ab_num ul li:before {
        height: 150px;
    }
    .ab_num ul li .p1 {
        font-size: 32px;
    }
    .ab_num ul li .p2 span{
        font-size:14px;
    }

    .about1_2 {
        padding: 120px 0;
    }
    .about1_2 h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .about1_2 p{
        font-size:15px;
    } 
    #about2 h2,.about5 h2{
        font-size: 26px;
        margin-bottom: 30px;
    }
    #about2 ul li{
        width: 49%;
        margin-bottom:15px;
    }
    #about2 ul li:nth-child(3n){
        margin-right: 2%;
    }
    #about2 ul li:nth-child(2n){
        margin-right: 0;
    }
    #about2 ul li .img2 {
        padding: 20px 0;
    }
    #about2 ul li p{
        font-size:16px;
    }
    #about2 ul li .txt .about2_t {
        padding-bottom: 20px;
        margin: 0 auto 15px;
    }  

    .about3_l{
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    .about3_l .about3_t{
        margin-bottom: 20px;
    }
    .about3_l .about3_t p{
        font-size:14px;
    }
    .about3_r{
        width: 100%;
        float: none;
    }

    .swiper-history .swiper-history-time .swiper-slide-active .year-num{
        font-size:50px;
        padding-top:20px;
    }
    .swiper-history .swiper-history-time .year-num{
        font-size:24px;
        padding-top:60px;
    }
    .swiper-history .swiper-history-time .swiper-slide-active .text{
        height: 100px;
        font-size: 14px;
        line-height:20px;
        margin-top:20px;
    }
    .swiper-history .swiper-history-time .swiper-button-prev,.swiper-history .swiper-history-time .swiper-button-next{
        display: none;
    }
    .about5{
        padding:0 0 55px;
    }
}
@media(max-width: 640px){
    #about1,#about2,#about3,#about4 {
        padding: 30px 0;
    }
    #about1 .text h3,.about3_l .about3_t h2,#about4 h2{
        font-size:24px;
    }

    #about1 .text{
        width: 100%;
        padding-right: 0px;
        margin-bottom: 20px;
    }  
    #about1 .text h3{
        margin-bottom: 10px;
    }
    #about1 .text .txt{
        padding-right: 0px;
        height: auto;
    }
    #about1 .img1{
        width: 100%;
        height: 100%;
        padding: 30px 0;
    }
    #about1 .img1 p img{
        max-width: 160px;
    }
    #about1 .img1 a{
        margin-top:25px;
    }
    .ab_num{
        display: none;
    }
    .ab_num ul li {
        height: 80px;
        width: 50%;
    }
    .ab_num ul li:before {
        height: 110px;
    }
    .ab_num ul li .p1 {
        font-size: 28px;
    }



    .about1_2 {
        padding: 80px 0;
    }
    .about1_2 h2 {
        font-size: 24px;
        margin-bottom: 20px;
    } 
    #about2 h2,.about5 h2{
        font-size: 24px;
/*        margin-bottom: 30px;*/
    }  
    .swiper-history .swiper-history-time {
        background: url(../image/line1.png) center 50px no-repeat;
        background-size: 100%;
    }
    .swiper-history .swiper-history-time .swiper-slide .year-num{
        line-height: 40px;
    }
    .swiper-history .swiper-history-time .swiper-slide-active .year-num{
        font-size:32px;
        padding-top:30px;

    }
    .swiper-history .swiper-history-time .swiper-slide-active .text{
        font-size: 12px;
        position:relative;
        width:220%;
        left:-60%;
        margin-top:10px;
        height:100px;
    }
    .swiper-history .swiper-history-time .year-num{
        font-size:20px;
        padding-top:30px;
    } 
    .about5{
        padding:0 0 35px;
    }
}
@media(max-width: 460px){
    #about1 .img1{
        padding:40px 0;
    }
    .about1_2 {
        padding: 50px 0;
    }
    .about1_2 h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    #about2 ul li{
        width: 100%;
        margin-right: 0;
    }
    #about2 ul li .about2_t h3{
        font-size:18px;
    }
    .about3_r .c-banner2{
        max-height: 125px;
    }
    #about3 .swiper-slide{
        /*max-height: 120px;*/
    }
    #about3 .swiper-slide .imgs{
        max-width: 48%;
    }
}


/*产品*/
#container1{
    background:#f2f2f2;
    padding:110px 60px 120px;
}
.p_sort2{
    margin-bottom: 75px;
}
.p_sort2 a{
    width: 25%;
}
.p_sort2 a p{
    font-size:20px;
    color: #333;
}


.n_left{
    width: 24.5%;
    padding:0 85px 0 35px;
    float: left;
}
.n_left h3{
    font-size:46px;
    color: #333;
    line-height: 1;
    margin-bottom: 55px;
}
.p_sort3{

}
.p_sort3 li a.list_item1{
    font-size:0;
}
.p_sort3 li.on .layer2{
    display: block!important;
}
.p_sort3 li .layer2 a {
    display: block;
    position: relative;
    padding:0 17px 0 20px;
    font-size:18px;
    line-height: 50px;
    margin-bottom: 15px;
}
.p_sort3 li .layer2 a i{
    float: right;
    display: inline-block;
    width: 22px;
    height: 50px;
    background:url(../image/add.png) no-repeat center;
}
.p_sort3 li a.list_item2{
    display: block;
    line-height: 50px;
    font-size:18px;
    color:#666666;
}
.p_sort3 li .layer2.show{
    display: block!important;
}
.p_sort3 li .layer2 a.cur,.p_sort3 li .layer2 a:hover{
    background:#d30301;
    color: #fff;
    font-weight: bold;
}
.p_sort3 li .layer2 a.cur i,.p_sort3 li .layer2 a:hover i{
    background:url(../image/less.png) no-repeat center;
}


.n_right{
    width: 75.5%;
    float: right;
}
.product_list{
    display: flex;
    flex-wrap: wrap;
}
.product_list li{
    width: 32%;
    margin-right: 2%;
    margin-bottom:35px;
}
.product_list li:nth-child(3n){
    margin-right: 0;
}
.product_list li a{
    display: block;
    padding:110px 28px 40px;
    background:#fff;
    position: relative;
    overflow:hidden;
    text-align: center;
}
.product_list li a .img{
    line-height: 200px;
}
.product_list li a h3{
    font-size:16px;
    color: #d30301;
    font-weight: normal;
}
.product_list li a p{
    font-size:20px;
    color: #333333;
    font-weight: bold;
}
.product_list li a .bg{
    position: absolute;
    top: 500px;
    left: 0;
    width: 100%;
    height: 100%;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    background:rgba(0,0,0,.6);
    transition: all 0.3s ease-out;
}
.product_list li a .bg em{
    display: block;
    width: 122px;
    line-height: 46px;
    font-size:16px;
    color: #fff;
    background:#d30301;
    text-align: center;
    font-style: normal;
    margin:0 auto;
}
.product_list li a:hover .img img{
    transform: scale(1.1);
}
.product_list li a:hover .bg{
    top:0;
}
.sitemp{
    margin-top:87px;
    padding:35px 0;
    background:#f2f2f2;
}
.site{

}
.site a{
    font-size:14px;
    color: #4d5a62;
}
.site a:first-child{
    font-weight: bold;
}
.product_detail{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:105px 0;
}
.product_detail .img{
    width: 54%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.product_detail .p_detail{
    width: 40%;
}
.product_detail .p_detail h1 font{
    font-size:20px;
    color: #d30301;
    display: block;
}
.product_detail .p_detail h1 span{
    font-size:40px;
    color: #333;
    display: block;
    line-height: 1.6;
}
.p_detail .text{
    padding-top:35px;
    border-top:2px solid #cccccc;
    margin-top:32px;
}
.p_detail .text em{
    font-size:20px;
    color: #333333;
    display: block;
    width: 70px;
    float: left;
    line-height: 1.6;
    font-style: normal;
    font-weight: bold;
}
.p_detail .text .txt{
    width: calc(100% - 70px);
    float: right;
    font-size:17px;
    color: #333;
}
.p_detail_a a{
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-align: center;
    width: 150px;
    background: #d30301;
    line-height: 50px;
    margin-top:30px;
    border-radius: 15px;
}
.p_detail_a a i{
    width: 25px;
    background: url(../image/pdf.png) no-repeat center;
    margin-right: 10px;
}
.p_detail_a a:hover{
    text-decoration: underline;
}
.sc{
    padding:45px 0;
    background:#d30301;
    color: #fff;
}
.sc h2{
    font-size:34px;
    float: left;
    line-height: 113px;
}
.sc ul{
    float: right;

}
.sc ul li{
    width: 230px;
    max-width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;    
    float: left;
}
.sc ul li:last-child{
    margin-left: 80px;
}
.sc_t{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sc_t .img1{
    height: 47px;
    overflow:hidden;
    position: relative;
}
.sc_img{
    max-width: 120px;
}
.sc a{
    color: #fff;
}
.sc a:hover{
    text-decoration: underline;
}

.xgcp{
    background:#f2f2f2;
    padding:95px 0;
    border-bottom: 1px solid #e0e0e0;
}
.xgcp h2{
    font-size:40px;
    color: #333333;  
    margin-bottom: 30px;  
}
@media(max-width: 1600px){
    #container1{
        padding:100px 60px;
    }
    .p_sort2 a p{
        font-size:17px;
    }
    .n_left{
        padding:0 50px 0 15px;
    }
    .n_left h3{
        font-size:36px;
        margin-bottom: 30px;
    }
    .p_sort3 li a.list_item2 {
        line-height: 45px;
        font-size: 16px;
    }
    .p_sort3 li .layer2 a{
        padding:0 10px;
    }
    .product_list li a{
        padding:60px 20px 30px;
    }
    .product_list li a p{
        font-size:18px;
    }
    .product_detail .p_detail h1 span{
        font-size:32px;
    }
    .p_detail .text {
        padding-top: 25px;
        margin-top: 25px;
    }
    .p_detail .text em{
        font-size:18px;
    }
    .p_detail .text .txt{
        font-size:15px;
    }
    .sc h2{
        font-size:30px;
    }
    .xgcp{
        padding: 80px 0;
    }
    .xgcp h2{
        font-size: 32px;
        margin-bottom: 20px;    
    }
}
@media(max-width: 1220px){
    #container1{
        padding:70px 4%;
    } 
    .n_left {
        padding: 0 30px 0 0px;
    }  
    .n_left h3{
        font-size:28px;
        margin-bottom: 20px;
    }
    .p_sort3 li .layer2 a{
        font-size:15px;
        margin-bottom: 10px;
    } 
    .sitemp{
        padding:25px 0;
    }
    .product_detail{
        padding:80px 0;
    }
    .product_detail .p_detail h1 span {
        font-size: 26px;
    }
    .sc h2{
        font-size:26px;
    }
    .sc ul li:last-child{
        margin-left: 50px;
    }
    .xgcp{
        padding: 60px 0;
    }
    .xgcp h2{
        font-size: 28px;  
    }
    .sc_img{
        max-width: 100px;
    }
}
@media(max-width: 768px){
    #container1{
        padding:50px 4%;
    }  
    .p_sort2 {
        margin-bottom: 50px;
    }
    .p_sort2 a p{
        font-size:16px;
    }
    .n_left{
        display: none;
    }
    .n_left h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .p_sort3 li .layer2 a{
        font-size:14px;
    }  
    .n_right{
        width: 100%;
    } 
    .product_list li a {
        padding: 20px 15px;
    }
    .product_list li a p{
        font-size:16px;
    }
    .sitemp{
        padding:15px 0;
        margin-top:0;
    }
    .product_detail{
        padding:50px 0;
    }
    .p_detail .text {
        padding-top: 15px;
        margin-top: 15px;
    }
    .sc{
        padding:30px 0;
    }
    .sc h2{
        font-size:24px;
    }
    .sc ul li:last-child{
        margin-left: 30px;
    }
    .xgcp{
        padding: 50px 0;
    }
    .xgcp h2{
        font-size: 24px;  
    }
}
@media(max-width: 640px){
    #container1{
        padding:30px 4%;
    } 
    .p_sort2 {
        margin-bottom: 30px;
    }
    .p_sort2 a p{
        font-size:15px;
    }
    .product_list li{
        width: 49%;
        margin-bottom: 20px;
    }   
    .product_list li a {
        padding: 15px 10px;
    }
    .sitemp {
        padding: 10px 0;
    }
    .product_detail{
        padding:30px 0;
    }
    .product_detail .img{
        width: 100%;
        margin-bottom: 20px;
    }
    .product_detail .p_detail{
        width: 100%;
    }
    .product_detail .p_detail h1 font{
        font-size:16px;
    }
    .product_detail .p_detail h1 span{
        font-size:20px;
    }
    .p_detail .text em{
        font-size:16px;
        width: 60px;
    }
    .p_detail .text .txt {
        width: calc(100% - 60px);
    }
    .sc{
        padding:25px 0;
    }
    .sc h2{
        font-size:22px;
        width: 100%;
        line-height: 1;
        margin-bottom: 20px;
    }
    .sc ul{
        width: 100%;
        display: flex;
    }
    .sc ul li{
        width: 50%;
        text-align: center;
    }
     .sc ul li .sc_t{
        width: 100%;
        margin-bottom: 5px;
    }
     .sc ul li .sc_img{
        width: 100%;
        max-width:100%;
    }
    .sc ul li .sc_img img{
        max-width:100px;
    }
    .xgcp{
        padding: 30px 0;
    }
    .xgcp h2{
        font-size: 22px;  
    }
}
@media(max-width: 460px){
    .p_sort2 a{
        padding:0 5px;
        font-size: 14px;
    }
    .p_sort a .img2{
        max-width: 60px;
        margin:0 auto;
    }
    .p_sort2 a p {
        margin: 10px 0 12px;
        line-height: 1.2em;
        height: 2.4em;
        font-size:14px;
    }
    .product_list li{
        width: 100%;
        margin-bottom: 15px;
    }   

}

/*新闻*/
.news_list{

}
.news_list li{
    padding:60px 0;
    background:#f3f3f3;
    transition: all 0.3s ease-out;
}
.news_list li .container{
    max-width: 1435px;
    display: flex;
    flex-wrap: wrap;
}
.news_list li .container .date1{
    width: 185px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news_list li .container .date1 span{
    font-size:42px;
    color: #333333;
    display: block;
    line-height: 1.4;
}
.news_list li .container .date1 em{
    font-style: normal;
    font-size:22px;
    color: #999999;
    display: block;
    line-height: 1.4;
}
.news_list li .container .img{
    width: 42.5%;
}
.news_list li .container .text{
    width: calc(57.5% - 185px);
    color: #333333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 105px;
}
.news_list li .container .text h3{
    font-size:36px;
    line-height: 1.4;
    font-weight: normal;
    margin-bottom: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news_list li .container .text p{
    font-size:18px;
}
.news_list li:nth-child(2n){
    background:#fff;
}
.news_list li:nth-child(2n) .container{
    flex-direction: row-reverse;
}
.news_list li:nth-child(2n) .container .text{
    padding-left: 0px;
    padding-right: 105px;
}
.news_list li:nth-child(2n) .container .date1{
    text-align:right;
}
.news_list li:hover{
    background:#d30301;
}
.news_list li:hover .date1 span,.news_list li:hover .date1 em,.news_list li:hover .container .text h3,.news_list li:hover .container .text p{
    color: #fff;
}
.news_list li a:hover .img img{
    transform: scale(1.1);
}
.news_detail{
    border-bottom: 1px solid #e0e0e0;
    padding:100px 0 ;
    background:#f2f2f2;
}
.news_detail .container{
    padding:50px 40px;
    background:#fff;
}
.news_detail .content{
    font-size:16px;
}
@media(max-width: 1600px){
    .news_list li{
        padding:50px 0;
    }
    .news_list li .container .text{
        padding-left: 50px;
    }
    .news_list li .container .text h3{
        font-size: 26px;
        margin-bottom: 15px;
    }
    .news_list li .container .date1 span{
        font-size:32px;
    }
    .news_list li .container .text p{
        font-size:16px;
    }
    .news_list li:nth-child(2n) .container .text {
        padding-right: 50px;
    }
    .news_detail{
        padding:60px 0;
    }
.news_detail .container {
    padding: 40px 25px;
}
}
@media(max-width: 1220px){
    .news_list li{
        padding:40px 0;
    }
    .news_list li .container .text{
        padding-left: 30px;
        width: calc(57.5% - 120px);
    }
    .news_list li .container .text h3{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .news_list li .container .date1{
        width: 120px;
    }
    .news_list li .container .date1 span{
        font-size:26px;
    }
    .news_list li .container .text p{
        font-size:15px;
    }
    .news_list li:nth-child(2n) .container .text {
        padding-right: 30px;
    }    
    .news_detail{
        padding:40px 0;
    }
}
@media(max-width: 768px){
    .news_list li{
        padding:30px 0;
    }
    .news_list li .container .text{
        padding-left: 20px;
        width: calc(57.5% - 100px);
    }
    .news_list li .container .text h3{
        font-size: 18px;
    }
    .news_list li .container .date1{
        width: 100px;
    }
    .news_list li .container .date1 span{
        font-size:22px;
    }
    .news_list li .container .date1 em{
        font-size:16px;
    }
    .news_list li .container .text p{
        font-size:14px;
    }
    .news_list li:nth-child(2n) .container .text {
        padding-right: 20px;
    }    
    .news_detail{
        padding:30px 0;
    } 
    .news_detail .container {
        padding: 20px 15px 30px;
    } 
    .news_detail .content{
        font-size:15px;
    }
}
@media(max-width: 640px){
    .news_list li{
        padding:20px 0;
    }
    .news_list li .container .text{
        padding-left: 0px;
        width: 100%;
    }
    .news_list li .container .text h3{
        font-size: 16px;
        margin-bottom: 5px;
    }
    .news_list li .container .img{
        width: 100%;
        margin-bottom: 15px;
    }
    .news_list li .container .date1{
        width: 100%;
        display: none;
    }
    .news_list li .container .date1 span{
        font-size:20px;
    }
    .news_list li .container .date1 em{
        font-size:15px;
    }
    .news_list li:nth-child(2n) .container .text {
        padding-right: 0px;
    }      
}


/*加入我们*/
.n_banner_text p{
    line-height: 1.2;
    font-size:70px;
    font-weight: bold;
}
.n_banner_text p span{
    display: block;
}

#job1{
    padding:115px 60px 100px;
}
#job1 .job1_c{
    padding:130px 0 85px;
    background:url(../image/j_bg1.jpg) no-repeat center;  
    background-size: cover;  
}
#job1 .job1_c .cont{
    max-width: 880px;
    background:url(../image/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: 30px;
    line-height: 1.6;
}
#job1 .job1_c .cont .txt p{
    font-size:18px;
}

#job2{

}
#job2 h2{
    text-align: center;
    font-size:46px;
    color: #333;
    line-height: 1;
    margin-bottom: 75px;
}
.job2 ul{
    display: flex;
    flex-wrap: wrap;
}
.job2 ul li{
    width: 22%;
    margin-right: 4%;
    text-align: center;
    border:3px solid #d30301;
    padding:105px 50px 95px;
    background:url(../image/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:26px;
    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{
    background:url(../image/j_icon1-h.png) no-repeat bottom center #d30301;    
}
/*.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: #333;
    line-height: 1;
    margin-bottom: 55px;
}
.c-banner5 .swiper-slide{
    overflow:hidden;
}
.c-banner5 .swiper-slide img{
    transition: all 0.6s ease-out;
}
.c-banner5 .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_t{
    padding:0 60px;
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    cursor: pointer;
}
.j1{
   width: 115px;    
}
.j_name{
    font-size:20px;
    color: #333333;
    font-weight: bold;
}
.j_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 32px 0;
    width: calc(100% - 264px);
}
.j_c p{
    font-size:16px;
    color: #999999;
    padding:0 40px;
    background:url(../image/line2.png) no-repeat right center;
}
.j_c p:first-child{
    padding-left: 0;
}
.j_c p:last-child{
    background:none;
    padding-right: 0;
}
.j_date{
    width: 135px;
    float: right;
    font-size:16px;
    color: #999999;
}
.j_date span{
    display: inline-block;
}
.job_t i{
    display: block;
    width: 14px;
    height: 30px;
    background:url(../image/j_down.png) no-repeat center;
}

.job_list li .j_cont{
    display: none;
    padding:70px 60px;
    border-top:1px solid #e0e0e0;
    transition: all 0.6s ease-out;
}
.j_cont1{
    display: flex;
    flex-wrap: wrap;
}
.j_cont1 h3{
    font-size:16px;
    color: #333;
}
.j_cont1_c{
    font-size:15px;
    color: #666666;
    width: calc(100% - 115px);
}
.j_cont2{
    margin:40px 0 110px;
}
.j_contact{
    background: #666666;
    color: #fff;

}
.j_contact p{
    padding:0 40px;
    line-height: 64px;
    float: left;
}
.j_contact a{
    display: block;
    float: right;
    width: 205px;
    line-height: 64px;
    background:#d30301;
    font-size:16px;
    color: #fff;
    font-weight: bold;
    text-align:center;
}


.job_list li.on .j_cont{
    display: block;
}
@media(max-width: 1600px){
.n_banner_text p{
    font-size:56px;
}
    #job1{
        padding:100px 0;
    }
    #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 #d30301;
        padding:65px 30px 80px;
    }
    .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;
    }
    #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:50px 20px 70px;
    }
    .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;
    }
    #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;
    }
    #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;
    }
}



.n_contact{
    background:#f2f2f2;
    padding:100px 60px 130px;
}
.n_contact h2{
    font-size:56px;
    color: #333;
    text-align: center;
    line-height: 1;
    margin-bottom: 65px;
}
.n_contact_c{
    display: flex;
    flex-wrap: wrap;
}

.n_c_address{
    width: 50%;
    background:#fff;
    padding:75px 85px 110px;
}
.n_c_tabli{
    display: flex;
    flex-wrap: wrap;
}
.n_c_tabli a{
    display: block;
    width: 50%;
    position: relative;
    font-size:24px;
    color: #333333;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
    padding-bottom: 30px;
    font-weight: bold;
    cursor: pointer;
}
.n_c_tabli a:before{
    content:'';
    position: absolute;
    bottom:-3px;
    left:0;
    width: 100%;
    height: 4px;
    background:#d30301;
    opacity: 0;
}
.n_c_tabli a.on{
    color: #d30301;
}
.n_c_tabli a.on:before{
    opacity: 1;
}


.n_c_tab1{
    display: none;
}
.n_c_tab1 ul{
    display: flex;
    flex-wrap: wrap;
    margin:75px 0 55px;
}
.n_c_tab1 ul li{
    display: flex;
    flex-wrap: wrap;
    width: 50%; 
    margin-bottom:30px;   
}
.n_c_tab1 ul li .img1{
    width: 24px;
}
.n_c_tab1 ul li .text{
    width: calc(100% - 24px);
    padding-left: 15px;
}
.n_c_tab1 ul li .text p.p1{
    font-size:18px;
    color: #333;
    font-weight: bold;
    line-height: 1.6;  
}
.n_c_tab1 ul li .text p.p2{
    font-size:16px; 
    color: #666;
    line-height: 1.6;
}

#map1,#map2{
    height: 300px;
}
.n_c_text{
    width: 50%;
    padding:75px 85px 110px 105px;
    background:url(../image/c_bg1.jpg) no-repeat center;
    background-size:cover;
}
.n_c_code{

}
.n_c_code h3{
    font-size:24px;
    color: #333333;
}
.n_c_code ul{
    display: flex;
    flex-wrap: wrap;
    padding:45px 0 50px;
    border-bottom: 2px solid rgba(255,255,255,.2);
    margin-bottom: 30px;
}
.n_c_code ul li{
    display: flex;
    flex-wrap: wrap;
    width: 50%;
}
.n_c_code ul li .sc_t{
    margin-right: 50px;
}
.n_c_code ul li .sc_t .img1{
    margin:0 auto;
    width: 47px;
}
.n_c_code ul li .sc_t .img1 img{
    display: inline-block;
    position: absolute;
    top:-47px;
    left:0;
}
.n_c_code ul li .sc_t a{
    color: #333333;
    font-weight: bold;
    font-size:16px;
    margin-top:10px;
}
#foot_message{

}
#foot_message h3{
    font-size:24px;
    color: #333333;
    margin-bottom:15px;
}
#foot_message ul{

}
#foot_message ul li{
    float: left;
    width: 100%;
    margin-bottom: 16px;
}
#foot_message ul li:nth-child(1){
    width: calc(50% - 10px);
    margin-right: 20px;
}
#foot_message ul li:nth-child(2){
    width: calc(50% - 10px);
}
#foot_message ul li input{
    width: 100%;
    border:none;
    background:#fff;
    padding:0 25px;
    line-height: 55px;
    outline: none;
}
#foot_message ul li textarea{
    width: 100%;
    border:none;
    background:#fff;
    padding:0 25px;
    line-height: 55px;
    outline: none;
    display: block;
}
.mess_btn input{
    width: 100%;
    font-size:30px;
    color: #d30301;
    line-height: 55px;
    border:none;
    background:#fff;
    outline: none;
    cursor: pointer;
}
.mess_btn input:hover{
    opacity: 0.8;
}
@media(max-width: 1600px){
    .n_contact{
        padding: 100px 60px;
    }
    .n_contact h2 {
        font-size: 42px;
        margin-bottom: 60px;
    }
    .n_c_tabli a {
        font-size: 20px;
        padding-bottom: 15px;
    }

    .n_c_address{
        padding:60px 40px;
    }
    .n_c_tab1 ul{
        margin:50px 0 40px;
    }
    .n_c_tab1 ul li .text p.p1{
        font-size:16px;
    }
    .n_c_tab1 ul li .text p.p2{
        font-size:15px;
    }
    .n_c_text{
        padding:60px 40px;
    }
    .n_c_code h3{
        font-size:20px;
    }
    .n_c_code ul{
        padding:30px 0;
    }
    .n_c_code ul li .sc_t{
        margin-right: 20px;
    }
    .n_c_code ul li .sc_t a{
        font-size:15px;
        margin-top: 5px;
    }
    #foot_message h3{
        font-size:20px;
    }
    #foot_message ul li input{
        line-height: 45px;
    }
    #foot_message ul li textarea{
        line-height: 45px;
    }
    .mess_btn input{
        font-size:24px;
    }
}
@media(max-width: 1220px){
    .n_contact{
        padding: 80px 4%;
    }  
    .n_contact h2 {
        font-size: 32px;
        margin-bottom: 50px;
    } 
    .n_c_address {
        padding: 40px 20px;
    } 
    .n_c_tabli a {
        font-size: 17px;
        padding-bottom: 12px;
    }
    .n_c_tab1 ul {
        margin: 30px 0 20px;
    }
    .n_c_tab1 ul li{
        margin-bottom: 15px;
    }
    .n_c_tab1 ul li .text{
        padding-left: 10px;
    }
    .n_c_tab1 ul li .text p.p1{
        font-size:15px;
    }
    .n_c_tab1 ul li .text p.p2 {
        font-size: 14px;
    }
    .n_c_text {
        padding: 40px 20px;
    }
    .n_c_code ul li .sc_t {
        margin-right: 10px;
        width: calc(100% - 120px);
    }
    .n_c_code ul li .sc_t a{
        line-height: 1.6;
    }
    .n_c_code ul li .sc_img{
        width: 110px;
    }

}
@media(max-width: 768px){
    .n_contact {
        padding: 50px 4%;
    } 
    .n_contact h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }
    .n_c_address{
        width: 100%;
    }
    .n_c_text{
        width: 100%;
    }
}
@media(max-width: 640px){
    .n_contact {
        padding: 30px 4%;
    }  
    .n_contact h2 {
        font-size: 22px;
        margin-bottom: 20px;
    } 
    #map1, #map2{
        height: 240px;
    } 
}
@media(max-width: 460px){
    .n_c_tab1 ul li{
        width: 100%;
    }
    .n_c_code ul {
        padding: 20px 0;
    }
    .n_c_code ul li{
        width: 100%;
        padding:5px 0;
    }
    #foot_message ul li{
        margin-bottom: 10px;
    }
    #foot_message ul li:nth-child(1){
        width: 100%;
        margin-right: 0px;
    }
    #foot_message ul li:nth-child(2){
        width: 100%;
    }
    #foot_message ul li input{
        line-height: 40px;
        padding: 0 15px;
    }
    #foot_message ul li textarea {
        line-height: 40px;
        padding: 0 15px;
    }
    .mess_btn input {
        font-size: 18px;
    }
}







h1.title{
    font-size: 22px;
    color: #333;
    text-align: center;
    font-weight: normal;
    line-height: 1.6;
    margin-bottom: 5px;
}
.info_title{
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-bottom: 1em;
    border-bottom:1px dashed #dcdcdc;
    margin-bottom: 1em;
}
h3.tag{
    font-size: 14px;
    color: #666;
    font-weight: normal;
    display: none;
}
.page{
    font-size: 14px;
    color: #666;    
}
.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:#d30301;color:#fff; text-decoration:none;border:#efefef 1px solid;}
.pageController .currPage {background-color: #d30301;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: #d30301;
    vertical-align: middle;
    border: 1px solid #d30301; 
    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: #d30301;
    color: #fff;
    z-index:9999999;
    justify-content: center;
    width: 100%;
    display:none;

}
.m_f_fixed a{
    flex:1;
    font-size: 16px;
    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:60px;
    }
}



.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(../image/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: 16px;
    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: #d30301;
    background: #d30301;
}

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

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

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


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

ul.page-numbers, ul.pagination {
    display: block;
    text-align: center;
    padding-left: 0 !important;
    margin: 0 !important;
}

img {
max-width: 100%;
height: auto;
}