 /* 在文档2的CSS中添加以下规则 */
  .swiper-container {
    position: relative;
  }
  
  .swiper-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 0;
    z-index: 10;
    font-size: 14px;
    font-weight: bold;
  }
  
  .swiper-slide {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .swiper-slide:hover {
    transform: scale(1.02);
  }
  
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
  }
  
  .swiper-pagination-bullet-active {
    background: #83aaf1;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #83aaf1;
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px;
  }