.news-6 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width:calc(100% + 20px);
}
.news-6 .article {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-sizing: border-box;
    transition: transform 0.3s;
    
}
.news-6 .article:hover {
    transform: translateY(-10px);
}

.news-6 .article .box{
    display: flex;
}

.news-6 .article .box .left{
    width: calc(70% - 10px);
    padding-left:10px;
}

.news-6 .article .box .imgs{
    width: calc(30%);
    position: relative; /* 为了绝对定位描述文本（可选） */
    height: 120px; /* 固定高度，你可以根据需要调整 */
    overflow: hidden;
    border-radius: 6px;
}

.news-6 .article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease; /* 添加过渡效果 */
}

@media (max-width: 768px) {
    .news-6 .article {
        flex: 1 1 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
.news-6 .article-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.news-6 .article-title {
    font-size: 16px;
    margin: 0;
    font-weight: bold;
}
.news-6 .article-meta {
    font-size: 12px;
    color: #666;
    padding-top: 10px;
}
.news-6 .article-meta span{padding-right:10px;}
.news-6 .article-content {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}