        @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;700&display=swap');
        
        body {
            font-family: 'Noto Serif SC', serif;
            background-color: #f8f8f8;
            color: #333;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(56, 142, 60, 0.85) 100%);
        }
        
        .magazine-shadow {
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
        }
        
        .product-card {
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .transition-smooth {
            transition: all 0.3s ease;
        }
        
		/* 整个产品卡片可点击 */
        .product-link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
		
        .filter-section {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        /* 内容容器 */
        .content-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 产品分类侧边栏 */
        .category-sidebar {
            width: 250px;
            flex-shrink: 0;
        }
        
        .category-item.active {
            background-color: #f0fdf4;
            border-left: 4px solid #16a34a;
            color: #16a34a;
            font-weight: 500;
        }
        
        .c-itemactive {
            background-color: #f0fdf4;
            border-left: 4px solid #16a34a;
            color: #16a34a;
            font-weight: 500;
        }
        
        /* 移动端分类滑块 */
        .mobile-categories {
            display: none;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
        }
        
        .mobile-categories::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }
        
        .mobile-category-item {
            display: inline-block;
            padding: 8px 16px;
            margin-right: 8px;
            background-color: #f3f4f6;
            border-radius: 20px;
            font-size: 14px;
        }
        
        .mobile-category-item.active {
            background-color: #16a34a;
            color: white;
        }
        
        /* 优势轮播 */
        .advantages-carousel {
            display: none;
        }
        
        .carousel-item {
            min-width: 100%;
        }
        
        /* 底部链接移动端隐藏 */
        .footer-links-mobile-hidden {
            display: block;
        }
        
        /* 相关产品推荐 */
        .related-product {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .related-product:hover {
            background-color: #f3f4f6;
        }
        
        .related-product img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 12px;
        }
        
        .related-product-info {
            flex: 1;
        }
        
        .related-product-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 4px;
        }
        
        .related-product-price {
            font-size: 14px;
            color: #16a34a;
            font-weight: 600;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .filter-section {
                padding: 15px;
            }
            
            .product-layout {
                flex-direction: column;
            }
            
            .category-sidebar {
                display: none;
            }
            
            .mobile-categories {
                display: block;
                margin-bottom: 16px;
            }
            
            .product-card {
                margin-bottom: 12px;
            }
            
            .product-card img {
                height: 180px;
            }
            
            .product-card .p-6 {
                padding: 4px 16px;
            }
            
            .product-card h3 {
                font-size: 16px;
            }
            
            .product-card p {
                font-size: 12px;
                margin-bottom: 12px;
            }
            
			.product-card .h-64 {
                height:10em;
            }
			
            .advantages-desktop {
                display: none;
            }
            
            .advantages-carousel {
                display: block;
            }
            
            .footer-links-mobile-hidden {
                display: none;
            }
            
            .related-products-section {
                display: none;
            }
        }
		
        
        @media (min-width: 769px) {
            .mobile-categories {
                display: none;
            }
            
            .advantages-carousel {
                display: none;
            }
            
            .advantages-desktop {
                display: grid;
            }
            
            .footer-links-mobile-hidden {
                display: block;
            }
            
            .related-products-section {
                display: block;
            }
        }
		
		.shadow-sm {
			--tw-shadow: 0 1px 5px 0 rgb(0 0 0 / 0.07);
			--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
			box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
		}
		
		.bg-pic {
			background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/pdbg.jpg) center;
		}