/* 继承首页的孟菲斯风格变量 */
        :root {
            --primary: #FF5E5B;
            --secondary: #00CECB;
            --accent: #FFED66;
            --dark: #2D3047;
            --light: #FDFFFC;
            --pattern: #5C6BC0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }
        
        /* 磁带机风格导航栏 - 与首页一致 */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .tape-player {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 60px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            padding: 0 20px;
            position: relative;
        }
        
        .tape-reels {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--light);
            border: 4px solid var(--dark);
            display: flex;
            justify-content: center;
            align-items: center;
            animation: spin 4s linear infinite;
        }
        
        .tape-reels::before {
            content: '';
            width: 10px;
            height: 10px;
            background-color: var(--dark);
            border-radius: 50%;
        }
        
        .tape-reels.left {
            margin-right: auto;
        }
        
        .tape-reels.right {
            margin-left: auto;
        }
        
        .tape-controls {
            display: flex;
            gap: 20px;
            margin: 0 20px;
        }
        
        .tape-button {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--light);
            border: 3px solid var(--dark);
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .tape-button:hover {
            transform: scale(1.1);
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            margin: 0 20px;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 列表页特定样式 */
        .list-header {
            margin-top: 90px;
            padding: 60px 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .list-header h1 {
            font-size: 4rem;
            color: var(--light);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .list-header p {
            font-size: 1.2rem;
            color: var(--light);
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .list-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="50" height="50" x="0" y="0" fill="none" stroke="%23FFED66" stroke-width="2"/><rect width="50" height="50" x="50" y="50" fill="none" stroke="%23FFED66" stroke-width="2"/></svg>');
            opacity: 0.2;
        }
        
        /* 筛选和排序栏 */
        .filter-bar {
            background-color: var(--light);
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 90px;
            z-index: 100;
        }
        
        .filter-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }
        
        .filter-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .filter-label {
            font-weight: bold;
            color: var(--dark);
            white-space: nowrap;
        }
        
        .filter-select {
            padding: 8px 15px;
            border: 2px solid var(--dark);
            background-color: var(--light);
            color: var(--dark);
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-select:hover {
            background-color: var(--dark);
            color: var(--light);
        }
        
        .view-toggle {
            display: flex;
            gap: 10px;
        }
        
        .view-button {
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--light);
            border: 2px solid var(--dark);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .view-button.active {
            background-color: var(--dark);
            color: var(--light);
        }
        
        .view-button:hover {
            background-color: var(--dark);
            color: var(--light);
        }
        
        /* 商品列表布局 */
        .product-list-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* 网格视图 */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        /* 列表视图 - 默认隐藏 */
        .products-list {
            display: none;
            flex-direction: column;
            gap: 20px;
        }
        
        .list-view .products-grid {
            display: none;
        }
        
        .list-view .products-list {
            display: flex;
        }
        
        /* 网格视图商品卡片 */
        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .product-image {
            height: 350px;
            background-color: var(--pattern);
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .product-info p {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
        }
        
        .old-price {
            text-decoration: line-through;
            color: #999;
            margin-right: 10px;
            font-size: 1rem;
        }
        
        .add-to-cart {
            background-color: var(--dark);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .add-to-cart:hover {
            background-color: var(--secondary);
        }
        
        /* 列表视图商品卡片 */
        .list-product-card {
            display: flex;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .list-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .list-product-image {
            width: 300px;
            height: 300px;
            background-color: var(--pattern);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .list-product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .list-product-card:hover .list-product-image img {
            transform: scale(1.05);
        }
        
        .list-product-info {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .list-product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .list-product-info p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .list-product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .list-product-actions {
            display: flex;
            gap: 15px;
        }
        
        .wishlist-button {
            background-color: transparent;
            border: 2px solid var(--dark);
            color: var(--dark);
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .wishlist-button:hover {
            background-color: var(--dark);
            color: var(--light);
        }
        
        /* 分页控件 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            gap: 10px;
        }
        
        .page-link {
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white;
            border: 2px solid var(--dark);
            color: var(--dark);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .page-link:hover, .page-link.active {
            background-color: var(--dark);
            color: var(--light);
        }
        
        .page-link.prev, .page-link.next {
            width: auto;
            padding: 0 15px;
        }
        
        /* 页脚 - 与首页一致 */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 50px 20px;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: left;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .list-product-image {
                width: 250px;
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .list-header h1 {
                font-size: 3rem;
            }
            
            .filter-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .list-product-card {
                flex-direction: column;
            }
            
            .list-product-image {
                width: 100%;
                height: 300px;
            }
            
            .list-product-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .list-product-actions {
                width: 100%;
            }
            
            .add-to-cart, .wishlist-button {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .list-header h1 {
                font-size: 2.5rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-image {
                height: 300px;
            }
            
            .pagination {
                flex-wrap: wrap;
            }
        }