.col_list .news_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.col_list .news{
    width: 45%;
    margin-bottom: 30px;
}
.news_imgs{
    position: relative;
    padding-top: 66.7%;
    background-color: #e5e5e5;
    margin-bottom: 15px;
}
.news_imgs img{
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.col_list .news_title{
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width: 479px){
    .col_list .news{
        width: 100%;
    }
}