.news_box{
    width: 100%;
    padding-bottom: calc(2px + 4rem);
}
.news_box .news{
    max-width: 1534px;
    width: 85%;
    margin: auto;
}
.news_list_box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: calc(12px + 2rem);
    margin-top: calc(20px + 2rem);
}
.news_item{
    width: 31.9426%;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: calc(12px + 2rem);
    transition: .5s;
}
.news_pic{
    width: 100%;
    height: calc(18px + 15rem);
    overflow: hidden;
}
.news_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.news_item .p1{
font-family: Source_Han_normal;
font-weight: 350;
font-size: calc(8px + 0.5rem);
color: #666666;
line-height: calc(6px + 1rem);
margin-top: calc(3px + 1rem);
}
.news_item .p2{
    font-family: Source_Han_normal;
    font-weight: 350;
    font-size: calc(4px + 0.5rem);
    color: #999999;
    line-height: calc(10px + 0.5rem);
    margin-top: calc(2px + 0.25rem);
}
.news_item:hover img{
transform: scale(1.1);
}
.news_item:hover{
    border-bottom: 1px #A22124 solid;
}
@media (max-width: 1100px){
    .news_item{
        width: 100%;
        
    }
    .news_pic{
        height: calc(18px + 45rem);
    }
    .news_item .p1{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .news_item .p2{
        font-size: calc(9px + 1rem);
    }
}