.s2 .con {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.s2 .con .info {
  width: 23%;
  text-align: center;
}
.s2 .con .info .img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.s2 .con .info .img img {
  transition: 0.3s;
  object-fit: fill;
  width: 100%;
  height: 300px;
  cursor: pointer;
}
.s2 .con .info .img:hover img {
  transform: scale(1.1);
}
.s2 .con .info .text p {
  margin: 20px 0;
  font-size: 22px;
  font-weight: 600;
}
.banner img {
  width: 100%;
}
.lx-pc {
  max-width: 800px;
  margin: 0 auto;
}
.lx-pc img {
  width: 100%;
}
.lx-m {
  display: none;
}
@media (max-width: 768px) {
  .banner {
    margin-bottom: 0;
  }
  .s2 .con .info {
    width: 100%;
  }
  .lx-pc {
    display: none;
  }
  .lx-m {
    display: block;
    text-align: center;
  }
  .lx-m img {
    width: 100%;
  }
  .lx-m p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
  }
  .s2 .con .info .img {
    height: auto;
  }
  .s2 .con .info .img img {
    height: auto;
  }
}
