        :root {
        --primary-color: #ffb600;
        --primary-dark: #e6a400;
        --dark-color: #1a1a1a;
        --border-color: #e0e0e0;
        --light-color: #f8f9fa;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        font-size: 16px;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    /* 动画 */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes slideInLeft {
        from { transform: translateX(-30px); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
    @keyframes underlineExpand {
        from { width: 0; }
        to { width: 100%; }
    }
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .body-inner {
        animation: fadeIn 0.5s ease-out;
    }

    /* 导航 */
    .nav-menu {
        border-bottom: 1px solid #000 !important;
    }
    .nav-menu .nav-item.active > .nav-link,
    .nav-menu .nav-item:hover > .nav-link {
        background-color: #000 !important;
        color: #fff !important;
    }
    .nav-menu .nav-item.product-center-item > .nav-link {
        background-color: #000 !important;
        color: #fff !important;
        border: 1px solid #000 !important;
    }
    .dropdown-menu.level2 {
        background-color: #333 !important;
        border: 1px solid #000 !important;
        padding: 0.5rem 0;
        min-width: 200px;
    }
    .dropdown-menu.level2 .dropdown-item {
        color: #fff !important;
        padding: 0.5rem 1.5rem;
        transition: all 0.2s ease;
    }
    .dropdown-menu.level2 .dropdown-item:hover {
        background-color: #ffd700 !important;
        color: #000 !important;
    }
    .dropdown-menu.level3 {
        background-color: #f5f5f5 !important;
        border: 1px solid #000 !important;
        padding: 0.5rem 0;
        min-width: 200px;
        margin-left: 1px;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    }
    .dropdown-menu.level3 .dropdown-item {
        color: #000 !important;
        padding: 0.5rem 1.5rem 0.5rem 2.5rem;
        transition: all 0.2s ease;
    }
    .dropdown-menu.level3 .dropdown-item:hover {
        background-color: #ffd700 !important;
        color: #fff !important;
    }

    /* 横幅 */
    .banner-area {
        position: relative;
        height: 400px;
        background-size: cover;
        background-position: center;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
    .banner-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0) 100%);
    }
    .banner-container { width: 100%; }
    .banner-content {
        position: relative; z-index: 2;
        color: white; padding: 0 15px;
    }
    .banner-title {
        font-size: 2.2rem; font-weight: 700;
        margin-bottom: 8px; text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        position: relative; display: inline-block;
        padding-bottom: 15px;
        animation: slideInLeft 0.8s ease-out 0.3s both;
    }
    .banner-title::after {
        content: ''; position: absolute;
        bottom: 0; left: 0;
        width: 0; height: 4px;
        background: var(--primary-color);
        border-radius: 2px;
        animation: underlineExpand 0.6s ease-out 1.1s forwards;
    }
    .banner-description {
        font-size: 1rem; opacity: 0.9;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
        animation: fadeInUp 0.8s ease-out 0.5s both;
    }

    /* 主容器 */
    #main-container.main-container,
    #main-container {
        padding: 0 !important;
        padding-bottom: 3rem !important;
    }

    /* 面包屑 */
    .breadcrumb-container {
        padding: 0.625rem 0;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
        border-bottom: 1px solid #eee;
        animation: fadeInUp 0.6s ease-out 0.4s both;
    }

    /* 筛选器 */
