@charset "utf-8";

header{
    width:100%; 
}
/*................*/
.header{
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
background-color: rgba(0,0,0,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.header.sticky{
    position: fixed;
    top: 0;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
    -webkit-animation: sticky 1s;
    -moz-animation: sticky 1s;
    -o-animation: sticky 1s;
    animation: sticky 1s;
    background-color: #fff;
}
.header:hover{
    background-color: #fff;
}
.header .logo img{
    height: 96px;
    padding: 10px 0px;
    width: auto;
    transition: all .5s;  
}
@media(max-width:767px){   
    .header .logo img{ 
        height: 68px;
    }
}
.header .logow{display: inline-block}
.header .logob{display: none}
.header.sticky .logob{display: inline-block}
.header.sticky .logow{display: none}

.header .rt_part{box-sizing: border-box;position: relative; margin: 0 10px;}
.header #search_btn{display: inline-block;width: 22px;height:22px;background: url(../images/i_search.png)no-repeat center;vertical-align: middle;filter: grayscale(1) brightness(100);}
.header .m_search{white-space: nowrap;vertical-align: middle;}
.header #search_btn{position: relative;cursor: pointer;}
.header #search_box{width:118px;box-sizing: border-box;z-index: 2;filter: initial;background:rgba(255,255,255,0.3);border-radius: 30px;overflow: hidden; padding: 0 6px;}
.header #search_box input{display: inline-block;vertical-align: middle;height: 30px;background-color: transparent;color: #fff;}
.header #search_box input.key{padding:0 10px;width: calc(100% - 30px);box-sizing: border-box;font-size:12px;}
.header #search_box input.upload{width: 30px;height: 30px;background: url(../images/search.png)no-repeat center;}
.header #search_box input::placeholder {color: #fff;}
.header.sticky #search_box{background:rgba(0,0,0,0.1);}
.header.sticky #search_box input.upload{filter: brightness(80%) invert(100%); }
.header.sticky #search_box input{color: #363636;}
.header.sticky #search_box input::placeholder {color: #363636;}

.header:hover .logob{display: inline-block}
.header:hover .logow{display: none}
.header:hover #search_box{background:rgba(0,0,0,0.1);}
.header:hover #search_box input.upload{filter: brightness(80%) invert(100%); }
.header:hover #search_box input{color: #363636;}
.header:hover #search_box input::placeholder {color: #363636;}

header .nav{
    padding: 0px 0px 0px;    
    display: flex;
    align-items: center;
    justify-content:right;
}
header .nav>ul{   
    transition: all .5s;
    display: flex;
    align-items: center;    
    justify-content: space-between;
}
header .nav>ul>li{
    display: inline-block;   
    padding: 0px 12px;
}
header .nav>ul>li>a{   
    position: relative;
    display: block;
    font-size: 19px;
    /*text-transform: uppercase;*/
    padding: 0px 0px;   
    line-height: 96px;
    white-space: nowrap;
    transition: all 0.3s;
    color: #fff;
}
header .header-en  .nav>ul>li>a{font-size: 18px;}

header .nav>ul>li>a sup img{width: 30px;}
header .nav>ul>li:hover a,header .nav>ul>li.active a{
    color: #fe0000;
}
.header.sticky .nav>ul>li>a{color: #000;}
.header:hover .nav>ul>li>a{color: #000;}
.header .nav>ul>li>a>b{
    display: block;
    height:2px;
    width:100%;
    background:#fe0000;
    position: absolute;
    left:0;
    bottom:0px;
    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 {color:#079a3e}


.sticky {
    position: fixed;
    top: 0;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
    -webkit-animation: sticky 1s;
    -moz-animation: sticky 1s;
    -o-animation: sticky 1s;
    animation: sticky 1s;
}

@-webkit-keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-moz-keyframes sticky {
    0% {
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -moz-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-o-keyframes sticky {
    0% {
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}


.submenu {
    width: 100%;
    background-color: #f7f9fd;
    left: 0%;
    padding: 0px 10px;
    position: absolute;
    top: 100%;
    z-index: 0; 
    height: 0px;
    visibility: hidden;
    overflow: hidden;
    transition: height .5s;
    border-top: 2px solid #e4e6ea;
}
.submenu .nav-img{
    overflow: hidden;
    /*max-height: 212px;*/
    transition: all 0.3s;
}
.submenu .nav-ico{
    width: 100%;    
}
.submenu .t {
    font-size: 24px;
    color: #000;
    line-height: 35px;
    margin: 15px 0px;
    transition: all 0.3s;
}
.header-en .submenu .t {font-size: 20px;line-height: 30px; margin: 10px 0 3px;}

.submenu .c {
    font-size: 16px;
    color: #0e050b;
    line-height: 25px;
}
.header-en .submenu .c {
    font-size: 14px;
    line-height: 20px;
}
.submenu .sub-menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.submenu li {
    display: block;
    padding: 18px 18px;
    opacity: 0; 
    -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: left;
    border-right: 1px solid #dee0e3;
}
.submenu li:last-child,.submenu li:nth-child(6){
    border-right: 0px solid #dee0e3;
}

.submenu .sub-menu.a1 li{
    width: 20%;
}
.submenu .sub-menu.a2 li{
    width: 15%;
}
.submenu .sub-menu.a3 li,.submenu .sub-menu.a4 li,.submenu .sub-menu.a5 li{
    width: 25%;
}
.header .nav .submenu li a{
    line-height: 35px;   
    display: block; 
    transition: .6s;
}
.submenu .sub-menu.a2 li{
    padding: 10px 20px;
}
.submenu .sub-menu.a2 li .c{
    display: none;
}
.submenu .sub-menu.a2 li .t {
    font-size: 22px;
    text-align: center;
    line-height: 40px;
    margin: 0px 0px;
}
.submenu .sub-menu.a2 li:hover .nav-img{
    background-color: #fff;
}
.submenu .sub-menu.a2 li:hover .t{
    background-color: #1d2088;
    color: #fff;
}

.header .nav>ul>li:hover .submenu, .header .nav>ul>li:focus .submenu {
    height: auto;
    z-index: 10;
}
.header .nav>ul>li:hover .submenu li {
    opacity: 1;
}
/*分享按钮*/
.shareicon{
    position: relative;
    margin-left: 1%;
}
.shareicon a{  
    font-size: 16px;
    color: #fff;
}
.header.sticky .shareicon a{
    color: #000;
}
.header:hover .shareicon a{
    color: #000;
}
.shareicon a:hover{
    color: #fe0000;
}
.header.sticky .shareicon a:hover{
    color: #fe0000;
}
.header:hover .shareicon a:hover{
    color: #fe0000;
}
.shareicon span{
    font-size: 16px;
    color: #fff;
    margin-right: 20px;
}
.shareicon i{
    margin-right: 6px;
    font-size: 20px;
    transition: all 0.5s;
}
.shareicon i:hover{
    color: #fe0000;
}
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: #079a3e;
}

@media(max-width:767px){
    .header.on .header .logo img{
        height: 55px;
    }
}
@media (max-width: 1199px){
    .header .nav>ul>li{
        padding-left:10px;
    }
}
@media (max-width: 992px){ 
    header .nav>ul{
        display: block;
    }  
    header .nav{
        position: absolute;
        left:-100vw;
        top:64px;
        width:70%;
        height:calc(100vh - 60px);
        background:#fff;
        z-index:999;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        padding-top:20px;
    }
    header .nav.show{
        left: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{
        color:#fff;
        line-height: 45px;
        font-size: 14px;
    }
    header .nav>ul>li::before,
    header .nav>ul>li:last-child::after{
        border-left: 0px dotted #c1c1c1;
    } 
}
@media(max-width:1200px){
    .header .nav .submenu li {
        display: none !important;
    }
}
/* banner */
.banner,.vedio{
    position: relative;
    overflow: hidden;
}
.banner video{
    width: 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: 140px;
    padding-bottom: 140px;
}
.commonB{
    margin-top: 90px;
    margin-bottom: 90px;
}
.title{
    font-size: 50px;
    font-weight: 600;
    line-height: 1.4;   
    position: relative; 
    margin-bottom: 45px;
    color: #000;position: relative;
}
.title-smen{font-size: 20px;}
.title.text-left::before{content: ''; width: 5px; height: 50px; background-color: #e60012; position: absolute; left:-26px; top:7px;}
.title.text-center::before{display: none;}

.title.text-center{position: relative;}
.title.text-center::after{content: ''; width: 50px; height: 5px; background-color: #e60012; position: absolute; left:50%; top:72px;margin-left: -25px;}

.title b{
    color: #fe0000;
    font-weight: bold;
}
.title span{
    font-size: 20px;
    display: block;
    font-weight: 400;
    color: #4f4f4f;
}
.title.text-center span{
    margin-top: 20px;
}
.title .moreb{
    margin-top: 15px;
    text-transform: uppercase;
    float: right;
    font-weight: 300;
    color: #fff;
    font-size: 18px;
    padding: 8px 26px;
    transition: all 0.3s ease-in-out; 
    background: #1c54a6;
    border-radius: 20px;
}
.title .moreb:hover{ background: #fe0000;}

@media (max-width:767px){
    .common{
       padding-top:30px;
       padding-bottom:30px;
    }
    .commonB{
        margin-bottom: 30px;
    }
    .title{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .title span{
        font-size: 14px;
    }
    .title .more{ 
      display: none;
    }    
}
/*产品*/
.productnav{
    background:url("../images/inzlgc.jpg") no-repeat center #fff;
    background-size: 100% 100%;
    overflow: hidden;
    position: relative;
}
.nav-box{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}
.nav-box li{
   width: 50%;  
   overflow: hidden;   
}
.nav-box .nav-list h4{
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    color: #1d2088;
    background: #f7f9fd;
    padding: 15px 0px;
    transition: all 0.4s linear;
}
.nav-box li .nav-img:before {
    content: "";
    background: rgba(0,20,119,0.8);
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.4s linear;
    z-index: 1;
}
.nav-box li .nav-img:hover:before {
    opacity: 0.6;
}
.nav-box li .nav-img{
    overflow: hidden;
    position: relative;
}
.nav-box li .nav-img img{
    width: 100%;
    height: auto;
    transition: all 0.4s linear;
}
.nav-box li:hover .nav-img img{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.nav-box li:hover h4{
    background: #1d2088;
    color: #fff;
}
.nav-box .cover-hover{
    position: absolute;
    color: #fff;
    width: 80%;
    top: 20%;
    left: 50%; 
    font-size: 18px;   
    text-align: center;
    overflow: hidden;
    -webkit-transition: height 0.4s;
    -moz-transition: height 0.4s;
    transition: height 0.4s; 
    transform: translate(-50%,-20%);
    z-index: 2;
    transition: all 0.4s linear;
}
.nav-box .cover-hover h5{
    font-size: 40px;
    font-weight: 500;
    padding: 15px 0px;
}
.nav-box .cover-hover p{
    width: 50%;
    margin: 10px auto
}
.nav-box .cover-hover .more a{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease-in-out;
    padding: 0px 10px;
    line-height: 2.0;
    display: inline-block;
    border: 1px solid #fff;
}
.nav-box .cover-hover .more a i{
    font-style: normal;
    border-left: 1px solid #fff;
    margin-left: 10px;
    line-height: 2.0;
    display: inline-block;
    padding-left: 10px;
}
@media (max-width:992px){ 
    .nav-box .cover-hover,.nav-box .cover-hover .more a{
        font-size: 14px;
    }
    .nav-box .nav-list h4 {
        font-size: 20px;
    }
    .nav-box .cover-hover h5 {
        font-size: 18px;
    } 
    .nav-box .cover-hover p{
        width: 95%;
    }
}
/*客户案例行业分类*/
.industry{
    background: url(../images/industry.jpg) no-repeat center;
}
.industry ul{   
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.industry ul li{
    width: 20%;    
    color: #fff;
    position: relative;
    overflow: hidden; 
    font-size: 16px;   
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s ease;
    border-right: 3px solid #fff;
}
.industry ul li:last-child{
    border-right: 0px;
}
.industry ul li:hover{
    width: 44%;
}
.industry ul li .five-img{
    overflow: hidden;
    position: relative;
    background: #fff;
}
.industry ul li .five-img img{
    width: 100%;
    height: 71.5vh;
    max-width: none;    
    transition: all 0.6s;
    opacity: 0.8;
    object-fit: cover;
     
}
.industry ul li:hover .five-img img{    
    opacity: 1.0;
}
.industry ul .five-cover{
    position: absolute;
    width: 100%;
    color: #fff;
    width: 100%;
    top: 50%;
    left: 50%;
    font-size: 18px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: height 0.4s;
    -moz-transition: height 0.4s;
    transition: height 0.4s;
    transform: translate(-50%,-50%);
    z-index: 2;
    transition: all 0.4s linear; 
    color: #fff;    
}
.industry ul .five-cover img{
    width: auto;
}
.industry ul .five-cover h5{  
    font-size: 36px;
    font-weight: 500;  margin-top: 16px;
}
.industry ul .cover-desc{      
    overflow: hidden;
    height: 0px;
    transition: all .5s;
    position: absolute;
    width: 100%;
    color: #fff;
    padding: 15% 50px;
    bottom: -15%;
    left: 50%;
    transform: translate(-50%,0%);
    background: -o-linear-gradient(to bottom,rgba(255, 255, 255, 0.1), rgba(29, 32, 136, 0.9));
    background: linear-gradient(to bottom,rgba(255, 255, 255, 0.1), rgba(29, 32, 136, 0.9));
}
.industry ul .cover-desc h3{  
    font-size: 36px;
    font-weight: 600; 
    margin-bottom: 15px; 
}
.industry ul .cover-desc h3 strong{
    font-size: 56px;
}
.industry ul .cover-desc .more a{
    font-size: 20px;
    font-weight: 600;
    background: #fff;
    color: #22258f;
    transition: all 0.3s ease-in-out;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 15px;
}
.industry ul li:hover .cover-desc{
    bottom: 0px;
    height: auto;
}
.industry ul li:hover .five-cover{
    opacity: 0.0;
}
@media (max-width:991px){
    .industry ul{
        flex-wrap: wrap;
    }
    .industry ul li{
        width: 100%;
        font-size: 14px;
        height: 195px;
        margin-bottom: 10px;
    }
    .industry ul li:hover{
        width: 100%;
    }
    .industry ul .cover-desc{
        padding: 5% 20px;
        bottom: -50%;
    }
    .industry ul li .five-img {    
        margin-top: -50%;
    }
    .industry ul .five-cover img{
        width: 98px;
    }
    .industry ul .five-cover h5 {    
        margin-bottom: 5px;
        font-size: 20px;   
    }
    .industry ul h5 span{
        font-size: 12px;
    }
    .industry ul .cover-desc h3{  
        font-size: 18px;
    }
    .industry ul .cover-desc h3 strong{
        font-size: 26px;
    }
    .industry ul .cover-desc .more a{
        font-size: 14px;
    }
}
.aboutrow{display: flex; justify-content: space-between;}
.aboutrow .rowleft{width: 50%;}
.aboutrow .rowleft .title{color: #000; margin-bottom: 25px;}
.title .titen{color: #fe0000;font-weight: bold; font-size: 20px;}
/*首页关于我们*/
.about{
    position: relative;
    background: url(../images/aboutbg.jpg) no-repeat top center #f5f5f5;
    background-size: cover;
    margin: 0px auto;
}
.about > img {
    position: absolute;
    bottom: 1.25rem;
    right: 6rem;
    width: 48%;
    opacity: 0.5;
}
/*两化融合实验基地*/
.about-content{
    position: relative;
}
.about-content .about-img{
    margin-top: 60px;
    margin-left: 5%;
    width: 45%;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 26px;
}
.about .about-txt{
    font-size: 16px;
    margin-right: 10%;
    line-height: 26px;
    color: #585858;
}
.about .about-txt strong{
    font-size: 34px;
    display: block;
    margin: 10px 0px 10px;
}
.about-content .title{    
    color: #1c1f86;
}
/*.about .more{*/
/*    float: none;*/
/*    display: inline-block;*/
/*    font-size: 20px;*/
/*    padding: 5px 5px 5px 15px;*/
/*    font-weight: bold;*/
/*}*/
/*.about .more i{*/
/*    font-style: normal;*/
/*    background: #fff;*/
/*    color: #1d2088;*/
/*    margin-left: 10px;*/
/*    padding: 3px 10px;*/
/*}*/
.box-content{
    position: relative;
    margin: 20px auto 0;
}
.research-box5 .box-content{
    position: relative;
    max-width: 1560px;
    margin: 0px auto; 
}
/*标语*/
.about-sign{
    position: relative;
    z-index: 1;
}
.about-sign ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}
.about-sign li{
    transition: all 0.3s ease-in-out; 
    font-size: 24px;    
    margin: 50px 0px;
}
.about-sign li h5{
    color: #333333;
    font-size: 22px;
}
.about-sign li h5 span{
    font-size: 56px;       
    font-weight: 600;
    color: #fe0000;
}
.about-sign li h5 i{
    font-size: 60px;    
    font-style: normal; 
    margin-right: 10px;
    color: #fe0000;
}
.about-sign li h5 sup{
    font-size: 30px;
    margin-top: -1.5em;
}
.about-sign li h5 b{    
    font-size: 22px;
    font-weight: 300;
    padding: 5px 0px;
    display: block;
}
.about-sign-en li h5 b{
    font-size: 14px;
}
@media (max-width:992px){ 
    .about-content .about-img{
        position: relative;
        width: 90%;
        margin: 15px auto;
    }
    .about .about-txt strong,.about-sign li h5 {
        font-size: 18px;
    }
    .about .more,.about-sign li h5 b{
        font-size: 18px;
    }
    .about-sign{
        margin-bottom: 20px;
    }
    .about-sign ul{
        width: 100%;
        justify-content: space-evenly;
    }

}

.sierac-company {
    overflow: hidden;
}
.sierac-company .company-swiper {
    width: 72%;
    padding: 0px 60px;
    overflow: unset;
}
.sierac-company .company-swiper .swiper-slide{
    display: flex;    
    position: relative;
    align-content: center;
}
.company-con{
    width: 47%;
    color: #fff;
    padding: 40px 200px 40px 40px;
    background-color: rgba(29,32,136,0.95);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
}
.company-con .company-title{
    font-size: 27px;
}
.company-con .company-desc:before {
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 10px 0px;
}
.company-desc{
    font-size: 17px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.company-con .subtitle span{
    display: inline-block;
    background: #fff;
    color: #1d2088;
    font-size: 24px;
    padding: 5px 10px;
    border-radius: 0px;
}
.company-img{
    width: 70%;
    overflow: hidden;    
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: -160px;
}
.company-img img{
    width: 100%;
    margin-top: -10%;
    transition: all 0.5s;
}
@media(max-width:992px){ 
    .sierac-company .company-swiper {
        width: 100%;
    }
    .sierac-company .company-swiper .swiper-slide{
        flex-wrap: wrap;
    }
    .company-con,.company-img{
        width: 100%;
    }
    .company-con{
        padding: 20px 20px 20px 20px;
    }
    .company-img {
        margin-top: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .company-con .company-title,.company-con .subtitle span{
        font-size: 20px;
    }
    .company-desc{
        font-size: 14px;
        margin-bottom: 15px;
    }
}
/*案例*/
.products{
    overflow: hidden;
    background: url("../images/inprobg.jpg") no-repeat #fff;
    background-size: 100% 100%;
    position: relative;
}
.products > img {
    position: absolute;
    top: 8.25rem;
    right:6rem;
    width: 48%;
    opacity: 0.5;
}
.products .swiper-button-prev {
    left: -80px;
    width: 60px;
    height: 60px;
    background: url(../images/wm_button_icon.png) no-repeat;
    background-position: 0 0;
    background-size: 100%;
}

.products .swiper-button-prev:hover {
    background-position: 0 -61px;
    background-size: 100%
}

.products .swiper-button-next {
    right: -80px;
    width: 60px;
    height: 60px;
    background: url(../images/wm_button_icon.png) no-repeat;
    background-position: 0 -122px;
    background-size: 100%;
}

.products .swiper-button-next:hover {
    background-position: 0 -183px;
    background-size: 100%
}


/*荣誉*/
.inhonor{
    overflow: hidden;
    background: url("../images/inrrbg.jpg") no-repeat #fff;
    background-size: 100% 100%;
    position: relative;

}
.inhonor .container-fluid{width: 80%; margin: 0 auto;}
.inhonor .swiper-button-prev {
    left: -80px;
    width: 60px;
    height: 60px;
    background: url(../images/wm_button_icon2.png) no-repeat;
    background-position: 0 0;
    background-size: 100%;
}

.inhonor .swiper-button-prev:hover {
    background-position: 0 -61px;
    background-size: 100%
}

.inhonor .swiper-button-next {
    right: -80px;
    width: 60px;
    height: 60px;
    background: url(../images/wm_button_icon2.png) no-repeat;
    background-position: 0 -122px;
    background-size: 100%;
}

.inhonor .swiper-button-next:hover {
    background-position: 0 -183px;
    background-size: 100%
}
.inhonor-list{
    position: relative;
    background-size: 100%;
    transition: all 0.6s;
    margin-bottom: 30px;border-right: 1px solid #e5e5e5;
}
.inhonor-list .inhonor-img{
    overflow: hidden;
    padding: 28px; background-color: #fff;
}
.inhonor-list .inhonor-img img{
    width: 100%;
    transition: all 0.6s;
}
.inhonor-list .pro-con{
    padding: 26px 20px;
    transition: all 0.6s;
    background-color: #fff;
    border-top: 1px dotted #e5e5e5;
}
.inhonor-list:hover .pro-con{
    background-color: #ea251d;
}
.inhonor-list .pro-con h5{
    font-size: 22px;
    text-align: center;
    transition: all 0.6s;
}
.inhonor-list .pro-con-en h5{
    font-size: 18px;
    font-weight: normal;
}
.inhonor-list:hover .pro-con h5{
    color: #fff;
}
.inhonor-list .pro-con h5 span{
    display: block;
}

.inhonor-list:hover inhonor-img img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
}
@media(max-width:992px){
    .inhonor-list .pro-con h5{
        font-size: 16px;
    }
}

/* 新闻 */
.news{
    background: url(../images/innewsbg.jpg) no-repeat top center #fff;
    /*background-size: cover;*/
    background-size: 100% auto;padding-bottom: 0;
}
.news-more{margin-top: 20px;display: flex; justify-content: right;}
.morea{background: #fe0000; padding: 10px 26px; border-radius: 30px; color: #fff;}
.news-tab{
    position: relative; 
    overflow: hidden;
    width: 100%;   
}
.news-tab a.more{
    float: right;
}
.news-tab li{   
    position: relative;
    float: left;
    display: inline-block;  
}
.news-tab li a{
    font-size: 26px;
    font-weight: 400;
    margin-right: 20px;
    padding: 8px 25px;
    transition: all 0.3s;
    position: relative;
    display: block;border-radius: 10px 10px 0 0;
}
/*.news-tab li a:after{
    content: "";
    position: absolute;
    width: 2px;
    background: #595757;
    height: 20px;
    top: 50%;
    right: -5px;
    margin-top: -10px;
}*/
.news-tab li.active a,.news-tab li a:hover{    
    background: #fff;
    color: #1d2088;
}

/*上部分*/
.picList{
    position: relative;
}
.newsqabox{display: flex; justify-content: space-between;}
.newsqabox .qabox{width: 42%; margin-top: 40px;}
.qatitle{font-size: 30px; color: #163c7f;  border-left:5px solid #fe0000; padding-left: 16px;}
.flex-middle2,.flex-center,.flex-top2{display: flex;justify-content: flex-start; align-content: flex-start;}
.flex-middle2 {
    align-items: center;
}
.flex-center:not(.flex-column) {
    justify-content: center;
}
.flex-top2 {
    align-items: flex-start;
}
.m-pic img{
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    width: auto;
}
#faq .content{margin-bottom:10px;}
#faq .content .box {border-bottom: 1px solid #dedede;padding:16px 0;}
#faq .content .box .top{display:flex;align-items:center;justify-content:space-between;cursor:pointer}
#faq .content .box .top .leftr{width:calc(100% - 45px);}
#faq .content .box .top .leftr .txt{margin-right:10px;font-size:18px;font-weight:bold;color:#fff;width:35px;height:35px;border-radius:50%;background-color:#c5c5c5;}
#faq .content .box .top .leftr .titleq{width:calc(100% - 42px - 28px); font-size:18px;color:rgba(51, 51, 51, 1);}
#faq .content .box .top .square{background-color:#ececec; padding: 4px 5px 5px;}
#faq .content .box .bot{margin-top:3px;}
#faq .content .box .bot .item{width:calc(100% - 45px);}
#faq .content .box .bot .item .txt{margin-right:10px;font-size:18px;font-weight:bold;color:#fff;width:35px;height:35px;border-radius:50%;background-color:#3963cf;}
#faq .content .box .bot .item .brief{width:calc(100% - 45px);font-size:16px;line-height:30px;color:#333;margin-top:6px;}
#faq .content .box .top.cur .titleq,
#faq .content .box .top:hover .titleq{color:#fe0000;}
#faq .content .box .top.cur .txt,
#faq .content .box .top:hover .txt{background-color:#fe0000;color:#fff;}
#faq .content .box .top.cur .square .i1{display:none;}
#faq .content .box .top.cur .square .i2{display:inline-block;}

#faq .content-en .box .bot .item .brief {
    font-size: 14px;
    line-height: 18px;
}
#faq .content-en .box .top .leftr .titleq {
    font-size: 16px;
}

/*下侧*/
.news-box {
    background: #f0f6ff;
    padding: 40px 25px;
    margin-top: 40px;
    width: 55%;
    border-radius: 20px;
}
.news-box .tab-content{
    background: #fff;
    padding: 30px;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}
.newsqabox-en .newslist li {
    font-size: 16px !important;
}

.news-box .newslist li{
    border-bottom: 1px solid #cdcdcd;
    overflow: hidden;
    font-size: 20px;
    padding: 10px 0px;
    width: 100%;
    text-overflow: ellipsis;
    display: flex; align-items: center;
}
.news-box .newslist li a{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 80%; margin-right:5%;
}
.news-box .newslist li span{
    width: 15%;color: #b6b6b6;font-size: 16px; text-align: right;
}

@media (max-width:991px){     
   .news-box {
        padding: 20px 15px;
        margin-top: 0px;
    }
    .news-tab li a {
        font-size: 18px;
        font-weight: 400;
        margin-right: 10px;
        padding: 8px 12px;
    }
    .news-tab a.more{
        display: none;
    }
    .news-box .tab-content{
        padding: 15px;
    }
    .news-box .newslist li{
        font-size: 14px;
    }
}
/*合作客户*/
.cooperation{
    margin-top: 100px;
    background: url(../images/inpannerbg.jpg) no-repeat top center #fff;
    /*background-size: cover;*/
    background-size: 100% auto;padding-bottom: 60px;
}
.cooperation .cooper-img{
    margin-bottom: 50px;
}
.cooperation .cooper-img img{    
    max-width: 100%;
    opacity: 1.0;     
    transition: all 0.6s;
}
.ny-cooper .cooper-img{
    padding-bottom: 10px;
}

@media (max-width:992px){ 
    .cooperation .cooper-img{
        margin-bottom: 30px;
    }
}
/*标语*/
.biaoyu{
    background: url(../images/sign.jpg) no-repeat center;
    background-size: cover;
}
.biaoyu h5{
    color: #fff;
    font-size: 50px;
    text-align: center;
    padding: 17% 0;
}
@media (max-width:992px){ 
    .biaoyu h5 {
        font-size: 30px;
        padding: 17% 15%;
    }
}




.swiper-button-next, .swiper-button-prev, .swiper-pagination-clickable .swiper-pagination-bullet, input:focus, select:focus, textarea {
    outline: 0;
    resize: none
}
.pc-banner {
    position: relative;
    overflow: hidden;
}

.pc-banner .mySwipera {
    position: relative;
}

.pc-banner .mySwipera .swiper-slide {
    overflow: hidden;position: relative;
}

.pc-banner .mySwipera .swiper-slide .img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.pc-banner .mySwipera .swiper-slide .img > img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}
.pc-banner .mySwipera .swiper-slide .img > img.b{
    display: none;
}

.pc-banner .mySwipera .banwez {
    width: 100%;
    z-index: 99;
    color: #FFFFFF;
}

.pc-banner .mySwipera .banwez p.xin {
    display: inline-block;
    position: relative;
    line-height: 1;
}

.pc-banner .mySwipera .banwez p.xin::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0.1rem;
    width: 100%;
    z-index: -1;
    height: 0.5rem;
    background: #0067C8;
}

.pc-banner .mySwipera .banwez dt {
    font: 600 4.8125rem/1.3em "montserrat";
    max-width: 50%;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .pc-banner .mySwipera .banwez dt {
        font-size: 2.8rem;
        max-width: 80%;
    }
    .pc-banner .mySwipera .swiper-slide .img > img.a{
        display: none;
    }
    .pc-banner .mySwipera .swiper-slide .img > img.b{
        display: block;
    }

}

.pc-banner .mySwipera .banwez dd {
    font: 300 2.8125rem/1.15em "sourcehansans";
    margin-top: 0.25em;
}
.pc-banner .mySwipera .banwez dd span{
    font: 300 1.68rem/0.5em "sourcehansans";
}
@media (max-width: 768px) {
    .pc-banner .mySwipera .banwez dd {
        font-size: 1.625rem;
    }
    .pc-banner .mySwipera .banwez dd span {
        font: 300 1.125rem/0.5em "sourcehansans";
    }
}

.pc-banner .mySwipera .banwez a.more-msl {
    margin-top: 1.875rem;
}

@media (max-width: 768px) {
    .pc-banner .mySwipera .banwez a.more-msl {
        margin-top: 1.2rem;
    }
}

.pc-banner .mySwipera .bant {
    position: absolute;
    left: 0;
    bottom: 3.125rem;
    text-align: center;
    z-index: 99;
    width: 100%;
}

@media (max-width: 768px) {
    .pc-banner .mySwipera .bant {
        bottom: 4%;
    }
}

.pc-banner .mySwipera .bant .wh {
    width: 100%;
}

.pc-banner .mySwipera .bant .swiper-button-next1 i, .pc-banner .mySwipera .bant .swiper-button-prev1 i {
    color: #fff;
    font: 500 1.125rem/1.5em "sourcehansans";
}

.pc-banner .mySwipera .bant .swiper-pagination1as {
    padding: 0 0.15em;
}

.pc-banner .mySwipera .bant .swiper-pagination1as span {
    width: 10px;
    height:  10px;
    opacity: 1;
    border-radius: 10px;
    margin: 0 0.35rem;
    border: 1px solid #fff;
    background: transparent;
}

.pc-banner .mySwipera .bant .swiper-pagination1as span.swiper-pagination-bullet-active {
    width: 32px;
    background: #fff;
}

.sy_ban-srv {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .sy_ban-srv {
        display: none;
    }
}

.sy_ban-srv .sy-ban-a1 {
    width: 86.45833%;
    background: #F1F2F4;
    height: 6.875rem;
}

.sy_ban-srv .sy-ban-a1 .txtScroll-top {
    margin-left: 15.66265%;
}

@media (max-width: 1366px) {
    .sy_ban-srv .sy-ban-a1 .txtScroll-top {
        margin-left: 5.78125%;
    }
}

.sy_ban-srv .sy-ban-a1 .txtScroll-top ul li a {
    display: block;
    color: #4F4F4F;
    font: 500 1.25rem/6.875rem "sourcehansans";
    max-width: 80%;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sy_ban-srv .sy-ban-a1 .txtScroll-top ul li a:hover {
    color: #0067C8;
}

.sy_ban-srv .sy-ban-a2 {
    width: 13.54167%;
    position: relative;
}

.label_el {
    color: rgba(26, 26, 26, 0);
    text-shadow: none;
    -webkit-text-stroke-width: 0.47px;
    -webkit-text-stroke-color: #fff;
}

@media (max-width: 768px) {
    .label_el {
        -webkit-text-stroke-width: 0.3px;
    }
}

@-webkit-keyframes banscaleDraw {
    /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        /*开始为原始大小*/
    }
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        /*放大1.1倍*/
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    75% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes banscaleDraw {
    /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
        /*开始为原始大小*/
    }
    25% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        /*放大1.1倍*/
    }
    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }
    75% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes banscaleDraw {
    /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        -o-transform: scale(1);
        transform: scale(1);
        /*开始为原始大小*/
    }
    25% {
        -o-transform: scale(1.1);
        transform: scale(1.1);
        /*放大1.1倍*/
    }
    50% {
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
    75% {
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes banscaleDraw {
    /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        /*开始为原始大小*/
    }
    25% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
        /*放大1.1倍*/
    }
    50% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
    75% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.zmfd {
    -webkit-animation-name: banscaleDraw;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 10s;
    /*动画所花费的时间*/
}

@-webkit-keyframes run {
    from {
        bottom: 7%;
        opacity: 0;
    }
    to {
        bottom: 3%;
        opacity: 1;
    }
}

@-moz-keyframes run {
    from {
        bottom: 7%;
        opacity: 0;
    }
    to {
        bottom: 3%;
        opacity: 1;
    }
}

@-o-keyframes run {
    from {
        bottom: 7%;
        opacity: 0;
    }
    to {
        bottom: 3%;
        opacity: 1;
    }
}

@keyframes run {
    from {
        bottom: 7%;
        opacity: 0;
    }
    to {
        bottom: 3%;
        opacity: 1;
    }
}

.kajjt {
    text-align: center;
    -webkit-animation: run 1s infinite linear;
    -moz-animation: run 1s infinite linear;
    -o-animation: run 1s infinite linear;
    animation: run 1s infinite linear;
    position: absolute;
    right: 3.85417%;
    width: 1.3625rem;
    bottom: 7%;
    z-index: 99;
}

.kajjt img.a {
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .kajjt {
        bottom: 7%;
    }
    .kajjt img.a {
        width: 2.5rem;
    }
}

.swiper {
    overflow: hidden;
}

.overa {
    overflow: hidden;
}




.more {
    display: inline-block;
    width: 16.2rem;

    line-height: 4.6rem;
    border-radius: 4.6rem;
    background: #fe0000;
    position: relative;
}

.more span:nth-child(1) {
    width: 4.6rem;
    height: 4.6rem;
    display: block;
    border-radius: 50%;
    background: #FFFFFF;
    line-height: 4.6rem;
    text-align: center;
    position: absolute;
    left: 0;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.more span:nth-child(1) .iconfont {
    display: block;
    font-size: 1.0rem;
    color: #fe0000;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    font-weight: 600;
}

.more span:nth-child(2) {
    width: calc(100% - 2.5rem);
    display: block;
    text-align: center;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.more div {
    border-radius: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.more div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 2.5rem;
    transition: width 0.4s;
    -webkit-transform: width 0.4s;
    -moz-transition: width 0.4s;
    -o-transition: width 0.4s;
    width: 0;
    height: 100%;
    z-index: -1;
}

.more:hover {
    box-shadow: 0 0 1rem rgba(84, 188, 183, 0.4);
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.more:hover div::before {
    width: 100%;
    transition: width 0.4s;
    -webkit-transform: width 0.4s;
    -moz-transition: width 0.4s;
    -o-transition: width 0.4s;
}

.more:hover span {
    color: #fe0000;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.more:hover .iconfont {
    transform: translateX(10px);
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}



@-webkit-keyframes rotate
{
    to
    {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate
{
    to
    {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}


.productFactory{display: flex; align-items: center;}
.sysname{width: calc(92% - 484px); margin-left: 8%;}
.sysname ul{display: flex; justify-content: space-between;flex-wrap: wrap;}
.sysname ul li{ width: 32.33%;padding: 8px 8px; border: 1px solid #1c54a6; border-radius: 8px; transition: all 0.3s; margin: 8px 0;text-align: center;}
.sysname ul li:hover{background-color: #fe0000;border: 1px solid #fe0000;}
.sysname ul li a{font-size: 18px; font-weight: bold;text-transform: uppercase; display: inline-block; width: 100%;}
.sysname ul li:hover a{color: #fff;}
.sysname ul li a span{ padding-top: 8px; display: block;}



.bannerArea .bannerListBox .bannerProductListBox {width:484px;height:484px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;border-radius:50%;overflow:hidden;translate:0}
.bannerArea .bannerListBox .bannerProductListBox .deco {width:100%;height:100%;margin:auto;position:absolute;top:0;left:0;right:0;bottom:0}
.bannerArea .bannerListBox .bannerProductListBox .deco.deco1:before {content:"";animation:rotate 25s linear reverse infinite;background:url("../images/banner_product_circle1.png") center/100% no-repeat;width:100%;height:100%;margin:auto;position:absolute;top:0;left:0;right:0;bottom:0}
.bannerArea .bannerListBox .bannerProductListBox .deco.deco1:after {content:"";-webkit-animation:rotate 40s linear infinite;animation:rotate 40s linear infinite;background:url("../images/banner_product_circle2.png") center/100% no-repeat;width:100%;height:100%;margin:auto;position:absolute;top:0;left:0;right:0;bottom:0}
.bannerArea .bannerListBox .bannerProductListBox .deco.deco2 {width:100%;height:100%;margin:auto;position:absolute;top:0;left:0;right:0;bottom:0}
.bannerArea .bannerListBox .bannerProductListBox .deco.deco2:before {content:"";animation:rotate 25s linear reverse infinite;border-radius:50%;background:url("../images/banner_product_circle3.png") center/100% no-repeat;width:100%;height:100%;margin:auto;position:absolute;top:0;left:0;right:0;bottom:0}
.bannerArea .bannerListBox .bannerProductListBox .deco.deco2:after {content:"";-webkit-animation:rotate 40s linear infinite;animation:rotate 40s linear infinite;border-radius:50%;background:url("../images/banner_product_circle4.png") center/66% no-repeat;width:66%;height:66%;margin:auto;position:absolute;top:0;left:0;right:0;bottom:0}

.bannerArea .bannerListBox .bannerProductListBox .bannerProductList {width:100%}
.bannerArea .bannerListBox .bannerProductListBox .bannerProductList .slick-current .bannerItem .Img {opacity:1;translate:0;scale:1;transition:opacity 0.8s 0.2s ease,translate 0.8s 0.4s ease,scale 0.8s 0.6s ease}
.bannerArea .bannerListBox .bannerProductListBox .bannerProductList .bannerItem {position:relative}
.bannerArea .bannerListBox .bannerProductListBox .bannerProductList .bannerItem .Img {width:250px;margin:0 auto;opacity:0;position:relative;translate:0 -15px;scale:0.92}
.bannerArea .bannerListBox .bannerProductListBox .bannerProductList .bannerItem .Img img {width:100%;height:auto;display:block;-webkit-backface-visibility:hidden;backface-visibility:hidden}

.bannerArea .bannerListBox .bannerProductListBox .bannerProductWord{width:68%; text-align: center; margin: 0 auto;}
.bannerArea .bannerListBox .bannerProductListBox .bannerProductWord h2{color: #184899;font-weight: bold; font-size: 42px;position: relative; padding-bottom: 30px;}
.bannerArea .bannerListBox .bannerProductListBox .bannerProductWord h2::after{content: ''; width: 60px; height: 4px; background: #fe0000; position: absolute;left: 50%; bottom: 15px; margin-left:-30px;}
.bannerArea .bannerListBox .bannerProductListBox .bannerProductWord .ms{color: #000; font-size: 28px;font-weight: bold;}
.bannerArea .bannerListBox .bannerProductListBox .bannerProductWord p{color: #000; font-size: 16px;}

.bannerArea-en .bannerProductWord h2 { font-size: 36px !important;}
.bannerArea-en .bannerProductWord .ms {  font-size: 18px !important;}
.bannerArea-en .bannerProductWord p {  font-size: 15px !important;}

.m-hidden {
    display: none;
}
@media (max-width: 992px) {
    .pc-hidden {
        display: none;
    }
    .m-hidden {
        display: block;
    }
}


/*手机端头部*/
.mslm-head {
    position: fixed;
    top: 0;
    z-index: 999999;
    left: 0;
    right: 0;
    background: #fff;
}

.mslm-head-box {
    position: relative;
    height: 60px;
}

.mslm-head-box .mslm-logo {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto 4%;
    max-width: 100%;
    height: 52px;
}

.mslm-head-box .mslm-logo h1, .mslm-head-box .mslm-logo a {
    display: inline;
    font-size: 0;
}

.mslm-head-box .mslm-logo img {
    height: 100%;
}

.mslm-navbtn {
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 4% auto 0;
    width: 20px;
    height: 15px;
}

.mslm-navbtn span, .mslm-navbtn:after, .mslm-navbtn:before {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.mslm-navbtn span {
    margin: 4.5px 0;
}

.mslm-navbtn:after, .mslm-navbtn:before {
    content: '';
    -webkit-transform-origin: 7.5%;
    -moz-transform-origin: 7.5%;
    -ms-transform-origin: 7.5%;
    -o-transform-origin: 7.5%;
    transform-origin: 7.5%;
}

.mslm-navbtn.clicked span {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
}

.mslm-navbtn.clicked:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mslm-navbtn.clicked:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mslm-search-btn {
    position: absolute;
    z-index: 9;
    right: 4%;
    top: 0;
    bottom: 0;
    width: auto;
    text-align: center;
    line-height: 60px;
    color: #fff;
}

.mslm-search-btn span {
    font-size: .75rem;
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: top;
}

.mslm-search-btn .iconfont {
    font-size: 21px;
}

.mslm-search-btn .icon-font {
    display: block;
    width: 100%;
    height: 100%;
}

.mslm-search-btn .icon-font:after {
    background-position: -30px -210px;
}

.mslm-menu {
    display: none;
    position: absolute;
    z-index: 9999;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(255,255,255,.92);
}

.mslm-menu .mslm-menu-box {
    height: -webkit-calc(100vh - 60px);
    height: -moz-calc(100vh - 60px);
    height: calc(100vh - 60px);
    overflow: auto;
    padding-bottom: 80px;
}

.mslm-nav > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
}

.mslm-nav > li > a {
    display: block;
    line-height: 50px;
    font-size: 14px;
    color: #000;
    font-family: "sourcehansans";
    padding: 0 4%;
}

.mslm-nav > li .sec {
    display: none;
    padding: 10px 4%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mslm-nav > li .sec a {
    display: block;
    font-size: 12px;
    color: #000;
    line-height: 35px;
}

.mslm-nav > li .sec a span {
    display: inline-block;
    min-width: 40%;
    max-width: 50%;
}

.mslm-nav .mslm-menu-jt {
    position: absolute;
    width: 20%;
    height: 50px;
    line-height: 50px;
    right: 0;
    top: 0;
    text-align: center;
    z-index: 9;
}

.mslm-nav .mslm-menu-jt .icon-font {
    display: block;
    width: 100%;
    height: 100%;
}

.mslm-nav .mslm-menu-jt .icon-font:after {
    background-position: -30px -240px;
}

.mslm-nav .mslm-menu-jt.clicked .icon-font:after {
    background-position: -30px -270px;
}

.mslm-nav .mslm-sub-menu {
    background: #fff;
    display: none;
}

.mslm-nav .mslm-sub-menu > li {
    border-top: 1px dashed rgba(255, 255, 255, 0.5);
}

.mslm-nav .mslm-sub-menu > li > a {
    display: block;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 40px;
    text-indent: 2em;
}

.mslm-search {
    position: fixed;
    z-index: 99999;
    left: 100%;
    bottom: 0;
    top: 60px;
    width: 100%;
    background: #000;
    padding: 0 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.mslm-search .mslm-search-close-btn {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

@media (max-width: 420px) {
    .mslm-search .mslm-search-close-btn {
        left: 15px;
    }
}

.mslm-search .mslm-search-close-btn i {
    width: 100%;
    height: 100%;
    display: block;
    color: #000;
    font-size: 24px;
}

.mslm-search .mslm-search-close-btn i:after {
    background-position: -30px -300px;
}

.mslm-search .mslm-search-box {
    height: 52px;
    border-bottom: 2px solid #000;
}

.mslm-search .mslm-search-box input[type="text"] {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #333333;
    font-family: "sourcehansans";
    font-size: 14px;
    height: 52px;
    text-indent: 1em;
}

.mslm-search .mslm-search-box input[type="text"]::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #333333;
    font-family: "sourcehansans";
}

.mslm-search .mslm-search-box input[type="text"]:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #333333;
    font-family: "sourcehansans";
}

.mslm-search .mslm-search-box input[type="text"]::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #333333;
    font-family: "sourcehansans";
}

.mslm-search .mslm-search-box input[type="text"]:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #333333;
    font-family: "sourcehansans";
}

.mslm-search .mslm-search-box #s_btn {
    width: 20%;
    height: 52px;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 0;
    background: none;
    border: none;
}

.mslm-search .mslm-search-box #s_btn .iconfont {
    font-size: 20px;
    color: #000;
}

.mslm-search .mslm-search-box #s_btn .icon-font {
    display: block;
    width: 100%;
    height: 100%;
}

.mslm-search .mslm-search-box #s_btn .icon-font:after {
    background-position: -30px -210px;
}

.mslm-search .mslm-seaerch-wz span,
.mslm-search .mslm-seaerch-wz a {
    display: block;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.9);
    line-height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.mslm-search.clicked {
    left: 0;
}


.aniut {
    position: absolute;
    width: 40px;
    height: 50px;
    line-height: 50px;
    right: 2%;
    top: 0;
    text-align: center;
    z-index: 9;
}

.aniut i {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: #000;
}
.mslm-nav li > a {
    font-weight: 600;
}

.mslm-nav li > a span {
    display: inline-block;
    min-width: 40%;
    max-width: 50%;
    font-weight: 500;
}
.rhgxt{
    color: #000;
    font: 500 1.425rem/60px "helvetica";
    margin-left: 66%;
    position: relative;
    z-index: 9;
}
.rhgxt a{margin-right: 2rem;}
.rhgxt i{
    font-size: 1.425rem;
    margin-right: 0.25em;
}
.rhgxt:hover{
    color: #000;
}


@media screen and (min-width: 1921px){}
@media screen and (max-width: 1919px){}
@media screen and (max-width: 1605px){
    .header .logo img {height: 86px;}
    header .nav>ul>li>a {font-size: 17px;line-height: 86px;}
}
@media screen and (max-width: 1565px){
    header .nav>ul>li>a {font-size: 16px;}
}
@media screen and (max-width: 1447px){
    header .nav>ul>li {padding: 0px 8px;}
    .pc-banner .mySwipera .banwez dt {
        max-width: 80%;
    }
    .shareicon a {font-size: 13px;}
}
@media screen and (max-width: 1232px){
    .header .logo img {height: 66px;padding: 5px 0px;}
    header .nav>ul>li>a {font-size: 14px;line-height: 66px;}
    header .nav>ul>li {padding: 0px 6px;}
    .header #search_box { width: 98px; }
    .shareicon i { margin-right: 3px; font-size: 16px;}
}
@media screen and (max-width: 1092px){
    .rt_part{display: none;}
    .header .nav.show a{color: #0a0a0a}
    .header:hover .m-btn.active span {background: transparent;}
    .productFactory {flex-wrap: wrap;}
    .bannerListBox{width: 100%;}
    .bannerArea .bannerListBox .bannerProductListBox {margin: 0 auto;}
    .sysname { width: 92%; margin-left: 4%; }
    .sysname ul li a {font-size: 18px;}
    .common { padding-top: 80px;  padding-bottom: 80px;  }
    .aboutrow {  flex-wrap: wrap;   }
    .aboutrow .rowleft {width: 100%;    }
    .about .about-txt {margin-right: 0;  }
}
@media screen and (max-width: 991px){
    .pc-banner,.ny-ban,.fac-ban{margin-top: 60px;}
    .position{display: none;}
    .industry ul li .five-img img {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    .about .more{display: none;}
    .title {font-size: 40px;margin-bottom: 35px;}
    .newsqabox {flex-wrap: wrap;}
    .news-box {
        width: calc(100% - 20px);
        margin-left: 10px;
    }
    .newsqabox .qabox { width: 100%; padding: 0 20px; }
    .cooperation {
        margin-top: 20px;
        background-size: 100% 100%;
        padding-bottom: 30px;
    }
    .foot-right{display: none;}
    footer .foot-logo img {
        width: 230px;
    }
    .foot-cont p {
        font-size: 14px;
        margin: 8px 0;
    }
    .foot-cont {
        width: 238px;
    }
    .friendlink a {
        font-size: 14px;
        margin-right: 18px;
    }
    .friendlink span {
        font-size: 16px;
    }
    .foot-nav p.name, .foot-nav p.box-tit {
        font-size: 18px;
        line-height: 1.3;
    }
    .foot-nav ul li ul li {
        font-size: 13px;
        line-height: 1.6;
    }
    .friendlink{display: none;}
    .cooperation .moreb{display: none;}

}
@media screen and (max-width: 767px){
    .foot-nav {margin-top: 0;padding: 0; }
    .foot-nav li:nth-child(1){width: 100%; display: none;}
    .cooperation .title {font-size: 30px; }
    .foot-nav p.name, .foot-nav p.box-tit {font-size: 16px;}

}
@media screen and (max-width: 500px){
    footer{display: none;}
    .about-sign li h5 span,.about-sign li h5 i{font-size: 28px;}
    .bannerArea .bannerListBox .bannerProductListBox {width: 400px;height: 400px;}
    .bannerArea .bannerListBox .bannerProductListBox .bannerProductWord p {font-size: 14px;}
    .bannerArea .bannerListBox .bannerProductListBox .bannerProductWord .ms {font-size: 22px; }
    .sysname {
        width: 100%;
        margin-left: 0%;
    }
    .sysname ul li a {
        font-size: 16px;
    }
    .sysname ul li { width: 100%; }
    .sysname ul li:last-child { width: 100%; }
    .rhgxt {
        margin-left: 56%;
    }
}
