﻿@charset "UTF-8";
.bananr{
    width: 100%;
    position: relative;
}
.bananr img{
    width: 100%;
    height: auto;
}
.bananr dl{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 8%;
    text-align: center;
}
.bananr dl dd{
    display: inline-block;
    height: 16px;
    width: 16px;
    background: #fff;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
}
.bananr dl .action{
    background: #224698
}
header{
    position: absolute;
    left: 0;
    top: 25px;
    z-index: 10;
    width: 100%;
}
header .header{
    width: 92%;
    margin: 0 auto;
    text-align: center;
}
header .header h1{
    width: 237px;
    margin-top: 13px;
}
header .header > p{
    display: inline-block;
    white-space: nowrap
}
header .header > p a{
    font-size: 18px;
   display: inline-block;
   padding: 3px 25px;
   border-radius: 30px;
   margin: 20px 0.5% 0;
   position: relative;
   overflow: hidden;
   z-index: 2;
}
header .header > p a::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #224698;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s,transform 0.5s;
    -webkit-transition: opacity 0.5s,transform 0.5s;
    transform: scale(0);
    -webkit-transform: scale(0); 
}
header .header > p a:hover{
    color: #fff
}
header .header > p a:hover::before{
    opacity:1;
    transform: scale(1);
    -webkit-transform: scale(1); 
}
header .header > p .action{
    background: #224698;
    color: #fff
}
header .header .phone{
    margin-top: 10px;
}
header .header .phone p{
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin-left: 10px;
}
header .header .phone img{
    width: 41px;
    height: 41px;
}
header .header .phone b{
    display: block;
    font-size: 24px;
    color: #224698;
    line-height: 28px;
}
header .header .phone span{
    color: #444;
    font-size: 14px;
}
.product-index{
    width: 100%;
    padding: 90px 0 60px;
}
.product-index .left{
    width: 25%;
}
.product-index .rigth{
    width: 75%;
}
.product-index .rigth .product{
    width: 100%;
}
.product-index .rigth .product li{
    width: 32%;
    margin-right: 2%;
    float: left;
    text-align: center;
    padding-bottom: 20px;
}
.product-index .rigth .product li span{
    font-size: 16px;
    color: #666;
    line-height: 48px;
}
.product-index .rigth .product li .img{
    width: 100%;
    /* height: 251px; */
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #ebebeb
}
.product-index .rigth .product li:hover img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05); 
}
.product-index .rigth .product li:hover span{
    color: #224698
}
.product-index .rigth .product li .img img{
   width: 100%;
   height: 100%;
   transition: all 0.5s;
   -webkit-transition: all 0.5s;
}
.product-index .rigth .product li:nth-of-type(3n){
    margin-right: 0;
}
.product-index .product-title{
    padding-bottom: 30px;
}
.product-index .product-title p{
    font-size: 24px;
    line-height: 48px;
}
.product-index .product-title p::before{
    width: 24px;
    height: 24px;
    background: url('../images/product-index-ico1.png') no-repeat center top;
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.product-index .product-title  {
    line-height: 48px;
    font-size: 16px;
}
.product-index .left h2{
    font-size: 60px;
    color: #224698;
    line-height: 62px;
    text-transform: uppercase;
    font-weight: bold;
    /* font-family: Arial, Helvetica, sans-serif */
}
.product-index .left i{
    width: 24px;
    height: 24px;
    background: url('../images/index-product-ico2.png') no-repeat center top;
    display: block;
    margin-top: 20px;
}
.product-index .left ul{
    padding-top: 48px;
    width: 100%;
    box-sizing: border-box;
    padding-right: 28%;
}
.product-index .left ul li{
    font-size: 16px;
    line-height: 50px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    /* overflow:hidden; */
    text-overflow:ellipsis;
}
.product-index .left ul li::before{
   position: absolute;
   left: -10%;
   width: 0%;
   height: 100%;
   content: '';
   display: block;
   background: #fd8900;
   z-index: -1;
   transition: width 0.5s;
   -webkit-transition: width 0.5s; 
}
/* .product-index .left ul li:hover::before{
    width: 110%;
}
.product-index .left ul li:hover {
    color: #fff
} */
.product-index .left ul li::after{
    width: 28px;
    height: 14px;
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: url('../images/index-pro-ico3.png') no-repeat;
    background-position: 0 center;  
}
.product-index .left ul li:hover::after{
     animation: pulseico 0.6s;
     -webkit-animation: pulseico 0.6s;
}
.product-index .left ul .action::before{
     width: 110%;
}
.product-index .left ul .action {
    color: #fff
}
@-webkit-keyframes pulseico {
    0% {
        background-position: -45px center;
    }
  
    50% {
        background-position: -45px center;
    }
    75% {
        background-position: -22px center;
    }
    100% {
        background-position: 0px center;
    }
  }
  
  @keyframes pulseico {
    0% {
        background-position: -45px center;
    }
  
    50% {
        background-position: -45px center;
    }
    75% {
        background-position: -22px center;
    }
    100% {
        background-position: 0px center;
    }
  }
  .index-gg{
      width: 100%;
      background: url('../images/index-gg-t.jpg') no-repeat;
      background-size: cover;
      position: relative;
      background-position: center top
  }
  .index-gg .w1400{
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate3d(-50%,-50%,0);
      -webkit-transform: translate3d(-50%,-50%,0)
  }
  .index-gg .left h4{
    font-size: 47px;
    color: #fff;
    line-height: 51px;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 10px;
  }
  .index-gg .left p{
    font-size: 16px;
    color: #fff
  }
  .index-gg .rigth{
      width: 50%;
      padding-top: 3.5%;
  }
  .index-gg .rigth .phone p{
     display: inline-block;
     vertical-align: middle;
     color: #fff;
     font-size: 16px;
     margin-left: 10px;
  }
  .index-gg .rigth .phone p b{
      font-size: 32px;
      line-height: 32px;
  }
  .index-gg .rigth  a{
      width: 30%;
      font-size: 20px;
      color: #fff;
      line-height: 50px;
      background: #fd8900;
      display: block;
      box-sizing: border-box;
      padding-left: 3%;
      position: relative;
       perspective: 150;
    -webkit-perspective: 150;
      margin-top: 11px;
  }
  .index-gg .rigth  a::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ec7f1e;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    display: block;
    content: '';
    z-index: -1;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}
  .index-gg .rigth  a::after{
    width: 28px;
    height: 14px;
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: url('../images/index-pro-ico3.png') no-repeat;
    background-position: 0 center;  
  }
  .index-gg .rigth  a:hover::before{
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
  }
  .index-ys{
      width: 100%;
      padding: 72px 0 60px;
  }
  .index-ys .title{
      text-align: center
  }
  .index-ys .title span{
      font-size: 24px;
      text-transform: uppercase;
     
      line-height: 30px;
  }
  .index-ys .title b{
      font-size: 60px;
      color: #224698;
      text-transform: uppercase;
      line-height: 60px;
      display: block;
  }
  .index-ys .title i{
      width: 24px;
      height: 24px;
      background: url('../images/index-product-ico2.png') no-repeat center top;
      margin-top: 20px;
  }
  .index-ys ul{
      width: 100%;
      padding-top: 40px;
  }
  .index-ys ul li{
      width: 49%;
      float: left;
      margin-right: 2%;
      box-shadow: 0 0 6px 6px #f5f6fa;
      margin-bottom: 20px;
      text-align: center;
      padding: 20px 0;
      transition: transform 0.5s;
      -webkit-transition: transform 0.5s; 
  }
  .index-ys ul li:hover{
      transform: translateY(-5px);
      -webkit-transform: translateY(-5px); 
  }
  .index-ys ul li:nth-of-type(2n){
      margin-right: 0;
  }
  .index-ys ul li .dex{
      display: inline-block;
      vertical-align: middle;
      width: 70%;
      text-align: left;
      margin-left: 16px;
  }
  .index-ys ul li .dex h6{
      font-size: 24px;
      color: #444;
      padding-bottom: 10px;
  }
  .index-ys ul li .dex p{
      font-size: 16px;
      color: #666;
      min-height: 85px
  }

  .index-about{
      width: 100%;
      background: #edf4fc;
      padding: 89px 0;
      position: relative;
  }
  .index-about-conent{
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 43%;
      background: url('../images/index-about-bj.jpg') no-repeat center top;
      background-size: cover
  }
  .index-about-conent dl{
      margin-left: -14px;
      padding-top: 134px;
  }
  .index-about-conent dt{
      font-size: 24px;
      text-transform: uppercase;
      color: #fff;
      padding-left: 15%;
  }
  .index-about-conent dd{
      font-size: 43px;
      font-weight: bold;
      color: #fff;
      padding: 30px 0;
  }
  .index-about-conent dd::before{
      height: 28px;
      width: 28px;
      background: #fd8900;
      border: 5px solid #fff;
      border-radius: 50%;
      content: '';
      display: inline-block;
      vertical-align: middle;
      box-sizing: border-box
  }
  .index-about-conent dd i{
      width: 10%;
      height: 1px;
      background: #fff;
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px;
      margin-left: -13px;
  }
  .index-about .about{
      width: 50%
  }
  .index-about .about .title span{
      font-size: 24px;
      text-transform: uppercase;
      line-height: 24px;
  }
  .index-about .about .title >h6{
      font-size: 60px;
      color: #224698;
      font-weight: bold;
      text-transform: uppercase;
      line-height: 70px;
  }
  .index-about .about .title i{
    width: 24px;
    height: 24px;
    background: url('../images/index-product-ico2.png') no-repeat center top;
    margin-bottom: 35px;
    margin-top: 10px;
  }
  .index-about .about .title .conent h6{
      font-size: 24px;
      padding-bottom: 10px;
  }
  .index-about .about .title .conent p{
      font-size: 16px;
      color: #666
  }
  .index-about .about .title a{
      width: 34%;
      display: block;
      line-height: 50px;
      font-size: 18px;
      color: #fff;
      background: #fd8900;
      box-sizing: border-box;
      padding-left: 20px;
      position: relative;
      text-transform: uppercase;
      margin-top: 30px;
      position: relative;
      perspective: 150;
      -webkit-perspective: 150;
      /* transition: transform 0.5s;
      -webkit-transition: transform 0.5s;  */
  }
  .index-about .about .title a:hover::before{
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    opacity: 1;
  }
  .index-about .about .title a::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #224698;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    display: block;
    content: '';
    z-index: -1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    opacity: 0;
}
  .index-about .about .title a::after{
    width: 28px;
    height: 14px;
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: url('../images/index-pro-ico3.png') no-repeat;
    background-position: 0 center;  
  }

  .index-new{
      width: 100%;
  }
  .index-new .des h5{
      font-size: 60px;
      text-transform: uppercase;
      color: #224698;
      font-weight: bold;
      line-height: 60px;
  }
  .index-new .des i{
    width: 24px;
    height: 24px;
    background: url('../images/index-product-ico2.png') no-repeat center top;
    margin-top: 16px;
  }
  .index-new .title{
      padding: 80px 0 40px;
  }
  .index-new .title p{
      padding-top: 30px;
      white-space: nowrap;
  }
  .index-new .title p a{
      padding-left: 35px;
      color: #666;
      display: inline-block;
      cursor: pointer;

  }
  .index-new .title p a::after{
      width: 0;
      display: block;
      height: 1px;
      background: #224698;
      content: '';
      margin: 8px auto 0;
      transition: width 0.5s;
      -webkit-transition: width 0.5s; 

  }
  .index-new .title p .action{
    
    color: #224698;
  }
  .index-new .title p .action::after{
    width:100%;
  } 
  .index-new .title p a:hover{
      color: #224698
  }
  .index-new .title p a:hover::after{
    width:100%;
  } 
  .pro-conent-new{
      width: 100%;
      padding-bottom: 74px;
  }
  .pro-conent-new li{
      width: 32%;
      margin-right: 2%;
      float: left;
  }
  
  .pro-conent-new li:nth-of-type(3n){
      margin-right: 0;
  }
  .pro-conent-new li .img{
     width: 100%;
     height: 300px;
     overflow: hidden;
  }
  .pro-conent-new li .img img{
      width: 100%;
      height: 100%;
      transition: transform 0.5s;
      -webkit-transition: transform 0.5s; 
  }
  .pro-conent-new li h5{
      font-size: 20px;
      color: #444;
      padding: 30px 0 15px;
      white-space: nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
  }
  .pro-conent-new li p{
      font-size: 14px;
      color: #666
  }
  .pro-conent-new li i{
      width: 55%;
      line-height: 50px;
      font-size: 18px;
      text-transform: uppercase;
      color: #666;
      display: block;
      border: 1px solid #666;
      box-sizing: border-box;
      padding-left: 20px;
      margin-top: 20px;
      position: relative;
  }
  .pro-conent-new li i::before{
    width: 28px;
    height: 14px;
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: url('../images/index-pro-des.png') no-repeat;
    background-position: 0 center; 
  }
 
  .pro-conent-new li:hover img{
      transform: scale(1.05);
      -webkit-transform: scale(1.05);
  }
  .pro-conent-new li i::after{
      content: '';
      width: 0;
      height: 100%;
      display: block;
      background: #fd8900;
      position: absolute;
      z-index: -1;
      left: 0;
      top: 0;
      transition: width 0.5s;
      -webkit-transition: width 0.5s; 
  }
  .pro-conent-new li:hover i{
      color: #fff;
      border-color: #fff
  }
  .pro-conent-new li:hover i::after{
      width: 100%;
  }
  .pro-conent-new li:hover i::before{
    background-position: -45px center;
     animation: newseico 0.8s;
     -webkit-animation: newseico 0.8s;
  }
  @-webkit-keyframes newseico {
    0% {
        background-position: -100px center;
    }
  
    50% {
        background-position: -100px center;
    }
    75% {
        background-position: -50px center;
    }
    100% {
        background-position: -45px center; 
    }
  }
  
  @keyframes newseico {
    0% {
        background-position: -100px center;
    }
  
    50% {
        background-position: -100px center;
    }
    75% {
        background-position: -50px center;
    }
    100% {
        background-position: -45px center; 
    }
  }
  footer{
      width: 100%;
      background:#21252c; 
      padding: 50px 0 50px;
      border-top: 5px solid #224698;
  }
  footer .left .t a{
       font-size: 18px;
       color: #b9b5bd;
       display: inline-block;
       padding: 25px 0;
       padding-right: 20px;
  }
  footer .left .d a{
      font-size: 14px;
      color: #666;
      display: inline-block;
      padding-right: 20px;
  }
  footer .left  a:hover{
      color: #fff
  }
  footer .rigth .conent{
      display: inline-block;
      vertical-align: top;
      padding-left: 30px;
  }
  footer .rigth .conent .title p{
      display: inline-block;
      vertical-align: middle;
      font-size: 20px;
      color: #fff;
      padding-left: 10px;
  }
  footer .rigth .conent .title p b{
      font-size: 32px;
      line-height: 32px;
  }
  footer .rigth .conent>p{
      font-size: 16px;
      color: #666;
      padding-top: 18px;
  }
  .absolute{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;

  }
  .Enterprisevideo{
      width: 60%;
      position: fixed;
      left: 50%;
      top: 50%;
      transform: translate3d(-50%,-50%,0) ;
      -webkit-transform: translate3d(-50%,-50%,0);
      z-index: 20;
      transition: transform 0.5s, opacity 0.5s;
      -webkit-transition: transform 0.5s, opacity 0.5s;
      opacity: 1;
      display: block;
  }
  .Enterprisevideoaction{
    transform: translate3d(-50%,-50%,0) scale(0);
    -webkit-transform: translate3d(-50%,-50%,0) scale(0);
     opacity: 0 !important;
     display: none
  }
  .Enterprisevideo .Enterprisevideoview{
      position: relative;
      width: 100%;
  }
  .Enterprisevideo .Enterprisevideoview .imgview{
      position: absolute;
      right: 0;
      top: 0;
      transform: translate3d(50%,-50%,0);
      -webkit-transform: translate3d(50%,-50%,0);
      z-index: 33;
      height: 30px;
      width: 30px;
      cursor: pointer;
  }
  .Enterprisevideo video{
      width: 100%;
      height: auto;
  }
  .positionfixed{
      position: fixed;
      left: 0;
      top: 0;
      background: #fff !important;
      border-bottom: 1px solid #ddd;
      z-index: 10;
  }
  .product-nav {
      width:100%;
      background: rgba(255, 255, 255, 0.3);
      /* text-align: center;  */
  }
  .product-nav .w600{
      
      display: inline-block;
  }
  .product-nav a{
      font-size: 18px;
      color: #444;
      display: inline-block;
      padding: 0 25px;
      line-height: 70px;
      position: relative;
      z-index: 2;
      perspective:150;
     -webkit-perspective:150;
     cursor: pointer;
  }
  .product-nav .text a{
    padding: 0 57px;
  }
  .product-nav a::before{
      position: absolute;
      z-index: -1;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background: #fd8900;
      display: block;
      content: '';
      transform: rotateX(90deg);
      -webkit-transform: rotateX(90deg);
      opacity: 0;
      transition: transform 0.5s ,opacity 0.5s;
      -webkit-transition: transform 0.5s ,opacity 0.5s;
  }
  .product-nav a:hover{
    color: #fff
  }
  .product-nav a:hover::before{
    transform: rotateX(0deg);
      -webkit-transform: rotateX(0deg);
      opacity: 1;
      
  }
  .product-nav .action{
    color: #fff
  }
  .product-nav .action::before{
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
  }
  .conent-product{
      width: 100%;
      padding-bottom: 60px;
  }
