/* 新闻列表页专用样式 */

.news-list-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.news-list-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    padding: 30px 24px;
    transition: box-shadow 0.2s;
}

.news-list-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.news-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.news-meta {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 12px;
}

.news-summary {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.news-search-bar {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end;
}

.news-search-input {
    width: 220px;
    border-radius: 20px;
    border: 1px solid #ddd;
    padding: 6px 16px;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
}

.news-search-input:focus {
    border-color: #764ba2;
}

.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.news-pagination .page-link {
    color: #764ba2;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 4px;
    padding: 6px 14px;
    background: #fff;
    transition: background 0.2s, color 0.2s;
}

.news-pagination .page-link.active,
.news-pagination .page-link:hover {
    background: #764ba2;
    color: #fff;
    border-color: #764ba2;
} 