/* 全屏查看样式 */
.fullscreen-slider {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  touch-action: pan-y;
}
.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}
.slider-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.slider-close {
  position: absolute;
  top: 60px;
  right: 15px;
  color: white;
  font-size: 24px;
  z-index: 10;
  cursor: pointer;
}
.slider-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.slider-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
}
.slider-bullet.active {
  background-color: white;
}
