/* 公共 Banner。Figma 1920 高 740px。禁止写 max-width 媒体查询。 */

.hero-banner {
  position: relative;
  width: 100%;
  height: 46.25rem;
  overflow: hidden;
}
.hero-banner-slides {
  position: absolute;
  inset: 0;
}
.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-banner-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.hero-banner-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 16.9375rem;
}
.hero-banner-title,
.hero-banner-desc {
  margin: 0;
  color: #fff;
  opacity: 0;
  transform: translateY(-3.75rem);
}
.hero-banner-title {
  font-family: s-semibold, sans-serif;
  font-size: 3.5rem;
  line-height: 4.625rem;
}
.hero-banner-desc {
  margin-top: 0.5rem;
  font-family: s-regular, sans-serif;
  font-size: 2rem;
  line-height: 2.625rem;
}
.hero-banner.is-ready .hero-banner-slide.is-active .hero-banner-title {
  transform: translateY(0) translateZ(0);
  opacity: 1;
  transition: opacity .6s linear, transform .6s cubic-bezier(.215,.61,.355,1);
}
.hero-banner.is-ready .hero-banner-slide.is-active .hero-banner-desc {
  transform: translateY(0) translateZ(0);
  opacity: 1;
  transition: opacity .6s linear .1s, transform .6s cubic-bezier(.215,.61,.355,1) .1s;
}
.hero-banner-dots {
  position: absolute;
  left: 0;
  right: 0;
  top: 26.8125rem;
  z-index: 3;
  display: flex;
  gap: 1.25rem;
  margin-top: 0;
}
.hero-banner-dot {
  width: 0.875rem;
  height: 0.875rem;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.hero-banner-dot.is-active {
  background: #fff;
}
