.col_news .ml .news_list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
}
.col_news .ml .news_list .news{
    padding: 0;
    border-bottom: none;
    position: relative;
    background-color: #fff;
    transition: 0.4s;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.col_news .ml .news_imgs{
    width: 100%;
    padding-top: 56%;
    position: relative;
}
.col_news .ml .news_imgs img{
    position: absolute;
    z-index: 50;
    left: 0;
    top: 0;
}
.col_news .ml .news_con{
    width: 100%;
    padding: 0.1rem;
    box-sizing: border-box;
    background-color: #eeeeee;
}
.col_news .ml .news_intro{
    height: 0.88rem;
    line-height: 0.22rem;
    -webkit-line-clamp: 4;
    margin: 0.1rem 0;
}
.col_news .ml .news_list .news:hover{
    box-shadow: 0 0 10px 0 #00000066;
}
.col_news .ml .news_list .news:hover .news_title{
    color: #333;
}
.col_news .ml .news_list .news:hover .news_timer{
    background-color: #0a7af9;
}
@media screen and (max-width: 767px){
    .col_news .ml .news_list{
        gap: 0.2rem;
    }
}
@media screen and (max-width: 600px){
    .col_news .ml .news_list{
        gap: 0.1rem;
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 430px){
    .col_news .ml .news_list{
        grid-template-columns: 1fr;
    }
}