.banner {
  height: 437px;
  background: url(../../images/business/work_bg.jpg) no-repeat;
  background-size: cover;
}
.banner .t1,
.banner .t2 {
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.banner .t1 {
  padding-top: 190px;
  font-size: 50px;
}
.banner .t2 {
  font-size: 25px;
  padding-top: 30px;
}

.shop-box {
  width: 1200px;
  padding: 100px 0;
  margin: 0 auto;
  display: flex;
}
.shop-box .shop {
  width: 240px;
  height: 360px;
  box-sizing: border-box;
  border: 1px solid rgb(216, 216, 216);
  border-left: none;
  overflow: hidden;
}
.shop-box .shop img {
  width: 100%;
  height: 100%;
}

.shop-box .shop .txt {
  width: 100%;
  height: 100px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  line-height: 100px;
  background-color: rgba(36, 110, 230, 0.8);
  transition: transform 0.5s;
}

.shop-box .shop:nth-of-type(1n + 1):hover .txt {
  transform: translateY(-100px);
}
