body {
  background: #F8F8F8;
}

.oupute_about_company {
  position: relative;
  padding: 7.5rem 0;
  background-color: #F8F8F8;
  font-family: var(--font-family);
  overflow: hidden;
}

.oupute_about_company .oac-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.oupute_about_company .oac-bg-globe {
  top: 8%;
  right: 3%;
  width: 62.34%;
  aspect-ratio: 367/195;
}

.oupute_about_company .oac-bg-globe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oupute_about_company .oac-bg-city {
  left: 0;
  bottom: 26%;
  width: 100%;
  aspect-ratio: 55/23;
}

.oupute_about_company .oac-bg-city img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.oupute_about_company .oupute-container {
  position: relative;
  z-index: 1;
}

/* ──────── 上:描述 + 标题 + 按钮 ──────── */
.oupute_about_company .oac-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3.75rem;
}

.oupute_about_company .oac-top-desc {
  order: 1;
}

.oupute_about_company .oac-top-head {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 1.25rem;
}

.oupute_about_company .oac-title {
  color: #181D27;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.oupute_about_company .oac-desc {
  margin: 0;
  color: #535862;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.oupute_about_company .oac-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .875rem 2.25rem;
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
  border: none;
  border-radius: 3.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.oupute_about_company .oac-cta-btn:hover {
  background: var(--btn-hover);
  transform: translateY(-0.125rem);
}

/* ──────── 中:数据 + 公司图片 ──────── */
.oupute_about_company .oac-middle {
  display: grid;
  grid-template-columns: 24.6875rem 1fr;
  align-items: center;
  margin-bottom: 1.875rem;
}

.oupute_about_company .oac-stats {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.oupute_about_company .oac-stat {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.oupute_about_company .oac-stat-value {
  color: var(--color-primary);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.22;
  text-transform: capitalize;
}

.oupute_about_company .oac-stat-label {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.oupute_about_company .oac-stat-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.oupute_about_company .oac-main-image {
  width: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
}

.oupute_about_company .oac-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ──────── 下:轮播图 ──────── */
.oupute_about_company .oac-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.oupute_about_company .oac-swiper {
  width: 100%;
}

.oupute_about_company .swiper-slide {
  position: relative;
  height: auto;
  aspect-ratio: 345/213;
  border-radius: 0.625rem;
  overflow: hidden;
}

.oupute_about_company .oac-gallery-link {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.oupute_about_company .oac-gallery-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.oupute_about_company .oac-gallery-link:hover img {
  transform: scale(1.08);
}

/* ──────── pagination dots (swiper 默认) ──────── */
.oupute_about_company .oac-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.oupute_about_company .oac-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: .5rem;
  margin: 0 !important;
  background: #E5E6E9;
  opacity: 1;
  border-radius: 50%;
  transition: background-color 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.oupute_about_company .oac-pagination .swiper-pagination-bullet-active {
  width: 3.75rem;
  background: var(--color-primary);
  border-radius: 6.25rem;
}

@media screen and (max-width: 992px) {
  .oupute_about_company .oac-bg-globe {
    top: 7.75rem;
    left: -4%;
    right: auto;
    width: 108%;
  }

  .oupute_about_company .oac-bg-city {
    left: 34%;
    bottom: 8.25rem;
    width: 180%;
    transform: translateX(-50%);
    aspect-ratio: 1920/869;
  }

  .oupute_about_company .oac-bg-city img {
    object-fit: contain;
  }

  .oupute_about_company .oac-top {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }

  .oupute_about_company .oac-top-desc {
    order: 2;
  }

  .oupute_about_company .oac-top-head {
    order: 1;
  }

  .oupute_about_company .oac-middle {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .oupute_about_company .oac-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .oupute_about_company .oac-stat {
    flex: 1 1 45%;
  }

  .oupute_about_company .oac-stat-divider {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .oupute_about_company .oac-bg-globe {
    top: 8rem;
    left: -4%;
    right: auto;
    width: 108%;
  }

  .oupute_about_company .oac-bg-city {
    bottom: 8.25rem;
    width: 315%;
  }

  .oupute_about_company .oac-stats {
    flex-direction: column;
  }

  .oupute_about_company .oac-stat {
    flex: 1 1 100%;
  }

  .oupute_about_company .oac-stat-divider {
    display: block;
  }
}

@media screen and (max-width: 430px) {
  .oupute_about_company .oac-bg-globe {
    top: 7.75rem;
    left: -3%;
    width: 106%;
  }

  .oupute_about_company .oac-bg-city {
    bottom: 8.25rem;
    width: 315%;
  }
}