.conent-product .product-title{
    padding-bottom: 40px;
    padding-top: 50px;
}
.conent-product .product-title p{
    font-size: 24px;
    line-height: 48px;
}
.conent-product .product-title p::before{
    width: 24px;
    height: 24px;
    background: url('../images/product-index-ico1.png') no-repeat center top;
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.conent-product .product-title  {
    line-height: 48px;
    font-size: 16px;
}


.conent-product .product{
    width: 100%;
   
}
.conent-product .product li{
    width: 24%;
    margin-right: 1.333%;
    float: left;
    text-align: center;
    padding-bottom: 20px;
}
.conent-product .product li:nth-of-type(4n){
    margin-right: 0;
}
.conent-product .product li span{
    font-size: 16px;
    color: #666;
    line-height: 48px;
}
.conent-product .product li .img{
    width: 100%;
    height: 251px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #ebebeb
}
.conent-product .product li:hover img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05); 
}
.conent-product .product li:hover span{
    color: #224698
}
.conent-product .product li .img img{
   width: 100%;
   height: 100%;
   transition: all 0.5s;
   -webkit-transition: all 0.5s;
}
.about-set1{
    width: 100%;
    padding: 80px 0 110px;
}
.about-set1 .about-left{
    width: 744px
}
.about-set1 .about-rigth{
    width: 600px
}
.about-set1 .about-left i{
    display: block;
    padding: 20px 0 30px;
    font-size: 24px;
}
.about-set1 .about-left i::before{
    width: 31px;
    height: 30px;
    content: '';
    background: url('../images/product-index-ico1.png') no-repeat center top;
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 20px;
    color: #444
}
.about-set1 .about-left h5{
    font-size: 28px;
    color: #224698;
    padding: 10px 0 50px;
}
.about-set1 .about-left p{
    font-size: 16px;
    color: #666;
}
.about-set1 .about-left a{
    width: 260px;
    display: block;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    color: #fff;
    background: #fd8900;
    margin-top: 80px;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    position: relative;
    perspective: 150;
    -webkit-perspective: 150;
    cursor: pointer;
}
.about-set1 .about-left a::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #224698;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    display: block;
    content: '';
    z-index: -1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    opacity: 0;
}
.about-set1 .about-left a::after{
    width: 31px;
    height: 31px;
    background: url('../images/about-set-ico.png') no-repeat center top;
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
}
.about-set1 .about-left a:hover::before{
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    opacity: 1;
}
.about-set1 .about-rigth{
    position: relative;

}
.about-set1 .about-rigth .conent{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #fff; 
}
.about-set1 .about-rigth .conent ul{
    font-size: 43px;
    font-weight: bold;
    line-height: 43px;
    margin-left: -10px;
}
.about-set1 .about-rigth .conent ul li{
    margin: 42px 0;
}
.about-set1 .about-rigth .conent ul li::before{
    width: 20px;
    height: 20px;
    display: inline-block;
    background: #fd8900;
    border: 3px solid #fff;
    box-sizing: border-box;
    content: '';
    vertical-align: middle;
    border-radius: 50%;

}
.about-set1 .about-rigth .conent ul i{
    display: inline-block;
    vertical-align: middle;
    width: 70px;
    height: 1px;
    background: #fff;
    margin-left: -12px;
    margin-right: 15px;
}
.about-set1 .about-rigth .conent em{
    font-size: 24px;
    text-transform: uppercase;
    margin-left: 100px;
}
.about-set2{
    width: 100%;
}
.about-set2 .title{
    font-size: 24px;
    color: #444;
    text-transform: uppercase;
}
.about-set2 .title i{
    width: 31px;
    height: 31px;
    background: url('../images/product-index-ico1.png') no-repeat center top;
    content: '';
    display: inline-block;
    vertical-align: middle;
}
.about-set2 ul{
    width: 100%;
    padding: 50px 0 85px;
}
.about-set2 ul li{
    width: 25%;
    float: left;
    margin-right: 12.5%;
}
.about-set2 ul li:last-of-type{
    margin-right: 0;
}
.about-set2 ul li h4{
    font-size: 42px;
    text-transform: uppercase;
    color: #224698;
    padding: 24px 0;
}
.about-set2 ul li p{
    font-size: 16px;
    color: #444
}

