/*运营管理*/
.cx_cate {
  width: 100%;
  background: #fff;
}

.ny_cate {
  display: flex;
  flex-wrap: wrap;
  height: 70px;
}

.ny_cate .cate_li {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ny_cate .cate_li:before{
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background:var(--lgColor);
  transition:all .6s;
}
.ny_cate .cate_li span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  color: #999;
  z-index: 2;
  transition: all .5s;
}
.ny_cate .cate_li span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #eee;
}

.ny_cate .cate_li:nth-child(1) span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #eee;
}
.ny_cate .cate_li.on span{
  color: #fff;
}
.ny_cate .cate_li.on:before {
  top: 0;
  color: #fff;
}
.ny_cate .cate_li:hover span{
  color: #fff;
}
.ny_cate .cate_li:hover:before {
  top: 0;
}

.run {
  width: 100%;
  background: linear-gradient(180deg,#f5f7fa,transparent);
}

.run_tt {
  line-height: 1;
  text-align: center;
  color: var(--color);
}

.run_ms {
  width: 64%;
  margin: 0 auto;
  text-align: center;
  color: #333;
  line-height: 1.5;
}

.run_box {
  width: 100%;
  height: 36vw;
  max-height: 680px;
  min-height: 600px;
  position: relative;
}
.run_img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.run_img:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
  z-index: 1;
}
.run_img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
  transform: scale(1.1);
  transition: all 2s;
  opacity: 0;
}
.run_img img.active{
  opacity: 1;
  transform: scale(1);
}
.run_list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.run_li {
  width: calc(100% / 4);
  height: 100%;
  border-right: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  padding: 0 2vw;
}
.run_li:last-child{
  border-right: none;
}
.run_icon{
  width: 4.5vw;
  height: 4.5vw;
  min-width: 40px;
  min-height: 40px;
  max-width: 80px;
  max-height: 80px;
  margin: 0 auto;
  transition: all .6s;
}
.run_icon img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.run_bt{
  color:#fff;
  text-align: center;
  line-height: 1;
  padding-bottom: 30px;
  position: relative;
}
.run_bt:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width:3.12vw;
  height: 4px;
  background:#fff;
}
.run_des{
  color: #fff;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  display: none;
}
@media only screen and (max-width:1024px) {
.run_bt{
  padding-bottom: 20px;
}
}
@media only screen and (max-width:768px) {
  .ny_cate{
    height: 92px;
  }
  .ny_cate .cate_li{
      flex: none;
      width: 50%;
      height: 46px;
  }
  .ny_cate .cate_li span{
    font-size: 14px!important;
  }
  .run_ms{
    width: 100%;
    font-size: 16px!important;
  }
  .run_li{
    width: calc(100% / 2);
    height: 50%;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .run_li:nth-child(2n){
    border-right: none;
  }
  .run_bt{
    font-size: 20px!important;
  }
  .run_des{
    font-size: 14px!important;
  }
}
/*智能制造*/
.make{
 width: 100%;
 background: linear-gradient(180deg,#f5f7fa,transparent);
}
.create_tt{
  text-align: center;
  line-height: 1;
  color: var(--color);
}
.create_ms{
  width: 49%;
  margin-left:auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.5;
}
.create_device{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.create_li{
  width: 21%;
  height: 27vw;
  min-height: 200px;
  max-height: 500px;
  transition: all .6s;
  position: relative;
  overflow: hidden;
}
.create_li.on{
  width:55%;
}
.create_li:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 37%;
  background: linear-gradient(0deg,rgba(0,0,0,.85),transparent);
  display: none;
}
.create_li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.create_page{
    display: none;
}
.auto_tt{
  text-align: center;
  color: var(--color);
  line-height: 1;
}
.auto_device{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.auto_li{
  width: calc((100% - 120px) / 4);
  height: auto;
  margin-right: 40px;
  position: relative;
  overflow: hidden;
}
.auto_li:nth-child(4n){
  margin-right: 0;
}
.auto_li:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg,rgba(0,0,0,.4),transparent);
  z-index: 1;
  display: none;
}
.auto_li img{
  width: 100%;
  height: auto;
}
.auto_li:hover img{
  transform: scale(1.05);
}
.auto_li_tt{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 2vw;
    z-index: 2;
    opacity: 0;
    transition:all .5s;
}
.auto_li:hover .auto_li_tt{
    opacity: 1;
}
.make_sys{
  width: 100%;
  background: url(../img/innovation/make_xx.png) no-repeat bottom center;
  background-size: cover;
}
.sys_tt{
  color: var(--color);
  text-align: center;
  line-height: 1;
}
.sys_top{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sys_cate{
  padding: 0 3vw;
  position: relative;
}
.sys_cate:after{
  content: "/";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.sys_cate:last-child:after{
  display: none;
}
.sys_cate span{
  cursor: pointer;
  color:#333 ;
}
.sys_cate:hover span{
  color: var(--color);
  text-decoration: underline;
}
.sys_cate.cur span{
  color: var(--color);
  text-decoration: underline;
}
.sys_bottom{
  width: 100%;
  height: 26vw;
  min-height: 200px;
  max-height: 490px;
  position: relative;
}
.sys_box{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
  opacity: 0;
}
.sys_box.cur{
  opacity: 1;
  z-index: 5;
}
.sys_img{
  width: 100%;
  height: 26vw;
  min-height: 200px;
  max-height: 490px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}
.sys_img:before{
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/innovation/sys_bg.png) no-repeat center;
  background-size: 100% 100%;
  z-index: 1;
}
.sys_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sys_box .swiper-slide-active .sys_img{
  opacity: 1!important;
}
.sys_box .swiper-slide-duplicate-next{
  opacity: 0!important;
}
.sys_box .swiper-slide-duplicate-prev{
  opacity: 0!important;
}
@media only screen and (max-width:768px) {
  .create_ms{
    width: 100%;
    font-size: 16px!important;
  }
  .create_device{
    flex-wrap: wrap;
  }
  .create_li{
    width: 100%;
    margin-bottom: 10px;
  }
  .create_li.on{
    width: 100%;
  }
  .create_page{
      display: block;
      width: 100%;
      height: 2px;
  }
  .create_page .swiper-scrollbar-drag {
        background: var(--color);
  }
  .auto_li{
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .sys_cate span{
    font-size: 14px!important;
  }
  .sys_img {
    border-radius: 16px;
  }
}
/*检测能力*/
.tx{
  width: 100%;
  position: relative;
}
.tx_tt{
  text-align: center;
  line-height: 1;
  color: var(--color);
}
.tx_ms{
  color:#333;
  line-height: 1.6;
  text-align: center;
}
.tx_box{
  width: 100%;
  position: relative;  
}
.tx_box:before{
  content: "";
  position: absolute;
  bottom:-4vw;
  width: 100%;
  height:15.6vw;
  max-height: 299px;
  background: url(../img/innovation/txbg.png) no-repeat center;
  background-size: 100%;
}
.less .swiper-wrapper{
 justify-content: center;
}
.tx_img{
  width: 100%;
  height: 18vw;
  min-height: 300px;
  max-height: 340px;
  position: relative;
  padding:20px;
  background: url(../img/innovation/zs_bg.png) no-repeat center;
  background-size: 100% 100%;
}
.tx_img img{
    width: auto;
    height: auto;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.zs_tt{
  text-align: center;
  color: #333;
  padding: 0 1.3vw;
  margin-top: 15px;
  min-height: 64px;
}
.tx_zs_page{
    display: none;
}
.jc{
  width: 100%;
  background: url(../img/innovation/jcbg.png) no-repeat top center;
  background-size:100% auto;
}
.jc_tt{
  color: var(--color);
  text-align: center;
  line-height: 1;
}
.jc_ms{
  text-align: center;
  line-height: 1.6;
  color: #333;
}
.jc_pro{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.jc_li{
  width: calc((100% - 60px) / 3);
  height: 16vw;
  min-height: 200px;
  max-height: 320px;
  margin-right: 30px;
  margin-top: 4.7vw;
  margin-bottom: 30px;
  background: linear-gradient(0deg,#ffffff,#dce0e5);
  border-radius: 10px;
  box-shadow: 10px 0px 20px rgba(0,16,38,.1);
}
.jc_li:nth-child(3n){
  margin-right: 0;
}
.jc_img{
  width: 100%;
  height: 16vw;
  min-height: 150px;
  max-height: 304px;
  margin-top: -4.7vw;
  position: relative;
  overflow: hidden;
}
.jc_img img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: all .6s;
}
.jc_pro_tt{
  text-align: center;
  color:#333;
  margin-top: 15px;
}
.jc_li:hover img{
  transform: translate(-50%,-50%) scale(1.05);
}
.slick-arrow{
  display: none!important;
}
.jc_equipment{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.jc_equipment li{
  width: calc(100% / 3);
  padding:20px 15px;
}
.jc_equipment .equipment_img{
  width: 100%;
  height:22vw;
  min-height: 200px;
  max-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 10px 0px 20px rgba(0,16,38,.1);
}
.equipment_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s;
}
.equipment_img:hover img{
  transform: scale(1.05);
}
@media screen and (max-width: 1280px) and (min-width: 1101px){
    .tx_box:before{
        bottom: -2vw;
    }
}
@media only screen and (max-width:768px) {
  .jc_li{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .jc_ms,.tx_ms{
      font-size:16px!important;
  }
  .jc_equipment li{
      width: 100%;
      padding: 10px 15px;
  }
  .tx_box:before{
      display: none;
  }
  .zs_tt{
      font-size: 16px!important;
      min-height: 0;
  }
  .tx_zs_page{
      margin-top: 15px;
      display: block;
      width: 100%;
      height: 2px;
  }
  .tx_zs_page .swiper-scrollbar-drag{
      background: var(--color);
  }
}
/*技术研发*/
.js_yf{
 width: 100%;
 background: url(../img/innovation/yf_bg.png) no-repeat bottom center;
 background-size: 100% 100%;
}
.yf_tt{
  text-align: center;
  color: var(--color);
  line-height: 1;
}
.yf_ms{
  color: #333;
  text-align: center;
  line-height: 1.6;
  width: 51%;
  margin: 0 auto;
}
.yf_box{
  width: 100%;
  position: relative;
  padding: 0 4vw;
}
.yf_box:before{
  content: "";
  position: absolute;
  left: 50%;
  bottom:-2.6vw;
  transform: translateX(-50%);
  width:24%;
  max-width: 342px;
  height: 35px;
  background: url(../img/innovation/yuan.png) no-repeat center;
  background-size: contain;
}
.yf_img{
  width: 100%;
  height:18.5vw;
  min-height: 200px;
  max-height: 350px;
  position: relative;
  background: linear-gradient(0deg,#fff,#dce0e5);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,16,38,.1);
}
.yf_img img{
 width: auto;
 height: auto;
 max-width: 100%;
 max-height: 100%;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%,-50%);
}
.yf_btn{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  transition: all .6s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.yf_btn .icon{
  width: 22px;
  fill: var(--color);
}
.yf_prev{
  left: 0;
  transform:translateY(-50%) rotateY(180deg);
}
.yf_next{
  right: 0;
}
.yf_btn.swiper-button-disabled{
  opacity: 0.4;
  cursor: default;
}
.yf_btn:not(.swiper-button-disabled):hover{
  background: var(--color);
}
.yf_btn:not(.swiper-button-disabled):hover .icon{
  fill: #fff;
}
.yf_box .swiper-slide-active .yf_img{
  opacity: 1!important;
}
.yf_box .swiper-slide-duplicate-next{
  opacity: 0!important;
}
.yf_box .swiper-slide-duplicate-prev{
  opacity: 0!important;
}
.js_zl{
  width: 100%;
  overflow: hidden;
}
.js_zl > div{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.zl_left{
  width: 46%;
}
.zl_right{
  width: 54%;
  position: relative;
  padding: 0 3.65vw;
}
.zl_right:before{
  content: "";
  position: absolute;
  bottom:-4.85vw;
  left: -4.5vw;
  width: 57.3vw;
  height: 200px;
  background: url(../img/innovation/zlbg.png) no-repeat left center;
}
.zl_tt{
  color: var(--color);
  line-height: 1;
}
.zl_ms{
  color:#333;
  line-height: 1.6;
  width: 71%;
}
.zl{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.zl li{
  padding-right: 3.6vw;
}
.zl .num_sz *{
  color: var(--color);
  line-height: 1;
}
.zl .num_ms{
  color: var(--color);
  margin-top: 10px;
}
.zl_img{
  width: 100%;
  height: 20vw;
  max-height: 373px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  background: url(../img/innovation/zl_bg.png) no-repeat center;
  background-size: 100% 100%;
  padding: 23px;
}
.zl_img img{
  width: auto;
  height: auto;
  max-width: calc(100% - 40px);
  max-height:calc(100% - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.zl_zs_tt{
  text-align: center;
  color: #333;
  line-height: 1.5;
  margin-top: 5px;
}
.zl_page{
    display: none;
}
.js_solution{
  width: 100%;
  background: url(../img/innovation/fa_bg.png) no-repeat top center;
  background-size:cover;
}
.solution_tt{
  text-align: center;
  line-height: 1;
  color: var(--color);
}
.solution_box{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.solution_li{
  width: calc((100% - 39px) / 4);
  margin-right: 13px;
}
.solution_li:nth-child(4n){
  margin-right: 0;
}
.solution_li:last-child{
  margin-right: 0;
}
.fa_img{
  width: 100%;
  height:220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(0deg,#fff,#dce0e5);
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,16,38,.1);
}
.fa_img img{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.fa_con{
  position: absolute;
  top:100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(152,158,166,.95);
  color: #fff;
  line-height: 1.6;
  transition: all .6s;
  
}
.fa_con .inner{
    width: 90%;
    height: 155px;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.fa_tt{
  margin-top: 15px;
  text-align: center;
  color: #222;
}
.solution_li:hover .fa_con{
  top: 0;
}
@media screen and (max-width: 1280px) and (min-width: 1101px){
    .yf_btn{
      width: 40px;
      height: 40px;
    }
    .fa_img{
      height: 200px;
    }
}
@media only screen and (max-width:768px) {
  .yf_ms{
    width: 100%;
  }
  .yf_btn{
    z-index: 5;
  }
  .zl_left{
    width: 100%;
  }
  .zl_tt{
    text-align: center;   
  }
  .zl_ms{
    width: 100%;
    text-align: center;
  }
  .zl{
      justify-content: center;
  }
  .zl li{
      text-align: center;
  }
  .zl li:last-child{
      padding-right: 0;
  }
  .zl_right{
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .js_zl > div{
      padding-bottom: 0;
  }
  .zl_zs_tt{
      margin-top: 15px;
      font-size: 18px!important;
  }
  .zl_page{
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 15px;
  }
  .zl_page .swiper-pagination-bullet-active{
      background: var(--color);
  }
  .solution_li{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .fa_tt{
    font-size: 18px!important;
  }
}
