 /* 核心：通栏Banner轮播容器 */
 
   .banner-slider {
      position: relative;
      width: 100%;
      /* 高度最大化：视口高度 - 导航栏高度，最小高度600px保证移动端也有足够高度 */
      height: calc(100vh);
      min-height: 600px;
      margin-top: -87px;
     
      overflow: hidden;
    }

    /* 轮播项容器（用于滑动） */
    .banner-slides {
      display: flex;
      width: 300%; /* 3个轮播项，每个占100% */
      height: 100%;
      transition: transform 0.5s ease-in-out; /* 切换动画 */
    }

    /* 单个轮播项（图片/视频通用容器） */
    .banner-slide {
      width: 100%;
      height: 100%;
      position: relative;
    }

    /* 图片样式 */
    .banner-img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* 覆盖容器，保证全屏且不变形 */
      object-position: center; /* 居中显示 */
    }

    /* 视频样式（关键修改：隐藏控件，适配自动播放） */
    .banner-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      background: #000; /* 视频加载前显示黑色背景 */
      /* 隐藏视频控件，纯展示效果 */
      pointer-events: none; /* 禁止点击视频触发控件 */
    }

    /* 轮播控制按钮（左右箭头） */
    .banner-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      font-size: 24px;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
    }

    .banner-control:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    .banner-prev {
      left: 20px;
    }

    .banner-next {
      right: 20px;
    }

    /* 轮播指示器（底部小圆点） */
    .banner-indicators {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .indicator.active {
      background: #fff;
      transform: scale(1.2); /* 激活状态放大 */
    }

    /* 响应式适配（移动端优化） */
    @media (max-width: 768px) {
      .banner-slider {
        height: calc(100vh);
        min-height: 400px; /* 移动端最小高度降低 */
      }

      .banner-control {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }

      .indicator {
        width: 10px;
        height: 10px;
      }
    }



/* —————————— 轮播链接按钮（再下沉一点点）—————————— */
.banner-slide {
  position: relative;
}
.banner-link-btn {
  position: absolute;
  left: 50%;
  bottom: 60px; /* 从 70 → 60，只往下一点点 */
  transform: translateX(-50%);
  z-index: 15;
  padding: 14px 36px;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.banner-link-btn:hover {
  background: #000;
  color: #fff;
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* 移动端也微微往下一点点 */
@media (max-width: 768px) {
  .banner-link-btn {
    padding: 12px 28px;
    font-size: 14px;
    bottom: 48px;
  }
}