
        /* 产品列表页特定样式 */
        .filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .filter-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .filter-group select, .sort-group select {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: white;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 10px;
        }
        
        .pagination a {
            display: inline-block;
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            color: #0066cc;
        }
        
        .pagination a.active {
            background-color: #0066cc;
            color: white;
            border-color: #0066cc;
        }
        
        /* 新闻资讯列表页特定样式 */
        .news-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .news-item {
            border-bottom: 1px solid #eee;
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
        }
        
        .news-content {
            flex: 1;
        }
        
        .news-date {
            min-width: 100px;
            text-align: right;
            color: #666;
            font-size: 0.9rem;
        }
        
        .news-category {
            display: inline-block;
            background-color: #e8f4ff;
            color: #0066cc;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }
        
        /* 关于我们页面特定样式 */
        .about-hero {
            background: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 102, 204, 0.9)), url('https://images.unsplash.com/photo-1530026405186-ed1f139313f8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 60px;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .team-member {
            text-align: center;
        }
        
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 5px solid #f8f9fa;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .value-item {
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            background-color: #f8f9fa;
            transition: transform 0.3s;
        }
        
        .value-item:hover {
            transform: translateY(-5px);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: #0066cc;
            margin-bottom: 20px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .filters {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .news-item {
                flex-direction: column;
            }
            
            .news-date {
                text-align: left;
                margin-top: 10px;
            }
            
            .team-grid, .values-grid {
                grid-template-columns: 1fr;
            }
        }