@keyframes slideshow-progress {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}
.text-with-fixed-background .button {
  word-break: break-word;
  white-space: normal;
}
.text-with-fixed-background .carousel__track {
  aspect-ratio: var(--desktop-aspect-ratio);
  overflow-y: hidden;
}
.text-with-fixed-background .slideshow__item {
  width: 100%;
}
.text-with-fixed-background .slideshow__image {
  position: relative;
  width: var(--slideshow-image-width);
  height: var(--slideshow-image-height);
}
.text-with-fixed-background .slideshow__image--mobile,
.text-with-fixed-background .slideshow__image--ipad,
.text-with-fixed-background .slideshow__image--desktop {
  position: relative;
  z-index: 1;
}
.text-with-fixed-background .slideshow__image--mobile img,
.text-with-fixed-background .slideshow__image--mobile svg,
.text-with-fixed-background .slideshow__image--ipad img,
.text-with-fixed-background .slideshow__image--ipad svg,
.text-with-fixed-background .slideshow__image--desktop img,
.text-with-fixed-background .slideshow__image--desktop svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.text-with-fixed-background .slideshow__image--mobile {
  display: none;
}
.text-with-fixed-background .slideshow__image--ipad {
  display: none;
}
.text-with-fixed-background .slideshow__image--desktop {
  display: block;
  height: var(--desktop-height);
}


.text-with-fixed-background .slideshow__image-container {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  background-color: rgb(var(--color-image-background));
}
.text-with-fixed-background .slideshow__group {
  position: absolute;
  z-index: 3;
  top: 6.9vw;
  left: 3.96vw;
  max-width: var(--pc-group-width);
}
.text-with-fixed-background .content-box {
  position: absolute;
  z-index: 3;
  bottom: 4.69vw;
  right: 3.65vw;
  background-color: #fff;
  color: #333333;
  padding: 2.60vw;
  max-width: 34.27vw;
  height: auto;
}
.text-with-fixed-background .content-box__title{
  margin-bottom: 0.78vw;
}


.text-with-fixed-background .slideshow__image-mask {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(
    0,
    0,
    0,
    calc(var(--slideshow-image-mask-opacity) / 100)
  );
  transform: translate(-50%, -50%);
}
.text-with-fixed-background .slideshow__pager {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 50%;
  z-index: 3;
  display: flex;
  gap: 6px;
  align-items: center;
  transform: translate(-50%, 0);
}
.text-with-fixed-background .slideshow__pager--dots {
  inset-block-end: 20px;
}
.text-with-fixed-background .slideshow__pager--dot {
  display: block;
  width: 6px;
  height: 6px;
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  border: 0;
  border-radius: 50%;
  opacity: 0.4;
  transition: opacity, width, height, 0.3s;
}
.text-with-fixed-background .slideshow__pager--dot.is-active {
  width: 10px;
  height: 10px;
  opacity: 1;
}
.text-with-fixed-background .slideshow__pager--progresses {
  gap: 10px;
}
.text-with-fixed-background .slideshow__pager--progress {
  display: block;
  width: 120px;
  height: 6px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background-color: rgb(255 255 255 / 50%);
  border: 0;
}
.text-with-fixed-background .slideshow__pager--progress.is-active {
  opacity: 1;
}
.text-with-fixed-background .slideshow__pager--progress.is-active .text-with-fixed-background .slideshow__pager--progress-inner {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: slideshow-progress var(--slideshow-speed, 0s) linear forwards;
}
.text-with-fixed-background .slideshow__pager--progress.is-active .text-with-fixed-background .slideshow__pager--progress-inner-static {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.text-with-fixed-background .slideshow__pager--arrows {
  inset-block-end: 0;
  inset-inline: auto 40px;
  width: fit-content;
  transform: translateY(50%);
}
.text-with-fixed-background .slideshow__pager--arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  filter: drop-shadow(0 4px 10px rgb(0 0 0 / 15%));
  border: 0;
  border-radius: 50%;
}
.text-with-fixed-background .slideshow__pager--arrow[name="previous"] {
  transform: rotate(90deg);
}
.text-with-fixed-background .slideshow__pager--arrow[name="next"] {
  transform: rotate(-90deg);
}
.text-with-fixed-background .slideshow__image-text-mask {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: block;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.text-with-fixed-background .slideshow__image-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%;
}
.text-with-fixed-background .slideshow__image-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%;
}

.text-with-fixed-background {
  position: relative;
  clip-path: inset(0);
}

.text-with-fixed-background .subtitle {
  margin-bottom: 1.56vw;
}

.text-with-fixed-background .content-box__text{
  opacity: 0.75;
}

.text-with-fixed-background .list-style-type-disc::before{
  content: "•"; /* 使用字符代替圆点 */ 
  margin-right: 10px; /* 控制圆点与文本之间的距离 */
}

@media (max-width: 1024px) {
  .text-with-fixed-background .carousel__track {
    aspect-ratio: var(--ipad-aspect-ratio);
  }

  .text-with-fixed-background .slideshow__image--mobile {
    display: none;
  }

  .text-with-fixed-background .slideshow__image--ipad {
    display: block;
    height: var(--ipad-height);
  }

  .text-with-fixed-background .slideshow__image--desktop {
    display: block;
  }


  .text-with-fixed-background .slideshow__group {
    top: 6.15vw;
    left: 4.88vw;
    max-width: var(--ipad-group-width);
  }
  .text-with-fixed-background .content-box {
    position: absolute;
    z-index: 3;
    bottom: 4.88vw;
    right: 4.88vw;
    background-color: #fff;
    color: #333333;
    padding: 3.42vw;
    max-width: 55.08vw;
    height: auto;
  }
  .text-with-fixed-background .content-box__title{
    margin-bottom: 2.05vw;
  }

  .text-with-fixed-background .subtitle {
    margin-bottom: 1.95vw;
  }  
}

@media (max-width: 768px) {
  .text-with-fixed-background .carousel__track {
    aspect-ratio: var(--mobile-aspect-ratio);
  }

  .text-with-fixed-background .slideshow__image--mobile {
    display: block;
    height: var(--mobile-height);
  }

  .text-with-fixed-background .slideshow__image--ipad {
    display: block;
  }

  .text-with-fixed-background .slideshow__image--desktop {
    display: block;
  }
  .text-with-fixed-background .slideshow__pager--progress {
    width: 60px;
  }

  .text-with-fixed-background .slideshow__pager--arrows {
    inset-inline: auto 20px;
  }

  .text-with-fixed-background .slideshow__pager--arrow {
    width: 32px;
    height: 32px;
  }

  .text-with-fixed-background .slideshow__pager--arrow svg {
    width: 10px;
    height: 10px;
  }


  .text-with-fixed-background .slideshow__group {
    top: 4vw;
    left: 4vw;
    max-width: var(--mobile-group-width);
  }
  .text-with-fixed-background .content-box {
    z-index: 3;
    background-color: #fff;
    color: #333333;
    position: absolute;
    bottom: 9.33vw;
    left: 4vw;
    right: 4vw;
    width: auto;
    height: auto;
    max-width: unset;
    padding: 5vw;
  }
  .text-with-fixed-background .content-box__title{
    margin-bottom: 2.67vw;
  }

  .text-with-fixed-background .subtitle {
    margin-bottom: 2.67vw;
  }  
}
