.hero {
  position: relative;
  height: 605px;
  overflow: hidden;
  background: #000;
  color: rgba(255, 255, 255, 1);
}

.hero__swiper,
.hero__slide,
.hero__content {
  height: 605px;
  padding-top: 80px;
}
.hero__swiper {
  --swiper-pagination-bottom: 24px;
}

.hero__slide {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__slide--investment {
  background-image: url('../../assets/images/home/banner/hero-investment.png');
}

.hero__slide--cross-border {
  background-image: url('../../assets/images/home/banner/hero-cross-border.png');
}

.hero__slide--marketing {
  background-image: url('../../assets/images/home/banner/hero-marketing.png');
}

.hero__slide--value-added {
  background-image: url('../../assets/images/home/banner/hero-value-added.png');
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}

.hero__copy {
  position: absolute;
  left: clamp(260px, 18.75vw, 360px);
  top: 110px;
  color: rgba(255, 255, 255, 1);
}

.hero__copy--center {
  left: 50%;
  top: 74px;
  width: 634px;
  transform: translateX(-50%);
  text-align: center;
}

.hero__slide--investment .hero__copy {
  top: 105px;
  padding-left: 54px;
}

.hero__slide--investment .hero__copy::before {
}

.hero__title {
  width: 634px;
  height: 85px;
  margin: 0;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 50px;
  font-family: var(--font-family);
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  line-height: 85px;
}

.hero__kicker {
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-family: var(--font-family-oswald);
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 3px;
}

.hero__subtitle {
  width: 634px;
  margin-top: 10px;
  overflow: hidden;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  text-align: left;
  line-height: 23px;
}

.hero__slide--investment .hero__title {
  order: 1;
  width: 640px;
}

.hero__slide--investment .hero__kicker {
  order: 2;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero__slide--investment .hero__subtitle {
  order: 3;
  margin-top: 19px;
  padding-left: 54px;
  width: 710px;
}

.hero__slide--investment .hero__cta {
  order: 4;
  margin-top: 45px;
  margin-left: 54px;
}

.hero__slide--investment .hero__copy {
  display: flex;
  flex-direction: column;
}

.hero__slide--cross-border .hero__title {
  /* margin-top: 0px; */
}

.hero__slide--cross-border .hero__cta {
  margin-top: 36px;
}

.hero__slide--marketing .hero__title {
  /* margin-top: 0px; */
}

.hero__slide--marketing .hero__cta {
  margin-top: 36px;
}

.hero__copy--center .hero__kicker {
  margin: 0 auto;
  text-align: center;
}

.hero__copy--center .hero__title {
  /* margin-top: 0px; */
  text-align: center;
}

.hero__copy--center .hero__subtitle {
  width: 492px;
  height: 53px;
  margin: 10px auto 0;
  text-align: center;
}

.hero__tags {
  display: flex;
  justify-content: space-between;
  width: 372px;
  height: 31px;
  margin: 15px auto 0;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 31px;
  border: 0.5px solid rgba(255, 255, 255, 1);
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  line-height: 23px;
}

.hero__copy--center .hero__cta {
  margin: 49px auto 0;
}

.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 198px;
  height: 50px;
  overflow: hidden;
  background-color: rgba(216, 47, 47, 1);
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  text-align: center;
  line-height: 30px;
  white-space: nowrap;
  transition: filter var(--transition);
}

.hero__cta:hover {
  filter: brightness(1.05);
}

.hero__cta-icon {
  width: 16px;
  height: 16px;
}

.hero__nav {
  position: absolute;
  left: 50%;
  right: 0;
  top: 50%;
  z-index: 5;
  width: 1440px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateX(-50%) translateY(-50%);
}

.hero__arrow {
  position: relative;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: auto;
}

.hero__arrow--prev {
  background-image: url('../../assets/images/common/arrow-left.png');
}

.hero__arrow--next {
  background-image: url('../../assets/images/common/arrow-right.png');
}

.hero__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.hero__pagination .swiper-pagination-bullet-active {
  width: 15px;
  background: #fff;
}

.hero__title-wrapper {
  position: relative;
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.25);
  padding: 14px 54px 30px;
}

.hero__title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #d82f2f;
}

/* 首页轮播 ≤768px（与蓝湖「手机端-首页 banner」一致；切图见 assets/images/home/banner/hero-mobile-*.png） */
@media (max-width: 768px) {
  .hero,
  .hero__swiper,
  .hero__slide,
  .hero__content {
    height: min(107vw, 520px);
    min-height: 401px;
  }

  .hero__slide--investment {
    background-image: url('../../assets/images/home/banner/hero-mobile-investment.png');
  }

  .hero__slide--cross-border {
    background-image: url('../../assets/images/home/banner/hero-mobile-cross-border.png');
  }

  .hero__slide--marketing {
    background-image: url('../../assets/images/home/banner/hero-mobile-marketing.png');
  }

  .hero__slide--value-added {
    background-image: url('../../assets/images/home/banner/hero-mobile-value-added.png');
  }

  .hero__copy,
  .hero__slide--investment .hero__copy,
  .hero__copy--center {
    left: 50%;
    top: 38px;
    width: 305px;
    padding-left: 0;
    text-align: center;
    transform: translateX(-50%);
  }

  .hero__slide--investment .hero__copy::before {
    display: none;
  }

  .hero__title,
  .hero__slide--investment .hero__title,
  .hero__copy--center .hero__title {
    width: 305px;
    height: auto;
    margin: 0 auto;
    font-size: 40px;
    text-align: center;
    white-space: normal;
    line-height: 50px;
  }

  .hero__title-separator {
    display: none;
  }

  .hero__kicker,
  .hero__slide--investment .hero__kicker,
  .hero__copy--center .hero__kicker {
    margin: 8px auto 0;
    font-size: 12px;
    text-align: center;
    white-space: normal;
    line-height: 14px;
    letter-spacing: 2px;
  }

  .hero__subtitle,
  .hero__slide--investment .hero__subtitle,
  .hero__copy--center .hero__subtitle {
    width: 305px;
    height: auto;
    margin: 16px auto 0;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
  }
  .hero__slide--investment .hero__subtitle {
    padding-left: 0;
  }

  .hero__cta,
  .hero__slide--investment .hero__cta,
  .hero__slide--cross-border .hero__cta,
  .hero__slide--marketing .hero__cta,
  .hero__copy--center .hero__cta {
    width: 174px;
    height: 38px;
    margin: 34px auto 0;
    font-size: 13px;
    line-height: 30px;
  }

  .hero__slide--investment .hero__cta {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta-icon {
    right: 44px;
    bottom: -1px;
    width: 14px;
    height: 14px;
  }

  .hero__tags {
    width: 300px;
    height: 25px;
    margin-top: 10px;
  }

  .hero__tag {
    width: 85px;
    height: 25px;
    font-size: 12px;
  }

  .hero__nav {
    display: none;
  }

  .hero__pagination {
    bottom: 14px !important;
  }

  .hero__title-wrapper {
    padding: 12px 16px 20px;
    box-shadow: none;
    background: transparent;
  }

  .hero__title-wrapper::before {
    display: none;
  }
}
