.news-item-horizontal .h-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.news-item-horizontal .h-img img {
    width: 180px;
    height: auto;
    border-radius: 8px;
}

.news-item-horizontal .h-info {
    flex: 1;
}

.news-item-horizontal .h-info .tit {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-item-horizontal .h-info .txt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.news-item-horizontal .h-info .date {
    font-size: 14px;
    color: #999;
}






/* ✅ 强制手机端一条占一行 */
@media (max-width: 768px) {

    .news-list ul li,
    .news-item-horizontal {
        width: 100% !important;
        float: none !important;
        display: block !important;
    }

    .news-item-horizontal .h-box {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .news-item-horizontal .h-img img {
        width: 100% !important;
        max-width: 360px;
        margin-bottom: 10px;
    }

    .news-item-horizontal .h-info {
        width: 100% !important;
    }
}

