.home .page-banner {
  margin-bottom: 72px;
}
.home .page-banner-main-container {
  margin-top: 498px;
}
.home .page-banner-title {
  font-size: 32px;
}

.home-experience-section {
  height: 828px;
  background: url("/v2/mobile/images/partners_reasons_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(
      to right,
      rgba(228, 25, 54, 0),
      rgba(228, 25, 54, 0.5),
      rgba(228, 25, 54, 0)
    )
    1;
}
.home-corridor-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 402px;
  background: linear-gradient(
    180deg,
    rgba(228, 25, 54, 0),
    rgba(228, 25, 54, 0.2)
  );
}
.home-experience-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 402px;
  background: url("/v2/mobile/images/home_experience_corridor.png") center bottom
    no-repeat;
  z-index: 9;
}
.home-experience-container {
  margin-top: 24px;
}

.home-experience-title {
  font-size: 24px;
  font-weight: 400;
  font-family: "Magnita";
  margin-bottom: 36px;
}

.home-experience-features {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.exp-feature-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.exp-feature-vertical {
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
  height: 237px;
  margin-right: 24px;
  border-radius: 1px;
  position: relative;
}

.exp-feature-vertical-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 125px;
  background: rgba(255, 255, 255, 1);
  border-radius: 1px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exp-feature-items {
  height:238px;
  position: relative;
}

.exp-feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: absolute;
  top: 0;
  left: 0;
  width: 328px;
}
.exp-feature-item:nth-child(1) {
  top: 0;
}
.exp-feature-item:nth-child(2) {
  top: 55px;
}
.exp-feature-item:nth-child(3) {
  top: 110px;
}
.exp-feature-item.active .exp-feature-icon,
.exp-feature-item.active .exp-feature-desc {
  opacity: 1;
}
.exp-feature-item:nth-child(2) .exp-feature-title,
.exp-feature-item:nth-child(3) .exp-feature-title {
  top: 110px;
}

.exp-feature-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.exp-feature-icon img {
  width: 36px;
  height: 36px;
}

.exp-feature-title {
  position: absolute;
  top: 48px;
  left: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.exp-feature-desc {
  position: absolute;
  top: 80px;
  left: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  max-width: 382px;
  line-height: 126%;
  opacity: 0;
}


/* 首页定制服务卡片区域样式 */
.home-collectibles-section {
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-collectibles-title {
  font-size: 24px;
  font-weight: 400;
  font-family: "Magnita";
  margin-bottom: 12px;
}
.home-collectibles-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 24px;
}
.home-collectibles-carousel {
  margin-left: 24px;
  position: relative;
  width: 378px;
  overflow: hidden;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 1000px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  gap: 24px;
}

.home-collectibles-card {
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-collectibles-card-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.home-collectibles-card-title {
  font-size: 16px;
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(30, 30, 34, 0.8);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow.left {
  left: 0;
}
.carousel-arrow.right {
  right: 0;
}
.carousel-arrow:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  padding: 3px;
}
.carousel-arrow.left:after {
  transform: rotate(135deg);
}
.carousel-arrow.right:after {
  transform: rotate(-45deg);
}

/* 指示器 */
.carousel-indicators {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.carousel-indicators .dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}
.carousel-indicators .dot.active {
  width: 24px;
  background: #fff;
}
.home-collectibles-card-img-container {
  overflow: hidden;
  width: 246px;
  height: 212px;
  padding: 10px 10px 0 10px;
  box-sizing: border-box;
}
.home-collectibles-card-img-container-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-collectibles-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.98) contrast(1.08);
  transform: scale(1);
  transition: filter 0.25s, transform 0.25s;
}
.home-collectibles-card:hover .home-collectibles-card-img {
  filter: grayscale(0.15) brightness(1.08) contrast(1.12);
  transform: scale(1.1);
}

/* 首页 Swiss Precision Design 横幅样式 */
.home-swiss-design-section {
  height: 360px;
  background: linear-gradient(
      270deg,
      #18181b 50%,
      rgba(24, 24, 27, 0.5) 75.24%,
      #18181b 100%
    ),
    url("/v2/mobile/images/home_swiss_design.jpg");
  background: linear-gradient(
      270deg,
      color(display-p3 0.0941 0.0941 0.1059 / 0) 50%,
      color(display-p3 0.0941 0.0941 0.1059 / 0.5) 75.24%,
      color(display-p3 0.0941 0.0941 0.1059) 100%
    ),
    url("/v2/mobile/images/home_swiss_design.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 2px solid transparent;
  border-image: linear-gradient(
      to right,
      rgba(228, 25, 54, 0.5) 0%,
      rgba(228, 25, 54, 0) 100%
    )
    1;
}
.home-swiss-design-container {
  height: 100%;
  padding-top: 24px;
  box-sizing: border-box;
}
.home-swiss-design-content {
}
.home-swiss-design-title {
  font-size: 24px;
  font-weight: 400;
  font-family: "Magnita";
  margin-bottom: 12px;
}
.home-swiss-design-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.home-features-section {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.home-tax-free-section {
  text-align: center;
  padding-bottom: 80px;
  position: relative;
}
.home-tax-free-section-title {
  font-size: 24px;
  font-weight: 400;
  font-family: "Magnita";
  margin-bottom: 24px;
}
.home-tax-free-section-content {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 12px;
  box-sizing: border-box;
  padding: 24px 12px 216px 12px;
  position: relative;
}
.home-tax-free-section-content-transport-bg {
  position: absolute;
  width: 100%;
  top: 120px;
  left: 0;
}
.home-tax-free-section-extra-desc {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}
.home-tax-free-section-extra-desc .link {
  color: rgba(255, 255, 255, 0.7);
}
.home-tax-free-section-pigeon {
  position: absolute;
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-tax-free-section-pigeon.pigeon-1 {
  top: 61px;
  right: 0;
  background-image: url("/v2/mobile/images/home_pigeon.png");
}
.home-tax-free-section-pigeon.pigeon-2 {
  left: 0;
  bottom: 134px;
  background-image: url("/v2/mobile/images/home_pigeon.png");
}
