.baixiu_company_capacity {
  padding-bottom: var(--component-gap);
  background: var(--bg-color);
}

.baixiu_company_capacity .section-title {
  margin-bottom: var(--gap-80);
}

.baixiu_company_capacity .content-wrapper {
  margin-bottom: var(--gap-60);
}

.baixiu_company_capacity .image-section {
  position: relative;
  border-radius: 1.25rem;
  overflow: visible;
  padding-left: 17.1%;
}

.baixiu_company_capacity .image-section .swiper {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}

.baixiu_company_capacity .data-section {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(0);
  opacity: 0;
  background: #0137B5;
  border-radius: 1.25rem;
  padding: var(--gap-60);
  display: flex;
  flex-direction: column;
  gap: var(--gap-40);
  z-index: 2;
  transition: all 0.8s ease;
}

.baixiu_company_capacity .data-section.animate-in {
  bottom: 50%;
  transform: translateY(50%);
  opacity: 1;
}

.baixiu_company_capacity .data-item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.baixiu_company_capacity .data-icon-box {
  width: 5rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  overflow: hidden;
  transition: all 0.3s ease;
}

.baixiu_company_capacity .data-item:hover .data-icon-box {
  background: var(--color-primary);
}

.baixiu_company_capacity .data-icon {
  width: 2.5rem;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.baixiu_company_capacity .data-content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-10);
}

.baixiu_company_capacity .data-value {
  margin: 0;
}

.baixiu_company_capacity .data-label {
  margin: 0;
}

.baixiu_company_capacity .image-section .swiper-slide img {
  width: 100%;
  aspect-ratio: 1425 / 747;
  object-fit: cover;
  display: block;
}

.baixiu_company_capacity .image-section .swiper-button-next {
  position: absolute;
  bottom: 1.875rem;
  right: 1.875rem;
  width: 3.75rem;
  height: 3.75rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.baixiu_company_capacity .image-section .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.6);
}

.baixiu_company_capacity .image-section .swiper-button-next::after {
  display: none;
}

.baixiu_company_capacity .description-section {
  margin-top: var(--gap-20);
  padding-left: 17.1%;
}

.baixiu_company_capacity .description-text {
  margin: 0;
}

.baixiu_company_capacity .cert-logos {
  /* opacity: 0.3; */
}

.baixiu_company_capacity .cert-logos .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
}

.baixiu_company_capacity .cert-logos .swiper-slide img {
  width: 100%;
  aspect-ratio: 171/133;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 992px) {
  .baixiu_company_capacity .image-section {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .baixiu_company_capacity .data-section.animate-in {
    transform: translateY(0);
  }

  .baixiu_company_capacity .data-section {
    position: static;
    transform: none;
    opacity: 1;
    width: 100%;
    order: -1;
  }

  .baixiu_company_capacity .image-section .swiper {
    order: 0;
  }

  .baixiu_company_capacity .image-section .swiper-button-next {
    display: none;
  }

  .baixiu_company_capacity .description-section {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .baixiu_company_capacity .data-section {
    padding: 1.875rem;
    gap: 1.25rem;
  }
}