.newsList_box ._title{
    margin: 40px 0 80px;
}
.imageList >div{
    width: 130px;
    height:  auto;
    margin:  10px 10px 10px 0;
}
.imageList>div> a{
    position: relative;
    width: 100%;
    padding: 50% 0;
    display: flex;
    
}
.imageList>div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.news_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news_item {
    margin: 20px 0 60px;
    width: calc(50% - 10px);
}
.news_item .title  .text{
    max-width: calc(100% - 150px);
    width: unset;
    margin-right: 30px;
    font-size: 20px;
    font-weight: 600;
}
.news_item .title .time {
    font-size: 15px;
    color: #666;
}
.news_item .description {
    font-size: 15px;
    line-height: 1.6;
}
@media (max-width: 992px) { 
    .imageList>div {
        margin: 10px 10px 0 0;
    }
    .imageList>div>a {
        display: none;
    }
    
    .imageList>div:first-child>a {
        display: block;
        
    }
    .imageList>div:nth-child(2)>a {
        display: block;
    }
    .newsList_box ._title {
        margin: 20px 0;
    }
    .news_item {
        margin: 20px 0;
        width: 100%;
    }
    .news_item .title .text {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}
