.news-box{
    margin-bottom: 20px;
    display: flex;
    background: #FFFFFF;
    border-radius: 16px 16px 16px 16px;
    padding: 20px;
    gap: 15px;
}
.news-box ._main-img{
    position: relative;
    width: 195px;
    height: 110px;
}
.news-box ._main-img ._tag{
    position: absolute;
    height: 21px;
    padding: 0 4px;
    top: 0;
    left: -3px;
    line-height: 21px;
    font-size: 12px;
    color: #FFFFFF;
    background-image: url("../../../imgs/baseIcon/tag-bg.png");
    background-size: cover;
}

.news-box  ._tag{
    display: inline-block;

    height: 21px;
    padding: 0 4px;
    top: 0;
    left: -3px;
    line-height: 21px;
    font-size: 12px;
    color: #FFFFFF;
    background-image: url("../../../imgs/baseIcon/tag-bg.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.news-box ._main-img ._img{
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 8px 8px;
    object-fit: cover;
}
.news-box ._right{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}
.news-box ._right ._name{
    font-size: 16px;
    color: #333333;
    margin-bottom: 6px;
    line-height: 22px;
    font-weight: bold;
    width: 100%;
}
.news-box ._right ._types{
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}
.news-box ._right ._types div{
    background: #FFFFFF;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #F5F6FA;
    line-height: 19px;
    font-size: 12px;
    color: #333333;
    padding: 0 4px;
}
.news-box ._right ._types span{
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #F5F6FA;
    line-height: 19px;
    font-size: 14px;
    color: #333333;
    padding: 6px;
}
.news-box ._right ._desc{
    font-size: 12px;
    color: #999999;
    line-height: 17px;
    height: 34px;
    margin-bottom: 6px;
    width: 100%;
}
.news-box ._right ._time{
    font-size: 12px;
    color: #666666;
    line-height: 17px;
    width: 100%;
}
.news-box.no-img ._right{
    border-left: 2px solid var(--base-color);
    padding-left: 15px;
}
.news-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    line-height: 22px;
    margin-bottom: 20px;
}
.news-title ._more{
    font-weight: normal;
    font-size: 14px;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 3px;
}
.news-title ._more i{
    font-size: 12px;
}
.news-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.news-item{
    display: flex;
    gap: 15px;
}
.news-item img{
    width: 119px;
    height: 67px;
    border-radius: 8px 8px 8px 8px;
    object-fit: cover;
}
.news-item ._right{
    flex: 1;
    width: calc(100% - 134px);
    font-weight: bold;
}
.news-item ._right .limit{
    font-size: 12px;
    color: #666666;
    line-height: 17px;
    margin-top: 10px;
    font-weight: normal;
}
.news-item.no-img{
    border-left: 2px solid var(--base-color);
    padding-left: 15px;
}

@media (max-width: 992px) {
    .news-box{
        margin-bottom: 16px;
        flex-wrap: wrap;

    }
    .news-box ._main-img{
        width: 100%;
        height: 125px;
    }
    .news-box ._right ._time{
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }
    .news-box ._right{
        width: 100%;
    }
    .news-box ._right ._types {
        display: flex;
        gap: 10px;
        margin-bottom: 6px;
        white-space: nowrap;
        width: 100%;
        overflow: auto;
    }
}
