.content .news-category{
    margin: 40px auto;
    display: flex;
    justify-content: center;
}
.content .news-category .news-category-item{
    width: 175px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #C1C1C1;
    text-align: center;
    margin-right: 30px;
    font-size: 16px;
    line-height: 40px;
}
.content .news-category .news-category-item:last-child{
    margin-right: 0;
}
.content .news-category .news-category-item a{
    color: #1A1A1A;
}
.content .news-category .news-category-item.active{
    background: #0C5BE2;
}
.content .news-category .news-category-item.active a{
    color: #FFFFFF;
}


.content .news-list{

}
.content .news-list .news-item{
    margin-bottom: 30px;
    padding-bottom: 30px;
    display: flex;
    border-bottom: 1px solid #A5A5A5;
}
.content .news-list .news-item .news-img{
    width: 200px;
    height: 142px;
}
.content .news-list .news-item .news-img img{
    width: 100%;
    height: 100%;
}
.content .news-list .news-item .news-info{
    width: calc(100% - 230px);
    margin-left: 30px;
}
.content .news-list .news-item .news-info .news-title{
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 20px;
}
.content .news-list .news-item .news-info .news-desc{
    font-size: 12px;
    color: #666666;
    line-height: 18px;
    margin-top: 20px;
}
.content .news-list .news-item .news-info .news-date{
    font-size: 12px;
    color: #0C5BE2;
    line-height: 20px;
    margin-top: 20px;
}