/* 筛选器 - 修复卡顿版本 */
.filter-collapse-btn {
    background: #666;
    border: 1px solid #bbbbbb;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}
.filter-collapse-btn:hover { background: #444; }
.filter-collapse-btn i { transition: transform 0.3s ease; }
.filter-collapse-btn.collapsed i { transform: rotate(180deg); }

.filter-section {
    background: #f5f5f7;
    padding: 0.625rem 0.75rem;
    margin-bottom: 0.9375rem;
    width: 100%;
    border: 1px solid #bbbbbb;
    border-top: none;
    /* 🔥 核心修复：只保留高度过渡，删除冲突动画 */
    max-height: 600px; /* 合理高度，不再超大计算 */
    overflow: hidden;
    /* 🔥 核心修复：单一属性过渡，极致流畅 */
    transition: max-height 0.35s ease, margin-bottom 0.35s ease, padding 0.35s ease;
    /* 🔥 关键：删除这里的 fadeInUp 动画！！！ */
}
.filter-section.collapsed {
    max-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top: none;
    border-bottom: none;
}
    .filter-form { display: none; }
    .filter-actions { display: none; }

    /* 筛选头部 */
    .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #eee;
    }
    .filter-title {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        display: flex;
        align-items: center;
    }
    .filter-title::before {
        content: "";
        width: 4px;
        height: 20px;
        background-color: #ffb600;
        margin-right: 10px;
        border-radius: 2px;
    }
    .filter-header-actions {
        display: flex;
        gap: 8px;
    }
    /* 按钮缩小 保留重置+查询双按钮 */
    .filter-header-actions button {
        display: inline-flex;
        align-items: center;
        padding: 4px 10px;
        color: white;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        font-size: 12px;
        transition: all 0.2s ease;
        font-weight: 500;
        min-width: auto;
    }
    .filter-header-actions button i { margin-right: 4px; font-size:12px; }
    .filter-header-actions button:disabled {
        background: #adb5bd;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
    .filter-reset-btn { 
        background: #6c757d; 
        display:inline-flex !important;
        visibility:visible !important;
        opacity:1 !important;
    }
    .filter-reset-btn:hover {
        background: #5a6268;
    }
    .filter-query-btn { background: #ffb600; }
    .filter-query-btn:hover {
        background: #e6a400;
    }

    /* ========== 修复：已选筛选标签 + 删除X按钮 完整恢复 ========== */
    .current-filters {
        display: flex !important;
        flex-wrap: wrap;
        gap: 0.375rem;
        margin-bottom: 0.625rem;
        font-size: 0.75rem;
        width:100%;
        visibility:visible !important;
        opacity:1 !important;
    }
    .filter-tag {
        /*background: #fff3cd;*/
       /* border: 1px solid #ffeaa7;*/
        color: #ffb600;
        padding: 5px 10px;
        border-radius: 20px;
        display: inline-flex !important;
        align-items: center;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
    }
    .filter-tag-remove {
        margin-left: 8px;
        cursor: pointer;
        background: none;
        border: none;
        color: #e6a400;
        font-size: 12px;
        padding: 2px;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        visibility:visible !important;
        opacity:1 !important;
    }
    .filter-tag-remove:hover { 
        background: rgba(230, 164, 0, 0.1); 
    }

    /* 筛选滚动容器 */
    .filter-scroll-container {
        display: flex;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 8px; 
        scrollbar-width: thin;
        scrollbar-color: #c1c1c1 #f0f0f0;
    }
    .filter-scroll-container::-webkit-scrollbar { height: 0.5rem; }
    .filter-scroll-container::-webkit-scrollbar-thumb { background: #c1c1c1; }
    .filter-scroll-container::-webkit-scrollbar-track { background: #f0f0f0; }

    /* 筛选属性组 - 统一固定高度 解决高低不一 */
    .filter-attribute-group {
        flex: 0 0 auto;
        width: 10.625rem;
        border: 1px solid #ddd;
        font-size: 0.75rem;
        background: #fff;
        box-shadow: 0 0.0625rem 0.1875rem rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        height: 260px; 
    }
    .filter-attribute-header {
        padding: 0.5rem 0.75rem;
        background-color: #f8f9fa;
        font-size: 0.8125rem;
        font-weight: 600;
        color: #555;
        border-bottom: 1px solid #e8e8e8;
        flex: 0 0 auto;
    }
    .attribute-search {
        padding: 0.375rem 0.625rem;
        border-bottom: 1px solid #eee;
        background: #f9f9f9;
        flex: 0 0 auto;
    }
    .attribute-search input {
        width: 100%;
        padding: 0.25rem 0.5rem;
        border: 1px solid #ddd;
        font-size: 0.75rem;
        height: 1.625rem;
        background: #fff;
    }
    .filter-attribute-content {
        flex: 1;
        overflow-y: auto;
        padding: 4px 8px;
        scrollbar-width: thin;
        scrollbar-color: #d0d0d0 #f5f5f5;
        background: #fff;
    }
    .filter-attribute-content::-webkit-scrollbar { width: 0.3125rem; }
    .filter-attribute-content::-webkit-scrollbar-thumb { background: #d0d0d0; }
    .filter-attribute-content::-webkit-scrollbar-track { background: #f5f5f5; }

    /* 属性选项 - 缩小间距 + 彻底隐藏数量 */
    .filter-attribute-value {
        display: flex;
        align-items: center;
        padding: 4px 8px;
        margin: 1px 0;
        cursor: pointer;
        border-radius: 3px;
        text-decoration: none;
        color: #495057;
        transition: all 0.2s ease;
        border-bottom: 1px solid #f9f9f9;
        line-height: 1.3;
        font-size:12px;
    }
    .filter-attribute-value:last-child { border-bottom: none; }
    .filter-attribute-value:hover:not(.disabled) {
        background: #fff9e6;
        color: #ffb600;
    }
    .filter-attribute-value.active {
        background: #fff3cd;
        color: #e6a400;
        font-weight: 500;
    }
    .filter-attribute-value.disabled {
        cursor: not-allowed;
        opacity: 0.5;
        background: #f8f9fa;
        color: #ccc !important;
    }
    /* 强制隐藏筛选数量 */
    .filter-count {
        display: none !important;
    }

    /* 复选框 */
    .filter-checkbox {
        display: inline-block;
        width: 14px;
        height: 14px;
        border: 1px solid #ddd;
        border-radius: 2px;
        margin-right: 6px;
        vertical-align: middle;
        position: relative;
        background: white;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }
    .filter-attribute-value.active .filter-checkbox {
        border-color: #ffb600;
        background: #ffb600;
    }
    .filter-attribute-value.active .filter-checkbox:after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 10px;
        font-weight: bold;
    }
    .filter-attribute-value.disabled .filter-checkbox {
        background: #e9ecef;
        border-color: #dee2e6;
    }

    /* 侧边栏 */
    .sidebar-container {
        animation: fadeInUp 0.6s ease-out 0.7s both;
    }
    .product-center-sidebar {
        background: #fff;
        box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.08);
        border: 1px solid #bbbbbb;
        overflow: hidden;
        margin-bottom: 0;
    }
    .sidebar-header {
        padding: 0.875rem 1rem;
        background: #666;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        font-weight: 600;
        color: #fff;
        font-size: 1rem;
    }
    .sidebar-header-icon {
        color: #ffb600;
        margin-right: 0.5rem;
        font-size: 1.125rem;
    }
    .category-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .category-item {
        border-bottom: 1px solid #f5f5f5;
        transition: background-color 0.2s ease;
    }
    .category-item:last-child { border-bottom: none; }
    .category-item.active { background-color: rgba(255, 182, 0, 0.05); }
    .category-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        color: #333;
        font-size: 0.875rem;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    .category-link:hover,
    .category-link.active {
        color: #ffb600;
        background-color: rgba(255, 182, 0, 0.05);
    }
    .toggle-btn {
        width: 1.5rem;
        height: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: transparent;
        cursor: pointer;
        color: #999;
        transition: transform 0.3s ease, color 0.2s ease;
    }
    .toggle-btn:hover {
        color: #ffb600;
        background-color: rgba(0,0,0,0.05);
    }
    .toggle-btn.expanded {
        transform: rotate(180deg);
        color: #ffb600;
    }
    .subcategory-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: #fafafa;
    }
    .subcategory-menu.expanded { max-height: 31.25rem; }
    .subcategory-item { border-top: 1px solid #f0f0f0; }
    .subcategory-link {
        display: block;
        padding: 0.625rem 1rem 0.625rem 1.875rem;
        color: #666;
        font-size: 0.8125rem;
        text-decoration: none;
        transition: all 0.2s ease;
        position: relative;
    }
    .subcategory-link::before {
        content: "";
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 0.375rem;
        height: 0.375rem;
        background-color: #ccc;
    }
    .subcategory-link:hover,
    .subcategory-link.active {
        color: #ffb600;
        background-color: rgba(255, 182, 0, 0.05);
    }
    .subcategory-link:hover::before,
    .subcategory-link.active::before { background-color: #ffb600; }
    .current-category {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #ffb600;
        color: white;
        font-size: 0.625rem;
        padding: 0.125rem 0.375rem;
        margin-left: 0.5rem;
    }

    /* 内容区域 */
    .content-container {
        animation: fadeInUp 0.6s ease-out 0.8s both;
    }

    /* 分类卡片网格 */
    .product-categories-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    .category-card {
        background: #fff;
        overflow: hidden;
        box-shadow: 0 0.1875rem 0.625rem rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 1px solid #bbbbbb;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        height: 100%;
        animation: fadeInUp 0.5s ease-out;
        opacity: 0;
        animation-fill-mode: forwards;
    }
    .category-card:nth-child(1) { animation-delay: 0.9s; }
    .category-card:nth-child(2) { animation-delay: 1.0s; }
    .category-card:nth-child(3) { animation-delay: 1.1s; }
    .category-card:nth-child(4) { animation-delay: 1.2s; }
    .category-card:nth-child(5) { animation-delay: 1.3s; }
    .category-card:nth-child(6) { animation-delay: 1.4s; }
    .category-card:nth-child(7) { animation-delay: 1.5s; }
    .category-card:nth-child(8) { animation-delay: 1.6s; }
    .category-card:nth-child(9) { animation-delay: 1.7s; }
    .category-card:nth-child(10) { animation-delay: 1.8s; }
    .category-card:nth-child(11) { animation-delay: 1.9s; }
    .category-card:nth-child(12) { animation-delay: 2.0s; }
    .category-card:hover {
        transform: translateY(-0.3125rem);
        box-shadow: 0 0.625rem 1.5625rem rgba(0,0,0,0.12);
        border-color: #ffd700;
    }
    .category-img {
        height: 0;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        background-color: #f8f8f8;
    }
    .category-img img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .category-card:hover .category-img img { transform: scale(1.05); }
    .no-image {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 0.9rem;
        background-color: #f0f0f0;
    }
    .category-content {
        padding: 0.2rem;
        text-align: center;
        background-color: #666;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 2.5rem;
    }
    .category-content h4 {
        margin: 0;
        font-size: 0.875rem;
        line-height: 1.3;
    }
    .category-content h4 a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }
    .category-content h4 a:hover { color: #ffb600; }

    /* 产品卡片 */
    .product-card {
        width: 100%;
        background: #fff;
        box-shadow: 0 0.125rem 0.75rem rgba(0,0,0,0.08);
        margin-bottom: 1.25rem;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #bbbbbb;
        cursor: pointer;
        height: 9.375rem;
        padding-left: 0.3125rem;
        box-sizing: border-box;
        animation: fadeInUp 0.5s ease-out;
        opacity: 0;
        animation-fill-mode: forwards;
    }
    .product-card:nth-child(1) { animation-delay: 0.9s; }
    .product-card:nth-child(2) { animation-delay: 1.0s; }
    .product-card:nth-child(3) { animation-delay: 1.1s; }
    .product-card:nth-child(4) { animation-delay: 1.2s; }
    .product-card:nth-child(5) { animation-delay: 1.3s; }
    .product-card:nth-child(6) { animation-delay: 1.4s; }
    .product-card:nth-child(7) { animation-delay: 1.5s; }
    .product-card:nth-child(8) { animation-delay: 1.6s; }
    .product-card:nth-child(9) { animation-delay: 1.7s; }
    .product-card:nth-child(10) { animation-delay: 1.8s; }
    .product-card:nth-child(11) { animation-delay: 1.9s; }
    .product-card:nth-child(12) { animation-delay: 2.0s; }
    .product-card:hover {
        box-shadow: 0 0.25rem 1.25rem rgba(0,0,0,0.12);
        transform: translateY(-0.125rem);
        border-color: #ffd700;
    }
    .product-card-link {
        display: block;
        text-decoration: none;
        color: inherit;
        height: 100%;
    }
    .product-card-inner {
        display: flex;
        height: 100%;
    }
    .product-image {
        flex: 0 0 9.375rem;
        width: 9.375rem;
        height: 100%;
        overflow: hidden;
        background: #f8f9fa;
    }
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .product-card:hover .product-image img { transform: scale(1.05); }
    .product-content {
        flex: 1;
        padding: 0.9375rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .product-title {
        font-size: 1.125rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.3125rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex-shrink: 0;
    }
    .product-title:hover { color: #ffb600; }
    .product-subtitle {
        font-size: 0.875rem;
        color: #666;
        margin-bottom: 0.3125rem;
        line-height: 2.0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex-shrink: 0;
    }
    .product-tags-container { margin-top: 0.25rem; }
    .product-tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    .tag-icon {
        color: #999;
        font-size: 0.75rem;
        margin-right: 0.25rem;
    }
    .tag-item {
        font-size: 0.75rem;
        color: #666;
        background: #f8f8f8;
        padding: 0.125rem 0.375rem;
        cursor: default;
        line-height: 1.2;
    }

    /* 空状态 */
    .no-categories, .no-products {
        text-align: center;
        padding: 2.5rem 1.25rem;
        background: #fff;
        box-shadow: 0 0.125rem 0.75rem rgba(0,0,0,0.05);
        animation: fadeInUp 0.8s ease-out 0.9s both;
        opacity: 0;
    }
    .no-categories { grid-column: 1 / -1; }
    .no-categories-icon, .no-products-icon {
        font-size: 3rem;
        color: #ccc;
        margin-bottom: 1.25rem;
    }
    .no-categories h4, .no-products h4 {
        color: #666;
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    .no-categories p, .no-products p {
        color: #999;
        font-size: 0.875rem;
    }

    /* 分页 */
    .pagination-wrapper {
        animation: fadeInUp 0.6s ease-out 2.1s both;
        opacity: 0;
    }
    .pagination {
        display: inline-flex;
        justify-content: center;
        margin-top: 1.25rem;
    }
    .pagination > li {
        display: inline-block;
        margin: 0 0.3125rem;
    }
    .pagination > li > a,
    .pagination > li > span {
        padding: 0.375rem 0.75rem;
        border: 1px solid #ddd;
        color: #333;
        text-decoration: none;
    }
    .pagination > li > a:hover { background-color: #f5f5f5; }
    .pagination > .active > a,
    .pagination > .active > span {
        background-color: #ffb600;
        border-color: #ffb600;
        color: white;
    }
    .pagination > .disabled > span {
        color: #777;
        cursor: not-allowed;
    }

    
    /* 分页样式增强 */
#paginationContainer {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#paginationContainer .pagination-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

#paginationContainer .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding-left: 0;
    margin: 0 auto;
    list-style: none;
    max-width: 100%;
}

#paginationContainer .page-item {
    margin: 2px;
    display: inline-block;
}

#paginationContainer .page-item.active .page-link {
    background-color: #ffb600;
    border-color: #ffb600;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(255, 182, 0, 0.3);
}

#paginationContainer .page-link {
    display: block;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    min-width: 40px;
    text-align: center;
    background-color: #fff;
}

#paginationContainer .page-link:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#paginationContainer .page-item.disabled .page-link {
    color: #999;
    background-color: #f8f9fa;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.6;
}

#paginationContainer .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background-color: #f8f9fa;
}

/* 移动端适配 */
@media (max-width: 768px) {
    #paginationContainer .page-link {
        padding: 5px 8px;
        min-width: 35px;
        font-size: 13px;
    }
    
    #paginationContainer .pagination {
        gap: 3px;
    }
}

@media (max-width: 480px) {
    #paginationContainer .page-link {
        padding: 4px 6px;
        min-width: 30px;
        font-size: 12px;
    }
}


    /* 响应式 */
    @media (max-width: 48rem) {
        .product-categories-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 0.9375rem;
        }
        .category-link { padding: 0.625rem 0.875rem; }
        .subcategory-link { padding: 0.5rem 0.875rem 0.5rem 1.75rem; }
        .toggle-btn { width: 1.25rem; height: 1.25rem; }
    }

    @media (max-width: 36rem) {
        .product-categories-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
        .category-content {
            padding: 0.5rem;
            min-height: 3rem;
        }
        .category-content h4 { font-size: 0.8125rem; }
        .category-desc { font-size: 0.6875rem; }
    }

    @media screen and (max-width: 1200px) {
        html { font-size: 15px; }
        .banner-area { height: 300px; }
        .banner-title { font-size: 1.8rem; padding-bottom: 12px; }
        .banner-title::after { height: 3px; }
        .banner-description { font-size: 0.9rem; }
    }

    @media screen and (max-width: 768px) {
        html { font-size: 14px; }
        .banner-area { height: 200px; }
        .banner-title { font-size: 1.4rem; padding-bottom: 10px; }
        .banner-title::after { height: 2px; }
    }

    @media (max-width: 480px) {
        .product-categories-grid {
            grid-template-columns: 1fr;
            gap: 0.625rem;
        }
        .banner-area { height: 180px; }
        .banner-title { font-size: 1.2rem; margin-bottom: 5px; padding-bottom: 8px; }
    }

    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .category-card { border-width: 0.5px; }
    }