.banner-content {
  background: linear-gradient(0deg, rgba(16, 56, 98, 0.00) 13.39%, rgba(16, 56, 98, 0.2) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.minlong_banner .swiper-slide img {
  width: 100%;
  /* height: 100vh; */
  object-fit: cover;
}

.minlong_banner .banner-content .banner-title,
.minlong_banner .banner-content .banner-desc,
.minlong_banner .banner-content .minlong-btn {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
  display: none;
}

.banner-title {
  text-align: center;
  font-family: var(--title-font-family);
  color: #fff;
  font-size: 78px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  max-height: calc(78px * 1.15 * 2);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.banner-desc {
  text-align: center;
  font-family: var(--medium-font-family);
  padding: 20px 0;
  width: 100%;
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  line-height: normal;
  background: linear-gradient(90deg, rgba(16, 56, 98, 0.00) 0%, #103862 50%, rgba(16, 56, 98, 0.00) 100%);
  margin-top: var(--text-gap-md);
}

.minlong_banner .minlong-btn {
  margin: 0 auto;
  margin-top: calc(var(--text-gap) * 2);
}

.minlong_banner .swiper-slide-active .banner-content .banner-title,
.minlong_banner .swiper-slide-active .banner-content .banner-desc,
.minlong_banner .swiper-slide-active .banner-content .minlong-btn {
  opacity: 1;
  transform: translateY(0);
}


@media screen and (max-width: 1500px) {
  .banner-title {
    font-size: 64px;
    max-height: calc(64px * 1.15 * 2);
  }

  .banner-desc {
    font-size: 28px;
  }
}

@media screen and (max-width: 1280px) {
  .banner-title {
    font-size: 58px;
    max-height: calc(58px * 1.15 * 2);
  }

  .banner-desc {
    font-size: 24px;
    padding: 16px 0;
  }
}

@media screen and (max-width: 1200px) {
  .banner-title {
    font-size: 50px;
    max-height: calc(50px * 1.15 * 2);
  }

  .banner-desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 992px) {
  .banner-title {
    font-size: 42px;
    max-height: calc(42px * 1.15 * 2);
  }

  .banner-desc {
    font-size: 18px;
  }

  .minlong_banner .swiper-slide img {
    height: auto;
    aspect-ratio: 1920 / 960;
  }
}

@media screen and (max-width: 768px) {
  .banner-title {
    font-size: 36px;
    max-height: calc(36px * 1.15 * 2);
  }

  .banner-desc {
    font-size: 14px;
    padding: 12px 0;
  }
}

@media screen and (max-width: 576px) {
  /* .minlong_banner .swiper-slide img {
    min-height: 300px;
  } */
  .banner-title {
    font-size: 32px;
    max-height: calc(32px * 1.15 * 2);
  }

  .banner-desc {
    font-size: 12px;
    padding: 10px 0;
  }
}

@media screen and (max-width: 480px) {
  .banner-title {
    font-size: 28px;
    max-height: calc(28px * 1.15 * 2);
  }
}