.content .news-category{
    margin: 40px auto;
    display: flex;
    justify-content: center;
}
.content .news-category .news-category-item{
    width: 160px;
    height: 50px;
    background: #F3F3F3;
    text-align: center;
    margin-right: 20px;
    font-size: 14px;
    line-height: 50px;
    border-radius: 25px;
    transition: all 0.3s;
}
.content .news-category .news-category-item:last-child{
    margin-right: 0;
}
.content .news-category .news-category-item a{
    display: block;
    color: #1A1A1A;
}
.content .news-category .news-category-item.active,
.content .news-category .news-category-item:hover{
    background: #1562C5;
}
.content .news-category .news-category-item.active a,
.content .news-category .news-category-item:hover a{
    color: #FFFFFF;
}


.content .news-list{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.content .news-list .news-item{
    width: 49%;
    border: 1px solid #F0F1F3;
    border-radius: 20px;
    overflow: hidden;
    float: left;
    margin-top: 20px;
}
.content .news-list .news-item a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content .news-item .news-item-img{
    width: 28.4%;
    aspect-ratio: 1 / 1;
    position: relative;
}
.content .news-item .news-item-img img{
    width: 100%;
    height: 100%;
}
.content .news-item .news-item-img .news-item-img-icon{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.4);
    display: none;
}
.content .news-item .news-item-img .news-item-img-icon img{
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.content .news-item:hover .news-item-img .news-item-img-icon{
    display: block;
}
.content .news-item .news-item-content{
    width: 71.6%;
    padding: 0 20px;
}
.content .news-item .news-item-title{
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 27px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.content .news-item .news-item-desc{
    font-size: 14px;
    color: #666666;
    line-height: 21px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 10px 0;
}
.content .news-item .news-item-date{
    font-size: 14px;
    color: #999999;
    line-height: 16px;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .content .news-item .news-item-title{
        font-size: 16px;
        line-height: 24px;
    }
    .content .news-item .news-item-desc{
        margin: 5px 0;
    }
}
@media only screen and (max-width: 1000px) {
    .content .news-category{
        margin: 20px auto;
    }
    .content .news-category .news-category-item{
        width: 120px;
        height: 40px;
        line-height: 40px;
        font-size: 12px;
    }
    .content .news-list{
        margin-top: 10px;
    }
    .content .news-list .news-item{
        margin-top: 10px;
    }
    .content .news-item .news-item-content{
        padding: 0 10px;
    }
    .content .news-item .news-item-title{
        font-size: 14px;
        line-height: 21px;
    }
    .content .news-item .news-item-desc{
        font-size: 12px;
        line-height: 18px;
        margin: 0;
    }
    .content .news-item .news-item-date{
        font-size: 12px;
    }
    .content .news-item .news-item-img .news-item-img-icon img{
        width: 20px;
        height: 20px;
    }
}