@layer utilities {
            .content-auto {
                content-visibility: auto;
            }
            .text-shadow {
                text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            .hover-scale {
                transition: transform 0.3s ease;
            }
            .hover-scale:hover {
                transform: scale(1.03);
            }
            .gradient-overlay {
                background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
            }
        }
@font-face {
  font-family: 'Inter';
  src: url('/template/pc/fonts/Inter-Light.woff2') format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Inter';
  src: url('/template/pc/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Inter';
  src: url('/template/pc/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Inter';
  src: url('/template/pc/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Inter';
  src: url('/template/pc/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
}
  .swiper-button-prev,
  .swiper-button-next {
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #0c62d3; /* 深紫色箭头 */
    z-index: 10;
  }

  /* 移动端隐藏按钮 */
  @media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
      display: none;
    }
  }

    .filter-btn {
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    color: #1D2129;
    transition: all 0.2s ease-in-out;
  }
  .filter-btn:hover {
    background-color: #165DFF;
    color: white;
    border-color: #165DFF;
  }
  .filter-btn.active {
    background-color: #165DFF;
    color: white;
    border-color: #165DFF;
  }
      .pagination li a {
        padding: 0.4rem 0.8rem;
        border-radius: 0.375rem;
        border: 1px solid #e5e7eb;
        transition: background 0.2s;
      }
      .pagination li a:hover {
        background-color: #e0f2fe;
      }
      .pagination li.active a {
        background-color: #3b82f6;
        color: white;
        border-color: #3b82f6;
      }
      
      