/* 新闻资讯静态展示样式 */
.news-static {
    width: 100%;
    max-height: 200px; /* 5条 × 40px */
    overflow-y: auto; /* 内容超出时显示滚动条（可选） */
    border: 1px solid #eee;
    border-radius: 6px;
    background: #f9f9f9;
    margin: 0 0 15px 0;
    box-sizing: border-box; /* 核心：避免边框撑大宽度 */
}
.news-list-static {
    width: 100%;
}
.news-item-static {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 1px dashed #eee;
    box-sizing: border-box;
}
/* 最后一条去掉下划线 */
.news-item-static:last-child {
    border-bottom: none;
}
.news-item-static a {
    color: #333;
    text-decoration: none;
    display: block;
}
.news-item-static a:hover {
    color: #007bff;
}
.news-date-static {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

/* 移动端适配（重点优化） */
@media (max-width:768px) {
    .news-static {
        max-height: 180px; /* 5条 × 36px */
        margin: 0 0 10px 0; /* 减小移动端间距 */
        width: 100% !important; /* 强制占满宽度 */
    }
    .news-item-static {
        height: 36px;
        line-height: 36px;
        padding: 0 10px; /* 减小移动端内边距，避免文字溢出 */
    }
    .news-date-static {
        font-size: 11px; /* 移动端日期字号更小 */
        margin-left: 5px;
    }
}