/* =========================================
   新闻页面动态列表专用样式 (匹配设计稿)
========================================= */

.news-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
}

.news-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 35px 20px;
    transition: background-color 0.3s ease;
}

.news-item:hover {
    background-color: #fafafa;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item a {
    text-decoration: none;
    display: block;
}

.news-title {
    font-size: 22px;
    color: #333;
    font-weight: 500;
    margin: 0 0 16px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #0056b3;
    /* 鼠标悬浮时标题稍微高亮一点,更符合交互逻辑 */
}

.news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 限制摘要最多显示2行 */
    overflow: hidden;
    text-overflow: ellipsis;
}