@charset "utf-8";

header{
    width:100%; 
}
/*................*/
.header{
    padding: 0px 0px;
    max-width:1920px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;   
    position: fixed;
    background: rgba(0,0,0,0.5);
    width: 100%;
    top: 0px;
}
.header .logo img{
    height: 75px;
    padding: 10px 0px;
    width: auto;
    transition: all .5s;  
}
/*@media(max-width:767px){   */
/*    .header .logo img{ */
/*        height: 60px;*/
/*    }*/
/*}*/
header .nav{
    padding: 0px 0px 0px;    
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .nav>ul{   
    transition: all .5s;
}
header .nav>ul>li{
    display: inline-block;   
    padding: 0px 9px;
    position: relative;
}
header .nav>ul>li>a{   
    position: relative;
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    padding: 0px 0px;   
    line-height: 75px;
    white-space: nowrap;
    transition: all 0.3s;
}
header .nav>ul>li:hover a,header .nav>ul>li.active a{
    color: #c30d23;
}
.header .nav>ul>li>a>b{
    display: block;
    height:2px;
    width:100%;
    background:#cf121f;
    position: absolute;
    left:0;
    bottom:0;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.header .nav>ul>li:hover a>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}

.header .nav>ul>li:hover .submenu{ opacity:1; visibility:visible}
.header .nav>ul>li .submenu li:hover a,header .header.on .nav>ul>li .submenu li:hover a { background-color:#c30d23; color:#fff}

.submenu {
    width: 140px;
    left: 50%;
    margin-left: -70px;
    max-height: 0;
    position: absolute;
    top: 100%;
    z-index: 0;
    -webkit-perspective: 400px;
    -moz-perspective: 400px;
    -ms-perspective: 400px;
    -o-perspective: 400px;
    perspective: 400px;
    opacity: 0;
    visibility: hidden;
}
.submenu li {
    display: block;
    width:100%;
    height:50px;
    line-height:50px;
    opacity: 0;
    background-color: rgba(0,0,0,0.5);
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transition: opacity .4s, -webkit-transform .5s;
    -moz-transition: opacity .4s, -moz-transform .5s;
    -ms-transition: opacity .4s, -ms-transform .5s;
    -o-transition: opacity .4s, -o-transform .5s;
    transition: opacity .4s, transform .5s;
    text-align: center;
}
.header .nav .submenu li a{font-size:14px;height:50px;line-height:50px;color: #fff; border-bottom: 1px solid #dcdcdc; display: block; transition: .6s;}

.header.on .nav>ul>li .submenu li {
    display: block;
    width:100%;
    height:50px;
    line-height:50px;
    opacity: 0;
    background-color: rgba(255,255,255,0.95);
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transition: opacity .4s, -webkit-transform .5s;
    -moz-transition: opacity .4s, -moz-transform .5s;
    -ms-transition: opacity .4s, -ms-transform .5s;
    -o-transition: opacity .4s, -o-transform .5s;
    transition: opacity .4s, transform .5s;
    text-align: center;
}
header .header.on .nav>ul>li .submenu li a{font-size:14px;height:50px;line-height:50px;color: #000; border-bottom: 1px solid #dcdcdc; display: block; transition: .6s;}

.header .nav>ul>li:hover .submenu, .header .nav>ul>li:focus .submenu {
    max-height: 2000px;
    z-index: 10;
}
.header .nav>ul>li:hover .submenu li, .header .nav>ul>li:focus .submenu li {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.header .nav>ul>li:hover .submenu li:nth-child(1) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.header .nav>ul>li:hover .submenu li:nth-child(2) {
    -webkit-transition-delay: 50ms;
    -moz-transition-delay: 50ms;
    -ms-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms;
}
.header .nav>ul>li:hover .submenu li:nth-child(3) {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}
.header .nav>ul>li:hover .submenu li:nth-child(4) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -ms-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms;
}
.header .nav>ul>li:hover .submenu li:nth-child(5) {
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}
.header .nav>ul>li:hover .submenu li:nth-child(6) {
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}
.header .nav>ul>li:hover .submenu li:nth-child(7) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}
.header .nav>ul>li:hover .submenu li:nth-child(8) {
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms;
}

.submenu li:nth-child(1) {
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms;
}
.submenu li:nth-child(2) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}
.submenu li:nth-child(3) {
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}
.submenu li:nth-child(4) {
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}
.submenu li:nth-child(5) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -ms-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms;
}
.submenu li:nth-child(6) {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}
.submenu li:nth-child(7) {
    -webkit-transition-delay: 50ms;
    -moz-transition-delay: 50ms;
    -ms-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms;
}
.submenu li:nth-child(8) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

/*分享按钮*/
.shareicon{
    position: relative;
}
.shareicon a{
    color: #fff;    
    font-size: 22px;
}
.shareicon a span{
    font-weight: bold;
    padding-top: 10px;
}
.shareicon i{
    margin-left: 10px;
    color: #fff;
    font-size: 18px;
    transition: all 0.5s;
}
.shareicon i:hover{
    color: #c30d23;
}
header .header .shareicon a.weChat .er-box {
    position: absolute;
    top: 100%;
    width: 100px;
    height: 100px;
    opacity: 0.0;
    transition: all 0.3s;
}
header .header .shareicon a.weChat:hover .er-box{
    opacity: 1.0;
    background: #fff;
    padding: 5px;
    width: 120px;
    height: 120px;
}
.header.on{
    background: #fff; 
}
.header .logo .img2 {
    display: none;
}
.header.on .logo .img1 {
    display: none;
}
.header.on .logo .img2 {
    display: block;
}
.header.on .nav>ul>li>a, .header.on .nav>ul>li.tel a{
    color: #2b2b2b;
}
.header.on .nav>ul>li>a, .header.on .nav>ul>li.tel a, .header.on .shareicon i, .header.on .shareicon a {
    color: #2b2b2b;
}
header .header.on .nav>ul>li:hover a,header .header.on .nav>ul>li.active a,.header.on .shareicon i, .header.on .shareicon a{
    color: #c30d23;
}

@media(max-width:767px){
    .header.on .header .logo img{
        height: 55px;
    }
}

@media (max-width: 992px){  
    .vedio{
        padding-top: 75px;
    }
    .header,.header.on{
        background: rgba(0,0,0,1.0);
    }
    .header.on .logo .img1 {
        display: block;
    }
    .header.on .logo .img2 {
        display: none;
    }
    header .nav>ul{
        display: block;
    }  
    .header .nav{
        position: absolute;
        right:-100vw;
        top: 100%;
        width:50%;
        /*height:calc(100vh - 60px);*/
        background:#000;        
        z-index:999;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        padding:20px 0px;
    }
    .header .nav.show{
        right:0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    .header .nav ul li{
        display: block !important; 
        padding:0 20px;
    }
    .header .nav ul li a,.header.on .nav ul li a{
        color:#fff;
        line-height: 45px;
        font-size: 14px;
    }
    .shareicon{
        padding-left: 20px;
    }
    .shareicon a:last-child{
        display: block;
    }
    .shareicon a span{
        font-size: 14px;
    }
    header .header.on .nav>ul>li:hover a, header .header.on .nav>ul>li.active a, .header.on .shareicon i, .header.on .shareicon a {
    color: #fff;
}
}
@media(max-width:1200px){
    .header .nav .submenu li {
        display: none !important;
    }
}
/* banner */
.banner,.vedio{
    position: relative;
    overflow: hidden;
    z-index: -1;
}
.vedio video{
    width: 100%;
    height: 100%;
    display: block; 
    object-fit: fill;
}
.vedio-cover {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: rgba(0,0,0,0);
}
.common{
    padding-top: 100px;
    padding-bottom: 100px;
}
.commonT{
    margin-top: 100px;    
}
.title{
    font-size: 45px;
    line-height: 1.4;   
    position: relative; 
    margin-bottom: 30px;
}
.title span{
    font-size: 20px;
    display: block;
    font-weight: 400;
}
.title .more{
    margin-top: 15px;
    text-transform: uppercase;
    float: right;
    font-size: 18px;
    transition: all 0.3s ease-in-out;    
}
.title .more:hover{padding-right: 5px;}

@media (max-width:767px){
    .common{
       padding-top:30px;
       padding-bottom:30px;
    }
    .commonT{
        margin-top: 30px;
    }
    .title{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .title span{
        font-size: 14px;
    }
    .title .more{ 
      display: none;
    }    
}
/*产品类别*/
.navlist{
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
.navlist li{
    width: 19.95%;
}
.navlist li h5{
    font-size: 20px;
   background: #fff;
   text-align: center;
   padding: 32px 15px;
   transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
}
.navlist li h5:after{
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #c30d23;
    margin: 10px auto 0px auto;
    transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
}
.navlist li:hover h5,.navlist.case-nav li:hover h5{
   background: #c30d23;
   color: #fff;
   font-weight: bold;
}
.navlist li:hover h5:after{
    background: #fff;
}
.navlist.case-nav li h5{
    background: #f2f2f2;  
}
/*产品*/
.product{
    background: #f5f5f5;
    overflow: hidden;
    position: relative;    
}
.product .pro-left{
   width: 38.5%;
   float: left;
}
.product .product-swiper{
   background: url(../img/pro-bg.jpg) no-repeat bottom #fff;
   background-size: 100%;
   border-radius: 3px;
   margin-bottom: 20px;
}

.product .pro-left .product-list{
    background: transparent;
    padding: 9%  8%;
}
.product .pro-left .product-list .pro-con{
    padding-top: 10%;
}
.product .pro-left .product-list .pro-con h5{
    font-size: 20px;
}
.product .pro-left .product-list:hover{
    box-shadow: 5px 5px 10px 0 rgb(0 0 0 / 0%);
}
.product .pro-right{
    width: 60%;
    float: right;
}
.product .pro-right ul{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}
.product .pro-right ul li{
    width: 32%;
}
.product .swiper-pagination{
    position: relative;
}
.product .swiper-button-next, .product .swiper-container-rtl .swiper-button-prev{
    right: 0px;
}
.product .swiper-button-prev, .product .swiper-container-rtl .swiper-button-next{
    left: 0px;
}
@media (max-width:992px){ 
    .navlist{
        flex-wrap: wrap;
        overflow-x: scroll;
    }
    .navlist li {
        width: 47.1%;
    }
    .navlist li h5{
        font-size: 16px;
        padding: 10px 15px;
        white-space: nowrap;
        margin-bottom: 10px;
    }
    .product .pro-left,.product .pro-right{
       width: 100%;
       float: none;
    }
    .product .pro-right ul li{
        width: 49%;
    }
}
/*特征*/
.features .swiper-slide:nth-child(odd) .feature-list{
    background: #d30c24;
}
.features .feature-list{
    padding: 2.5% 3%; 
    text-align: center;  
    background: #c30d23;
    color: #fff;  
    transition: all 0.6s;
    position: relative;
}
.features .feature-list p.num{   
    font-size: 70px;
    text-transform: uppercase;   
    font-weight: 600;
    margin-bottom: 5%;
}
.features .feature-list .feature-desc{
    min-height: 130px;
}
.features .feature-list h5{   
    font-size: 24px;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.features .feature-list h5:after{ 
    width: 40px;
    height: 2px;
    background: #fff;
    display: block;
    content: "";
    margin: 10px auto;
}
.features .feature-list:hover{
    opacity: 0.95;
}
.features .feature-img{
   margin-top: 10px;
   font-weight: 600;
}
.features .swiper-button-prev {
    left: 0px;
}
.features .swiper-button-next {
    right: 0px;
}
@media (max-width:992px){ 
    .features .feature-list {        
        width: 100%;
        height: 340px;
        padding: 10px 10px;
        margin-bottom: 10px;        
    }
    .features .feature-list p.num{
        font-size: 26px;
    }
    .features .feature-list h5{
        font-size: 18px;
    }
    .features .feature-list .feature-desc{
        min-height: auto;
    }         
}

/*首页关于我们*/
.about,.Advantage{
    position: relative;
    background: #f5f5f5;
    margin: 0px auto;
    max-width: 1600px;
    overflow: hidden;
}
.about .about-txt{
    font-size: 16px;
    margin-bottom: 10px;
}
.about-txt .title{
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    color: #c30d23;
    margin-bottom: 10px;
}
.about-txt .title span{
    font-size: 32px;    
    color: #2b2b2b;
}
.about-txt .more{
    font-size: 20px;
    text-transform: uppercase;
}
.box-content{
    position: relative;
}
/*标语*/
.sign{
    display: flex;
    flex-wrap: wrap;   
    justify-content: space-between;
}
.sign li{
    width: 25%; 
    transition: all 0.3s ease-in-out;
}
.sign li h5{
    font-size: 42px;
    color: #c30d23;    
    font-weight: 900;
}
.sign li h5 b{
    display: block;
    font-size: 14px;
    color: #2b2b2b;
}
.sign li h5:after{
    display: block;
    content: "";
    width: 30px;
    height: 2px;
    margin: 10px 0px;
    background: #c30d23;
}
/*基地*/
.base{
    padding-top: 75px;
    margin-top: 75px;
    border-top: 4px solid #dedede; 
}
@media (max-width:992px){ 
    .about-txt .title{
        font-size: 22px;
    }
    .about-txt .title span{
        font-size: 16px;
    }
    .about-txt .more {
        font-size: 16px;
    }
    .sign li {
        width: 25%;
    }
    .sign li h5 {
        font-size: 22px;
    }
    .base {
        padding-top: 25px;
        margin-top: 25px;
    }  
}
/*优势*/
.Advantage .Advantage-box{
    overflow: hidden;
    transition: all 0.6s;
    position: relative;
}
.Advantage .Advantage-box .adv-img{
    overflow: hidden;
}
.Advantage .Advantage-box .adv-img img{
    transition: all 0.6s;
}
.Advantage .Advantage-box .adv-img:hover img{
    transform: scale(1.1);
}

.Advantage .Advantage-box ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;    
}
.Advantage .Advantage-box:nth-child(2n+1) ul{
    flex-direction: row-reverse;
}
.Advantage ul li{
    width: 50%;
}
.Advantage .Advantage-box .Advantage-content{
    position: relative;
    z-index: 9;
    padding-left: 5%;
}
.Advantage .Advantage-box:nth-child(2n+1) .Advantage-content{
    padding-left: 0%;
    padding-right: 5%;
}
.Advantage .Advantage-content img{
    width: 76%;
    max-width: 100%;
}
.Advantage .Advantage-content ul{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 5px 0px;
}
.Advantage .Advantage-content ul li:first-child{
    width: 12%;
}
.Advantage .Advantage-content ul li{
    width: 86%;
    position: relative;
}
.Advantage .Advantage-content ul li h5{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}
.Advantage .Advantage-content ul li h5 span{
    display: block;
    font-size:20px;
    font-weight: 100;
    color: #bdbdbd;
    text-transform: uppercase; 
}
.Advantage .Advantage-content ul li strong{
    color: #ff0000;
}
.Advantage .Advantage-box:nth-child(2n+1) ul .Advantage-content ul{
    flex-direction: row;
}
@media (max-width:991px){
    
    .Advantage ul li {
        width: 100%;
    }
    .Advantage .Advantage-content {      
        padding: 15px;
        margin: 7% 0px;
    }
    .Advantage .Advantage-content ul li h5 {
        font-size: 16px;
    }
    .product-list .pro-con .desc{
        white-space: nowrap;
        overflow: hidden;
        text-overflow:ellipsis;
    }
}
/*案例*/
.case-img{
    width: 100%;    
    position: relative;
    background: #000;
    margin-bottom: 10px;
    transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;   
}
.case-img img{
    width: 100%;
    transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
}
.case-hover{    
    width: 100%;
    background: #fff;
    position: relative;
    padding: 15px;
}
.case-hover img{
    margin: 0px 0px;
    width: auto;
    max-width: 100%;
}
.case-hover h5{
    font-size: 16px;
    text-align: center;
    transition: all .5s;   
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.case-img:hover{
    transform: translate(0%,-3%);
}
.case-img:hover img{
    opacity: 0.85;
}
@media (max-width:991px){  
    .case-img{
        overflow: hidden;
        margin-bottom: 15px;
    }
    .case-hover h5 {
        font-size: 14px;
    }   
}
/*荣誉资质*/
#certify {
    position: relative;
    margin: 0 auto 90px auto;
}

#certify  .swiper-slide {
    width: 400px;
}
#certify  .swiper-slide img{
    display:block;
}
#certify .swiper-pagination {
    width: 100%;
    bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    border: 3px solid #fff;
    background-color: #d5d5d5;
    width: 10px;
    height: 10px;
    opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
    border: 3px solid #00aadc;
    background-color: #fff;
}

#certify .swiper-button-prev {
    left: -30px;
    width: 45px;
    height: 45px;
    background: url(../img/wm_button_icon.png) no-repeat;
    background-position: 0 0;
    background-size: 100%;
}

