.news-items-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
}

.news-item {
    border: 1px solid #e3e3e3;
    margin-right: 1.3%;
    width: 23.5%;
    margin-bottom: 10px;
}

@media screen and (max-width:576px) {
    .news-item {
        margin-right: 0px;
        width: 100%;
    }
}

@media screen and (min-width:576px) {
    .news-item {
        margin-right: 0px;
        width: 100%;
    }
}

@media screen and (min-width:786px) {
    .news-item {
        margin-right: 2%;
        width: 48%;
    }
}

@media screen and (min-width:992px) {
    .news-item {
        margin-right: 0.83%;
        width: 32.5%;
    }
}

@media screen and (min-width:1200px) {
    .news-item {
        margin-right: 1.3%;
        width: 23.5%;
    }
}

.news-item:last-child {
    margin-right: 0px;
}

.news-img-wrap {
    width: 100%;
    overflow: hidden;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.news-img-wrap img {
    width: 100%;
    /* height: 100%; */
    transition: all .5s ease;
}

.news-img-wrap img:hover {
    transform: scale(1.1);
}

.news-item-content {
    width: 100%;
    display: flex;
    padding: 20px;
    flex-direction: column;
}

.news-title {
    height: 82px;
    font-size: 18px;
    color: #333333;
    font-weight: 540;
    font-family: '黑体';
}

.news-desc {
    height: 100px;
    overflow: hidden;
    color: #999;
    font-size: 14px;
}

.learn-more {
    color: var(--main-color);
    font-size: 12px;
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.learn-more img {
    margin-left: 7px;
}