.about-set3{
    width: 100%;
    height: 500px;
    background: url('../images/about-set2.jpg') no-repeat center top;
    background-size: cover;
    margin-bottom: 287px;
}
.about-set3-view .w1400{
    position: relative;
}
.about-set3-view i{
    width: 26px;
    height: 37px;
    position: absolute;
    left:  -50px;
    top: 130px;
    background: url('../images/about-set4-ico.png') no-repeat;
    background-position: 0 center;
    /* border: 1px solid #ddd; */
    display: block;
    z-index: 6;
    cursor: pointer;
}
.about-set3-view em{
    width: 26px;
    height: 37px;
    position: absolute;
    right:   -50px;
    top: 130px;
    background: url('../images/about-set4-ico.png') no-repeat;
    background-position: right center;
    display: block;
    z-index: 6;
    cursor: pointer;
}
.about-set3-conent{
    width: 100%;
    overflow: hidden;
    
}
.about-set3-conent ul{
    width: 10000px;
    white-space: nowrap;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}
.about-set3-conent ul li{
    width: 349px;
    margin-right: 12px;
    text-align: center;
    float: left;
}
.about-set3-conent ul li span{
    font-size: 20px;
    color: #444
}
.about-set3-conent ul li .img{
    width: 100%;
    height: 345px;
    background: #fff;
    border: 1px solid #d1d1d1;
    position: relative; 
    margin-bottom: 25px;
    
}
.about-set3-conent ul li .img img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
    width: 80%;
    height: auto;
}

