html,body{
  position: relative;
  height:100%;
}
.twoImgBox{
  width: 17rem;
  height: 53.1%;
  position: absolute;
  left:1.1rem;
  top:23.4%;
  cursor: pointer;
}

.twoImgBox .imgBox{
  /* float: left; */
  display: block;
  position: absolute;
  top:0;
  width:50%;
  height:100%;
  overflow: hidden;
  opacity: 0;
}
.twoImgBox .imgBox:hover::before {
  opacity: 0.6;  
}
.twoImgBox .imgBox::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -ms-transition: opacity 0.8s;
}
.twoImgBox .imgBox img {
  width:100%;
  height:100%;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
}
.twoImgBox .imgBox:hover img{
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.twoImgBox .imgBox2 {
  right:0;
  z-index: 20;
}
.twoImgBox .imgBox1 {
  left:0;
  width: 50.1%;
  z-index: 10;
}
.twoImgBox .imgBox .textBox{
  position: absolute;
  z-index:10;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%,-50%,0);
  -webkit-transform: translate3d(-50%,-50%,0);
  -moz-transform: translate3d(-50%,-50%,0);
  -ms-transform: translate3d(-50%,-50%,0);
}
.twoImgBox .imgBox .textBox .bigTiTle {
  font-size: 0.26rem;
  color:#fff;
  border: 1px solid #fff;
  width:3.46rem;
  text-align: center;
  line-height: 0.55rem;
  font-weight: bold;
  cursor: pointer;
}
.twoImgBox .imgBox .textBox .hideText {
  font-size:16px;
  color:#fff;
  text-align: center;
  letter-spacing:0.12rem;
  margin-top:0.16rem;
  opacity: 0;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transform: translate3d(0,100%,0);
  -webkit-transform: translate3d(0,100%,0);
  -moz-transform: translate3d(0,100%,0);
  -ms-transform: translate3d(0,100%,0);
}
.twoImgBox .imgBox:hover .textBox .hideText  {
  opacity: 1;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/* 移动端布局 */
@media screen and (max-width: 750px){
  .twoImgBox {
    width: 100%;
    height: auto;
    position: static;
    padding: 0 0.4rem;
  }
  .twoImgBox .workTitle{
    text-transform: uppercase;
    font-size:.38rem;
    padding: 0.8rem 0 0.5rem 0;
    color:#333;
    font-family: 'avantgrade-demi';
    /* border-top:1px solid #bdbdbd; */
  }
  .twoImgBox .imgBox img {
    width: 100%;
    height: 4rem;
  }
  .twoImgBox .imgBox {
    display: block;
    position: static;
    top: 0;
    overflow: hidden;
    opacity: 0;
    height: auto;
  }
  .twoImgBox .imgBox::before {
    display: none;
  }
  .twoImgBox .imgBox:hover img{
    transform: none;
    -webkit-transform: none;
  }
  .twoImgBox .imgBox .mobile-txt{
    margin: 0.4rem 0 0.7rem 0;
  }
  .twoImgBox .imgBox .mobile-txt span:nth-child(1) {
    color:#333;
    font-family: 'avantgrade-demi';
    font-size:0.3rem;
  }
  .twoImgBox .imgBox .mobile-txt span:nth-child(2) {
    color:#666;
    font-size:0.26rem;
  }
  .twoImgBox .imgBox1 {
    width: 100%;
  }
  .twoImgBox .imgBox2 {
    width: 100%;
  }
}

