.col_news{
    padding-left: 0.65rem;
    padding-right: 0.65rem;
}
.col_news .news_list{
    display:flex;
    flex-flow:row wrap;
    justify-content:flex-start;
    gap:1rem 0.5rem;
}
.col_news .news{
    transition: 0.4s;
    width:30%;
}
.col_news .news:hover{
    box-shadow: 0 0 10px 0 #000000cc;
}
.col_news .news_imgs{
    position: relative;
    width: 100%;
    padding-top: 66.3%;
}
.col_news .news_imgs img{
    position: absolute;
    z-index: 50;
    left: 0;
    top: 0;
}
.col_news .news_con{
    padding: 0.1rem;
    background-color: #e5e5e5;
}
.col_news .news_title{
    -webkit-line-clamp: 2;
    font-size: 0.18rem;
    font-weight: bold;
}
.col_news .news_intro{
    -webkit-line-clamp: 5;
    font-size: 0.14rem;
    line-height:0.22rem;
    height:1.13rem;
    font-family: 'æ€æºå®‹ä½“';
}
.col_news .news_timer2{
    width: 100%;
    line-height: 0.4rem;
    text-align: center;
    color: #fff;
    font-size: 0.18rem;
    background-color: #020d2d;
}
@media screen and (max-width: 767px) {
    .col_news{
        padding: 0.2rem;
        padding-bottom: 2.6rem;
    }
    .col_news .news_list{
        gap: 0.5rem;
    }
    .col_news .news{
        width:45%;
    }
}
@media screen and (max-width: 479px){
    .col_news .news{
        width:100%;
    }
}