.newslist { padding: 60px 0; background: #fafbfc; }
.newslist-content { display: block; }
.newslist-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 18px 22px;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.newslist-item a {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
}
.newslist-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.newslist-item span {
    flex: 1;
}
.newslist-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.newslist-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.newslist-item ins {
    font-size: 12px;
    color: #888;
    text-decoration: none;
    white-space: nowrap;
}
.newslist-item u { display: none; }

.newslist-item:hover {
    background: #f8f9ff;
    transform: translateX(2px);
    box-shadow: 0 2px 10px rgba(37, 88, 232, 0.08);
}

dir {
    text-align: center;
    padding-top: 30px;
}
dir ol li a {
    background: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    border: 1px solid #eee;
    margin: 0 2px;
}
dir ol li a:hover {
    background: #2558e8;
    color: #fff;
    border-color: #2558e8;
}

@media (max-width:767px) {
    .newslist-item { padding: 14px; }
    .newslist-item img { width: 55px; height: 55px; }
    .newslist-item h3 { font-size: 15px; }
    .newslist-item ins { font-size: 11px; }
}