

.news{
    padding: 0.4rem 0 1.35rem;
    box-sizing: border-box;
}
.news .news_list{
    margin-bottom: 0.64rem;
}
.news .news_item{
    width: 100%;
    height: auto;
    padding-top: 0.27rem;
    padding-bottom: 0.19rem;
    border-bottom: 0.01rem solid #F0F0F0;
    display: flex;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}
.news .news_item::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0.01rem;
    background: #000;
    bottom: 0;
    right: 0;
    transition: all 0.5s;
}
.news .news_item .news_img{
    width: 3.07rem;
    height: 1.84rem;
    overflow: hidden;
}
.news .news_item .news_img img{
    transition: all 0.5s;
}
.news .news_item .news_txt{
    width: 9.5rem;
    padding-top: 0.25rem;
}
.news .news_item .news_txt .news_title{
    font-weight: bold;
    font-size: 0.2rem;
    color: #000000;
    margin-bottom: 0.21rem;
}
.news .news_item .news_txt .news_cont{
    font-weight: 400;
    font-size: 0.18rem;
    color: #434343;
    height: 0.54rem;
    line-height: 1.6;
    margin-bottom: 0.18rem;
}
.news .news_item .news_txt .news_time{
    font-weight: 400;
    font-size: 0.16rem;
    color: #666666;
}
.news .news_item:hover .news_img img{
    transform: scale(1.1);
}
.news .news_item:hover .news_txt .news_cont,
.news .news_item:hover .news_txt .news_time{
    color: #000000;
}
.news .news_item:hover::before{
    width: 100%;
    left: 0;
}



.news_box{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.news_box.act{
    display: flex;
}
.news_box .news_box_img{
    width: 4.35rem;
    height: 4.35rem;
    overflow: hidden;
    margin-bottom: 0.22rem;
}
.news_box .news_box_title{
    text-align: center;
    font-weight: 600;
    font-size: 0.37rem;
    color: #FFFFFF;
    letter-spacing: 0.03rem;
    margin-bottom: 0.42rem;
}
.news_box .news_box_colse{
    width: 0.25rem;
    height: 0.25rem;
    margin: 0 auto;
    cursor: pointer;
}









@media only screen and (max-width: 1024px) {
.news .news_item .news_img{
    flex: 0 0 28%;
    width: 28%;
}
.news .news_item .news_txt{
    flex: 0 0 70%;
    padding-top: 0.1rem;
    width: 70%;
}
.news .news_item .news_txt .news_cont{
    height: auto;
}
}


