/* 轮播图容器 */
.lunbo-container {
    width: 50%;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    /* border-radius: 12px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    /* background: rgba(255, 255, 255, 0.1); */
    /* backdrop-filter: blur(5px); */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
  }
  
  /* 轮播图主体 */
  .lunbo-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 560px;
  }
  
  /* 轮播图幻灯片 */
  .lunbo-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
  }
  
  .lunbo-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* 轮播图描述文字 */
  .lunbo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .lunbo-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .lunbo-caption p {
    font-size: 1rem;
    opacity: 0.9;
    color: #f0f0f0;
  }
  
  /* 轮播图指示器 */
  .lunbo-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
  }
  
  .lunbo-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
  }
  
  .lunbo-indicator.active {
    background: #1d81fd;
    transform: scale(1.2);
  }
  
  /* 响应式设计 */
  @media (max-width: 1024px) {
    .lunbo-container {
      width: 80%;
    }
    
    .lunbo-slider {
      height: 350px;
    }
  }
  
  @media (max-width: 768px) {
    .lunbo-container {
      width: 95%;
    }
    
    .lunbo-slider {
      height: 300px;
    }
    
    .lunbo-caption h3 {
      font-size: 1.3rem;
    }
    
    .lunbo-caption p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .lunbo-slider {
      height: 250px;
    }
  }