.three-floors-container {
  margin-top: 4.6875vw;
}

.card-container {
  height: 100%;
}
.scroll-container {
  width: 100%;
  overflow: hidden;
  /* margin: 2.0833vw 0; */
  /* margin: 1.0417vw 0; */
}
/* 
.scroll-content {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}

.scroll-content.paused {
  animation-play-state: paused;
}

.scroll-item {
  margin-right: 0.7813vw;
  flex-shrink: 0;
  cursor: pointer;
  transition: border 0.3s ease;
  width: 20vw;
  height: 6.25vw;
  border-radius: 3.125vw;
  background: linear-gradient(
    90deg,
    rgba(124, 30, 213, 0.3),
    rgba(53, 0, 176, 0.3)
  );
  display: flex;
  position: relative;
}
.scroll-item:hover {
  background: linear-gradient(90deg, #7c1ed5 0%, #3500b0 100%);
}
.scroll-item-left {
  height: 100%;
  position: absolute;
}
.scroll-item-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scroll-item-right {
  margin: 1.0417vw 1.5625vw 1.0417vw 8.3333vw;
  overflow: hidden;
}
.scroll-item-name {
  color: #ffd597;
  font-family: MontserratBold;
  font-size: 1.25vw;
  font-style: normal;
  line-height: 150%;
}
.scroll-item-description {
  color: #fff;
  font-family: MontserratBold;
  font-size: 0.9375vw;
  font-style: normal;
  line-height: 150%;
  text-transform: capitalize;
  margin-top: 0.4167vw;
} */
.scroll-container {
  width: 100%;
  overflow: hidden;
}

.scroll-content {
  display: flex;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
  margin: 12px;
  height: 205px;
  align-items: center;
}

.scroll-item {
  width: 143px;
  height: 140px;
  margin-right: 52px;
  flex-shrink: 0;
  background: linear-gradient(
    90deg,
    rgba(124, 30, 213, 0.3) 0%,
    rgba(53, 0, 176, 0.3) 100%
  );
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 3px;
}

.scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
  object-position: left top;
}
/* 图片上层的紫色调底部阴影 */
.scroll-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /* 紫色渐变阴影：底部深紫，向上渐隐 */
  background: linear-gradient(
    to top,
    rgba(76, 20, 168, 0.7) 5%,
    transparent 30%
  );
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease, background 0.3s ease;
  opacity: 0.4;
}

