.news {
    padding: .445rem 0;
}
.news .about_title {
    text-align: left;
}
.about_line {
    margin: 0 0 38px 0;
}

.news_item {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #666;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news_item_img {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    margin-right: 20px;
    overflow: hidden;
}
.news_item_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news_item_main {
    line-height: 24px;
    width: calc(100% - 300px);
}
.news_item_time {
    font-size: 14px;
    color: #666;
}
.news_item_title {
    font-size: 26px;
    color: #333;
    margin: 5px 0 37px;
    /* 单行省略 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.news_item_desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 7px;
    height: 48px;
    /* 两行省略 */
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    box-orient: vertical;

}
.news_item_mooe {
    font-size: 14px;
    color: #D80C24;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

/* 桌面端悬停动效（仅有鼠标悬停能力的设备） */
@media (hover: hover) and (pointer: fine) {
    .news_item:hover {
        transform: translateY(-6px);
        /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
    }

    .news_item:hover .news_item_img img {
        transform: scale(1.05);
    }

    .news_item:hover .news_item_title {
        color: #D80C24;
    }

    .news_item:hover .news_item_mooe {
        color: #a10b1d;
        transform: translateX(4px);
    }
}

/* 移动端触摸反馈 */
.news_item:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}
@media (max-width: 700px) {
    .news_item {
        display: block;
        padding: 14px 0;
    }
    .news_item_img {
        width: 100%;
        height: auto;
        margin-right: 0;
    }
    .news_item_main {
        width: 100%;
    }
    .news_item_title {
        margin: 14px 0;
    }
    .about_line {
        margin-bottom: 10px;
    }
}