@charset "UTF-8";
/* 经典案例 */
.main {
  width: 100%;
  height: 100vh;
}
.main .swiper-container {
  width: 100%;
  height: 100%;
}
.main .swiper-container .swiper-wrapper .swiper-slide .container {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #ffffff;
}
.main .swiper-container .swiper-wrapper .swiper-slide .container::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  z-index: 15;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8705882353));
}
.main .swiper-container .swiper-wrapper .swiper-slide .container .image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  top: 0;
  left: 0;
  z-index: 10;
}
.main .swiper-container .swiper-wrapper .swiper-slide .container .text-warp {
  position: absolute;
  bottom: 10%;
  left: 12%;
  font-weight: bold;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.main .swiper-container .swiper-wrapper .swiper-slide .container .text-warp .title-en {
  font-size: 18px;
  padding-right: 20px;
}
.main .swiper-container .swiper-wrapper .swiper-slide .container .text-warp .title {
  font-size: 30px;
  padding-right: 20px;
}
.main .swiper-container .swiper-wrapper .swiper-slide .container .text-warp .address {
  font-size: 16px;
  padding-right: 20px;
}
.main .swiper-container .swiper-pagination-box {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 97%;
  margin: 0 auto;
  font-size: 32px;
  color: #000000;
  position: absolute;
  z-index: 300;
  top: 50%;
  transform: translateY(-50%);
}
.main .swiper-container .swiper-pagination-box div {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: 300ms;
}
.main .swiper-container .swiper-pagination-box div img {
  pointer-events: none;
  margin: 0 40px;
}
.main .swiper-container .swiper-pagination-box .prev-page {
  transform: translateX(10%);
}
.main .swiper-container .swiper-pagination-box .prev-page:hover {
  transform: translateX(0);
}
.main .swiper-container .swiper-pagination-box .prev-page img {
  transform: rotateY(180deg);
}
.main .swiper-container .swiper-pagination-box .next-page {
  transform: translateX(-10%);
}
.main .swiper-container .swiper-pagination-box .next-page:hover {
  transform: translateX(0);
}

@media screen and (max-width: 1200px) {
  .text-warp .title-en {
    font-size: 16px !important;
  }
  .text-warp .title {
    font-size: 22px !important;
  }
  .text-warp .address {
    font-size: 14px !important;
  }
  .main .swiper-container .swiper-pagination-box {
    display: none;
  }
}
@media screen and (max-width: 770px) {
  .text-warp {
    left: 4% !important;
  }
  .text-warp .title-en {
    font-size: 18px !important;
  }
  .text-warp .title {
    font-size: 30px !important;
  }
  .text-warp .address {
    font-size: 16px !important;
  }
}