.swiper1 {
  width: 100px;
  height: 100%;
  background-color: aqua;
  overflow: hidden; /* 隐藏溢出内容 */
  position: relative; /* 确保分页器定位正确 */
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-slideImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 分页器样式 - 底部居中 */
.swiper-pagination {
  position: absolute;
  bottom: 10px; /* 距离底部10px */
  left: 50%; /* 水平居中 */
  transform: translateX(-50%); /* 微调居中 */
  display: flex;
  justify-content: center;
  gap: 5px; /* 分页点之间的间距 */
  z-index: 100;
}

/* 分页点样式 */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transition: background 0.3s ease;
  z-index: 100;
}

/* 当前激活的分页点样式 */
.swiper-pagination-bullet-active {
  background: #fff; /* 白色激活点 */
}
