.section-activity-zone-container {
  background-color: rgb(var(--color-background));
}
.activity-zone__image {
  flex: 1;
  aspect-ratio: 568/780;
  position: relative;
  background-color: rgb(var(--color-background));
  border-radius: var(--rounded);
  overflow: hidden;
}

.activity-zone__image_mobile {
  display: none;
}
.activity-zone__image_desktop {
  display: block;
}
.activity-zone__image_mobile,
.activity-zone__image_desktop {
  width: 100%;
  height: 100%;
}
.activity-zone__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.activity-zone__image svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 959px) {
  .activity-zone__image_mobile {
    display: block;
  }
  .activity-zone__image_desktop {
    display: none;
  }
  .activity-zone__image {
    aspect-ratio: 374/210;
  }
  .section-activity-zone-container {
    padding-inline: 0;
  }
}

.activity-zone__image-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(0, 0, 0, calc(var(--image-mask-opacity) / 100));
}

.activity-zone__text-mask {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: block;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.activity-zone__text-mask.deep {
  background: radial-gradient(
    77.64% 77.64% at 50% 50%,
    rgb(0 0 0 / 30%) 59.64%,
    rgb(0 0 0 / 0%) 100%
  );
  filter: blur(120px);
  border-radius: 50%;
}
.activity-zone__text-mask.light {
  background: radial-gradient(
    77.64% 77.64% at 50% 50%,
    rgb(255 255 255 / 30%) 59.64%,
    rgb(255 255 255 / 0%) 100%
  );
  filter: blur(120px);
  border-radius: 50%;
}

.activity-zone__image-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* 不盖住封面图片，只使用 color-scheme 提供的文字颜色等变量 */
  background-color: transparent;
<<<<<<< HEAD
=======

>>>>>>> jbh
}

.activity-zone__list {
  flex: 1;
}

.activity-zone__list > div {
  width: calc((100% - var(--s-column-gap)) / 2);
}

.activity-zone__group {
  position: relative;
}
.activity-zone__group .button {
  margin-top: 30px;
}

.activity-zone__subtitle {
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
}

.activity-zone__title {
  font-size: 100px;
  font-weight: 600;
  line-height: 120%;
}

.activity-zone__desc {
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
}

@media (max-width: 959px) {
  .activity-zone__subtitle {
    font-size: 18px;
  }

  .activity-zone__title {
    font-size: 32px;
  }

  .activity-zone__desc {
    font-size: 18px;
  }
  .activity-zone__group .button {
    margin-top: 20px;
  }
}
