.swiper-container {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.swiper {
  width: 100%;
  height: max-content;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0px;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* 分页器样式优化 */
.swiper-pagination {
  position: absolute;
  bottom: 12px !important;
  left: 0;
  right: 0;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 4px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #fff;
  width: 16px;
  border-radius: 4px;
  opacity: 1;
}
  