.img-slider-box { width: 100%; }
.img-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  cursor: grab;
}
.img-slider.dragging { cursor: grabbing; }
.img-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.3s ease;
}
.img-slide {
  flex: 0 0 100%;
  width: 100%;
}
.img-slide .img-responsive {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none; /* 防止拖动时触发图片自带的拖拽行为 */
  -webkit-user-drag: none;
}
.img-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.img-slider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}
.img-slider-dots span.active {
  background: #666;
}
.img-slider-caption {
  font-style: italic;
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  margin-bottom: 0;
  text-align: center;
  transition: opacity 0.15s ease;
}