.about-set3 .title-about{
    text-align: center;
    color: #fff;
    padding-top: 90px;
}
.about-set3 .title-about span{
    font-size: 24px;
    text-transform: uppercase;
    line-height: 20px;
}
.about-set3 .title-about h5{
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    line-height: 68px;
}
.about-set3 .title-about i{
    width: 24px;
    height: 24px;
    background: url('../images/about-set3-ico.png') no-repeat center top;
    display: inline-block;
    margin-bottom: 80px;
    margin-top: 10px;
}
.environment-view{
    width: 100%
}
.environment-view .title{
    text-align: center;
}
.environment-view .title span{
    font-size: 24px;
    color: #444;
    text-transform: uppercase;
    line-height: 28px;
}
.environment-view .title h5{
    font-size: 60px;
    color: #224698;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 68px;
}
.environment-view .title i{
    width: 24px;
    height: 24px;
    background: url('../images/index-product-ico2.png') no-repeat center top;
    display: inline-block;
    margin-bottom: 80px;
    margin-top: 10px;
}
.environment-conent{
    width: 100%;
}
.environment-conent li{
    width: 24%;
    margin-right: 1.33%;
    text-align: center;
    float: left;
    cursor: pointer;
}
.environment-conent li .img{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d1d1d1;
    height: 240px;
    overflow: hidden;
}
.environment-conent li:hover img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05); 
}
.environment-conent li:hover span{
    color: #224698
}
.environment-conent li .img img{
    width: 100%;
    display: block;
    height: auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s; 
}
.environment-conent li span{
    font-size: 20px;
    padding: 10px 0;
    display: block
}
.environment-conent li:nth-of-type(4n){
    margin-right: 0;
}
.btn a{
    width: 260px;
    line-height: 50px;
    font-size: 18px;
    text-transform: uppercase;
    color: #666;
    display: block;
    border: 1px solid #666;
    box-sizing: border-box;
    padding-left: 20px;
    margin-top: 20px;
    position: relative;
    margin: 32px auto 75px;
    cursor: pointer;
}

