/* 产品页面特定样式 */
        .products-header {
            text-align: center;
            margin: 60px 0 40px;
        }
        
        .products-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #D4AF37, #FFA500, #FF8C00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        
        .products-header p {
            font-size: 1.2rem;
            color: #aaa;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* 搜索和筛选区域 */
        .products-controls {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .search-row {
            width: 100%;
        }
        
        .filter-row {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
        .search-box {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-box input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            background: #000000;
            border: 1px solid rgba(194, 157, 89, 0.2);
            border-radius: 30px;
            color: #F2F2F2;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .search-box input:focus {
            outline: none;
            border-color: #D4AF37;
            box-shadow: 0 0 15px rgba(194, 157, 89, 0.3);
        }
        
        .search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #D4AF37;
            font-size: 1.2rem;
        }
        
        .filter-controls {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            background: transparent;
            border: 1px solid rgba(194, 157, 89, 0.2);
            color: #aaa;
            padding: 12px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
            text-decoration: none;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: rgba(255, 215, 0, 0.1);
            color: #D4AF37;
            border-color: #D4AF37;
        }
        
        /* 产品网格 */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .product-card {
            background: #000000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(194, 157, 89, 0.3);
            transition: transform 0.3s;
            border: 1px solid rgba(194, 157, 89, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: white;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-category {
            color: #D4AF37;
            font-size: 0.9rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .product-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            line-height: 1.4;
            color: white;
        }
        
        .product-description {
            color: #aaa;
            line-height: 1.6;
            min-height: 60px;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #D4AF37;
            margin-bottom: 15px;
        }

        .product-price i{
            font-size: 1rem;
            font-weight: 200;
            color: #CCC;
            padding-left: 8px;
         }
        
        .product-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-btn {
            background: linear-gradient(90deg, #D4AF37, #D4B67A);
            color: #1C1C1C;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .product-btn:hover {
            background: linear-gradient(90deg, #D4B67A, #D4AF37);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(194, 157, 89, 0.5);
        }
        
        .product-favorite {
            background: transparent;
            border: none;
            color: #aaa;
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .product-favorite:hover, .product-favorite.active {
            color: #D4AF37;
        }
        
        /* 分页控件 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 40px 0;
        }
        
        .page-btn {
            background: transparent;
            border: 1px solid rgba(194, 157, 89, 0.2);
            color: #aaa;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        /*兼容Pbootcms内核*/
        .page-num {
            background: transparent;
            border: 1px solid rgba(194, 157, 89, 0.2);
            color: #aaa;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .page-num-current {
            background: rgba(255, 215, 0, 0.1);
            color: #D4AF37;
            border-color: #D4AF37;
        }
        
        .page-btn:hover, .page-btn.active, .page-num:hover{
            background: rgba(255, 215, 0, 0.1);
            color: #D4AF37;
            border-color: #D4AF37;
        }
       
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .products-header h1 {
                font-size: 2.2rem;
            }
            
            .filter-controls {
                justify-content: center;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
        }