
.news_list_box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: calc(2px + 5rem);
    
}
.news_list_box a{
    width:48.7%;
}
.news_list_item{
    width: 100%;
    background-color: #f5f5f5;
    padding-bottom: calc(5px + 0.5rem);
}
.news_list_item:hover .news_list_item_pic img{
    transform: scale(1.1);
}
.news_list_item:hover .news_list_item_title{
    color: #295C95;
}

.news_list_item_pic{
    width: 100%;
    height: calc(20px + 20rem);
    overflow: hidden;
}
.news_list_item_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.news_list_item_title{
    font-family: OPPOSans-M;
    font-weight: normal;
    font-size: calc(10px + 0.5rem);
    color: #333333;
    padding: 0 calc(5px + 0.5rem);
    margin-top: calc(5px + 0.5rem);
 
}

.news_list_item_time{
    font-family: OPPOSans-M;
    font-weight: normal;
    font-size: calc(4px + 0.5rem);
    color: #666666;
    padding: 0 calc(5px + 0.5rem);
    margin-top: calc(5px + 0.25rem);
   
}