  /* V2 专用样式 - 正方形布局 */
  .v2-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }
  
  @media (min-width: 640px) {
    .v2-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.75rem;
    }
  }
  
  @media (min-width: 1024px) {
    .v2-grid {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 1rem;
    }
  }
  
  @media (min-width: 1280px) {
    .v2-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }
  }

  /* 磨砂玻璃风格 - 手机兼容修复 */
  .v2-square-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d); /* 改为纯色渐变避免白色 */
    /* 移除 backdrop-filter */
  }

  /* 玻璃边框效果 - 修复手机兼容 */
  .v2-square-image::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 19.5px;
    background: linear-gradient(
      135deg,
      rgba(60, 60, 60, 0.9) 0%,      /* 改为深色 */
      rgba(40, 40, 40, 0.8) 50%,
      rgba(60, 60, 60, 0.9) 100%
    );
    /* 移除 backdrop-filter */
    border: 1px solid rgba(80, 80, 80, 0.5); /* 改为深色边框 */
    z-index: 1;
    transition: all 0.4s ease;
  }

  .v2-card:hover .v2-square-image::before {
    border-color: rgba(100, 100, 100, 0.7);
    background: linear-gradient(
      135deg,
      rgba(80, 80, 80, 0.9) 0%,
      rgba(60, 60, 60, 0.8) 50%,
      rgba(80, 80, 80, 0.9) 100%
    );
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  }


  .v2-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    border-radius: 18px;
    background: transparent;
    text-decoration: none;
  }

  .v2-card:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  }

  .v2-fixed-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    background: #0a0a0a;
  }

  .v2-card:hover .v2-fixed-image {
    transform: scale(1.05);
  }


  .v2-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #111, #222);
    border-radius: 18px;
    position: relative;
    z-index: 2; 
  }

  .v2-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.01) 100%
    );
  }


  .v2-card-content {
    padding: 0.25rem 0.5rem;
    text-align: center;
  }

  .v2-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .v2-price {
    font-size: 0.75rem;
    font-weight: bold;
    color: #60A5FA;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  }


  .v2-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: none !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
  }

  .v2-icon-text {
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
  }


  .v2-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
  }

  .v2-feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
  }
    

  .v2-hero-slide {
    position: relative;
    min-height: 160px;
  }

  @media (min-width: 640px) {
    .v2-hero-slide {
      min-height: 220px;
    }
  }

  @media (min-width: 1024px) {
    .v2-hero-slide {
      min-height: 280px;
    }
  }


  .v2-hero-content-center {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 1rem;
  }

  @media (min-width: 768px) {
    .v2-hero-content-center {
      padding: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .v2-hero-content-center {
      padding: 3rem;
    }
  }

  /* 响应式调整 */
  @media (max-width: 1024px) {
    .container {
      max-width: 95% !important;
      padding-left: 0.5rem !important;
      padding-right: 0.5rem !important;
    }
  }

  @media (max-width: 480px) {
    .container {
      max-width: 98% !important;
      padding-left: 0.25rem !important;
      padding-right: 0.25rem !important;
    }
    
    .v2-grid {
      gap: 0.4rem !important;
    }
    
    .v2-card {
      gap: 0.4rem;
    }
    
    .v2-square-image {
      border-radius: 16px;
    }
    
    .v2-title {
      font-size: 0.75rem;
    }
    
    .v2-price {
      font-size: 0.7rem;
    }
    
    .v2-icon {
      font-size: 1.75rem;
    }
  }


  .v2-hero-track {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .v2-hero-slide {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }


  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }


  .v2-region-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .v2-region-code {
    font-size: 0.6rem;
    padding: 0.1rem 0.3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #9CA3AF;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }


  .v2-more-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 120px;
  }

  .v2-more-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.05);
    border-style: solid;
  }

  .v2-more-icon {
    font-size: 1.5rem;
    color: rgba(156, 163, 175, 0.7);
  }

  .v2-more-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
  }

  .v2-more-count {
    font-size: 0.65rem;
    color: rgba(156, 163, 175, 0.7);
  }


  .section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid rgba(96, 165, 250, 0.7);
  }

  @media (min-width: 640px) {
    .section-title {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }
  }


  .view-all-btn {
    font-size: 0.8rem;
    color: rgba(156, 163, 175, 0.8);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
  }

  .view-all-btn:hover {
    color: #60A5FA;
    transform: translateY(-1px);
  }


  .v2-fixed-image {
    background-color: #0a0a0a !important;
  }
  

  .v2-fixed-image:not([src]),
  .v2-fixed-image[src=""],
  .v2-fixed-image[src="null"] {
    opacity: 0;
  }