.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: calc(33.333% - 16px);
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.news-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #eee;
    display: block;
}

.news-content {
    padding: 20px;
    flex: 1;
    background-color: #ffffff;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #444;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.news-desc {
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    font-size: 12px;
    color: #999999;
    display: flex;
    align-items: center;
}

.news-date {
    display: flex;
    align-items: center;
}

.news-date i {
    margin-right: 4px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 0 0;
    gap: 4px;
}

.pagination button, 
.pagination span {
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    padding: 6px 14px;
    margin: 0 2px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
}

.pagination .active {
    background: #e6f0fa;
    border-color: #1976d2;
    color: #1976d2;
    font-weight: bold;
}

.pagination .arrow {
    font-weight: bold;
    font-size: 1.1rem;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .news-list {
        gap: 16px;
    }
    .news-card {
        width: calc(50% - 12px);
    }
    .news-img {
        height: 150px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 15px 25px;
    }
    .news-list {
        flex-direction: column;
        gap: 12px;
    }
    .news-card {
        width: 100%;
        margin-bottom: 16px;
    }
    .news-img {
        height: 120px;
    }
    .news-title {
        font-size: 1rem;
    }
    .pagination button, 
    .pagination span {
        font-size: 0.95rem;
        padding: 5px 10px;
    }
}