.btn a::before{
    width: 28px;
    height: 14px;
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: url('../images/index-pro-des.png') no-repeat;
    background-position: 0 center; 
  }
.btn a::after{
    content: '';
    width: 0;
    height: 100%;
    display: block;
    background: #fd8900;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    transition: width 0.5s;
    -webkit-transition: width 0.5s; 
}
.btn a:hover{
    color: #fff;
    border-color: #fff
}
a:hover::after{
    width: 100%;
}
.btn a:hover::before{
    background-position: -45px center;
     animation: newseico 0.8s;
     -webkit-animation: newseico 0.8s;
}
.Cooperative-view{
    width: 100%;
    background: #f2f2ff;
    padding-top: 70px;
}
.Cooperative-view .title{
    text-align: center;
}

.Cooperative-view .title span{
    font-size: 24px;
    color: #444;
    text-transform: uppercase;
    line-height: 28px;
}
.Cooperative-view .title h5{
    font-size: 60px;
    color: #224698;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 68px;
}
.Cooperative-view .title i{
    width: 24px;
    height: 24px;
    background: url('../images/index-product-ico2.png') no-repeat center top;
    display: inline-block;
    margin-bottom: 80px;
    margin-top: 10px;
}
.Cooperative-conent{
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 0 3%;
}
.Cooperative-conent li{
    float: left;
    width: 19%;
    position: relative;
    height: 114px;
    cursor: pointer;
    margin-right: 1.25%;
    margin-top: 45px;
}
.Cooperative-conent li:nth-of-type(5n){
    margin-right: 0;
}
.Cooperative-conent li p{
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
    opacity: 0;
    transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s; 
}

