        @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;
        }
		
        .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;
        }		
        
		/* 产品详情页特有样式 */
        .product-gallery {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 16px;
            position: relative;
        }
        
        .thumbnail-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .thumbnail {
            width: 100%;
            height: 80px;
            object-fit: cover;
            border: 1px solid #e5e7eb;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .thumbnail:hover, .thumbnail.active {
            border-color: #16a34a;
        }
        
        .main-image-container {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            background-color: #f9fafb;
            border-radius: 8px;
        }
        
        .main-image-slider {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
            width: 100%;
        }
        
        .main-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            flex-shrink: 0;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 16px;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: none;
            outline: none;
        }
        
        .slider-btn:hover {
            background-color: white;
            transform: scale(1.1);
        }
        
        .spec-item {
            display: flex;
            padding: 12px 0;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .spec-title {
            width: 120px;
            color: #6b7280;
            font-weight: 500;
        }
        
        .spec-value {
            flex: 1;
            color: #374151;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: #f0fdf4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .tab-button {
            padding: 12px 24px;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: #6b7280;
            cursor: pointer;
        }
        
        .tab-button.active {
            color: #16a34a;
            border-bottom-color: #16a34a;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .product-gallery {
                grid-template-columns: 1fr;
            }
            
            .thumbnail-container {
                flex-direction: row;
                order: 2;
                margin-top: 12px;
            }
            
            .thumbnail {
                width: 60px;
                height: 60px;
            }
            
            .main-image {
                height: 300px;
            }
            
            .product-layout {
                flex-direction: column;
            }
            
            .spec-item {
                flex-direction: column;
            }
            
            .spec-title {
                width: 100%;
                margin-bottom: 4px;
            }
        }
        
        /* 响应式调整 */
        @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 (max-width: 768px) {
            .product-gallery {
                grid-template-columns: 1fr;
            }
            
            .thumbnail-container {
                flex-direction: row;
                order: 2;
                margin-top: 12px;
            }
            
            .thumbnail {
                width: 60px;
                height: 60px;
            }
            
            .main-image-container {
                height: 300px;
            }
            
            .product-layout {
                flex-direction: column;
            }
            
            .spec-item {
                flex-direction: column;
            }
            
            .spec-title {
                width: 100%;
                margin-bottom: 4px;
            }
            
            /* 手机端相关产品两列布局 */
            .related-products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

		.shadow-sm {
			--tw-shadow: 0 1px 5px 0 rgb(0 0 0 / 0.1);
			--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:url(https://omo-oss-image.thefastimg.com/portal-saas/new2023092510312240911/cms/image/5f13fade-45eb-4a0f-a812-00563eae9abf.jpg) center;
		}