.clothBanner img{
  width: 100%;
  vertical-align:top;
}
/* 工厂转型 */
.factory{
  background-color:#eaebef;
  padding: 64px 5px;
}
.factoryCon{
  width: 90%;
  background-color: #fff;
  margin: auto;
}
.factoryContain{
  padding: 90px 180px 90px 140px;
  color:#333 ;
}
.IteamContain{
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  margin-bottom: 100px;
}
.factoryIteam{
  width: 30%;
}
.item1{
  padding-top: 20px;
  background: url('../img/product/lineBg.png') no-repeat 50px;
}
.item1 p{
  padding-left: 80px;
  font-size: 28px;
  color:#333 ;
  margin: 10px;
  text-align: left;
}
.factoryIteam{
  text-align: center;
  cursor: pointer;
}
.factoryImg{
  width: 100px;
  height: 100px;
}
.factoryTit{
  font-size: 18px;
  margin: 14px 0 18px 0;
}
.factoryCopywriting{
  text-align: left;
  font-size: 14px;
}
.factoryIteam:hover p{
  color: #055be4;
}

/* 一流团队 */
.trustReason{
  /* padding: 70px 0 80px 0; */
  text-align: center;
  color: #444;
  width: 1200px;
  margin: auto;
  height: 600px;
}
.trustReason h3{
  font-size: 30px;
  font-weight: 500;
  margin-top: 70px;
}
.line{
  margin: 22px;
}
.trustReason p{
  font-size: 18px;
  margin-bottom: 30px;
}
.trustShow{
  display: flex;
  justify-content: space-between;
}


/* 动画 */
.trustShow p{
  position: relative;
}
.normal{
  position: absolute;
  left: 50%;
  top: 0px;
  margin-left: -135px;
  transition: all  ease  0.5s;
}
.hover{
  position: absolute;
  left: 50%;
  top: 0px;
  margin-left: -135px;
  transform: scale(0);
  opacity: 0.3;
  transition: all  ease  0.5s;
}

.trustShow p:hover .normal{
  -webkit-transform:scale(0.2);
  -moz-transform:scale(0.2);
  -ms-transform:scale(0.2);
  transform: scale(0.2);
  
}
.trustShow p:hover .hover{
  -webkit-transform:scale(1);
  -moz-transform:scale(1);
  -ms-transform:scale(1);
  transform: scale(1);
  opacity: 1;
}

/* 工厂转型动画 */
.imgContain{
  position: relative;
  height: 100px;
}
.img1{
}
.img2{
  position: absolute;
  left: 50%;
  top: 0px;
  margin-left: -50px;
  opacity: 0;
  transition: all  ease  0.5s;
}
.factoryIteam:hover .img2{
  animation: fadeIn 2s ease forwards;
  -webkit-animation: fadeIn 2s ease forwards;
}
.factoryIteam:hover .img1{
  opacity: 0;
}

@keyframes fadeIn{
	0%{
    opacity: 0;
	}
	100%{
    opacity: 1;
	}

}

@-webkit-keyframes fadeIn{
	0%{
    opacity: 0;
	}
	100%{
    opacity: 1;
	}
	
}
