.weilan_steel_application {
  padding-top: 6rem;
  padding-bottom: 7.5rem;
  position: relative;
  background: linear-gradient(180deg,
      rgba(36, 116, 204, 0.05) 0%,
      rgba(36, 116, 204, 0) 100%);
}

.weilan_steel_application .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  pointer-events: none;
}

.weilan_steel_application_title {
  text-align: center;
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}

.weilan_steel_application_swiper {
  position: relative;
  overflow: hidden;
  padding-top: 4.125rem;
  padding-bottom: 1.875rem;
}

.weilan_steel_application_swiper .swiper {
  overflow: visible;
}

.weilan_steel_application_swiper .swiper-wrapper {
  align-items: center;
}

.weilan_steel_application_swiper .swiper-slide {
  width: 62.5%;
  aspect-ratio: 20 / 13;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.75);
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
}

.weilan_steel_application_swiper .swiper-slide-prev,
.weilan_steel_application_swiper .swiper-slide-next {
  z-index: 2;
  opacity: 0.7;
  visibility: visible;
}

.weilan_steel_application_swiper .swiper-slide-active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transform: scale(1);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
}

.weilan_steel_application_swiper .slide-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.weilan_steel_application_swiper .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.weilan_steel_application_info {
  text-align: center;
  width: 62.5%;
  margin: 0 auto;
}

.weilan_steel_application .info-inner {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.weilan_steel_application .info-inner.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

.weilan_steel_application .info-inner.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.weilan_steel_application .info-title {
  font-size: var(--font-size-h3);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-primary);
  margin-bottom: .6875rem;
}

.weilan_steel_application .info-subtitle {
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: 1.67;
  color: #333;
  margin-bottom: .25rem;
}

.weilan_steel_application .info-content {
  font-size: var(--font-size-md);
  color: #666;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.weilan_steel_application .info-btn {
  display: inline-flex;
}


@media (max-width: 768px) {
  .weilan_steel_application_swiper .swiper-slide {
    width: 70%;
  }

  .weilan_steel_application_swiper .swiper-slide-active {
    transform: scale(1);
  }

  .weilan_steel_application_info {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .weilan_steel_application_info {
    width: 100%;
  }
}