#certify .swiper-button-prev:hover {
    background-position: 0 -46px;
    background-size: 100%
}

#certify .swiper-button-next {
    right: -30px;
    width: 45px;
    height: 45px;
    background: url(../img/wm_button_icon.png) no-repeat;
    background-position: 0 -93px;
    background-size: 100%;
}

#certify .swiper-button-next:hover {
    background-position: 0 -139px;
    background-size: 100%
}
@media (max-width:991px){
    #certify { margin: 0 auto 30px auto;}
    #certify .swiper-slide{width:200px; line-height:270px}
	#certify .swiper-button-prev{ left:0}
	#certify .swiper-button-next{ right:0}
	#certify .swiper-button-next, #certify .swiper-button-prev{ transform:scale(0.5)}
	
}
/* 新闻 */
.news .news-nav{
    font-size: 20px;
}
.news .news-con{
    padding: 0px 0px;
    background: #fff;
}
.news .news-con .more{
    font-size: 14px;
    font-weight: 600;
    color: #b8b8b8;
}
.news .news-time{
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.0;
    font-weight: 100;    
}
.news .news-time i {
    color: #c30d23;
    font-size: 16px;
    transition: all 0.6s;
    margin-right: 5px;
}
.news .news-title{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0px;
}
.news .news-desc{
    color: #464646;
    font-size: 14px;
    overflow: hidden;    
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;    
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}
@media (max-width:991px){
    .news ul li{
        display: flex;
        justify-content: flex-start;
        margin: 5px 0px;
    }
    .news ul li .img{
        width: 40%;
    }
    .news .news-con{
        width: 60%;
    }
    .news .news-con {
        padding: 0px 10px;
        background: #fff;
    }
    .news .news-time,.news .news-title{
        font-size: 14px;
    }
    .news .news-time span {
        display: inline-block;
        font-size: 14px;
        margin-right: 5px;
    }
    .news .news-desc{
        display: none;
    }
}
/*留言*/
.Get-msg{
    background: url(../img/msg.jpg) no-repeat center bottom #f5f5f5;
}
.Get-msg h5{
    color: #c30d23;
    font-weight: 600;
    font-size: 35px;
}
.Get-msg h5 span{
    display: block;
    font-size: 24px;
    font-weight: 300;
    color: #2b2b2b;
    margin-top: 5px;
}
.Get-msg h5:after{
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #c30d23;
    margin: 15px 0px;
}
@media (max-width:991px){
    .Get-msg h5 {    
        font-size: 20px;
    }
    .Get-msg h5 span{
        font-size: 14px;
    }
}
/*合作客户*/
.cooperation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.cooperation li{
    width: 24%;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
}
.cooperation .cooper-img img,.ny-cooper .cooper-img img{
    width: auto;
    max-width: 100%;
    opacity: 1.0;    
    transition: all 0.6s;
}
.cooperation .cooper-img:hover img,.ny-cooper .cooper-img:hover img{
     transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);  
}
@media (max-width:992px){ 
    .cooperation ul li {
        width: 32%;
    }
}