.Cooperative-conent li::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(34, 70, 152, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s; 
}
.Cooperative-conent li img{
    display: block;
    width: 100%;
    height: auto;
}
.Cooperative-conent li:hover::after{
    transform: scale(1);
    -webkit-transform: scale(1); 
}
.Cooperative-conent li:hover p{
    opacity: 1;
    z-index: 2;
}
.about-Customer{
    width: 100%;
    padding-bottom: 80px
}
.about-Customer .title{
    padding: 80px 0 40px;
}
.about-Customer .title i{
    display: block;
    padding: 20px 0 30px;
    font-size: 24px;
    text-transform: uppercase;
    color: #444
}
.about-Customer .title i::before{
    width: 31px;
    height: 30px;
    content: '';
    background: url(../images/product-index-ico1.png) no-repeat center top;
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 20px;
    color: #444;
}
.about-Customer  dl{
    width: 100%;
}
.about-Customer  dl dd{
    float: left;
    width: 30%;
    margin-right: 5%;
}
.about-Customer  dl dd .conent{
    border: 1px solid #b9b5bd;
    box-sizing: border-box;
    padding: 30px 8%;
    background: #fff;
    position: relative;
}
.about-Customer  dl dd .conent::after{
    width: 20px;
    height: 20px;
    transform: rotate(-45deg) translateX(-50%);
    -webkit-transform: rotate(-45deg) translateX(-50%);
    position: absolute;
    bottom: -4px;
    left: 20%;
    content: '';
    background: #fff;
    border-bottom: 1px solid #b9b5bd;
    border-left: 1px solid #b9b5bd;
}
.about-Customer  dl dd h6{
    font-size: 22px;
    color: #444
}
.about-Customer  dl dd .conent p{
    font-size: 14px;
    color: #666;
    margin-top: 30px;
}
.about-Customer  dl dd:last-of-type{
    margin-right: 0;
}
.about-Customer  dl dd img{
    margin-left: 24px;
    margin-top: 30px;
}
.contact-view{
    width: 100%;
    padding: 80px 0;
}
.contact-view .contact-left{
    width: 50%;
    display: inline-block;
    vertical-align: bottom
}
.contact-view .contact-left h5{
    font-size: 32px;
    color: #224698;
}
.contact-view .contact-left .phone .conent{
   display: inline-block;
   vertical-align: middle;
   margin-left: 10px;
}
.contact-view .contact-left .phone{
    margin: 50px 0 30px;
}
.contact-view .contact-left .phone .conent span{
    font-size: 16px;
    line-height: 16px;
}
.contact-view .contact-left .phone .conent p{
    color: #224698;
    font-size: 28px;
    line-height: 32px;
}
.contact-view .contact-left > p{
    font-size: 18px;
    line-height: 56px;
}
.contact-rigth{
    width: 40%;
    display: inline-block;
    text-align: right;
    vertical-align: bottom;
}
.contact-rigth ul{
    display: inline-block;
}
.contact-rigth ul li{
    display: inline-block;
    text-align: center;
    font-size: 18px;
    margin-left: 30px
}
.contact-rigth ul li img{
    display: block;
    margin-bottom: 20px;

}
.contact-map{
    width: 100%;
    position: relative;

}
.contact-map .map{
    width: 100%;
    display: block;
    height: auto;
}
.contact-map .bottm{
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    padding: 0 2%;
    line-height: 60px;
    font-size: 20px;
    color: #fff;
    width: 100%;

}
.contact-map .bottm i{
    height: 33px;
    width: 37px;
    background: url('../images/contact-ico.png') no-repeat center top;
    margin-top: 10px;
}

.contact-form{
    width: 100%;
    padding-bottom: 80px;
}
.contact-form .dt label{
    width: 32%;
    display: block;
    float: left;
    margin-right: 1.5%;
    border: 1px solid #bbbbbb;
    border-radius: 6px;
    height: 60px;
    box-sizing: border-box;
    padding: 12px 2%;
    

}
.contact-form h2{
    font-size: 28px;
    color: #224698;
    padding-top: 90px;
}
.contact-form .dt {
    padding: 32px 0 20px;
}
.contact-form .dt label input{
    width: 60%;
    height: 30px;
    border-left: 1px solid #bbb;
    line-height: 30px;
    padding-left: 20px;
    display: inline-block;
    vertical-align: middle
}
.contact-form .dt label img{
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}
.contact-form .dt label:last-of-type{
    margin-right: 0;
   
  
}
.contact-form textarea{
    width: 100%;
    display: block;
    box-sizing: border-box;
    height: 200px;
    border: 1px solid #bbb;
    border-radius: 6px;
    padding: 20px 2%;
    margin-bottom: 10px;
}
.contact-form  #submit{
    width: 100%;
    background: #224698;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    line-height: 48px;
    margin-top: 12px;
    cursor: pointer;
    text-transform: uppercase;
}
.injection-to{
    width: 100%;
    padding: 92px 0 131px;
}
.injection-to .left{
    width: 621px;
    margin-top: 10px;
}
.injection-to .left img{
    width: 100%;
    display: block;
    height: auto;
}
.injection-to .rigth{
    width: 724px;
}
.injection-to .rigth h3{
    font-size: 24px;
    color: #224698;
    padding: 34px 0 30px;
}
.injection-cse{
    width: 100%;
    text-align: center;
    padding-bottom: 9px;
}
.injection-cse .wat{
    width: 92%;
    display: inline-block;
}

