.news_box {
    margin-top: 169px;
    display: flex;
    flex-wrap: wrap;
}

.news-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.news-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.new-img {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 200ms linear;
}

.news-item a:hover img {
    transform: scale(1.1);
}

.news-item {
    width: 30%;
    margin-right: 3%;
    margin-bottom: 50px;
}

.new-titles {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
}

.new-titles a:hover {
    text-decoration: underline;
}

.new-date {
    font-size: 18px;
    line-height: 20px;
    margin: 20px 0;
}

.new-content {
    font-size: 18px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: default;
}