@charset "utf-8";
.m-btn{
    display: none;
    position: absolute;
    cursor: pointer;
    right:20px;
    top:28px;
}
.m-btn span{
    display: block;
    width:20px;
    height:2px;
    background:#333;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
    -o-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}
.m-btn span::before, .m-btn span::after{
    content:'';
    display: block;
    height:2px;
    width:20px;
    background:#333;
    position: absolute;
	left: 0;
    -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
    -o-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}
.m-btn span:before {
	top: -8px;
}
.m-btn span:after {
	bottom: -8px;
}
.m-btn.active span {
	background: transparent;
	margin-left: 10px;
}
.m-btn.active span:before {
    transform: rotate(-48deg) translate(-6px, 5px);
    -webkit-transform: rotate(-48deg) translate(-6px, 5px);
    -o-transform: rotate(-48deg) translate(-6px, 5px);
	width: 24px;
}
.m-btn.active span:after {
    transform: rotate(48deg) translate(-6px, -5px);
    -webkit-transform: rotate(48deg) translate(-6px, -5px);
    -o-transform: rotate(48deg) translate(-6px, -5px);
	width: 24px;
}
@media (max-width: 1199px){
    .ny-header .nav>ul>li{
        padding-left:0;
    }
    .ny-header .language{
        margin:0;
    }
}
@media (max-width: 992px){
    .m-btn{
        display: block;
    }    
}
/* 内页banner */
.ny-ban{
    position: relative;
    overflow: hidden;   
    background: #2b2b2b;
}
.ny-ban img{    
    width:100%;
}
.ny-ban .ny-title{
    width:100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color:#fff; 
}
.ny-ban .ny-title h5.cntitle{
    font-size: 102px;
    text-transform: uppercase;
}
.ny-ban .ny-title p{
    font-size: 56px;
    font-weight: 100;
}
@media(max-width:991px){
    .ny-ban .ny-title h5.cntitle{
        font-size: 22px;
    }
    .ny-ban .ny-title p {
        font-size: 16px;
    }
}
/* 当前位置 */
.position{
    position: relative;
    background: #fff;   
    padding: 15px 0px;
    border-bottom: 3px solid #e7e7e7;  
}
.position span {
    font-weight: 600;
    color: #00339b;
}
.position ul{
    display: flex;   
} 
.position ul li{  
   padding-right: 10px;
}
.position ul li a:hover{
    font-weight: bold;
}
/* 搜索 */
.search{
    background-color: #ebeffd;
    padding: 4% 0px;
}
.search.search-case{
    background-color: #fff;
}
.search-box{
    width: 50%;
    margin: 0px auto;
}
.search.search-case .search-box {
    width: 100%;
}
.search a{
    background-color: #bcbfca;
    font-size: 21px;
    display: block;
    text-align: center;
    color: #fff;
    padding: 5px 10px;
}
.search ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 15px;
    margin-right: -8px;
}
.search ul li{
    margin-right: 8px;
}
.search ul.all-type{
    margin-right: -8px;
}
.search ul.all-type li{
  width: 13.75%;
  margin-bottom: 15px;
}
.search ul.all-type li a.active{
    background: #1d2088;
    color: #fff;
}
.search form{
    width:100%;
    height:100%;
    position: relative;
}
.search form input{
    width:100%;
    height: 40px;
    line-height: 40px;
    border:1px solid #fff;
    background: #fff;
    padding: 0px 20px;
    text-transform: uppercase;
}
.search.search-case form input{
    background-color: #f3f3f3;
}
.search form input:-moz-placeholder {
    font-size: 18px;
}
.search form input:-ms-input-placeholder{
    font-size: 18px;
}
.search form input::-webkit-input-placeholder{
    font-size: 18px;
}
.search form button{
    background:#1d2088;
    position: absolute;
    right: 0px;
    color: #fff;
    font-size: 26px;
    top: 0px;
    border:none;
    padding: 0px 10px;    
    height:100%;
}
.search form button i{
    font-size: 26px;
    font-weight: 100;
}
@media(max-width:992px){
    .search-box {
        width: 100%;
    }
    .search ul li,.search ul.all-type li {
        width: 31%;
        margin-bottom: 10px;
    }
    .search a {
        font-size: 14px;
    }
    .search form button{
        font-size: 18px;
    }
}
/*主页通用*/
.main{
    background: #fff;
}
.main.product-nav{
    background: #fff;
    border-top: 20px solid #777f90;
    position: relative;
}
.main.product-nav:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #777f90;
}
.main.digital-nav{
    background: #fff;
    border-top: 20px solid #1d2088;
    position: relative;
}
.main.digital-nav:before{
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #1d2088;
}
.ny-comm{
    padding-top: 80px;
    padding-bottom: 80px;
}
.c-con{
    position: relative;
}
.ny-comm .comm-left{  
    overflow: hidden;
    width: 20%;
    top: 0px;
    float: left;
    position: sticky;
    transition: all .3s;
}
.ny-comm .comm-right{ 
    width: 78%;
    padding: 0px 0px 0px 40px;    
    float: right;
}
.ny-comm .ny-title{
   font-size: 50px;
   font-weight: 600;
   margin-bottom: 40px;
   text-transform: uppercase;   
}
.ny-comm .ny-title span{
    display: block;
    font-size: 24px;
}
.ny-comm .ny-title p{
    display: block;
    font-size: 18px;
    width: 72%;
    margin: 0px auto;
}
@media(max-width:767px){
    .ny-comm{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .ny-comm .ny-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .ny-comm .ny-title span{
        font-size: 14px;
    }
}
.ny-comm .ny-title ul{
    float: right;
    font-size: 14px;
    font-weight: normal;
}

.ny-comm .ny-title ul li {
    position: relative;
    display: inline-block;
    padding: 0 5px;
    font-size: 14px;
}
.ny-comm .ny-title ul li a{
    color:#76787a;
}
/*内页关于我们*/
.ny-about .about1{ 
    background: url(../img/about1.jpg) no-repeat bottom left #fff;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    overflow: hidden;
}
.ny-about .about-txt{
    padding: 0px 0px 100px;
    width: 32%;    
    text-align: justify;   
}
.ny-about .about-img{
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 70%;
    text-align: right;
}
.ny-about .about-img img{
    height: 100%;
    width: auto;
    max-width: 100%;
}
/*标语*/
.sign li{
    transition: all 0.3s ease-in-out;    
    padding-left: 20px;
    font-size: 24px;
    border-left: 5px solid #1d2088;
    margin: 50px 0px;
}
.sign li h5{
    color: #1d2088;
}
.sign li h5 span{
    font-size: 52px;       
    font-weight: 600;
}
.sign li h5 i{
    font-size: 24px;    
    font-style: normal; 
    margin-right: 10px;
}
.sign li h5 sup{
    font-size: 30px;
    margin-top: -1.5em;
}
.sign li h5 b{    
    font-size: 24px;
    font-weight: 300;
    padding: 5px 5px;
    color: #fff;    
    background: #1d2088;
}
@media(max-width:992px){
    .ny-about .about-img {
        position: relative;
        width: 100%;
    }
    .sign li{  
        padding-left: 15px;
        font-size: 14px;
        border-left: 3px solid #1d2088;
        margin: 15px 0px;
    }
    .sign li h5 span{
        font-size: 32px;
    }
    .sign li h5 i{
        font-size: 14px;
    }
    .sign li h5 sup{
        font-size: 20px;
    }
    .sign li h5 b{    
        font-size: 16px;
    }
}
/*公司资质*/
.ny-about .about2{
    background: url(../img/about2.jpg) no-repeat center #fff;
    background-size: cover;
}
.ny-about .about2 ul{
    display: flex;
    justify-content: space-between;
}
.ny-about .about2 ul li{
    padding: 2% 25px;
    width: 33.33%;    
    color: #fff;
    text-align: center;
    border-right: 4px solid #5d69a6;
    transition: all 0.5s;
}
.ny-about .about2 ul li:last-child{
    border-right: 0px;
}
.ny-about .about2 ul li h5{
    font-size: 34px;
}
.ny-about .about2 ul li:hover{
    padding: 1.5% 25px;
}
@media(max-width:992px){
    .ny-about .about2 ul li img {
        width: 65px;
    } 
    .ny-about .about2 ul li h5 {
        font-size: 20px;
    }
}
/*赛瑞克分部*/
.ny-about .about3{
    background: url(../img/about3.jpg) no-repeat center #fff;
    background-size: cover;
}
.ny-about .about3 .ny-title{
    color: #fff;
}
.ny-about .about3 ul{
    display: flex;
    flex-wrap: wrap;
    padding-left: 5%;
    padding-right: 5%;
    justify-content: space-between;
}
.ny-about .about3 ul li{
    width: 31%;
    margin-bottom: 150px;     
    transition: all 0.5s;
}
.ny-about .about3 .about3-img{
    overflow: hidden;
}
.ny-about .about3 .about3-img img{
    width: 100%;
    margin-top: -100px;    
    transition: all 0.5s;
}
.ny-about .about3 .about3-con{    
    font-size: 13px;
    background: #fff;
    position: relative;
    margin-top: -50px;
    padding: 15px 15px 40px;
    background: #fff;   
}
.ny-about .about3 ul li h5{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5%;   
}
.ny-about .about3 ul li:hover .about3-img img{
    transform: scale(1.1);
}
/*弹出层*/
.about3-model{
    position: relative;
}
.about3-model .close-btn .close{
    font-size: 45px;
    margin-right: 10px;
}
.about3-model .fenbu-img{
    overflow: hidden;
}
.about3-model .fenbu-img img{
    width: 100%; 
    transition: all 0.5s;
}
.about3-model .fenbu-img:hover img{
    transform: scale(1.1);
}
.about3-model .fenbu-con .subtitle{
    display: inline-block;
    background: #1d2088;
    color: #fff;
    font-size: 20px;
    padding: 2px 10px;
    border-radius: 5px;
}
.about3-model .fenbu-con{
    margin: 40px 35px 90px 40px;
    font-size: 17px;
    padding-bottom: 90px;
    border-bottom: 1px solid #777777;
}
.about3-model .fenbu-con .title{
    font-size: 26px;
    margin: 15px 0px 30px;
}
.about3-model .fenbu-con ul{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 50px;
}
.about3-model .fenbu-con ul li{
    width: 33%;
    padding-left: 10px;    
    position: relative;
    background: url(../img/ser-line.jpg) no-repeat left top;
}

.about3-model .fenbu-con-img{
    position: absolute;
    right: 2%;
    width: 46%;
    background: #1d2088;
    text-align: center;
    bottom: 5%;
    box-shadow: 1px 1px 6px 0 rgb(0 0 0 / 20%);
}
@media(max-width:992px){
    .ny-about .about3 ul li {
        width: 100%;
        margin-bottom: 20px;
    }
    .close-btn{
        position: absolute;
        top: 5px;
        right: 5px;
        z-index: 1;
    }
    .about3-model .fenbu-con{
        font-size: 14px;
        margin: 20px 15px 20px 15px;
        padding-bottom: 20px;
        flex-wrap: wrap;
    }
    .about3-model .fenbu-con ul {    
        margin-bottom: 20px;
    }
    .about3-model .fenbu-con .title {
        font-size: 16px;
        margin: 15px 0px 15px;
    }
    .about3-model .fenbu-con-img {
        position: relative;
        right: 0%;
        width: 100%;
    }
}
/*企业宗旨*/
.ny-about .about5{
    background: #fff;
    background-size: cover;
}
.ny-about .about5 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ny-about .about5 ul li{    
    width: 50%;  
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}
.ny-about .about5 .about5-img img{
    width: 100%;    
    transition: all 0.5s;
}
.ny-about .about5 .about5-cover{
    position: absolute;
    top: 50%;
    font-size: 22px;
    width: 90%;
    left: 5%;
    transform: translate(0%,-50%);
}
.ny-about .about5 ul li h5{
    font-size: 60px;
    margin-bottom: 5%;
    display: flex;
    justify-content: center;
}
.ny-about .about5 ul li h5 img,.ny-about .about2 ul li img{
    width: auto;
    max-width: 100%;
}
.ny-about .about5 .about5-cover .cover-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.ny-about .about5 .about5-cover .cover-con ul{
    width: 45%;    
    color: #fff;
}
.ny-about .about5 .about5-cover .cover-tit2{
    color: #fff;
}
.ny-about .about5 .about5-cover .cover-con ul li,.ny-about .about5 .about5-cover .cover-con p{
    width: 100%;
}
.ny-about .about5 ul li:hover .about5-img img{
    transform: scale(1.1);
}
/*企业荣誉*/
.research-box5{
    background: url(../img/honor.jpg) no-repeat center;
    background-size: auto 90%;
}
.research-box5 .box5-content ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
}
.research-box5 .box5-content ul li {
    width: 21%;
    font-size: 25px;
}
.research-box5 .box5-content ul li h3{
    color: #1d2088;
    font-size: 28px;
}
.research-box5 .box5-content ul li h3 span{
    font-size: 85px;
}
/* 专利轮播图 */
.research-box5 .swiper-container {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 80px;
}
.research-box5 .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 420px;
}
@media(max-width:992px){ 
    .research-box5 .swiper-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .research-box5 .swiper-slide {        
        height: 270px;
    }
    .research-box5 .box5-content ul{
        padding-top: 0px;
    }
    .research-box5 .box5-content ul li {
        width: 33%;
        font-size: 16px;
    }
    .research-box5 .box5-content ul li h3 span {
        font-size: 32px;
    }
    .research-box5 .box5-content ul li h3 {
        font-size: 20px;
    }
}
/* 发展历程 */
.g-lc {  
  background: url(../img/history.jpg) no-repeat;
  background-size: 100% 75%;
  background-position: bottom center;  
  padding-left: 5%;
  padding-right: 5%;
}
.g-lc h3 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  color: #323333;
}
.g-lc .g-lc-con {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.g-lc .g-lc-con .lc-next {
  width: auto;
  height: auto;
  top: 46%;
  background: none;
  right: -10px;
  opacity: 1;
}
.g-lc .g-lc-con .lc-prev {
  width: auto;
  top: 46%;
  height: auto;
  background: none;
  left: -10px;
  opacity: 1;
}
.g-lc .g-lc-con .glc-cz {
  position: absolute;
  width: 100%;
  left: 0;
  top: 46%;
}
.g-lc .g-lc-con .lc-swiper {
  position: relative;
  width: 94.75%;
  margin: 0 auto; 
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper{
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide {
    padding-left: 9px;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con {
  display: flex;
  flex-direction: column;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp {
  position: relative;
  padding-bottom: 70px;
  width: 425px;
  display: flex;
  flex-direction: column-reverse;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp h4 {
  font-size: 48px;
  font-weight: bold;
  color: #e90020;
  transition: all 0.3s;
  position: relative;
  padding-left: 33px;
  height: 48px;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp h4 img {
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  transition: all 0.3s;
  z-index: 2;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp div {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1px;
  color: #323333;
  margin-top: 16px;
  padding-left: 33px;
  height: 130px;
  display: flex;
  flex-direction: column-reverse;  
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp div ul,.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp div ul li{
    position: relative;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp div ul::before{
    position: absolute;
    left: -33px;
    bottom: 0;    
    bottom: 0px;
    content: '';
    height: calc(100% - 20px);
    width: 1px; 
    z-index: 1px;   
    background-color: #b6b6b8;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .glc-con .glc-tp div ul::before{
    position: absolute;
    left: -33px;
    bottom: 0;
    top: -36px;
    content: '';
    height: calc(100% + 26px);
    width: 1px; 
    z-index: 1px;   
    background-color: #b6b6b8;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp div ul li::before{    
    position: absolute;
    left: -42px;
    top: 30%;
    content: '';
    width: 19px;
    height: 19px;
    background: url(../img/yq.png) no-repeat;
    transition: all 0.3s;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp div ul li strong{
    font-size: 26px;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 1px;
  height: calc(100% - 135px);
  background-color: #b6b6b8;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-bt {
  height: 290px;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con:hover .glc-tp h4 {
  font-size: 38px;
  position: relative;
  margin-top: -5px;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con:hover .glc-tp h4 img {
  top: 17px;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .glc-con {
  flex-direction: column-reverse;
}

.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .glc-con .glc-tp,.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .glc-con div{
  flex-direction: column;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .glc-con .glc-tp::before {
  bottom: auto;
  top: 0;
  height: calc(100% - 160px);
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .glc-con .glc-tp {
  padding-bottom: 0;
  padding-top: 70px;
  margin-top: -25px;
}

@media(max-width:992px){   
    .ny-about .about-txt {
        padding: 10px 0px;
        width: 100%;
    }
}
/*内页企业工厂*/
.ny-factory .tit-info{
    text-align: center;
}
.ny-factory .tit-info strong{
    font-size: 53px;
    color: #1d2088;
}
.ny-factory .factory-content{
    background: #f8fafd;
    padding: 30px 0px;
    margin-top: 30px;
    margin-bottom: 60px;
}
.ny-factory .factory-img{
    margin: 30px 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 2px 2px 16px;
}
.ny-factory .swiper-button-prev,.sierac-company .swiper-button-prev,.ny-cooper .swiper-button-prev,.research-box5 .swiper-button-prev,.digital-case .swiper-button-prev,.code-products .swiper-button-prev {
    left: -80px;
    width: 70px;
    height: 70px;
    background: url(../img/p-prev.png) no-repeat;
    background-position: 0 0;
    background-size: 100%;
}
.ny-factory .swiper-button-next,.sierac-company .swiper-button-next,.ny-cooper .swiper-button-next,.research-box5 .swiper-button-next,.digital-case .swiper-button-next,.code-products .swiper-button-next {
    right: -80px;
    width: 70px;
    height: 70px;
    background: url(../img/p-next.png) no-repeat;    
    background-size: 100%;
}
@media(max-width:992px){  
    .ny-factory .swiper-button-prev,.sierac-company .swiper-button-prev,.ny-cooper .swiper-button-prev,.research-box5 .swiper-button-prev,.digital-case .swiper-button-prev,.code-products .swiper-button-prev {
        left: 0px;
        width: 40px;
        height: 40px;
    }
    .ny-factory .swiper-button-next,.sierac-company .swiper-button-next,.ny-cooper .swiper-button-next,.research-box5 .swiper-button-next,.digital-case .swiper-button-next,.code-products .swiper-button-next {
        right: 0px;
        width: 40px;
        height: 40px;
    }
}
/*企业实力*/
.ny-honor .par-tab{
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin: 25px 0px;
}
.ny-honor .par-tab li a{
    padding: 12px 60px;
    margin-right: 10px;  
    background: #fff;
    border-radius: 35px;   
    font-size: 18px;
    display: block;
    transition: all 0.6s;
}
.ny-honor .par-tab li.active a,.ny-honor .par-tab li a:hover{
    color: #fff;
    background: #00278b;
}
@media (max-width:992px){
    .ny-honor .par-tab li a{          
        font-size: 16px;
        padding: 5px 15px;
    }
}
/*荣誉资质*/
.honor {
    background: url(../img/honor-topbg.jpg) no-repeat center; 
}
#certify{
    position: relative;    
    margin: 0px auto;
}
#certify  .swiper-slide {
    width: 680px;
}
@media (max-width:1600px){
    #certify  .swiper-slide {
        width: 580px;
    }
}
#certify  .swiper-slide img{
    display:block;
}
#certify  .swiper-slide .honor-img{
    font-size: 20px;
    text-align: center;
    line-height: 2.0;
}
#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 -45px;
    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 -92px;
    background-size: 100%;
}
#certify .swiper-button-next:hover {
    background-position: 0 -137px;
    background-size: 100%
}
@media (max-width:992px){
    #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)}    
}
/* 荣誉证书 */
.ny-honor .g-zz-con {
  display: flex;
  flex-wrap: wrap; 
}
.ny-honor .g-zz-con .g-zz-items {
  width: 20%;
  border: 1px solid #e5e5e5;
  margin-right: -1px;
}
.ny-honor .g-zz-con .g-zz-items div:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ny-honor .g-zz-con .g-zz-items div:nth-child(1) p {
  height: 341px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ny-honor .g-zz-con .g-zz-items div:nth-child(1) p img {
  max-width: 85%;
  max-height: 85%;
  width: auto;
  transition: all 0.6s;
  cursor: pointer;
}
.ny-honor .g-zz-con .g-zz-items div:nth-child(2) {
  font-size: 16px;
  border-top: 1px dashed #e5e5e5;
  text-align: center;
  color: #333333;
  padding: 17.5px 10px;
  transition: all 0.3s;
}
.ny-honor .g-zz-con .g-zz-items:hover div:nth-child(1) p img {
  transform: scale(1.04);
}
.ny-honor .g-zz-con .g-zz-items:hover div:nth-child(2) {
  color: #ea0b2a;
}
/*云展厅*/
.ny-show .tit-info{
    text-align: center;
    font-size: 40px;
}
.ny-show .show-hall{
    padding: 3% 20%;
    background: url(../img/hall.jpg) no-repeat top center;
    background-size: contain;
    margin-top: 60px;
}
.ny-show .ny-title {
    margin-bottom: 0px;
}
.ny-show .show-video,.about .about-video{
   background: url(../img/video-bg.jpg) no-repeat top center;
   background-size: cover; 
   color: #fff;
   font-size: 48px;
   text-align: center;
   padding: 10% 2%;
   height: 100vh;
   position: relative;
}
.about .about-video{
    background: url(../img/about-video.jpg) no-repeat top center;
    background-size: cover;
    height: 75vh;
}
.ny-show .show-video .play-btn,.about .about-video .play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    color: #fff;
}
.ny-show .show-video .play-btn img,.about .about-video .play-btn img{
    width: auto;
    max-width: 100%;
}
.ny-show .show-video i{
    font-size: 200px;
    font-weight: 100;
}
/*展厅服务和优势*/
.ny-show .show-con h5{
    font-size: 38px;
    margin-bottom: 50px;
}
.ny-show .show-con h5 strong{
    font-size: 50px;
    margin-bottom: 30px;
    display: block;
}
.ny-show .show-con ul{
    font-size: 29px;
    color: #1d2088;
    margin-left: 10px;
    border-left: 1px solid #7e7e7e;
}
.ny-show .show-con ul li{
    line-height: 2.0;
    margin: 25px 0px;
    padding-left: 30px;
    display: block;
    position: relative;
}
.ny-show .show-con ul li:before{
    content: "●";
    color: #1d2088;
    position: absolute;
    left: -10px;
    top: 50%;
    margin-top: -30px;
}
/* 欢迎申请参观体验 */
.l-form {
  background: url(../img/apply.jpg) no-repeat;
  background-size: cover;
  padding: 108px 0;
  margin-bottom: -1px;
}
.l-form .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 65px 20px 60px 20px;
}

.l-form .container-fluid .l-form-md h4 {
  font-size: 85px;
  letter-spacing: 1px;
  font-weight: 900;
  color: #1d2088; 
}
.l-form .container-fluid .l-form-rt div {
  width: 200px;
  height: 70px;
  background-color: #1d2088;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  border-radius: 5px;
  transition: all 0.3s;
  color: #ffffff;
  position: relative;
  cursor: pointer;
}
.l-form .container-fluid .l-form-rt div:hover {
  box-shadow: 1px 1px 10px #1d2088;
  transform: translateX(7px);
}
/*打造文化*/
.team-dazao .dazao-info{
    width: 70%;
    text-align: justify;
    margin: 0px auto;
}
.team-dazao .dazao-info img{
    margin-top: 50px;
}
/*组织结构*/
.team-organization{
    background: url(../img/organization.jpg) no-repeat center;
    background-size: cover;
}
.team-organization .organization-info{
    padding: 0% 5%;
    text-align: center;
}
/*人才团队*/
.team-list{
    overflow: hidden;
    position: relative;    
}
.team-list li{
    width: 100%;
    margin: 80px 0px;
    padding: 3% 5%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    background: url(../img/team-bg.jpg) no-repeat center;
}
.team-list .team-img{
    width: 50%;
    box-shadow: rgba(0, 0, 0, 0.25) 2px 5px 16px;
}
.team-list .team-img img{
    width: 100%;
}
.team-list .team-con{ 
    font-size: 22px;
    width: 50%;
    padding: 1% 0% 0px 5%;
}
.team-list .team-con h5{
    font-size: 50px;
    margin-bottom: 6%;
    font-weight: 600;    
}
.team-num{
    margin-top: 6%;
    font-size: 36px;
    color: #1d2088;
    position: relative;
}
.team-num:before{
    content: "——";
}
.team-num span{
    font-size: 85px;
    font-weight: 600;
}
.team-num sup{
    top: -1.0em;
}
@media(max-width:992px){
    .ny-show .tit-info {
        font-size: 16px;
    }
    .ny-show .show-hall {
        padding: 3% 10%;
        margin-top: 20px;
    }
    .team-dazao .dazao-info {
        width: 100%;
    }
    .ny-show .show-video,.about .about-video{       
       font-size: 18px;       
       padding: 10% 2%;
       height: 30vh;
    }
    .about .about-video{
        background: url(../img/about-video.jpg) no-repeat top center;
        height: 35vh;
    }
    .ny-show .show-video .play-btn, .about .about-video .play-btn{
        width: 47%;
        white-space: normal;
    }
    .ny-show .show-video .play-btn img, .about .about-video .play-btn img{
        width: 70px;
    }
    .ny-show .show-con h5 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .ny-show .show-con h5 strong{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .ny-show .show-con ul {
        font-size: 14px;
        margin-left: 10px;
    }
    .ny-show .show-con ul li{
        margin: 10px 0px;
        padding-left: 20px;
    }
    .ny-show .show-con ul li:before {        
        left: -7px;      
        font-size: 20px;
        margin-top: -20px;
    }
    .ny-honor .g-zz-con .g-zz-items {
        width: 50%;
    }
    .ny-honor .g-zz-con .g-zz-items div:nth-child(2) {
        font-size: 14px;
    }
    .team-list li {
        width: 100%
        margin: 20px 0px;
        padding: 8% 5%;
    }
    .team-list .team-img,.team-list .team-con{
        width: 100%; 
        padding: 0px 0px;
        font-size: 14px;
    }
    .team-list .team-con h5{
        font-size: 16px;       
        margin-bottom: 5px;
        margin-top: 15px;
    }
    .team-num {
        font-size: 22px;
    }
    .team-num span {
        font-size: 36px;
    }
    .l-form{
        padding: 30px 15px;
    }
    .l-form .container-fluid {   
        padding: 30px 20px 30px 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .l-form .container-fluid .l-form-lf img{
        height: 45px;
    }
    .l-form .container-fluid .l-form-md h4 {
        font-size: 22px;
    }
    .l-form .container-fluid .l-form-rt div{
        width: 115px;
        height: 35px;
        font-size: 16px;
    }
}
/*内页案例*/
.ny-case,.ny-solution,.ny-cooper{
    background-color: #f7fafe;
}
.ny-case .case-list {    
    margin-bottom: 30px; 
    transition: all 0.4s;    
}
.ny-case .case-list .case-img,.digital-case .case-list .case-img{
    overflow: hidden;
}
.ny-case .case-list .case-img img,.digital-case .case-list .case-img img{
    width:100%;    
    transition: all 0.4s;
}
.ny-case .case-list .case-content{
    padding: 15px 20px;
    background: #fff;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.ny-case .case-list .case-content h5{ 
    font-weight: 500;
    text-overflow: ellipsis;
    font-size: 25px;
    white-space: nowrap;
    overflow: hidden;        
}
.ny-case .case-list .case-content p{
    padding: 15px 0px;
}
.ny-case .case-list:hover .case-content {
   background: #1d2088;
   color: #fff;
}
/*视频*/
.video-img{
    position: relative;    
    overflow: hidden;
    height: 330px;    
    transition: all 0.4s;
}
.video-img div:nth-child(1){
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}
.video-img div:nth-child(2) {
    width: 100%;
    height: 100%;
}
.video-img div:nth-child(2) video {
    width: 100%;
    height: 100%;
}
.video-img div:nth-child(1) p {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    transition: all 0.6s;
}
.video-img div:nth-child(1) img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.video-img-con img{
    max-width: 100%;
    height: auto;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.case-list:hover {
  box-shadow: 0px 0px 12px 1px rgba(42, 42, 42, 0.1);
}
.case-list:hover .video-img div:nth-child(1) p,.ny-case .case-list:hover .case-img img {
  transform: scale(1.05);
}
@media (max-width:991px){      
    .ny-case .case-list {
        margin: 10px 0px;
        padding-bottom: 10px;
    }
    .ny-case .case-list .case-img{
        padding-right:0;
        margin-top: 30px;
    }
    .ny-case .case-list .case-content h5{
        width:100%;
        font-size: 16px;
        margin-bottom: 0px;
    }
    .ny-case .case-list .case-title span{
        display: block;
        width:100%;
        text-align: left;
    }
    .ny-case .case-list .case-intro{
        width:100%;
        font-size: 13px;
    }   
}
/*案例详情*/
.case-info-tit{
    background-color: #1d2088;
    padding: 50px;
    color: #fff;
    position: relative;
    margin-top: -10%;
}
.case-info-tit h5{
    font-size: 60px;
}
.case-info-tit h5 span{
    font-size: 30px;
    display: block;
}
.case-info-tit ul{
    margin: 20px 0px 0px;
    display: flex;
    justify-content: flex-start;
}
.case-info-tit ul li a{
    background: #3f419a;
    color: #fff;
    font-size: 24px;
    padding: 4px 20px;
    margin-right: 10px;
    display: block;
}
/*以上为标题*/
.case-info{ 
    padding-bottom: 30px;
    background: #fff;
}
.case-info img{
    width:100%;
    margin: 0px 0px 65px;
}
.case-info h5,.case-info h5.case-tit{
   font-size: 45px;
   margin: 45px 0px;
   padding-bottom: 25px;
   background: url(../img/case-tit.png) no-repeat left bottom;
}
.case-info .case-info-list{
    padding: 50px 0px 100px;
    background: #f7fafe;
}
.case-info .case-info-list ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.case-info .case-info-list ul li{
    width: 49%;
    margin: 10px 0px;
}
.case-info .case-info-list ul li p strong{
    font-size: 30px;
    margin-top: 15px;
}
/*配套系统*/
.case-info .case-system .system-img img{
    margin: 0px 0px;
}
.case-info .case-system .system-content{
    background: #f7fafe;
    padding: 20px 20px;
}
.case-info .case-system .system-content h5{
    font-size: 26px;
    font-weight: bolder;
    text-transform: uppercase;
    display: block;    
    padding-bottom: 0px;
    margin: 5px 0px;
    background: transparent;
}
@media (max-width:991px){ 
    .case-info-tit{
        padding: 15px;
    }
    .case-info-tit h5 {
        font-size: 22px;
    }
    .case-info-tit h5 span {
        font-size: 16px;
    }
    .case-info-tit ul li a{
        font-size: 14px; 
    }
    .case-info h5, .case-info h5.case-tit {
        font-size: 20px;
        margin: 15px 0px;
        padding-bottom: 15px;
        background-size: auto 5px;
    }
    .case-info .case-info-list ul li p strong {
        font-size: 16px;
    }
}
/*解决方案*/
.ny-solution .solution-list{
    margin-bottom: 40px;
    transition: all 0.6s;
}
.ny-solution .solution-list .solution-con{
    padding: 20px 25px 15px 0px;
}
.ny-solution .solution-list .solution-tit{
    font-size: 34px;
}
.ny-solution .solution-list .solution-desc{
    font-size: 20px;
    margin: 20px 0px 60px;
}
.ny-solution .solution-list .more{
    font-size: 22px;
    color: #fff;
    border-radius: 5px;
    padding: 5px 15px;
    background-color: #1d2082;
}
.ny-solution .solution-list:hover{
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 2px 2px 12px 0 rgb(0 0 0 / 20%);
}
@media (max-width:991px){ 
    .ny-solution .solution-list .solution-con {
        padding: 10px 15px 15px 0px;
    }
    .ny-solution .solution-list .solution-tit {
        font-size: 16px;
    }
    .ny-solution .solution-list .solution-desc,.ny-solution .solution-list .more{
        font-size: 14px;
        margin: 10px 0px 10px;
    }

}
/*合作伙伴*/
.ny-cooper .cooper-img{
    text-align: center;
    margin-bottom: 50px;
}
/*产品分类页面*/
.product-nav .product-navinfo,.digital-nav .product-navinfo{
    text-align: center;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 25px;
}
.product-nav ul {    
    margin: 20px 0px 20px 0px;
    display: flex;
    padding: 30px 30px;
    background: #ebeffd;    
}
.product-nav .nav-img{
    width: 42%;
    padding-right: 3%;
}
.product-nav .nav-con{
    width: 58%;
}
.product-nav .nav-img img{
    width:100%;
    padding: 5px 5px;
    background-color: #fff;
}
.product-nav .nav-desc{ 
    font-size: 20px;    
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-nav .nav-title{ 
    font-size: 32px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 5px;
}
@media (max-width:991px){      
    .product-nav .product-navinfo, .digital-nav .product-navinfo{
        font-size: 20px;
    }
    .product-nav ul {
       padding: 10px 10px;    
    }
    .product-nav .nav-title {
        font-size: 16px;
    }
    .product-nav .nav-desc{ 
        font-size: 12px; 
    }
}
/*二级分类*/
.ny-menu ul{
    display: flex;
    background-color: #f7fafe;
    justify-content: center;
}
.ny-menu ul li{
    width: 25%;
}
.ny-menu ul li a{    
    font-size: 30px;
    font-weight: 500;    
    padding: 10px 30px;
    text-align: center;  
    transition: .6s;
    display: block;
    position: relative;  
}
.ny-menu ul li.active a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #00278b;
}
.ny-menu ul li.active a,.ny-menu ul li a:hover{    
    color: #fff;
    background-color: #00278b;
}
@media (max-width:992px){ 
    .ny-menu{
        display: none;
    }
}
/*产品类别*/
.ny-comm .comm-left .cstlayer{
    font-size: 26px;
    color: #fff;
    line-height: 1.2;
    padding: 15px 20px;
    background: #1d2088;
    border-top-right-radius: 15px;
    overflow: hidden;
}
.comm-left .ny-nav{    
    padding: 15px 20px;
    background: #f7f9fc;
    margin-bottom: 20px;
}
.comm-left .ny-nav ul.subnav{
    padding: 5px 0px 15px;
    display: none;
    margin: 0px 15px;
}
.comm-left .ny-nav li.active ul.subnav{
    display: block;
}
.comm-left .ny-nav li{
    width: 100%;
    display: block;
}
.comm-left .ny-nav li a{
    display: block;
    padding: 5px 10px 5px 10px;
    text-align: center;
    line-height: 1.3;
    font-size: 24px;
    font-weight: 400;   
    position: relative; 
}
.comm-left .ny-nav li.onenav{
    width: 100%;
    display: block;
}
.comm-left .ny-nav li.onenav a{
    display: block;
    padding: 5px 10px 5px 10px;
    background: #fff;    
    border-radius: 5px;
    text-align: left;
    margin-bottom: 8px;
    box-shadow: 1px 1px 8px 0 rgba(0,0,0,.05);
}
.comm-left .ny-nav li.active a.on,.comm-left .ny-nav li a:hover{
    color: #1d2088;
}
.comm-left .ny-nav ul.subnav li a{
    display: block;
    padding: 6px 10px 6px 15px;
    line-height: 1.3;
    font-size: 20px;   
    font-family: Times New Roman;
    background-color: transparent;
    border-bottom: 1px solid #edeff2;
    border-radius: 0px;
    margin-bottom: 2px;
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,.0); 
}

.comm-left .ny-nav ul.nonesub li a:hover,
.comm-left .comm-left .ny-nav ul.subnav li a:hover,.comm-left .ny-nav ul.subnav li a.subactive{
    color: #1d2088;
}

/*案例*/
.ny-case .cooper-title{
    padding-bottom: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #dcdcdc;
}
.ny-case .cooper-content{
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
}
.ny-case .cooper-content li{
    width: 19%;
    margin: 15px 0.5%;
}
.ny-case .cooper-content li h5{
    line-height: 1.4;   
    overflow: hidden;
    font-size: 14px;
    padding: 15px 0;
}
/*解决方案详情页*/
.ny-case .sol-img {
    position: relative;
    margin-bottom: 20px;
}
.ny-case .sol-img img{
    width: 100%;
}
.ny-case .sol-img .sol-title {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 30px;
    font-size: 30px;
    font-weight: bolder;
    color: #fff;
}
.ny-case .sol-img .sol-title::after {
    display: block;
    content: "";
    width: 60px;
    height: 2px;
    background: #f8b62b;
}

/*产品列表*/
.product-list{        
    position: relative;  
    background-size: 100%;
    transition: all 0.6s;
    margin-bottom: 30px;
    box-shadow: 1px 1px 6px 0 rgba(0,0,0,.2);    
}
.product-list .product-img{
    overflow: hidden;
}
.product-list .product-img img{
    width: 100%;
    transition: all 0.6s;
}
.product-list .pro-con{
    padding: 10px 20px;
    transition: all 0.6s;
    background-color: #1d2088;   
}
.product-list .pro-con h5{    
    font-size: 22px;
    text-align: center;    
    color: #fff;
    text-transform: uppercase;    
    transition: all 0.6s;   
}
.product-list .pro-con h5 span{
    display: block;
}
.product-list:hover{
    box-shadow: 1px 1px 6px 0 rgba(0,0,0,.3);
}
.product-list:hover .product-img img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
}
@media(max-width:992px){ 
    .product-list .pro-con h5{    
        font-size: 16px;
    }
}
/*手机版 栏目二级*/
.m-pro-nav{
    display: none;
}
.m-pro-nav .dropdown .btn{
    width:100%;
    padding:10px 0;
}
.m-pro-nav .dropdown .dropdown-menu{
    width:100%;
    padding:10px 20px;
    height:313px;
    overflow: auto;
}
.m-pro-nav .dropdown .dropdown-menu li{
    padding:8px 10px;
    border-bottom:1px solid #ddd;
}
@media (max-width:991px){
    .product-list .more {
        font-size: 14px;
    }   
    .ny-comm .comm-left{
        display: none;
    }
    .ny-comm .comm-right{
        width:100%;
        float: none;
        padding: 0px 0px;
        background: transparent;
    }
    .m-pro-nav{
        display: block;
        margin:0px 0px 20px;
    }    
    .ny-img .img-con {
        position: relative;
        width: 100%; 
    }
    .ny-comm-box .comm-right .pname {
        font-size: 20px;
    }
    .ny-pro-list .ny-pro-title {
        font-size: 14px;
        height: auto;
    }
}

/*产品展示详情 */
.product-optional ul{
    display: flex;
    justify-content: center;
}
.product-optional ul li{
    width: 18%;
    text-align: center;
    padding: 0px 10px;
}
.product-optional ul li img{
    height: 85px;
    width: auto;
    padding-left: 15px;
}
.product-optional ul li h5{
    display: block;
    padding: 28px 0px;
    font-weight: 600;
    color: #1c2b5e;
    font-size: 26px;
}
@media(max-width:992px){ 
    .product-optional ul li {
        width: 20%;
        padding: 0px 0px;
    }
    .product-optional ul li img {
        height: auto; 
        padding-left: 10px;
        padding-right: 5px;
    }
    .product-optional ul li h5 {
        padding: 10px 0px;       
        font-size: 12px;
    }
}
.product-offter{ 
    width: 90%;
    font-weight: bold;  
    margin: 30px auto;
    font-size: 32px;
    padding: 25px 45px 25px 150px;     
    position: relative;   
    background-size: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 20px;
    border-radius: 15px;
    position: relative;
}
.product-offter:before{
    content: "";
    position: absolute;
    left: -20px;
    top: -20px;
    width: 140px;
    height: 140px;
    background: url(../img/puls.png) no-repeat left center;
    background-size: 95% 100%;

}
.product-offter span{
    float: right;
}
.product-offter span i{
    border: 1px solid #49557e;
    padding: 2px 15px;    
    border-radius: 5px;
}
@media(max-width:992px){ 
    .product-offter{
        width: 100%;
        margin: 0px auto;
        font-size: 14px;
        padding: 25px 10px 25px 48px;
    }
    .product-offter span i {
        padding: 2px 10px;
    }
}
.ny-product .protitle{
   font-size: 60px;
   text-align: center;
   padding-bottom: 15px;   
   margin: 15px 0px;
}
.product-info-content {
    background: #fff;   
    padding: 10px 0px;
    font-size: 20px;
}
.product-info-content .slide-box {
    position: relative;
    padding: 0px 44px;
}
.product-info-content .pro-img{
    text-align: center;    
}
/*详情标题*/
.product-info-content .pro-title {
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 40px;
    border-bottom: 3px solid #dddddd;
    margin-top: 40px;
}
.product-info-content .pro-title strong {
    display: inline-block;
    background-color: #1d2088;
    color: #fff;
    font-weight: 300;
    padding: 9px 19px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
/*详情参数*/
.product-info-content table{
    margin: 10px 0px;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 8px 15px;
    font-size: 20px;
    line-height: 1.42857143;
    vertical-align: middle;
    border-top: 1px solid #ddd;
}
.product-info-content video{
    width: 80%;
    margin: 0px auto;
    height: 60vh;
}
/*详情性能优势*/
.product-info-content ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.product-info-content ul li{
    width: 25%;
    font-size: 22px;
    margin: 30px 3%;    
    box-shadow: 1px 5px 8px 0 rgb(0,0,0,0.2);
    background: olive linear-gradient(to bottom, #e7f2ff, #feffff);
    padding: 50px 30px;
    border-radius: 5px;
}
.product-info-content ul li h4{
    display: block;
    font-style: normal;
    padding: 30px 0px 50px;
    text-align: center;
    color: #1d2088;
    font-size: 28px;
    font-weight: bold;
}
.product-info-content ul li p span.num{
    display: inline-block;
    background: olive linear-gradient(to bottom, #2c4e9b, #77a5d0);
    margin: 0px auto;
    font-style: normal;
    padding: 4px 20px;
    border-radius: 100%;
    color: #fff;
    vertical-align: top;
    font-size: 40px;
    font-weight: bold;
}
/*应用范围*/
.product-info-content .applist{
    margin: 20px 0px;
}
.product-info-content .applist h3{
    padding: 10px 20px;
    background-color: #1d2088;
    font-size: 22px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.6s;
}
@media(max-width:992px){ 
    .product-info-content .pro-title {
        font-size: 16px;        
        margin-bottom: 20px;
        border-bottom: 2px solid #dddddd;
        margin-top: 20px;
    }
    .product-info-content{
        font-size: 14px;
    }
    .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
        padding: 8px 2px;
        font-size: 12px;
    }
    .product-info-content ul li{
        width: 100%;
        font-size: 14px;
        margin: 10px 3%;       
        padding: 20px 20px;
    }
    .product-info-content ul li h4{
        padding: 4px 14px;
        font-size: 20px;
    }
    .product-info-content ul li p span.num{
        padding: 20px 0px 20px;
        font-size: 20px;
    }
    .product-info-content .applist h3{
        font-size: 14px;
    }
    .product-info-content .applist {
        margin: 10px 0px;
    }
}

/*相关下载*/
.downlist ul li{
    font-size: 14px;
    line-height: 4;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f7f7f7;
}
.downlist ul li::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 10px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: transparent;
    border: 2px solid #dcdcdc;
}
/*上一页下一页*/
.pre-next{
    font-size: 26px;
    line-height: 42px;
    margin: 30px -15px;
}
.pre-next span{
    font-weight: bold;
}
.pre-next i{
    font-size: 32px;
}
.product_back{
    padding: 30px 0px;
    text-align: center;
}
.product_back a{
    background: #1d2088;
    color: #fff;
    font-size: 24px;
    padding: 8px 25px;
}
@media(max-width:991px){
    .pre-next {
        font-size: 16px;
        line-height: 24px;
    }
    .pre-next .text-right{
        text-align: left;
    }
    .product_back a{
        font-size: 16px;
        padding: 6px 16px;
    }
}
/*相关案例*/
.ny-case.related_case{
    background: #fff;
}
.ny-case.related_case .box-content{
    padding: 20px 50px;
}
.ny-case.related_case .box-content .case-swiper{
    padding-bottom: 20px;
}
.ny-case.related_case .case-list .case-content{
    background: #1d2088;
    color: #fff;
}
.related-title{
    font-size: 30px;
    line-height: 1;   
    text-transform: uppercase;    
    margin-bottom: 20px;
    border-bottom: 3px solid #dddddd;
    margin-top: 20px;
}
.related-title span{
    display: inline-block;
    background-color: #1d2088;
    color: #fff;
    padding: 7px 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
@media(max-width:512px){
    .related-title{
        font-size: 14px;
    }
}
.related_contact ul{
    padding: 0px 15px;
    margin-bottom: 50px;
}
.related_contact ul li{
    font-size: 21px;
    margin: 5px 0px;
}
.related_contact ul li.red{
    color: #d9170d;
}
@media(max-width:992px){
    .related_contact ul li {
        font-size: 14px;
    }
}
/* 新闻 一行几个 */
.ny-news .news-list{    
    background-color: #fff;
    border-top-left-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.6s;
}
.ny-news .news-list .news-img {
    overflow: hidden;
    position: relative;
}
.ny-news .news-list .news-img img{
    width:100%;
    transition: 0.5s;
}
.ny-news .news-list .news-content{    
    border: 1px solid #e5e5e5;
    padding: 20px;
    font-size: 16px;    
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.ny-news .news-list .news-img .news-title{    
    position: absolute;
    bottom: 0px;
    background: rgba(29,32,136,0.8);
    padding: 20px 20px;
    width: 100%;
    color: #fff;
    font-size: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; 
}
.ny-news .news-list .news-content .news-time{  
    font-size: 20px;
    margin: 0px 0px 10px;
}
.ny-news .news-list .news-content .news-intro{
    line-height: 25px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ny-news .news-list .news-content i{
    margin: 0px 0px;
    font-size: 40px;
    font-style: normal;
    color: #1d2088;
    font-weight: lighter;
}
.ny-news .news-list:hover{
    background: url(../img/dot-b.png) no-repeat right 95px center #f8f8f8;
    box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 26px;
}
.ny-news .news-list:hover .news-img img{
    transform: scale(1.1);
}
@media (max-width:991px){
    .ny-news .news-list .news-img{
        padding-right:0;
    }
    .ny-news .news-list .news-img .news-title{
        font-size: 18px;
    }
    .ny-news .news-list .news-content .news-title span{
        display: block;
        width:100%;
        text-align: left;
    }
    .ny-news .news-list .news-content .news-intro{
        width:100%;
    }
    .ny-news .news-list .news-content{
        font-size: 14px;
    }
}
/*行业新闻和技术分享*/
.ny-news .ny-news-list { 
    margin-bottom: 45px;
    background: url(../img/dot-g.png) no-repeat right 95px center #fff;
    border-radius: 20px;
    padding: 40px 60px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.ny-news .ny-news-list .ny-news-img {
    overflow: hidden;
}
.ny-news .ny-news-list .ny-news-img img{
    width:100%;
    transition: 0.5s;
}
.ny-news .ny-news-list .ny-news-content{    
    width: 70%;
    font-size: 16px;
    margin-left: 5%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.ny-news .ny-news-list .ny-news-content .ny-news-title{    
    margin: 25px 0px;
    font-size: 26px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; 
}
.ny-news .ny-news-list .ny-news-content .ny-news-time{  
    font-size: 20px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 25px 0px;
}
.ny-news .ny-news-list .ny-news-content .ny-news-intro{
    line-height: 25px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ny-news .ny-news-list:hover{
    background: url(../img/dot-b.png) no-repeat right 95px center #f8f8f8;
    box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 26px;
}
.ny-news .ny-news-list:hover .ny-news-img img{
    transform: scale(1.1);
}
@media (max-width:991px){
    
    .ny-news .ny-news-list {
        padding: 15px 15px;
        margin-bottom: 20px;
        background: url(../img/dot-g.png) no-repeat right 30px center #fff;
        background-size: 30px;
    }
    .ny-news .ny-news-list:hover{
        background: url(../img/dot-b.png) no-repeat right 30px center #f8f8f8;
        background-size: 30px;
    }
    .ny-news .ny-news-list .ny-news-content .ny-news-title{
        width:100%;
        font-size: 16px;
        margin: 0px 0px;
    }
    .ny-news .ny-news-list .ny-news-content .ny-news-time{
        font-size: 14px;
        margin: 5px 0px;
    }
    .ny-news .ny-news-list .ny-news-content .ny-news-intro{
        display: none;
    }
    .ny-news .ny-news-list .ny-news-content{
        padding: 0px 0px;
        margin-left: 0%;
    }
}
/* 新闻详情页 */
.ny-news-info{
    padding: 0px 0px;
    width: 80%;
    background-color: #fff;
    margin: 0px auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ny-news-info .news-info-title{   
    padding-bottom: 16px;   
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 35px;
}
.ny-news-info .news-info-title p{
    font-size: 2.4rem;    
    font-weight: bold; 
}
.ny-news-info .news-info-title .date {
    color: #403c3e;
    font-size: 20px;
    font-weight: 100;
    display: inline-block;
    padding: 2px 10px;    
}
.ny-news-info .news-info-content{
    margin-bottom: 30px;
}
.news-info-content img{
    max-width: 100%;
    width: auto;
    margin: 0px 0px;
}
.ny-news-info .news-info-content p{
	margin: 0px 0px;
}
.ny-news-info .theme-main{
    width: 70%;
}
.ny-news-info .news-right{
    width: 25%;
}
/*右侧二维码*/
.news-er{
    display: inline-block;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.1;
    box-shadow: 0px 0px 10px 0px rgb(33 24 21 / 30%);
    margin-bottom: 50px;
}
.news-er img{
    width: 80px;
    margin-bottom: 10px;
}
/*右侧推荐文章*/
.news-tj{
    box-shadow: 0px 0px 10px 0px rgb(33 24 21 / 30%);
    margin-bottom: 50px;
    padding: 20px;
}
.news-tj h3{
    margin-bottom: 15px;
}
.news-tj li{
    margin-bottom: 10px;
}
.news-tj .news-tj-date,.news-tj .news-tj-title,.news-tj .product-title{
    font-size: 16px;
    color: #6d6d6d;
}
.news-tj .product-title{
    text-align: center;
    margin-top: 10px;
}
@media (max-width:991px){
    .ny-news-info{
        padding:0px 0;
        width: 100%;
    }
    .ny-news-info .news-info-title p{
        font-size: 16px;
    }
    .ny-news-info .theme-main,.ny-news-info .news-right{
        width: 100%;
    }
}

/*技术实力*/
.ny-faq ul li{
    margin-bottom: 15px;
}
.ny-faq .faq-title{
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}
.ny-faq .faq-title:after {
    content: "";
    display: block;
    background: #1d2674;
    width: 40px;
    height: 2px;
    transition: all 0.6s;
    margin: 5px 0px;
}
.ny-faq .faq-desc{
    font-size: 16px;    
}

@media(max-width:767px){
    .ny-faq .faq-title{
        font-size: 14px;
    }
    .ny-faq .faq-desc {
        font-size: 12px;       
        padding-left: 0px;
    }    
}

/* 联系我们 */
.contact .contact-title{
    font-size: 20px;
    font-weight: bold;
}
.contact ul li{ 
    line-height: 1.2;
    font-size: 16px;
    text-align: center;
    margin: 80px 0px;
}
.contact ul li span{
    font-size: 48px;
    display: inline-block;
    width: 130px;
    color: #079a3e;
    height: 130px;
    background: #fff;
    line-height: 130px;
    border-radius: 100%;
    margin-bottom: 20px;
}
.contact .cimg{
    margin-top: -10px;
    width: 80px;
    background: #fff;
} 
.map{
    border: 1px solid #efefef;
    padding: 5px;
    margin-top: 30px;
    background: #fff;
}
.map img{
    width: auto;
    max-width: none;
}
.BMap_stdMpCtrl, .BMapLabel, .BMap_omCtrl{
    display: none !important;
}
/* 在线留言 */
.message {
    background: #fff;
    padding: 20px 70px;
    font-size: 16px;
}
.message red{
    color: #ff0000;
}
.message .msg-title{
    font-size: 60px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px;
}
.form-control{
    height:40px;
    border-radius: 0px;    
    border: 1px solid #949494;
    margin-top: 5px;
    margin-bottom: 15px;
}
.form-type{
    margin-top: 5px;
    margin-bottom: 15px;
}
.form-control1{
    height:100px !important;   
}
.message .msg-btn{
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    border:none;
    border-radius: 1px;
    background-color: #00278b;
}
/* 搜索页面 */
.ny-search .ny-search-box {
    margin-top: 50px;
}

@media(max-width:767px){
    .contact .contact-title p {
        font-size: 20px;  
    }
    .message{
        margin-top: 20px;
    }
}
/*数字化首页*/
.digital-nav .ny-comm{
    padding-bottom: 0px;
}
.digital-nav .digital-navlist{   
    background: #f4f8fe;
    position: relative;    
}
.digital-nav .digital-navlist ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;    
    flex-direction: row-reverse;
}
.digital-nav .digital-navlist ul li{
    width: 50%;
    margin: 0px 0px;
}
.digital-nav .digital-navlist:nth-child(2n+1) {
    background: #fff;    
}
.digital-nav .digital-navlist:nth-child(2n+1) ul{
    flex-direction: row;
}
.digital-nav ul li.nav-con{
    padding: 3% 3%;
    font-size: 26px;
}
.digital-nav ul li.nav-con .nav-title,.digital-nav .digital-navlist .digital-cover .nav-title{
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}
.digital-nav .digital-navlist .digital-cover .nav-title{
    font-size: 80px;
}
.digital-nav ul li.nav-con .t-more,.digital-nav .digital-navlist .digital-cover .t-more{
    position: relative;
    display: inline-block;    
    line-height: 30px;
    font-size: 26px;
    font-weight: 500;
    overflow: hidden;
    color: #fff;
    padding: 5px 25px;
    background: #00a3f5;
    border-radius: 6px;
    margin-top: 25px;
    transition: all 0.3s ease-in-out;
}
.digital-nav .digital-navlist .digital-cover .t-more{
    font-size: 34px;
    padding: 10px 25px;
}
.digital-nav ul li.nav-con:hover .t-more{
    padding-left: 30px;
}
.digital-nav .digital-navlist .digital-cover{   
    background: rgba(26,32,136,0.7);
    position: relative;
    width: 100%;
    height: 100%;
    top: 0px;
    color: #fff;
    text-align: center;
    opacity: 0.0;
    bottom: -100%;
    position: absolute;
    transition: all 0.3s ease-in-out;
}
.digital-nav .digital-navlist .digital-cover .cover-con{
    position: relative;
    top: 25%;
}
.digital-nav .digital-navlist:hover .digital-cover{   
    opacity: 1.0;
    bottom: 0px;
}
@media (max-width:991px){
    .digital-nav .digital-navlist ul{
        padding-top: 3%;
    } 
    .digital-nav .digital-navlist ul li{
        width: 100%;
    }
    .digital-nav ul li.nav-con {
        padding: 3% 3%;
        font-size: 14px;
    }
    .digital-nav ul li.nav-con .nav-title,.digital-nav .digital-navlist .digital-cover .nav-title{
        font-size: 16px;
    }
    .digital-nav ul li.nav-con .t-more,.digital-nav .digital-navlist .digital-cover .t-more{
        font-size: 14px;
        line-height: 22px;
        margin-top: 10px;
        padding: 5px 25px;
    }
}
/*数字化MOM*/
.digital-mom h5{
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.digital-mom a,.digital-mom strong{
    color: #2b73d9;
}
.digital-mom img{
    width: 100%;
    max-width: none;
}
.digital-mom.code-top1{
    width: 80%;
    margin: 0px auto;
}
.digital-mom .play-btn a{
    background: #1d2088;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    padding: 4px 15px;
    border-radius: 5px;
    margin-top: 25px;
}
.digital-why{
    background: url(../img/MOM-why.jpg) no-repeat center;
    background-size: cover;
    color: #fff;
}
.digital-why h5{
    font-size: 42px;
    margin-bottom: 20px;
}
.digital-why em,.digital-role em{
    font-style: normal;
    font-size: 24px;
}
.digital-why ul{
    padding-left: 25px;
    width: 80%;
}
/*数字化页面导航*/
.digital-menu{
    background: #ececec;
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 9;
}
.digital-menu ul{
    display: flex;
    justify-content: space-between;
}
.digital-menu ul li a{
    display: block;
    padding: 15px 25px;
}
.digital-menu ul li a:hover,.digital-menu ul li.cn-active a {
    background: #1d2088;
    color: #fff;
}
.detection-ban{
    text-align: center;
}
/*角色协同*/
.digital-role,.digital-function,.digital-cost{
    background: #ebf2fb;
}
.digital-role .ny-title strong{
    color: #2b53b1;
}
/*经济效益*/
.digital-economic .economic-img{
    margin-bottom: 30px;
}
.digital-economic .economic-img img:last-child{
    display: none;
}
.digital-economic .economic-img:hover img:last-child{
    display: block;
}
.digital-economic .economic-img:hover img:first-child{
    display: none;
}
/*功能特点*/
.digital-function .gallery-thumbs {
    width: 100%;
    overflow: hidden;
}
.digital-function .gallery-thumbs .swiper-slide {
    width: 100%;
    opacity: 1.0;  
    display: block;
    padding: 2.6% 2.5%;   
    line-height: 2.0;
    font-size: 28px;   
    position: relative; 
    transition: all .5s;
    cursor: pointer;
    border-bottom: 2px solid #eaeef2;
}
/*.digital-function .gallery-thumbs .swiper-slide-thumb-active:before{
    content: "⭕";
    color: #fff;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 30px;
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 40%;
}*/
.digital-function .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1.0;
    font-size: 32px;
    color: #404dff;
    font-weight: 600; 
}
.digital-function .overview{    
    z-index: 99;
    position: relative;
    padding: 2% 0%;
}
.digital-function .overview ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.digital-function .overview ul li{
    padding: 5px 8px;
    border-radius: 5px;
    margin: 6px 8px;
    background: #fff;
    font-weight: 600;
    box-shadow: 2px 2px 10px 0 rgb(0 0 0 / 25%);
}

@media(max-width:992px){     
    .digital-function .gallery-thumbs .swiper-slide{
        font-size: 14px;
    } 
        
}
.digital-cost .swiper-slide {
    background: #d8dfe8;
    border-radius: 5px;
    overflow: hidden;
}
.digital-cost .cost-list h5{
    font-size: 34px;
    padding: 40px 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.digital-cost .cost-list:hover h5{
    background: #555ebb;
    color: #fff;
}
/*AIOps*/
.digital-AIOpsld {
    position: relative;
}
.digital-AIOpsld .left-img{
    width: 54%;
}
.digital-AIOpsld .right-img{
    position: absolute;
    width: 54.5%;
    right: 0px;
    top: 0px;
}
.digital-AIOpsld .mid-img{
    position: absolute;
    width: 10%;    
    left: 50%;
    top: 49.75%;
    z-index: 2;
    transform:translate(-50%,-50%)
}
/*AIOps功能特点*/
.AIOps-function{
    background: #fff;
}
.function-box{
    background: #20222a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 10px 0 rgb(0 0 0 / 25%);
}
.digital-function .function-box .gallery-thumbs{
    margin: 60px 0px 60px 0px;
    width: calc(100% + 30px);
}
.digital-function .function-box .gallery-thumbs .swiper-slide {    
    text-align: center;
    color: #fff;
    border-bottom: 0px solid #eaeef2;
}
.digital-function .function-box .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1.0;
    font-size: 36px;
    background: #3476f8;
    font-weight: 600; 
}
.function-box .gallery-top{
    background: #f0f5fc;
}
.function-box .gallery-top .swiper-slide{
    padding: 50px 50px;
}
/*智能运维三大优势*/
.digital-performance,.digital-value{
    background: #eaf2fb;
}
.digital-performanceList ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    padding: 50px 0px;
}
.digital-performanceList ul:nth-child(2n+1){
    flex-direction: row;
}
.digital-performanceList ul li {
    width: 50%;
    margin: 0px 0px;
}
.digital-performanceList .performance-desc,.codeService .codeSer-desc{
    padding: 5%;
}
.digital-performanceList .performance-desc h5,.codeService .codeSer-desc h5{
    font-size: 42px;
    color: #304a9d;
}
.digital-performanceList .performance-desc h5:after,.codeService .codeSer-desc h5:after{
    content: "";
    display: block;
    margin: 10px 0px 20px;
    width: 190px;
    height: 5px;
    background: #2b73d9;
}
.digital-performanceList .performance-desc p em,.codeService .codeSer-desc p em{
    font-size: 34px;
    font-style: normal;
}
.digital-performanceList .performance-desc ul li{
   font-size: 26px;
   color: #00b700; 
   margin: 10px 0px;
   padding-left: 50px;
   background: url(../img/dui.png) no-repeat left center;
}
.digital-performanceList .performance-desc ul.w100 li{
    width: 100%;
}
.digital-performanceList .performance-desc ul li p strong{
    display: block;
    font-size: 20px;
    font-weight: normal;
    color: #2b2b2b;
}
/*应用价值*/
.digital-value .value-list{
    background: #fff;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.digital-value .value-list h5{
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 30px;
}
.digital-value .value-list li.value-con{
    width: 40%;
    font-size: 26px;
    line-height: 1.9;
}
.digital-value .value-list li.value-img{
    width: 55%;
}
.digital-value .btn-num{
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 20%;
    padding: 15px 0px;
}
.digital-value .btn-num .swiper-pagination-fraction,.code-products .swiper-pagination{
    bottom: 0px;
}
/*效果对比*/
.digital-contrast{
    background: url(../img/contrast.jpg) no-repeat center bottom;
    background-size: 100%;
}
.digital-contrast ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
}
.digital-contrast ul li{
    width: 25%;
    font-size: 20px;
    padding: 5% 2%;
    text-align: center;
    transition: all 0.4s linear;
}
.digital-contrast ul li .contrast-img img{
    max-width: 110px;
}
.digital-contrast ul li .contrast-numimg img{
    max-width: 195px;
}
.digital-contrast ul li h5{
    font-size: 28px;
    color: #1d2088;
    margin: 20px 0px;
}
/*二维码追溯*/
.code-products{
    background: #f5f9fe;
}
.code-yuan{
    background: url(../img/code-yuan.jpg) no-repeat center;
    background-size: cover;
}
.code-way ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
}
.code-way ul li{
    width: 25%;
    font-size: 20px;
    position: relative;    
    text-align: center;
    transition: all 0.4s linear;
}
.code-way ul li .way-img{
    overflow: hidden;
}
.code-way ul li .way-img img {
    width: 100%;
    transition: all 0.6s;
}
.code-way ul li:hover .way-img img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.code-way ul li .way-con{
    position: absolute;
    bottom: 0px;
    width: 100%;
    color: #fff;
    padding: 30px 30px;
    background: rgba(29,32,136,0.8)
}
.code-way ul li .way-con h5{
    font-size: 36px;
    margin: 20px 0px;
}
/*数字化服务*/
.codeService{
    padding-top: 0px;
}
.codeService .codeServiceList{
    background: #fff;
    padding: 50px 0px;
}
.codeServiceList:nth-child(2n){
    background: #edf4fc;
}
.codeService .codeServiceList ul{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;  
}
.codeService .codeServiceList:nth-child(2n) ul {
    flex-direction: row-reverse;
} 
.codeService ul li.codeSer-img {
    width: 40%;
    margin: 0px 0px;
}
.codeService ul li.codeSer-con {
    width: 60%;
    margin: 0px 0px;
}
.codeService ul li.codeSer-con .codeSer-desc img{
    margin-top: 15px;
}
/*工业视觉检测*/
.digital-mom .whatcon{
    padding: 50px;
    position: absolute;
    top: 0px;    
}
.digital-mom .whatcon h5{
    color: #1d2088;
    font-size: 30px;
}
.digital-mom .whatcon ul{
    margin-left: 10px;
    font-size: 18px;
}
/*对比*/
.duibi-title{
    position: relative;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;    
}
.duibi-title .title-left{
    background: url(../img/vs-left.jpg) no-repeat center;
    background-size: cover;
    width: 50%;
    float: left;
    padding: 50px 10px;
}
.duibi-title .title-right{
    background: url(../img/vs-right.jpg) no-repeat center;
    background-size: cover;
    width: 50%;
    float: left;
    padding: 50px 10px;
}
.duibi-title .title-mid{
    width: 15%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.duibi-con ul{
    display: flex;
    justify-content: flex-start;  
    margin-bottom: 30px;
}
.duibi-con ul li:first-child{
    width: 42%;
    text-align: right;
    background: -o-linear-gradient(90deg,#ffffff,#accbee 100%);
    background: linear-gradient(90deg,#ffffff,#accbee 100%);
    padding: 20px;
    box-shadow: 1px 1px 6px 0 rgb(0 0 0 / 20%);
}
.duibi-con ul li:nth-child(2){
    width: 16%;
    text-align: center;
    padding: 10px 20px;
}
.duibi-con ul li:nth-child(3){
    width: 42%;
    background: -o-linear-gradient(90deg,#bebebe,#fff 100%);
    background: linear-gradient(90deg,#bebebe,#fff 100%);
    padding: 20px;
    box-shadow: 1px 1px 6px 0 rgb(0 0 0 / 20%);
}
.duibi-con ul li h5{
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 10px;
}
.duibi-con ul li h5 em{
    font-size: 85px;
    color: #1d2088;
    opacity: 0.15;
    font-style: normal;
    display: block;
}
/*工业检测栏目*/
.digital-detection{
    background: #eff5fc;
}
.digital-detection ul{
    display: flex;
    flex-wrap: wrap;
}
.digital-detection ul li{
    width: 25%;
    position: relative;
}
.digital-detection ul li:before {
    content: "";
    background: rgba(29,32,136,0.8);
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.4s linear;
    z-index: 1;
}
.digital-detection ul li:hover:before {
    opacity: 1.0;
}
.digital-detection ul li .detec-img{
    overflow: hidden;
}
.digital-detection ul li .detec-img img {
    width: 100%;
    transition: all 0.6s;
}
.digital-detection ul li:hover .detec-img img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.digital-detection ul li .detec-con {
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
    color: #fff;
    padding: 20px 30px;
    z-index: 2;
    background: rgba(29,32,136,0.8);
}
.digital-detection ul li .detec-con h5 {
    font-size: 36px;
    margin: 10px 0px;
}
.digital-detection ul li .detec-con .conH{
    height: 0px;
    overflow: hidden;
}
.digital-detection ul li:hover .detec-con .conH{
    height: 100%;
}
.digital-detection ul li:hover .detec-con{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(29,32,136,0.0);
}

/*一下是具体检测项目详情*/
.codeNav{
    position: relative;
}
.codeNavCon{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}
.codeNavCon .detectionLeft{
    width: 70%;
}
.codeNavCon .detectionLeft .tableCon{    
    background: #f1f1f2;
    padding: 30px 130px 30px 30px;
    border-radius: 10px;
    margin-top: 50px;

}
.codeNavCon .detectionLeft table tr td:first-child{
    color: #1d2088;
    padding: 20px 40px 20px 0px;
}
.codeNavCon ul{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin: 50px 0px;
}
.codeNavCon ul li{
    font-size: 26px;
    text-align: center;
    padding: 0px 5%;
}
.codeNavCon ul li img{
    width: 85px;
}
.codeNavRimg{
    float: right;
    position:relative;    
    width: 30%;
}
.codeNavRimg img{
    width: auto;
    max-width: 100%;
    margin-left: -15%;
}
/*应用内容*/
.app-list{
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin: 25px 0px;
    box-shadow: 2px 2px 10px 0 rgb(0 0 0 / 25%);
}
.app-list .app-img{
    overflow: hidden;
    border-radius: 5px;
}
.app-list .app-img img {
    width: 100%;
    transition: all 0.6s;
}
.app-list:hover .app-img img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.app-list h5{
    font-size: 26px;
    text-align: center;
    margin: 20px 0px;    
}
/*赛瑞克优势*/
.digital-youshi ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
}
.digital-youshi ul li{
    width: 25%;
    font-size: 20px;
    padding: 5% 2%;
    text-align: center;
    transition: all 0.4s linear;
}
.digital-youshi ul li .youshi-img img{
    max-width: 95px;
}
.youshi-con h5{
    font-size: 30px;
    margin: 20px 0px;
}
.digital-youshi ul li:hover{
    background: -o-linear-gradient(to top,rgba(255, 255, 255, 0.8), rgba(231, 240, 250, 1.0));
    background: linear-gradient(to top,rgba(255, 255, 255, 0.8), rgba(231, 240, 250, 1.0));
}
/*精选案列*/
.digital-case{
    max-width: 1920px;
    margin: 0px auto;
}
.digital-case .swiper-slide {
  width: 50%;
  max-width: 600px; 
  background: #fff;
}
.digital-case .digital-caseSwiper{
    padding-bottom: 60px;
}
.digital-case .swiper-slide:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(38, 61, 79, 0.6);
  opacity: 1;
  transition: 0.5s;
}
.digital-case .swiper-slide-active:after {
  opacity: 0;
}
.digital-case .swiper-slide .case-list{
    position: relative;
}
.digital-case .swiper-slide .case-list .case-content{
    position: absolute;
    bottom: 0px;
    width: 100%;
    color: #fff;
    background:rgba(29,32,136,0.7);
    padding: 15px 20px;
}
.digital-case .swiper-slide .case-list .case-content h5 {
    font-weight: 500;
    text-overflow: ellipsis;
    font-size: 25px;
    white-space: nowrap;
    overflow: hidden;
}
@media (max-width:991px){
    .digital-mom .whatcon h5 {
        color: #1d2088;
        font-size: 18px;
    }
    .digital-mom .whatcon {
        padding: 10px;
    }
    .digital-mom .whatcon ul {
        margin-left: 10px;
        font-size: 14px;
    }
    .digital-mom h5 {
        font-size: 18px;
    }
    .digital-mom .play-btn a{
        font-size: 14px;
        padding: 5px 15px;
    }
    .digital-why h5 {
        font-size: 20px;
    }
    .digital-why em, .digital-role em{
        font-size: 16px;
    }
    .digital-menu ul li a {
        padding: 10px 8px;
    }
    .digital-performanceList ul{
        padding: 10px 0px;
    }
    .digital-performanceList ul li{
        width: 100%;
    }
    .digital-performanceList .performance-desc h5, .codeService .codeSer-desc h5{
        font-size: 20px;
    }
    .digital-performanceList .performance-desc p em, .codeService .codeSer-desc p em,
    .digital-performanceList .performance-desc ul li{
        font-size: 16px;
        background-size: 25px;
        padding-left: 35px;
        margin: 5px 0px;
    }
    .digital-performanceList .performance-desc ul li p strong{
        font-size: 14px;
    }
    .digital-performanceList .performance-desc h5:after, .codeService .codeSer-desc h5:after{
        width: 115px;
        height: 2px;
    }
    .function-box .gallery-top .swiper-slide{
        padding: 20px 20px;
    }
    .digital-value .value-list{
        padding: 20px 20px 50px;
    }
    .digital-value .value-list li.value-con,.digital-value .value-list li.value-img{
        width: 100%;
    }
    .digital-value .value-list li.value-con{
        margin-bottom: 15px;
    }
    .digital-value .value-list h5{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .digital-value .btn-num{
        bottom: 30px;
        left: 20px;
    }
    .digital-value .btn-num .swiper-pagination-fraction, .code-products .swiper-pagination {
        bottom: 5px;
    }
    .digital-contrast ul li {
        width: 50%;
    }
    .digital-contrast ul li .contrast-img img {
        max-width: 60px;
    }
    .digital-contrast ul li .contrast-numimg img {
        max-width: 120px;
    }
    .digital-contrast ul li h5 {
        font-size: 16px;
    }
    .digital-contrast ul li .contrast-numimg img {
        max-width: 120px;
    }
    .digital-cost .cost-list h5{
        font-size: 20px;
        padding: 20px 10px;
    }
    .youshi-con h5 {
        font-size: 20px;
        margin: 10px 0px;
    }
    .digital-youshi ul li{
        width: 50%;
        font-size: 14px;
    }
    .code-way ul li {
        width: 50%;
        font-size: 14px;
    }
    .code-way ul li .way-con {
        padding: 10px 10px;
    }
    .code-way ul li .way-con h5 {
        font-size: 16px;
        margin: 0px 0px 10px;
    }
    .codeService ul li.codeSer-img,.codeService ul li.codeSer-con{
        width: 100%;
    }
    .codeService .codeSer-desc p em{
        padding-left: 0px;
    }
    .duibi-title{
        font-size: 18px;
    }
    .duibi-title .title-left,.duibi-title .title-right{
        padding: 20px 10px;
    }
    .duibi-con ul li:first-child,.duibi-con ul li:nth-child(3){
        padding: 15px;
        width: 38%;
    }
    .duibi-con ul li:nth-child(2) {
        width: 22%;
        padding: 10px 0px;
    }
    .duibi-con ul li h5 {
        font-size: 20px;
    }
    .duibi-con ul li h5 em {
        font-size: 45px;
    }
    .digital-detection ul li .detec-con{
        padding: 0px 10px;
    }
    .digital-detection ul li .detec-con h5 {
        font-size: 16px;
    }
    .codeNavCon .detectionLeft .tableCon {        
        padding: 20px 30px 20px 20px;
        margin-top: 20px;
    }
    .codeNavCon .detectionLeft table tr td:first-child{
        padding: 20px 20px 20px 0px;
    }
    .codeNavCon ul li {
        font-size: 14px;
        width: 32%;
        padding: 0px 3%;
    }
    .codeNavCon ul li img {
        width: 50px;
    }
    .app-list{
        margin: 10px 0px;
    }
    .app-list h5 {
        font-size: 16px;
    }    
    .digital-case .swiper-slide .case-list .case-content h5 {
        font-size: 16px;
    }
}