.injection-cse .wat img{
    width: 100%;
    height: auto;
    border: 1px solid #d1d1d1
}
.injection-cse .wat p{
    font-size: 20px;
    padding: 27px 0;
    text-align: center;
   
}
.injection-cse  i{
    width: 26px;
    height: 37px;
    background: url('../images/about-set4-ico55.png') no-repeat;
    background-position: 0 center;
    display: block;
    margin-top: 360px;
    cursor: pointer;
}
.injection-cse  em{
    width: 26px;
    height: 37px;
    background: url('../images/about-set4-ico55.png') no-repeat;
    background-position: right center;
    display: block;
    margin-top: 360px;
    cursor: pointer;
}
.injection-a{
    width: 100%;
    text-align: center;
    padding-bottom: 70px;
}
.injection-a a{
    width: 300px;
    font-size: 25px;
    line-height: 60px;
    color: #fff;
    display: inline-block;
    text-align: left;
    padding: 0 30px;
    position: relative;
    vertical-align: middle;
    background: #ec7f1e;
    position: relative;
    perspective: 150;
    -webkit-perspective: 150;
}
.injection-a a::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #224698;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg); 
    display: block;
    content: '';
    z-index: -1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s; 
    opacity: 0;
}
.injection-a a:hover::before{
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg); 
    opacity: 1;
}
.injection-a a::after{
    width: 28px;
    height: 14px;
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: url(../images/index-pro-ico3.png) no-repeat;
    background-position: 0 center;
}