/* Hover效果：放大+紫色环形光+加深紫色阴影 */
.scroll-item:hover {
  width: 205px;
  height: 205px;
  border-radius: 205px;
  background: linear-gradient(90deg, #7c1ed5 0%, #3500b0 100%);
  box-shadow: 0 0 24px 0 rgba(154, 120, 255, 0.8);
}

.scroll-item:hover::after {
  opacity: 0.7;
  /* Hover时加深紫色阴影 */
  background: linear-gradient(
    to top,
    rgba(96, 30, 198, 0.8) 8%,
    transparent 35%
  );
}
.scroll-content.paused {
  animation-play-state: paused;
}
/* 第一行 + 第三行：从右往左滚动 */
.scroll-right-to-left .scroll-content {
  animation-name: scrollRightToLeft;
}

/* 第二行：从左往右滚动 */
.scroll-left-to-right .scroll-content {
  animation-name: scrollLeftToRight;
}

/* 从右往左动画 */
@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 从左往右动画 */
@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* 移动端 */
.prize-container {
  margin: 0 auto;
  width: 100%;
}
.prize-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.1333vw;
  margin: 8vw 10.667vw;
  height: 62.93333vw;
  overflow: hidden;
}
.prize-item {
  display: flex;
  align-items: center;
  width: 10.6667vw;
  height: 10.4vw;
  border-radius: 50%;
  padding-left: 1px;
  background: linear-gradient(
    90deg,
    rgba(124, 30, 213, 0.3) 0%,
    rgba(53, 0, 176, 0.3) 100%
  );
}
.prize-avatar {
  width: 9.6vw;
  height: 9.6vw;
  border-radius: 9.6vw;
  object-fit: cover;
}
.prize-info {
  width: 21.333vw;
}
.prize-name {
  margin-bottom: 1.0666vw;
  color: #ffd597;
  font-family: MontserratBold;
  font-size: 2.66667vw;
  font-style: normal;
  line-height: 150%;
}
.prize-desc {
  color: #fff;
  font-family: MontserratBold;
  font-size: 2.4vw;
  font-style: normal;
  line-height: 150%;
  text-transform: capitalize;
}
.view-more-container{
  position: relative;
}
.view-more {
  display: block;
  width: 53.3333vw;
  height: 13.3333vw;
  line-height: 13.33333vw;
  text-align: center;
  background: #fff;
  color: #5b27d8;
  border-radius: 6.6666vw;
  margin: 0 auto;
  border: none;
  font-size: 4.2666vw;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.view-more:hover {
  background: #f0e6ff;
}
.view-more-container i{
  position: absolute;
  top: 50%;
  right:0;
}

.swiper-container-new {
  width: 100%;
  padding: 7.8125vw 0 !important;
}

.swiper-container-new .swiper-slide {
  background-position: center;
  background-size: cover;
  /* width: 16.6661vw; */
  width: 15.625vw;
  height: 28.4896vw;
  margin: 0 0.3125vw;
}

.swiper-container-new .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-container-new .swiper-slide video {
  width: 100%;
  height: 100%;
  display: block;
  filter: brightness(80%);
  object-fit: cover;
}

.hover-active {
  filter: brightness(100%) !important;
  border: 0.0521vw solid #722bd6;
  box-shadow: 0 0.1563vw 1.1979vw 0 rgba(92, 38, 255, 0.8);
}

.swiper-container-new .nav-container {
  position: absolute;
  bottom: 1.5625vw;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  width: 30%;
  margin: 0 auto;
}

.swiper-container-new .nav-btn {
  width: 2.0833vw;
  height: 2.0833vw;
  border-radius: 50%;
  background: rgba(56, 54, 83, 0.9);
  color: rgb(248, 248, 248);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.swiper-container-new .next-btn {
  rotate: 180deg;
}

.swiper-container-new .nav-btn svg {
  fill: #333;
  width: 1.04167vw;
  height: 1.04167vw;
}
.swiper-container-new .custom-scrollbar .swiper-scrollbar {
  position: absolute;
  bottom: 2.3438vw;
  background-color: rgba(255, 255, 255, 0.2);
  transform: scaleX(0.2);
}
.swiper-container-new .custom-scrollbar .swiper-scrollbar-drag {
  background-color: #3a66fb;
}

.swiper-container-new .video-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.0833vw;
  height: 2.0833vw;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.0417vw;
}
.swiper-container-new .video-btn .video-dialog-icon {
  font-size: 2.0833vw;
  color: rgba(8, 8, 8, 0.6);
}

.video-modal-new {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  width: 100%;
  height: calc(100% - 4.375vw);
  background-color: rgba(0, 0, 0, 0.85);
  animation: fadeIn 0.3s ease;
  justify-content: center;
  align-items: center;
  top: 4.375vw;
}

.modal-content-new {
  position: relative;
  height: 80%;
  width: auto;
}

.close-btn-video {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

#modalVideo {
  width: auto;
  height: 100%;
  border-radius: 0.4167vw;
  box-shadow: 0 1.0417vw 3.125vw rgba(0, 0, 0, 0.5);
}

/* 轮播图楼层h5 */
.container-h5-new {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  padding: 16vw 0;
  overflow: hidden;
  /* margin-bottom: 8vw; */
}

.container-h5-new .swiper-container-h5-new {
  width: 100%;
  perspective: 320vw;
}

.container-h5-new .swiper-container-h5-new .swiper-slide {
  /* width: 80%; */
  width: 74.6666vw;
  height: 132.8vw;
  border-radius: 2.1333vw;
  overflow: hidden;
  opacity: 0.7;
  transition: all 0.3s ease;
  margin: 0 2.6666vw;
}

.container-h5-new .swiper-container-h5-new .swiper-slide-active {
  opacity: 1;
  transform: scale(1.05);
}

.container-h5-new .swiper-container-h5-new .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container-h5-new .swiper-container-h5-new .video-slide-h5{
  position: relative;
}
.container-h5-new .swiper-container-h5-new .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.container-h5-new .swiper-container-h5-new .swiper-button-prev,
.container-h5-new .swiper-container-h5-new .swiper-button-next {
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
}

.container-h5-new .swiper-container-h5-new .swiper-pagination {
  bottom: 5.3333vw;
}

.container-h5-new .swiper-container-h5-new .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}

.container-h5-new .swiper-container-h5-new .swiper-pagination-bullet-active {
  background: #7e22ce;
  opacity: 1;
}
.container-h5-new .swiper-scrollbar {
  background-color: rgba(255, 255, 255, 0.2);
  bottom: -12vw !important;
  scale: 0.6;
}
.container-h5-new .swiper-container-h5-new .swiper-scrollbar-drag {
  background-color: #3a66fb;
}
.container-h5-new .swiper-container-h5-new .nav-container-h5-new {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: -16vw;
  width: 100%;
  padding: 0 8vw;
}
.container-h5-new .swiper-container-h5-new .nav-btn-h5 {
  width: 10.6666vw;
  height: 10.6666vw;
  border-radius: 50%;
  background: rgba(56, 54, 83, 0.9);
  color: rgb(248, 248, 248);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.container-h5-new .swiper-container-h5-new .next-btn-h5 {
  rotate: 180deg;
}
.container-h5-new .swiper-container-h5-new .video-slide-h5 {
  position: relative;
}

.container-h5-new .swiper-container-h5-new .video-dialog-icon {
  position: absolute;
  font-size: 10.6666vw;
  bottom: 5.3333vw;
  right: 3.3333vw;
  width: 10.6666vw;
  height: 10.6666vw;
  fill: #fff;
  color: rgba(8, 8, 8, 0.6);
  z-index: 999;
}
.container-h5-new .swiper-container-h5-new .swiper-slide-active {
  border-radius: 2.1333vw;
  border: 0.2666vw solid #722bd6;
  box-shadow: 0 0.8vw 6.13333vw 0 rgba(92, 38, 255, 0.8);
}
.swiper-container-new .video-slide {
  position: relative;
}
.swiper-container-new .video-slide img {
  position: absolute;
  z-index: 33;
  top: 0;
}
