
    /* 基础样式 */
    .feature-gallery body {
      font-family: Arial, sans-serif;
      padding: 20px;
    }

    .feature-gallery .container {
      max-width: 1343px;
      margin: 30px auto 0 auto !important;
      padding: 0 30px;
    }

    .feature-gallery .gallery-container {
      position: relative;
      overflow: hidden;
      width: 100%;
      margin: 0 auto;
    }

    .feature-gallery .gallery {
      display: flex;
      transition: transform 0.3s ease-out;
      will-change: transform;
      touch-action: pan-y pinch-zoom;
    }

    /* 默认桌面端一行3个 */
    .feature-gallery .gallery-item {
      flex: 0 0 33.333%;
      padding: 0 10px;
      box-sizing: border-box;
      background: #f8f9fa;

    }

    .feature-gallery .image-container {
      width: 100%;
      height: 0;
      padding-bottom: 75%;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .feature-gallery .image-container img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .feature-gallery .item-title {
      font-weight: bold;
      text-align: center;
      font-size: 1.1em;
      padding: 5px 0;
    }

    .feature-gallery .gallery-item:hover img {
      transform: scale(1.05);
    }

    .feature-gallery .item-action {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 5px 0;
    }

    .feature-gallery .view-detail-btn {
      display: inline-block;
      padding: 4px 10px;
      background-color: #48cbda;
      color: #fff;
      border-radius: 4px;
      text-decoration: none;
      font-size: 1.1em;
      text-align: center;
      transition: background-color 0.3s ease;
    }

    .tour-tags span {
      display: inline-block;
      background: #e3f2fd;
      color: #1976d2;
      border-radius: 3px;
      font-size: 0.6em;
    }


    .feature-gallery .view-detail-btn:hover {
      background-color: #1c93a0;
    }

    /* 滑动提示 */
    .feature-gallery .gallery-container::before,
    .feature-gallery .gallery-container::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 50px;
      z-index: 1;
      pointer-events: none;
    }

    .feature-gallery .gallery-container::before {
      left: 0;
      background: linear-gradient(to right, rgba(255,255,255,0.8), transparent);
    }

    .feature-gallery .gallery-container::after {
      right: 0;
      background: linear-gradient(to left, rgba(255,255,255,0.8), transparent);
    }

    /* 到底提示 */
    .feature-gallery .end-tip {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%) translateX(100%);
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 14px;
      opacity: 0;
      transition: all 0.3s ease;
      pointer-events: none;
      z-index: 2;
    }

    .feature-gallery .end-tip.show {
      transform: translateY(-50%) translateX(0);
      opacity: 1;
    }

    /* 左右箭头样式 */
    .feature-gallery .gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      cursor: pointer;
      z-index: 2;
      transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      user-select: none;
    }

    .feature-gallery .gallery-nav:hover {
      background-color: rgba(72, 203, 218, 0.9);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 4px 12px rgba(72, 203, 218, 0.5);
    }

    .feature-gallery .gallery-nav-left {
      left: 10px;
    }

    .feature-gallery .gallery-nav-right {
      right: 10px;
    }

    
  
    /* 手机端一行显示2个 */
    @media (max-width: 767px) {
      .feature-gallery .container {
        padding: 0 15px;
      }



      .feature-gallery .gallery-item {
        flex: 0 0 50%;
        padding: 0 5px;
      }

      .feature-gallery .item-title {
         padding: 5px 0;
         font-size: 0.6em;
      }

      .feature-gallery .view-detail-btn {
        padding: 4px 10px;
        font-size: 0.6em;
      }
      .tour-tags span {
          display: inline-block;
          background: #e3f2fd;
          color: #1976d2;
          border-radius: 3px;
          font-size: 0.4em;
      }


      .feature-gallery .end-tip {
        right: 10px;
        padding: 8px 15px;
        font-size: 12px;
      }
     
    }
 