.injection-a .phone{
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}
.injection-a .phone p{
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin-left: 10px;
}
.injection-a .phone img{
    width: 59px;
    height: auto;
}
.injection-a .phone p span{
    font-size: 20px;
    line-height: 20px;
    display: block;
    
}
.injection-a .phone p i{
    font-size: 34px;
    color: #224698;
    line-height: 36px;
}
.ats{
    width: 100%;
    font-size: 24px;
    padding: 60px 0;
}
.ats::before{
    width: 24px;
    height: 24px;
    background: url(../images/product-index-ico1.png) no-repeat center top;
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.new-nav{
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 0;
    bottom: 0;
}
.new-nav a{
    padding: 18px;
    font-size: 18px;
    display: inline-block;
    position: relative;
    z-index: 2;
    perspective: 150;
    -webkit-perspective: 150;
}
.new-nav a:hover{
    color: #fff
}
.new-nav a:hover::before{
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
}
.new-nav a::before {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fd8900;
    display: block;
    content: '';
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    opacity: 0;
    transition: transform 0.5s ,opacity 0.5s;
    -webkit-transition: transform 0.5s ,opacity 0.5s;
}
.new-nav .action{
    color: #fff
}
.new-nav .action::before{
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
}
.new-coentnt{
    padding-top: 60px;
    padding-bottom: 100px;
}
.new-coentnt li{
    width: 49%;
    margin-right: 2%;
    float: left;
    box-sizing: border-box;
    margin-top: 20px;
   
}
.new-coentnt li a{
    padding: 38px 6%;
    border: 1px solid #b9b5bd;
    width: 100%;
    box-sizing: border-box;
    display: block;
    cursor: pointer;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}
.new-coentnt li h5{
    font-size: 20px;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.new-coentnt li:hover a{
    box-shadow: 0 0 5px 5px #f1f1f1;
    border-color: #fff;
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px); 
}
.new-coentnt li p{
    font-size: 14px;
    color: #666;
    min-height: 70px
}

.new-coentnt li:nth-of-type(2n){
    margin-right: 0;
}



.new-coentnt li i{
    width: 40%;
    line-height: 50px;
    font-size: 18px;
    text-transform: uppercase;
    color: #666;
    display: block;
    border: 1px solid #666;
    box-sizing: border-box;
    padding-left: 20px;
    margin-top: 20px;
    position: relative;
}
.new-coentnt li i::before{
  width: 28px;
  height: 14px;
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  background: url('../images/index-pro-des.png') no-repeat;
  background-position: 0 center; 
}


.new-coentnt li i::after{
    content: '';
    width: 0;
    height: 100%;
    display: block;
    background: #fd8900;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    transition: width 0.5s;
    -webkit-transition: width 0.5s; 
}
.new-coentnt li:hover i{
    color: #fff;
    border-color: #fff
}
.new-coentnt li:hover i::after{
    width: 100%;
}
.new-coentnt li:hover i::before{
  background-position: -45px center;
   animation: newseico 0.8s;
   -webkit-animation: newseico 0.8s;
}
.pro-banr{
    width: 100%;
    padding: 36px 0;
}
.pro-banr i{
    width: 30px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    background: url('../images/productdetails-ico.png') no-repeat center top;
    margin-right: 10px;
    margin-bottom: 10px;
}
.pro-banr > a{
    width: 127px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    color: #444;
    background: #e7e7e7;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.pro-banr > a::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #224698;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s,transform 0.5s;
    -webkit-transition: opacity 0.5s,transform 0.5s;
    transform: scale(0);
    -webkit-transform: scale(0);
}
.pro-banr > a:hover{
    color: #fff
}
.pro-banr > a:hover::before{
    opacity:1;
    transform: scale(1);
    -webkit-transform: scale(1);
    
}
.pro-banr p a{
   font-size: 18px;
   color: #666;
   line-height: 40px;
}
.pro-banr p a::after{
    content: '>';
    font-size: 18px;
    color: #666;
    padding: 0 5px;
}
.pro-banr p a:last-of-type::after{
    content: ''
}
.pro-banr p a:hover{
    color: #224698
}
.pro-sst{
    width: 100%;
    padding-bottom: 70px;
}
.pro-sst .img{
    width: 50%;
    box-sizing: border-box;
    border: 1px solid #ebebeb;
    display: inline-block;
    vertical-align: middle;
}
.pro-sst .img  .bananrprodut{
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.pro-sst .img  .bananrprodut i{
    width: 50px;
    height: 50px;
    position: absolute;
    left:-50px;
    background: url('../images/prodyct.png') no-repeat center top;
    top: 50%;
    opacity: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s; 
    z-index: 6;
}
.pro-sst .img  .bananrprodut em{
    width: 50px;
    height: 50px;
    position: absolute;
    right: -50px;
    background: url('../images/prodyct.png') no-repeat center top;
    top: 50%;
    opacity: 0;
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg); 
    transition: all 0.5s;
    -webkit-transition: all 0.5s; 
    z-index: 6;
}
.pro-sst .img:hover .bananrprodut i{
    left:10px;
    opacity: 1;
}
.pro-sst .img:hover .bananrprodut em{
    right:10px;
    opacity: 1;
}
.pro-sst .img  .bananrprodut ul{
    width: 1100000px;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s; 
}
.pro-sst .img  .bananrprodut ul li{
    float: left;
}
.pro-sst .img .bananrprodut ul li img{
    width: 100%;
    height: auto;
}
/* .pro-sst .img img{
    width: 100%;
    height: auto;
} */
.pro-sst .pro-conent{
    width: 49%;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    padding: 0 0 0 4%;
}
.pro-sst .pro-conent h5{
    font-size: 32px;
    color: #224698;
}
.pro-sst .pro-conent .das{
   min-height: 200px;
   padding-top: 32px;
}
.pro-sst .pro-conent .das p{
    font-size: 18px;
    padding-bottom: 26px;
}
.pro-sst .pro-conent .das p span{
    display: block;
    font-size: 16px;
    color: #666
}
.pro-sst .pro-conent .btn-pro{
    width: 100%;
    padding-top: 20px;
}
.pro-sst .pro-conent .btn-pro a{
    width: 40%;
    display: inline-block;
    font-size: 20px;
    color: #fff;
    background: #ec7f1e;
    line-height: 50px;
    box-sizing: border-box;
    padding-left: 20px;
    position: relative;
    margin-right: 20px;
    perspective: 150;
    -webkit-perspective: 150;
}
.pro-sst .pro-conent .btn-pro a::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #224698;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    display: block;
    content: '';
    z-index: -1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    opacity: 0;
}
.pro-sst .pro-conent .btn-pro a::after{
    width: 28px;
    height: 14px;
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: url(../images/index-pro-ico3.png) no-repeat;
    background-position: 0 center;
}
.pro-sst .pro-conent .btn-pro a:hover::before{
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    opacity: 1;

}
.pro-sst .pro-conent .btn-pro .phone{
    display: inline-block;
    vertical-align: middle;
   
}
.pro-sst .pro-conent .btn-pro .phone p{
    display: inline-block;
    vertical-align: middle;
    font-size: 27px;
    color: #224698;
    line-height: 28px;
    margin-left: 6px;
}
.pro-sst .pro-conent .btn-pro .phone p span{
    font-size: 15px;
    display: block;
    line-height: 16px;
    color: #666
}
.pro-conent-description{
    width: 100%;
    border: 1px solid #ebebeb;
    box-sizing: border-box
}
.Productdescriptiontitle{
    background: #f6f7f7;
    color: #224698;
    font-size: 24px;
    line-height: 64px;
    width: 100%;
    padding: 0 2%;
}
.Productdescriptiontitle p::before{
    display: inline-block;
    content: '';
    width: 24px;
    height: 24px;
    background: url('../images/index-product-ico2.png') no-repeat center top;
    vertical-align: middle;
    margin-right: 10px;
}
.pro-conent-description .Product-conent{
    width: 100%;
    box-sizing: border-box;
    padding: 10px 2%;
    min-height: 500px
}
.product-bananr-coent{
    font-size: 60px;
    color: #224698;
    line-height: 68px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 35%;
    text-transform:uppercase;
    font-weight: bold;
    animation: productbananr 1.5s;
    -webkit-animation: productbananr 1.5s;
}
.manufacture-bananr-coent{
    position: absolute;
    width: 100%;
    left: 0;
    top: 32%;
    animation: productbananr 1.5s;
    -webkit-animation: productbananr 1.5s;
}
.manufacture-bananr-coent h3{
    font-size: 60px;
    color: #224698;
    font-weight: bold;
    line-height: 72px;
    text-transform: uppercase;
}
.manufacture-bananr-coent p{
    font-size: 18px;
    color: #444;
    width: 50%;
    padding: 30px 0 20px;
}

.manufacture-bananr-coent a{
    width: 300px;
    font-size: 25px;
    line-height: 60px;
    color: #fff;
    display: inline-block;
    text-align: left;
    padding: 0 30px;
    position: relative;
    vertical-align: middle;
    background: #ec7f1e;
    position: relative;
    perspective: 150;
    -webkit-perspective: 150;
}
.manufacture-bananr-coent a::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #224698;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg); 
    display: block;
    content: '';
    z-index: -1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s; 
    opacity: 0;
}
.manufacture-bananr-coent a:hover::before{
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg); 
    opacity: 1;
}
.manufacture-bananr-coent a::after{
    width: 28px;
    height: 14px;
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: url(../images/index-pro-ico3.png) no-repeat;
    background-position: 0 center;
}

@-webkit-keyframes productbananr {
    0% {
        opacity: 0;
        transform: translateY(50px);
        -webkit-transform: translateY(50px);
    }
    25% {
        opacity: 0;
        transform: translateY(50px);
        -webkit-transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
  }
  
  @keyframes productbananr {
    0% {
        opacity: 0;
        transform: translateY(50px);
        -webkit-transform: translateY(50px);
    }
    25% {
        opacity: 0;
        transform: translateY(50px);
        -webkit-transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
  }