 /* 全局样式 - 与首页保持一致 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
        body {
            background-color: #fff5f5;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #d81e06;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: #ff4e79;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 - 与首页保持一致 */
        header {
            background: linear-gradient(135deg, #d81e06, #ff4e79);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(216, 30, 6, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: #ffccd5;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 500;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        
        nav ul li a:hover {
            border-bottom: 2px solid white;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 20px 0;
            background-color: #fff9f9;
            border-bottom: 1px solid #ffd6e0;
        }
        
        .breadcrumb ul {
            display: flex;
            list-style: none;
        }
        
        .breadcrumb ul li {
            margin-right: 10px;
            font-size: 14px;
        }
        
        .breadcrumb ul li:after {
            content: '>';
            margin-left: 10px;
            color: #888;
        }
        
        .breadcrumb ul li:last-child:after {
            content: '';
        }
        
        .breadcrumb ul li a {
            color: #888;
        }
        
        .breadcrumb ul li a:hover {
            color: #d81e06;
        }
        
        /* 列表页标题 */
        .page-header {
            padding: 40px 0 20px;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 36px;
            color: #d81e06;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #ff4e79;
        }
        
        .page-header p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 筛选和排序 */
        .list-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px 0;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .filter-group {
            display: flex;
            align-items: center;
        }
        
        .filter-group label {
            margin-right: 10px;
            font-weight: bold;
            color: #555;
        }
        
        .filter-group select {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            margin-right: 20px;
        }
        
        .view-options {
            display: flex;
        }
        
        .view-options button {
            background: none;
            border: none;
            padding: 5px 10px;
            margin-left: 10px;
            cursor: pointer;
            color: #888;
            font-size: 18px;
        }
        
        .view-options button.active {
            color: #d81e06;
        }
        
        /* 列表内容 */
        .list-content {
            margin-bottom: 50px;
        }
        
        /* 网格视图 (默认) */
        .grid-view {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .list-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .list-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(216, 30, 6, 0.2);
        }
        
        .item-img {
            height: 200px;
            overflow: hidden;
        }
        
        .item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .list-item:hover .item-img img {
            transform: scale(1.1);
        }
        
        .item-info {
            padding: 20px;
        }
        
        .item-info h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #d81e06;
        }
        
        .item-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: #888;
            font-size: 14px;
        }
        
        .item-info p {
            color: #555;
            margin-bottom: 15px;
        }
        
        .item-price {
            font-size: 18px;
            font-weight: bold;
            color: #ff4e79;
        }
        
        .item-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .btn-small {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
        }
        
        .btn-primary {
            background: #ff4e79;
            color: white;
        }
        
        .btn-primary:hover {
            background: #d81e06;
        }
        
        .btn-secondary {
            border: 1px solid #d81e06;
            color: #d81e06;
        }
        
        .btn-secondary:hover {
            background: #fff0f0;
        }
        
        /* 列表视图 (可选) */
        .list-view {
            display: none;
        }
        
        .list-view .list-item {
            display: flex;
            margin-bottom: 30px;
        }
        
        .list-view .item-img {
            flex: 0 0 300px;
            height: 200px;
            border-radius: 10px 0 0 10px;
        }
        
        .list-view .item-info {
            flex: 1;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 50px 0;
        }
        
        .pagination ul {
            display: flex;
            list-style: none;
        }
        
        .pagination ul li {
            margin: 0 5px;
        }
        
        .pagination ul li a {
            display: block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: white;
            border-radius: 50%;
            color: #555;
            font-weight: bold;
        }
        
        .pagination ul li a:hover, 
        .pagination ul li a.active {
            background: #ff4e79;
            color: white;
        }
        
        /* 侧边栏布局 (可选) */
        .with-sidebar {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 30px;
        }
        
        .sidebar {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .sidebar-widget {
            margin-bottom: 30px;
        }
        
        .sidebar-widget h3 {
            font-size: 18px;
            color: #d81e06;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-widget ul {
            list-style: none;
        }
        
        .sidebar-widget ul li {
            margin-bottom: 10px;
        }
        
        .sidebar-widget ul li a {
            display: block;
            padding: 8px 0;
            color: #555;
        }
        
        .sidebar-widget ul li a:hover {
            color: #ff4e79;
            padding-left: 5px;
        }
        
        /* 页脚 - 与首页保持一致 */
        footer {
            background: #333;
            color: #ccc;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #ff4e79;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
        }
        
        .footer-column ul li a:hover {
            color: #ff4e79;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #444;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #ff4e79;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .with-sidebar {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px 10px;
            }
            
            .list-options {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .filter-group {
                margin-bottom: 15px;
                flex-wrap: wrap;
            }
            
            .filter-group select {
                margin-bottom: 10px;
            }
            
            .view-options {
                align-self: flex-end;
            }
            
            .list-view .list-item {
                flex-direction: column;
            }
            
            .list-view .item-img {
                flex: 0 0 100%;
                border-radius: 10px 10px 0 0;
            }
        }