/* 新闻列表 */
        .news-section {
            padding: 20px 0 80px;
        }
        .news-list {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 40px;
        }
        .news-item {
            display: flex;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
            gap: 30px;
            transition: all 0.3s;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-item:hover {
            background-color: #f9f9f9;
            padding-left: 10px;
        }
        .news-img {
            width: 200px;
            height: 140px;
            border-radius: 4px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .news-item:hover .news-img img {
            transform: scale(1.05);
        }
        .news-content {
            flex: 1;
        }
        .news-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: #333;
        }
        .news-title a {
            text-decoration: none;
            color: inherit;
        }
        .news-title a:hover {
            color: #0865a9;
        }
        .news-meta {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
            display: flex;
            gap: 20px;
        }
        .news-excerpt {
            color: #666;
            font-size: 15px;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 8px;
        }
        .page-btn {
            padding: 8px 15px;
            border: 1px solid #eee;
            background-color: #fff;
            color: #666;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .page-btn:hover, .page-btn.active {
            background-color: #c00;
            color: #fff;
            border-color: #c00;
        }
        /* 底部 */
        
        /* 响应式 */
        @media (max-width: 1200px) {
            .container, .header-container {
                width: 95%;
            }
        }
        @media (max-width: 768px) {
            header {
                padding: 10px 0;
            }
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .news-item {
                flex-direction: column;
                gap: 15px;
            }
            .news-img {
                width: 100%;
                height: 200px;
            }
            .news-list {
                padding: 20px;
            }
        }