
/*复购友荐*/
        :root {
            --primary: #4A6CF7;
            --primary-light: #6B8AFF;
            --primary-dark: #3A5BD9;
            --accent: #FF6B8B;
            --neutral-50: #FAFBFF;
            --neutral-100: #F5F7FF;
            --neutral-200: #EFF2FE;
            --neutral-300: #E2E8F0;
            --neutral-500: #718096;
            --neutral-700: #2D3748;
            --neutral-900: #1A202C;
            --success: #38B2AC;
            --warning: #ED8936;
            --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --radius: 12px;
            --radius-lg: 16px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
            color: var(--neutral-700);
            line-height: 1.6;
            min-height: 100vh;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--neutral-900);
            line-height: 1.2;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 80px 0;
        }

        /* 英雄区域 */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74, 108, 247, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(74, 108, 247, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            color: var(--primary);
            border: 1px solid rgba(74, 108, 247, 0.2);
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--neutral-900);
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            font-size: 18px;
            color: var(--neutral-500);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 60px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 32px;
            font-weight: 700;
            display: block;
            color: var(--primary);
        }

        .stat-label {
            font-size: 14px;
            color: var(--neutral-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 8px;
        }

        /* 按钮样式 */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border: none;
            border-radius: var(--radius);
            font-weight: 500;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            gap: 8px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--neutral-700);
            border: 1px solid var(--neutral-300);
        }

        .btn-outline:hover {
            background: var(--neutral-100);
            border-color: var(--neutral-400);
        }

        .btn-group {
            display: flex;
            gap: 16px;
            justify-content: center;
        }



        /* 产品展示区域 */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 32px;
        }

        .product-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid var(--neutral-200);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .product-image {
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--accent);
            color: white;
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .product-actions {
            position: absolute;
            top: 16px;
            right: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transform: translateX(10px);
            transition: var(--transition);
        }

        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateX(0);
        }

        .action-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-700);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .action-btn:hover {
            background: var(--primary);
            color: white;
        }

        .product-info {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .product-description {
            color: var(--neutral-500);
            font-size: 14px;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .product-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--neutral-900);
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--warning);
            font-size: 14px;
        }

        .product-footer {
            display: flex;
            gap: 12px;
        }

        .btn-block {
            flex: 1;
            text-align: center;
        }

        .btn-sm {
            padding: 10px 16px;
            font-size: 14px;
        }

        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 60px 0 40px;
        }

        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            margin: 0 4px;
            border-radius: var(--radius);
            background: white;
            color: var(--neutral-700);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid var(--neutral-200);
        }

        .pagination a.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .pagination a:hover:not(.active) {
            background: var(--neutral-100);
            border-color: var(--neutral-300);
        }

        /* PbootCMS 集成样式 */
        .pages {
            padding: 40px 0;
        }

        .position-navigation {
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--neutral-500);
        }

        .position-navigation a {
            color: var(--neutral-500);
            text-decoration: none;
        }

        .position-navigation a:hover {
            color: var(--primary);
        }

        .search-form {
            margin-top: 40px;
            padding: 30px;
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            text-align: center;
            border: 1px solid var(--neutral-200);
        }

        .search-form .form-group {
            margin-right: 10px;
        }

        .search-form input {
            padding: 12px 16px;
            border: 1px solid var(--neutral-300);
            border-radius: var(--radius);
            width: 300px;
            font-size: 14px;
        }

        .search-form input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
        }

        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: var(--radius);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .search-form button:hover {
            background: var(--primary-dark);
        }

        /* 响应式设计 */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 42px;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 100px 0 60px;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .hero-description {
                font-size: 16px;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 40px;
            }
            
            
            .btn-group {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .filter-content {
                grid-template-columns: 1fr;
            }
            
            .search-form input {
                width: 100%;
                margin-bottom: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 32px;
            }
            
            
            .products-grid {
                grid-template-columns: 1fr;
            }
        }