/* 轮播图容器 */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* 轮播图幻灯片区域 */
.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}

/* 单个幻灯片 */
.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

/* 各幻灯片背景 */
.carousel-slide.slide-1 {
  background-image: url(./img/mp-banner1.jpg);
}

.carousel-slide.slide-2 {
  background-image: url(./img/mp-banner2.jpg);
}

.carousel-slide.slide-3 {
  background-image: url(./img/db791d928ee34684bb3dbe1b9164f3f5_mergeImage.png);
}

/* 活动状态的幻灯片 */
.carousel-slide.active {
  opacity: 1;
}

/* 导航圆点容器 */
.carousel-dots {
  position: absolute;
  bottom: 2vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 10;
}

/* 导航圆点 */
.dot {
  width: 0.8vw;
  height: 0.8vw;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 0.4vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* 活动状态的导航圆点 */
.dot.active {
  background-color: #fff;
}

/* 上一个/下一个按钮 */
.carousel-buttons {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.carousel-prev,
.carousel-next {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  font-size: 1.5vw;
  padding: 1vw;
  cursor: pointer;
  border-radius: 0.3vw;
  transition: background-color 0.3s ease;
}

.carousel-prev {
  margin-left: 1vw;
}

.carousel-next {
  margin-right: 1vw;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* 图片样式调整 */
.carousel-container .image_2 {
  position: absolute;
  width: 5.16vw;
  height: 0.84vw;
  bottom: 0.9vw;
  left: 47.44vw;
  margin: 0;
  z-index: 5;
}

/* 重置背景图片样式 */
.image-wrapper_1 {
  height: 50.32vw;
  width: 100%;
  max-width: 100vw;
  position: relative;
  background-image: none;
  box-sizing: border-box;
  overflow: hidden;
} 