    /* 輪播圖外框容器 */
    .banner-container {
      position: relative;
      max-width: 1200px;
      height: 200px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 8px;
    }

    /* 圖片基礎樣式（利用絕對定位重疊，並用不透明度控制顯示） */
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
      z-index: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* 確保圖片填滿且不變形 */
    }

    /* 當前顯示的圖片 */
    .slide.active {
      opacity: 1;
      z-index: 2;
    }

    /* 下方圓點指示器容器 */
    .dot-container {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    /* 圓點基礎樣式 */
    .dot {
      width: 12px;
      height: 12px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    /* 當前選中的圓點 */
    .dot.active, .dot:hover {
      background-color: #ffffff;
      transform: scale(1.2);
    }