
/* ===== 列表页面列表容器 */
.news_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ===== 单个列表项：使用 flex 布局，标题左、时间右 ===== */
.news_list li.news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px dashed #e0e0e0;
    line-height: 24px;
    box-sizing: border-box;
}

/* 鼠标悬停效果 */
.news_list li.news:hover {
    background-color: #f8faff;
}

/* 取消最后一项的底部分割线 */
/* .news_list li.news:last-child {
    border-bottom: none;
} */

/* ===== 标题：左侧，占剩余空间，溢出省略号 ===== */
.news_title {
    flex: 1;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 20px;
}

.news_title a:link,
.news_title a:visited {
    color: #333;
    text-decoration: none;
}

.news_title a:hover {
    color: #0b3779;
    text-decoration: underline;
}

/* ===== 发布时间：右侧，固定宽度，右对齐 ===== */
.news_meta {
    flex-shrink: 0;
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    padding-left: 15px;
    text-align: right;
}
