/*public*/
.clearfix:after{
  display:block;
  content: '';
  clear: both;
}

/*head*/
.head{
  width:100%;
  position:fixed;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:0 2%;
  background:none;
  z-index: 1000;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.logo{
  float:left;
  width: 120px;
}
.logo>img{
  width: 100%;
}
.foot-logo{
   width: 120px;
 }
.foot-logo img{
  width: 100%;
}
.head ul{
  float:left;
  display:flex;
  justify-content: space-between;
  width:46%;
  margin-left:4%;
}
.head ul li.active a,.head ul li:hover a{
  padding-left:24px;
  background:url("../images/activeicon.png") no-repeat left center;
  color: #e60012;
}
.head ul li a{
  font-size: 18px;
  color: #fff;
  line-height: 100px;
  text-align: center;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.tel{
  font-family: roboto_bold;
  float:right;
  font-size: 26px;
  color: #fff;
  padding-left:35px;
  line-height: 100px;
  background:url("../images/tel.png") no-repeat left center;
  padding-right:2%;
  margin-right: 2%;
  position:relative;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.tel:after{
  display:block;
  content: '';
  position:absolute;
  right:0;
  top:50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width:1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
}
.lang{
  float:right;
  font-size: 18px;
  font-weight: lighter;
  color: #fff;
  line-height: 100px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.headfix{
  background:#fff;
}
.headfix ul li a{
  color: #494949;
}
.headfix .lang,.headfix .tel{
  color: #333333;
}
.headfix .tel:after{
  background:#d6d6d6;
}

/*分离式下拉*/
.navshow{
  background: rgba(183, 29, 33, 0.7);
  position:fixed;
  top:100px;
  left:0;
  width:100%;
  z-index: 99;
  display:none;
}
.navshow>div{
  display:none;
  height: 364px;
  background:#f9f9f9;
  float:right;
  width: 64%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  padding:0 8%;
  position:relative;
}
.navshow>div>span{
  position:absolute;
  left:16%;
  font-size: 250px;
  color: rgba(0, 0, 0, 0.04);
  font-family: roboto_reg;
}
.navshow>div>h3{
  font-size: 48px;
  color: #000000;
}
.downlist{
  display:flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  width:60%;
  position:relative;
}
.downlist a:first-of-type{
  margin-left: 0;
}
.downlist a{
  margin-left: 15px;
  font-size: 16px;
  color: #666666;
  font-weight:lighter;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  position:relative;
}
.downlist a:hover,.downlist a.mousein{
  color: #c8000e;
}
.downlist a:after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #c8000e;
  height: 4px;
  transform-origin: 100%;
  -webkit-transform-origin: 100%;
  -webkit-transition: -webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transition: -webkit-transform .32s cubic-bezier(.4,0,.2,1);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  transition: transform .6s cubic-bezier(.4,0,.2,1),-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
}
.downlist a:hover:after,.downlist a.mousein:after{
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform-origin: 0;
  -webkit-transform-origin: 0;
  visibility: visible\9;
}

/*search*/
.search{
  border:1px solid #c8000e;
  border-radius: 29px;
  overflow:hidden;
  width:50%;
  background:#fff;
  position:relative;
}
.search input{
  float:left;
  line-height: 57px;
}
.search input:first-of-type{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:0 25px;
  font-size: 16px;
  color: #666666;
  font-weight: lighter;
  width: 80%;
}
.search input:last-of-type{
  cursor: pointer;
  width: 20%;
  background:#c8000e url("../images/searchicon.png") no-repeat center;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.search input:last-of-type:hover{
  background:#9c0611 url("../images/searchicon.png") no-repeat center;
}


/*main*/
.indexbody{
  position: relative;
  height: 100%;
}
.swiper-body,.swiper-body .swiper-slide{
  width: 100%;
  height: 100%;
}

.conticon{
  position:fixed;
  right:5%;
  bottom:5%;
  width: 118px;
  height: 118px;
  z-index: 99;
}
.conticon img{
  position:absolute;
  left:50%;
  top:50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.conticon img:first-of-type{
  animation: rotate360 8s linear 0s infinite normal;
}

@keyframes rotate360 {
  0%{
    -webkit-transform: translate(-50%,-50%) rotate(0);
    -moz-transform: translate(-50%,-50%) rotate(0);
    -ms-transform: translate(-50%,-50%) rotate(0);
    -o-transform: translate(-50%,-50%) rotate(0);
    transform: translate(-50%,-50%) rotate(0);
  }
  100%{
    -webkit-transform: translate(-50%,-50%) rotate(360deg);
    -moz-transform: translate(-50%,-50%) rotate(360deg);
    -ms-transform: translate(-50%,-50%) rotate(360deg);
    -o-transform: translate(-50%,-50%) rotate(360deg);
    transform: translate(-50%,-50%) rotate(360deg);
  }
}

/*banner*/
.banner{
  position:relative;
  width: 100%;
  height: 100%;
}
.scroll_down{
  position:absolute;
  left:50%;
  bottom:0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 80;
}
.scroll_down p{
  color: #fff;
  font-size: 13px;
  font-family: roboto_bold;
  text-align: center;
  text-transform: uppercase;
}
.scroll_down span{
  width: 2px;
  height: 70px;
  position:relative;
  display:block;
  margin:0 auto;
  margin-top: 1vw;
}
.scroll_down span:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.2;
}
.scroll_down span:after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  background: #fff;
  opacity: 1;
  animation: scroll2 1.8s 0.7s linear infinite;
}

@keyframes scroll2 {
  0% {
    top: 0;
  }
  60%{
    top:100%;
  }
  100%{
    top:100%;
  }
}


.swiper-banner,.swiper-banner .swiper-slide{
  width: 100%;
  height: 100%;
  position:relative;
  overflow:hidden;
}
.swiper-banner .swiper-slide>img{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%) scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:all .4s;
}
.swiper-banner .ani-slide>img{
  animation: scale08 3s linear 0s 1 normal;
}
@keyframes scale08 {
  0%{transform: translate(-50%,-50%) scale(1);}
  50%{ transform: translate(-50%,-50%) scale(1.05);  }
  100%{ transform: translate(-50%,-50%) scale(1);}
}
.swiper-banner .swiper-slide .warpper{
  height: 100%;
  align-items: center;
  display:flex;
}
.swiper-banner .swiper-slide .warpper a{
  display:block;
}
.swiper-banner .swiper-slide .warpper a h3{
  color: #fff;
  font-size: 45px;
  font-family: almama;
  transform:translateY(-30px);
  opacity:0;
  transition:all .4s;
}
.swiper-banner .swiper-slide .warpper a small{
  color: #fff;
  font-family: roboto_reg;
  display:block;
  font-size: 16px;
  text-transform: uppercase;
  max-width: 465px;
  margin-top: 0.6vw;
  transform:translateY(30px);
  opacity:0;
  transition:all .4s;
}
.swiper-banner .ani-slide{
  background-size:120%;
}
.swiper-banner .ani-slide .warpper a small,.swiper-banner .ani-slide .warpper a h3{
  transform:translateY(0);
  opacity:1;
}


.swiper-banner>.warpper{
  position:relative;
  bottom:5%;
}
.swiper-banner .swiper-pagination{
  text-align:left;
}
.swiper-banner .swiper-pagination span{
  position:relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background:#fff;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin:0 10px!important;
}
.swiper-banner .swiper-pagination.swiper-pagination-bullet-active{
  opacity: 1;
}
.swiper-banner .swiper-pagination span:before{
  opacity: 0;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  position:absolute;
  display:block;
  content: '';
  left:50%;
  top:50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border:1px solid #d6000f;
}
.swiper-banner .swiper-pagination span.swiper-pagination-bullet-active{
  background:#d6000f;
}
.swiper-banner .swiper-pagination span.swiper-pagination-bullet-active:before{
  opacity: 1;
}

/*title*/
.title{
  display:flex;
  align-items: center;
  position:relative;
  left:-31px;
}
.title>h3{
  font-size: 36px;
  color: #333333;
  font-weight: bold;
  padding-top: 15px;
  padding-left: 31px;
  background:url("../images/titbg.png") no-repeat left top;
}
.title>div{
  margin-top: 19px;
  margin-left: 10px;
}
.title>div>h6{
  font-size: 18px;
  color: #333333;
  font-family: roboto_bold;
  text-transform: uppercase;
  line-height: 16px;
}
.title>div>small{
  font-size: 18px;
  color: #333333;
  text-transform: uppercase;
  font-weight: lighter;
}
.pt100{
  padding-top: 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* 首页产品 */
.probg{
  width: 100%;
  height: 100%;
  background:url("../images/probg.jpg") no-repeat center;
  background-size:cover;
  display:flex;
  align-items: center;
}
.pro_top{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pro_top_fl{
  display:flex;
  justify-content: flex-end;
}
.pro_top_fl a{
  display:block;
  font-size: 14px;
  color: #666666;
  line-height: 48px;
  border:1px solid #666666;
  border-radius: 24px;
  padding:0 10px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 150px;
  margin-right: 1vw;
  position:relative;
  overflow:hidden;
}
.pro_top_fl a:before{
  position:absolute;
  display:block;
  content:'';
  left:50%;
  top:50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  height: 40px;
  width:90%;
  border-radius: 24px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  background:#d6000f;
  opacity: 0;
}
.pro_top_fl a:hover:before{
  width: 100%;
  opacity: 1;
  height: 48px;
}
.pro_top_fl a:hover{
  color: #fff;
  border:1px solid #d6000f;
}

.pro_top_fl a span{
  position:relative;
}

.swi_pro_btn{
  width: 115px;
  position:relative;
  margin-left: 2vw;
}
.swi_pro_btn .swiper-button-next:after,.swi_pro_btn .swiper-button-prev:after{
  display:none;
}
.swi_pro_btn .swiper-button-next.swiper-button-disabled{
  opacity: 1;
  border:1px solid #666666;
  background:url("../images/projt_r.png") no-repeat center;
}
.swi_pro_btn .swiper-button-prev.swiper-button-disabled{
  opacity: 1;
  border:1px solid #666666;
  background:url("../images/projt_l.png") no-repeat center;
}
.swi_pro_btn .swiper-button-next{
  right: 0;
  background:#d6000f url("../images/projt_rs.png") no-repeat center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border:1px solid #d6000f;
    -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.swi_pro_btn .swiper-button-prev{
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background:url("../images/projt_ls.png") no-repeat center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-color:#d6000f;
  border:1px solid #d6000f;
    -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.pro_bom{
  height: 21.5vw;
  margin-top: 4vw;
}
.swiper-product{
  width:100%;
  height: 100%;
}
.swiper-product .swiper-slide{
  background:#fff;
}
.swiper-product .swiper-slide a{
  display:block;
  width: 100%;
  height:100%;
  position:relative;
  overflow:hidden;
}
.swiper-product .swiper-slide a b{
  display:block;
  width: 100%;
  height: calc(100% - 50px);
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.swiper-product .swiper-slide a:hover b{
  height: 100%;
}
.swiper-product .swiper-slide a b img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.swiper-product .swiper-slide a>p{
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  color: #333333;
  font-weight: lighter;
  padding:0 10px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-top:1px solid #ebebeb;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow:hidden;
}

.swiper-product .swiper-slide a:hover>p{
  height: 0;
}

.swiper-product .mask{
  position:absolute;
  left:50%;
  top:50%;
  -webkit-transform: translate(-50%,-50%) scale(0.9);
  -moz-transform: translate(-50%,-50%) scale(0.9);
  -ms-transform: translate(-50%,-50%) scale(0.9);
  -o-transform: translate(-50%,-50%) scale(0.9);
  transform: translate(-50%,-50%) scale(0.9);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7) url("../images/maskline.png") no-repeat center;
  background-size:90% 90%;
  display:flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  opacity: 0;
}

.swiper-product a:hover .mask{
  opacity: 1;
  -webkit-transform: translate(-50%,-50%) scale(1);
  -moz-transform: translate(-50%,-50%) scale(1);
  -ms-transform: translate(-50%,-50%) scale(1);
  -o-transform: translate(-50%,-50%) scale(1);
  transform: translate(-50%,-50%) scale(1);
}
.swiper-product .mask p{
  font-size: 22px;
  color: #fff;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.swiper-product .mask small{
  font-size: 15px;
  line-height: 24px;
  display:block;
  width: 250px;
  margin:0 auto;
  color:#9e9e9e;
  margin-top: 1vw;
  margin-bottom: 2vw;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  opacity: 0;
}
.swiper-product .mask small{
  opacity: 1;
}
.swiper-product .mask img{
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  margin:0 auto;
}

.swiper-product a:hover .mask img{
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/*company*/
.combg{
  background:#f9f9f9 url("../images/combg.jpg") no-repeat left center;
  background-size:auto 100%;
  height: 100%;
  width: 100%;
}
.combg .warpper{
  height: 100%;
  display:flex;
  align-items: center;
  justify-content: space-between;
}
.com_left{
  width: 56%;
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.com_left>b{
  height: 9vw;
  width: 32.3%;
}

.com_left>b:first-of-type{
  width: 100%;
  height: 21.8vw;
  margin-bottom: 1vw;
}
.com_right{
  background:#f9f9f9;
  height: 100%;
  width: 34%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position:relative;
  overflow:hidden;
  padding-left: 7%;
  display:flex;
  align-items: center;
}
.com_right:before{
  font-weight: bold;
  content:"ABOUT";
  color: #ececec;
  font-size: 260px;
  line-height: 203px;
  display:block;
  position:absolute;
  left:165px;
  top:2%;
  transform-origin: 0 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.com_right>div{
  position:relative;
}
.com_right>div>i{
  font-size: 48px;
  font-weight: bold;
  color: #333333;
  font-style: italic;
  margin-top: 4vw;
}
.com_right>div>i>span{
  color: #d6000f;
}
.com_right>div>h1{
  font-size: 28px;
  color: #333333;
  line-height: 27px;
}
.com_right>div>p{
  margin-bottom: 2vw;
  font-size: 15px;
  color: #9f9f9f;
  letter-spacing: 1px;
}
.com_right>div>small{
  font-size: 16px;
  color: #818181;
  line-height: 34px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin-bottom: 3.5vw;
}
.com_right>div>a{
  display:block;
  background:#d6000f;
  width: 150px;
  line-height: 40px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  position:relative;
  overflow:hidden;
}
.com_right>div>a span{
  display:inline-block;
  text-align: left;
  padding-right:35px;
  background:url("../images/comiconjt.png") no-repeat right center;
  position: relative;
  z-index: 5;
}

.com_right>div>a:before,.com_right>div>a:after{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.com_right>div>a:before{
  background: #df2b37;
}
.com_right>div>a:after{
  background: #b1141f;
}
.com_right>div>a:hover:after{
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
.com_right>div>a:hover:before,.com_right>div>a:hover:after{
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}


/*apply*/
.appbg{
  background:url("../images/appbg.jpg") no-repeat center;
  background-size:cover;
  height: 100%;
  width: 100%;
  display:flex;
  align-items: center;
}
.app_top{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
}
.app_top>a{
  display:block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color:#d6000f;
  background-image: url(../images/appjt.png);
  background-repeat: no-repeat;
  background-position:15px 0;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.app_top>a:hover{
  background-color:#b1141f;
  background-position: -29px 0;
}
.app_bom{
  margin-top: 2vw;
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.app_bom li{
  width: 33.3%;
  height: 11vw;
  display:flex;
  align-items: center;
  position:relative;
  overflow:hidden;
}
.app_bom li:nth-of-type(3n){
  width: 33.4%;
}

.app_bom li .mask{
  position:absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.5) url("../images/point.png") no-repeat center;
  background-size:91%;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  opacity: 0;
}
.app_bom li:hover .mask{
  opacity: 1;
}
.i_l,.i_r{
  display:block;
  position:absolute;
  width: 1px;
  height: 0;
  background:#fff;
  -webkit-transition: 350ms 0s all linear;
  -moz-transition: 350ms 0s all linear;
  -ms-transition: 350ms 0s all linear;
  -o-transition: 350ms 0s all linear;
  transition: 350ms 0s all linear;
}
.app_bom li:hover .i_l,.app_bom li:hover .i_r{
  height: 70%;
}
.i_l{
  top:15%;
  left:5.2%;
}
.i_r{
  bottom:15%;
  right:5.2%;
}
.i_t,.i_b{
  display:block;
  position:absolute;
  height: 1px;
  width: 0;
  background:#fff;
  -webkit-transition: 350ms 0s all linear;
  -moz-transition: 350ms 0s all linear;
  -ms-transition: 350ms 0s all linear;
  -o-transition: 350ms 0s all linear;
  transition: 350ms 0s all linear;
}
.i_t{
  top:10%;
  left:8%;
}
.i_b{
  bottom:10%;
  right:8%;
}
.app_bom li:hover .i_t,.app_bom li:hover .i_b{
  width: 84%;
}

.app_text{
  width: 80%;
  margin:0 auto;
  position:relative;
}
.app_text>img{
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.app_text>p{
  color: #fff;
  font-size: 18px;
  margin-top: 2vw;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.app_text>small{
  display:block;
  font-size: 13px;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.app_bom li:hover .app_text>img{
  margin:0 auto;
}
.app_bom li:hover .app_text>p{
  margin-top: 1vw;
}
.app_bom li:hover .app_text>p,.app_bom li:hover .app_text>small{
  text-align: center;
}

/*tech*/
.techbg{
  background:#b71d21 url("../images/techbg.jpg") no-repeat left center;
  background-size:63.5% 100%;
  position:relative;
  overflow:hidden;
  width: 100%;
  height: 100%;
}
.techbg>.warpper{
  height: 100%;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.techbg>p{
  position:absolute;
  top:60px;
  right:-60px;
  width: 23px;
  font-size: 200px;
  line-height: 180px;
  color: #a91b1e;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  transform-origin: 0 0;
}

.tech_left{
  width: 64.7%;
  height:27.3vw;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right:6%;
  position:relative;
}
.tech_left .swiper-button-next:after,.tech_left .swiper-button-prev:after{
  display:none;
}
.tech_left .swiper-button-next.swiper-button-disabled{
  opacity: 1;
  border:1px solid #b2b0b0;
  background:url("../images/techjt_r.png") no-repeat center;
}
.tech_left .swiper-button-prev.swiper-button-disabled{
  opacity: 1;
  border:1px solid #b2b0b0;
  background:url("../images/techjt_l.png") no-repeat center;
}
.tech_left .swiper-button-next{
  right: 0;
  background:#d6000f url("../images/projt_rs.png") no-repeat center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border:1px solid #d6000f;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.tech_left .swiper-button-prev{
  left: -9%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background:url("../images/projt_ls.png") no-repeat center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-color:#d6000f;
  border:1px solid #d6000f;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}

.swiper-tech{
  width: 100%;
  height: 100%;
}
.swiper-tech .swiper-slide{
  background: rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:16px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.swiper-tech .swiper-slide a>img{
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height: 100%;
  object-fit: cover;
}
.img2{
  opacity: 0;
}
.swiper-tech .swiper-slide a p{
  position:absolute;
  left:2%;
  top:6%;
  background:url("../images/eqi_kuang.png") no-repeat left top;
  width: 45px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  color: #fff;
  padding-top:13px;
  padding-left: 13px;
  font-size: 30px;
  line-height: 35px;
  font-style: italic;
  font-family: almama;
  opacity: 0;
}
.swiper-tech .swiper-slide a:hover p{
  left:9%;
  opacity: 1;
}
.swiper-tech .swiper-slide a:hover .img2{
  opacity: 1;
}
.swiper-tech .swiper-slide:hover{
  background: #b71d21;
}
.swiper-tech .swiper-slide a{
  width: 100%;
  height: 100%;
  display:block;
  position:relative;
  overflow:hidden;
}
.swiper-tech .swiper-slide a>span{
  position:absolute;
  right:-10px;
  bottom:-10px;
  display:block;
  width: 62px;
  height: 63px;
  background:url("../images/eqiicon.png") no-repeat right bottom;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  opacity: 0;
}
.swiper-tech .swiper-slide a:hover>span{
  right:0;
  bottom:0;
  opacity: 1;
}



.tech_right{
  background:#b71d21;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display:flex;
  align-items: center;
  width: 32%;
  height: 100%;
  padding-left: 7%;
}
.tech_text{
  position:relative;
}
.tech_text .title h3{
  color: #fff;
  background: url(../images/titbgs.png) no-repeat left top;
}
.tech_text .title h6,.tech_text .title small{
  color: #fff;
}
.tech_text>img{
  margin-top: 3vw;
  margin-bottom: 0.5vw;
}
.tech_text>h3{
  font-size: 30px;
  color: #ffffff;
}
.tech_text>p{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.tech_text>small{
  display:block;
  margin-top: 1.5vw;
  margin-bottom: 2vw;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 29px;
}
.tech_text>a{
  display:block;
  width: 48px;
  height: 48px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border:2px solid #fff;
  border-radius: 50%;
  background-color:#fff;
  background-image: url(../images/techjs.png);
  background-repeat: no-repeat;
  background-position:15px -1px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.tech_text>a:hover{
  background-color:#b1141f;
  background-position: -29px -1px;
}


/*footer*/
#lastscreen{
  background: #282828;
}
#lastscreen .footer{
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.footer {
  background: #282828;
  position:relative;
}
.foot-logo{
  position:absolute;
  left:2%;
  top:0;
}
.fot_top{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 102px;
  padding-bottom: 67px;
  display:flex;
  justify-content: space-between;
  padding-left:3%;
}
.fot_left>h3,.fot_right>h3{
  margin-bottom: 1vw;
}
.fot_left>h3 a,.fot_right>h3{
  font-size: 18px;
  color: #fff;
}
.fot_left>a{
  color: #848484;
  font-size: 15px;
  margin-top: 0.5vw;
  display:block;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.fot_left>a:hover{
  color: #fff;
}
.foticon{
  display:flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #3e3e3e;
  margin-bottom: 1.5vw;
}
.foticon>h4{
  font-family: roboto_bold;
  background:url("../images/telicon2.png") no-repeat left center;
  padding-left:49px;
  font-size: 36px;
  color: #fff;
  padding-right: 42px;
  position: relative;
}
.foticon>h4:after{
  display:block;
  content: '';
  position:absolute;
  right:0;
  top:50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width:1px;
  height: 26px;
  background:#3e3e3e;
}
.foticon>div{
  position:relative;
}
.foticon>div>p{
  border-radius: 5px;
  position:absolute;
  top: -170px;
  right: 0;
  padding:5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 140px;
  background:#fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.foticon>div:hover>p{
  opacity: 1;
  visibility: visible;
  top:-160px;
  z-index: 10;
}

.foticon>div>p:before{
  position:absolute;
  display:block;
  content: '';
  right:15px;
  top:100%;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;

}
.foticon>div>p img{
  width: 100%;
}

.fottext p{
    font-size: 16px;
    color: #fff;
    line-height: 38px;
}




.foot {
  width: 100%;
  border-top: 1px solid #3e3e3e;
  height: 85px;
  line-height: 85px;
  color: #969696;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:0 2%;
  overflow:hidden;
}
.foot .foot-l {
  float: left;
}
.foot .foot-r {
  float: right;
}
.foot a {
  color: #969696;
}
.foot a:hover {
  color: #fff;
}





/*footer-end*/

















.m-column-t {
  position: relative;
  text-align: center;
  font-size: 0;
}
.m-column-t .center {
  display: inline-block;
  font-size: 0;
}
.m-column-t .center h3 {
  color: #333;
  font-size: 30px;
}
.m-column-t .center p {
  color: #d2d2d2;
  font-size: 30px;
}
.m-column-t span {
  position: absolute;
  width: 415px;
  top: 50%;
  margin-top: -5px;
  height: 5px;
  border-bottom: 1px solid #d2d2d2;
  z-index: 1;
}
.m-column-t span.mcl {
  left: 0;
}
.m-column-t span.mcl em {
  float: right;
}
.m-column-t span.mcr {
  right: 0;
}
.m-column-t span em {
  display: block;
  height: 11px;
  border-left: 1px solid #d2d2d2;
}
.textLine {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textLine3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textHidden {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.domHidden {
  overflow: hidden;
}
.about-main {
  padding: 20px 0 70px;
  min-height: 170px;
}
.about-main .ab-content {
  float: right;
  width: 925px;
}
.about-main .ab-content .title {
  line-height: 50px;
}
.about-main .ab-content .title a {
  color: #333;
  padding: 0 5px;
}
.about-main .ab-content .title span.icon-home {
  color: #535353;
}
.about-main .ab-content .title em {
  color: #999;
}
.about-main .ab-content .ab-conBox {
  overflow: hidden;
  background: #fff;
  min-height: 55px;
  padding: 30px 45px 40px;
}
.about-main .ab-content .ab-conBox .de-title {
  text-align: center;
  font-size: 20px;
  color: #333;
  line-height: 25px;
  margin-bottom: 8px;
}
.about-main .ab-content .ab-conBox .sub-co {
  font-size: 14px;
  color: #999;
  text-align: center;
  line-height: 18px;
}
.about-main .ab-content .ab-conBox .ab-detail {
  overflow: hidden;
  margin-top: 30px;
  font-size: 14px;
  color: #777373;
  line-height: 25px;
}
.ab-sild {
  float: left;
  width: 260px;
}
.ab-sild .title {
  position: relative;
  height: 50px;
  text-align: center;
  background: #f3c04b;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.ab-sild .title span {
  position: absolute;
  height: 3px;
  width: 30px;
  top: 50%;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
}
.ab-sild .title span em {
  display: block;
  height: 7px;
  border-left: 1px solid #fff;
}
.ab-sild .title span.stl {
  left: 35px;
}
.ab-sild .title span.stl em {
  float: right;
}
.ab-sild .title span.str {
  right: 35px;
}
.ab-sild .sild-cate {
  background: #fff;
  margin-bottom: 20px;
}
.ab-sild .sild-cate .list {
  overflow: hidden;
}
.ab-sild .sild-cate .list li {
  position: relative;
  border-bottom: 1px solid #eee;
  height: 60px;
  line-height: 60px;
}
.ab-sild .sild-cate .list li a {
  display: block;
  padding-right: 35px;
  font-size: 14px;
  color: #333;
  padding-left: 20px;
}
.ab-sild .sild-cate .list li:last-child {
  border-bottom: none;
}
.ab-sild .sild-cate .list li:hover {
  border-color: #f3c04b;
  background: #f3c04b;
}
.ab-sild .sild-cate .list li:hover a {
  color: #fff;
}
.ab-sild .sild-cate .list li:hover:after {
  color: #fff;
}
.ab-sild .sild-cate .list li:after {
  font-weight: bold;
  right: 20px;
  top: 0;
  color: #999;
  position: absolute;
  content: "\e904";
  font-family: 'icomoon' !important;
}
.ab-sild .sild-cont {
  background: #fff;
}
.ab-sild .sild-cont .cont-list {
  padding: 20px;
}
.ab-sild .sild-cont .cont-list ul li {
  color: #333;
  padding: 5px 0;
  padding-left: 60px;
  font-size: 14px;
}
.ab-sild .sild-cont .cont-list ul li span {
  width: 60px;
  margin-left: -60px;
  display: block;
  height: 20px;
  line-height: 20px;
  float: left;
  color: #666;
}
.pro-center {
  background: #fff;
  padding-bottom: 25px;
}
.pro-center .pro-list {
  overflow: hidden;
  padding: 25px 18px 10px;
}
.pro-center .pro-list ul li {
  float: left;
  width: 200px;
  margin: 0 10px 20px;
  border: 1px solid #fff;
}
.pro-center .pro-list ul li:hover {
  border-color: #f3c04b;
}
.pro-center .pro-list ul li .img {
  overflow: hidden;
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  font-size: 0;
  background: #eee;
}
.pro-center .pro-list ul li .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.pro-center .pro-list ul li .title {
  background: #f7f8fc;
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.pro-center .pro-list ul li .title:hover {
  color: #f3c04b;
}
.page {
  font-size: 0;
  text-align: center;
}
.page .center {
  display: inline-block;
  overflow: hidden;
}
.page .center .page-span {
  float: left;
  font-size: 14px;
  color: #c3c3c3;
  line-height: 32px;
  margin-right: 30px;
}
.page .center .page-list {
  float: left;
  overflow: hidden;
}
.page .center .page-list ul li {
  float: left;
  width: auto;
  min-width: 30px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin: 0 4px;
  padding: 0;
  border: none;
  background: transparent;
}
.page .center .page-list ul li a {
  min-width: 20px;
  padding: 0 5px;
  border: 1px solid #eee;
  display: block;
  color: #333;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.page .center .page-list ul li:hover a {
  color: #f3c04b;
}
.page .center .page-list ul li.active a {
  background: #f3c04b;
  color: #fff;
}
.news-center {
  background: #fff;
  padding-bottom: 25px;
}
.news-center .new-list {
  padding: 45px 45px 0px;
}
.news-center .new-list ul li {
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
}
.news-center .new-list ul li a {
  overflow: hidden;
  display: block;
  height: 90px;
  padding-bottom: 30px;
}
.news-center .new-list ul li a .img {
  float: left;
  width: 130px;
  height: 90px;
  background: #eee;
  line-height: 90px;
  font-size: 0;
  text-align: center;
}
.news-center .new-list ul li a .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.news-center .new-list ul li a .info {
  float: right;
  width: 690px;
}
.news-center .new-list ul li a .info h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  color: #333;
}
.news-center .new-list ul li a .info em {
  display: block;
  font-size: 12px;
  color: #999;
  line-height: 16px;
  margin-bottom: 10px;
}
.news-center .new-list ul li a .info p {
  font-size: 14px;
  line-height: 22px;
  color: #999;
  max-height: 44px;
  overflow: hidden;
}
.news-center .new-list ul li a:hover h3 {
  color: #f3c04b;
}
.message-c {
  background: #fff;
  padding: 40px 50px;
  overflow: hidden;
}
.message-c .p {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-bottom: 35px;
}
.message-c .from input {
  display: block;
  height: 38px;
  line-height: 38px;
  padding: 0 5px;
  border: 1px solid #d2d2d2;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}
.message-c .from input[name=user],
.message-c .from input[name=phone] {
  width: 348px;
}
.message-c .from textarea {
  font-size: 14px;
  color: #333;
  line-height: 20px;
  display: block;
  width: 728px;
  height: 130px;
  border: 1px solid #d2d2d2;
  padding: 5px;
  margin-bottom: 10px;
}
.message-c .from .code {
  overflow: hidden;
}
.message-c .from .code input[name=code] {
  width: 258px;
  float: left;
}
.message-c .from .code a {
  display: block;
  float: left;
  width: 80px;
  height: 38px;
  padding: 1px 0;
  margin-left: 10px;
}
.message-c .from .code a img {
  width: 80px;
  height: 38px;
}
.message-c .from .btn {
  padding-top: 25px;
}
.message-c .from .btn a {
  display: block;
  width: 362px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  background: #8fa4de;
}
.message-c .from .btn a:hover {
  background: #8397d0;
}
.contact-o {
  background: #fff;
  overflow: hidden;
  padding: 40px 0;
  text-align: center;
}
.contact-o iframe {
  width: 830px;
  height: 500px;
  margin: 0 auto;
}