<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* æ–°é—»åˆ—è¡¨é¡µæ&nbsp;·å¼ */
.news-list-container {
    max-width: 1200px;
    margin: 2em auto;
    padding: 0 20px;
}

.news-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filter-options a {
    margin-left: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.filter-options a.active {
    background: #007BFF;
    color: white;
}

.news-articles {
    display: grid;
    gap: 30px;
}

.news-card {
    display: flex;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    flex: 0 0 300px;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
    padding: 25px;
}

.news-content h3 {
    margin: 10px 0;
    font-size: 20px;
}

.news-content h3 a {
    color: #333;
    text-decoration: none;
}

.news-content h3 a:hover {
    color: #007BFF;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
}

.pagination {
    margin: 40px 0;
    text-align: center;
}

.page-item {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 4px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
}

.page-item.active {
    background: #007BFF;
    color: white;
}

.page-item.next {
    padding: 8px 20px;
}

@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
    }
    
    .news-image {
        flex: 0 0 200px;
    }
    
    .news-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-options {
        margin-top: 15px;
    }
}
</pre></body></html>