    
        /* 列表页内容 */
        .list-page-container {
            max-width: 1600px;
            margin: 20px auto;
            padding: 0 20px;
            display: flex;
        }
        
        /* 分类面板 - 三级结构 */
        .category-panel {
            width: 280px;
            padding-right: 40px;
            border-right: 1px solid #eee;
        }
        
        .category-section {
            margin-bottom: 35px;
        }
        
        .category-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            letter-spacing: 0.5px;
            position: relative;
            color: #333;
        }
        
        .category-title::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #000;
        }
        
        /* 一级分类 */
        .level1 {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .level1 > li {
            margin-bottom: 15px;
        }
        
        .level1-title {
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            cursor: pointer;
            color: #333;
            transition: color 0.3s;
        }
        
        .level1-title:hover {
            color: #666;
        }
        
        .level1-title i {
            font-size: 12px;
            transition: transform 0.3s;
        }
        
        .level1-title.active i {
            transform: rotate(180deg);
        }
        
        /* 二级分类 */
        .level2 {
            list-style: none;
            padding-left: 15px;
            margin-top: 8px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .level2.active {
            max-height: 500px;
        }
        
        .level2 > li {
            margin-bottom: 12px;
            position: relative;
        }
        
        .level2-title {
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 0;
            cursor: pointer;
            color: #555;
            transition: color 0.3s;
        }
        
        .level2-title:hover {
            color: #333;
        }
        
        .level2-title i {
            font-size: 10px;
            transition: transform 0.3s;
        }
        
        .level2-title.active i {
            transform: rotate(180deg);
        }
        
        /* 三级分类 */
        .level3 {
            list-style: none;
            padding-left: 15px;
            margin-top: 5px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .level3.active {
            max-height: 500px;
        }
        
        .level3 > li {
            margin-bottom: 8px;
        }
        
        .level3-title {
            font-size: 13px;
            padding: 5px 0;
            cursor: pointer;
            color: #777;
            transition: color 0.3s;
            display: block;
            text-decoration: none;
        }
        
        .level3-title:hover {
            color: #333;
        }
        
        .level3-title.active {
            color: #000;
            font-weight: 500;
        }
        
        /* 推荐商品区域 */
        .featured-products {
            margin-top: 40px;
            background: #f9f9f9;
            border-radius: 4px;
            padding: 20px;
        }
        
        .featured-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .featured-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #000;
        }
        
        .featured-items {
            display: grid;
            gap: 15px;
        }
        
        .featured-item {
            display: flex;
            gap: 15px;
            align-items: center;
            text-decoration: none;
            color: #333;
            transition: transform 0.3s;
            padding: 10px;
            border-radius: 4px;
        }
        
        .featured-item:hover {
            background: #fff;
            transform: translateX(5px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .featured-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .featured-info {
            flex: 1;
        }
        
        .featured-name {
            font-size: 14px;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .featured-price {
            font-size: 13px;
            color: #666;
        }
        
        .products-sectionlist {
            width: 75%;
        }
        
        /* 重写的列表头部样式 */
        .list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
            background: white;
            padding: 5px;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .list-header h1 {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 1.5px;
            flex: 1;
            min-width: 200px;
        }
        
        .sort-container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .sort-label {
            font-size: 0.9rem;
            color: #666;
            white-space: nowrap;
        }
        
        .sort-select {
            padding: 10px 15px;
            border: 1px solid #ddd;
            background: white;
            font-size: 0.9rem;
            min-width: 180px;
            cursor: pointer;
            transition: var(--transition);
            border-radius: 4px;
        }
        
        .sort-select:focus {
            border-color: var(--hermes-orange);
            outline: none;
        }
        
        .view-toggle {
            display: flex;
            margin-left: 15px;
        }
        
        .view-btn {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 1px solid #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .view-btn:first-child {
            border-right: none;
            border-radius: 3px 0 0 3px;
        }
        
        .view-btn:last-child {
            border-radius: 0 3px 3px 0;
        }
        
        .view-btn.active, .view-btn:hover {
            background: var(--hermes-light);
            color: var(--hermes-orange);
            border-color: var(--hermes-orange);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .products-grid.list-view {
            grid-template-columns: 1fr;
        }
        
        .product-card {
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            background: #fff;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .product-card.list-view {
            display: flex;
            height: 250px;
        }
        
        .product-image-container {
            aspect-ratio: 1 / 1;
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .product-card.list-view .product-image-container {
            width: 250px;
            flex-shrink: 0;
        }
        
        .product-img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .product-card:hover .product-img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--hermes-orange);
            color: var(--hermes-dark);
            padding: 5px 10px;
            font-size: 0.75rem;
            letter-spacing: 1px;
            z-index: 2;
            border-radius: 3px;
        }
        
        .product-actions {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition);
        }
        
        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateY(0);
        }
        
        .action-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            color: var(--hermes-dark);
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        
        .action-btn:hover {
            background: var(--hermes-orange);
            color: white;
            transform: translateY(-3px);
        }
        
        .product-info {
            padding: 18px 0;
            text-align: center;
        }
        
        .product-card.list-view .product-info {
            padding: 25px;
            text-align: left;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .product-title {
            font-size: 1rem;
            margin-bottom: 8px;
            font-weight: 400;
            letter-spacing: 1px;
        }
        
        .product-card.list-view .product-title {
            font-size: 1.2rem;
        }
        
        .product-price {
            font-size: 0.95rem;
            color: #333;
            margin-bottom: 8px;
        }
        
        .product-card.list-view .product-price {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .product-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            margin-top: 8px;
            display: none;
        }
        
        .product-card.list-view .product-description {
            display: block;
        }
        
        .product-colors {
            display: flex;
            gap: 8px;
            margin-top: 10px;
            justify-content: center;
        }
        
        .product-card.list-view .product-colors {
            justify-content: flex-start;
        }
        
        .product-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 1px solid #eee;
            cursor: pointer;
        }
        
        /* 响应式设计 */
        @media (max-width: 1199px) {
            .products-sectionlist {
                width: 70%;
            }
        }
        
        @media (max-width: 991px) {

            .products-sectionlist {
                width: 100%;
                padding-top: 1px;
            }
            
    
            .category-panel,.product-actions {
                display: none;
            }
        

            .list-page-container {flex-direction: column;margin:0 auto;padding: 0 5px;}
            
            .category-panel {
                width: 100%;
                padding-right: 0;
                padding-bottom: 2px;
                border-right: none;
                border-bottom: 1px solid #eee;
            }
            
            .products-sectionlist {
                padding-left: 0;
                padding-top: 1px;
            }
            
            .featured-items {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
         .sort-select {
            width: 35%;
        }

            /* 网格视图下每行显示两个商品 */
            .products-grid:not(.list-view) {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            /* 列表视图在移动端调整为垂直布局 */
            .products-grid.list-view .product-card.list-view {
                flex-direction: column;
                height: auto;
            }
            
            .products-grid.list-view .product-card.list-view .product-image-container {
                width: 100%;
                height: auto;
                aspect-ratio: 1 / 1;
            }
            
            .products-grid.list-view .product-card.list-view .product-info {
                padding: 15px;
                text-align: center;
            }
            
            .products-grid.list-view .product-card.list-view .product-colors {
                justify-content: center;
            }
            
            /* 重写的移动端列表头部样式 */
            .list-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            
            .list-header h1 {
                margin-bottom: 0;
                font-size: 1.5rem;
            }
            
            .sort-container {
                width: 100%;
                justify-content: space-between;
                gap: 8px;
            }
            
            .sort-label {
                font-size: 0.85rem;
            }
            
            .sort-select {
                min-width: auto;
                flex: 1;
                padding: 8px 12px;
            }
            
            .view-toggle {
                margin-left: 0;
            }
        }
        
        @media (max-width: 480px) {
            .featured-items {
                grid-template-columns: 1fr;
            }
            .sort-select {
            width: 80px;
        }
            .list-header h1 {
                font-size: 1.4rem;
            }
            .products-sectionlist {
                padding-top: 2px;
            }
        }
        
        .empty-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
        }
        
        .empty-icon {
            font-size: 80px;
            color: #d4af37;
            margin-bottom: 30px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .empty-title {
            font-size: 32px;
            font-weight: 300;
            color: #333;
            letter-spacing: 1px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .empty-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: #d4af37;
        }
        
        .empty-description {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }
        
        .empty-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .action-btna {
            padding: 14px 30px;
            background-color: #fff;
            color: #333;
            border: 1px solid #ddd;
            border-radius: 0;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .action-btna:hover {
            background-color: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .action-btna.primary {
            background-color: #333;
            color: #fff;
            border-color: #333;
        }
        
        .action-btna.primary:hover {
            background-color: #222;
        }
        
        .recommendations {
            margin-top: 60px;
            padding-top: 50px;
            border-top: 1px solid #eee;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 30px;
            text-align: center;
            color: #333;
            letter-spacing: 1px;
        }
        @media (max-width: 768px) {
            .empty-container {
                padding: 50px 20px;
            }
            
            .empty-icon {
                font-size: 60px;
            }
            
            .empty-title {
                font-size: 26px;
            }
            
            .empty-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .action-btna {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

        }