.news-page .news-tabs{
    display: table;
    width: 100%;
}
.news-page .news-tabs .tabs-item{
    float: left;
    padding:10px 25px 10px 10px;
    border-radius: 100px;
    margin-right: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border: 1px solid #6B7CFF;
    color: #333;
}
.news-page .news-tabs .tabs-item:hover{
    cursor: pointer;
}
.news-page .news-tabs .tabs-item img{
    width: 30px;
    height: 30px;
    margin-right: 15px;
    border-radius: 50%;
}
.news-page .news-tabs .tabs-item.on{
    border-color: #6B7CFF;
    background: #6B7CFF;
    color: #fff;
}

.news-item .news-img{
    aspect-ratio: 16 / 16;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-item .news-img img{
    width:auto;
    height: 100%;
}
.news-item .news-time{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    margin:15px 0;
}
.news-item .news-time i{
    color: #6B7CFF;
    margin-right: 3px;
}
.news-item .news-title{
    font-size: 26px;
    color: #000;
    margin: 15px 0;
    line-height:38px;
}
.news-item .news-span{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
.news-item .news-span span{
    padding: 8px 15px 7px;
    border-radius: 100px;
    color: #6B7CFF;
    border: 1px solid #6B7CFF;
    font-size: 15px;
}
.news-item button{
    margin:15px 0 10px;
}