.container{
    display: flex;
    margin-top: 2em;
    margin: auto;
}
.newsContentOut{
    padding: 1em;
    width: 100%;
}
.news{
    padding: 1em;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.news .item{
    width: 22%;
    
    margin: 1em;
    margin-top: 0;
    line-height: 2em;
    text-align: center;
}
.item img{
    width: 100%;
    max-height: 180px;
}
.item .des{
    font-size: 0.5em;
    color: #666;
    
}
.image{
    margin-right: 1em;
    padding-top: 1em;
    width: 100%;
}
.image img{
    max-width: 30%;
    float: left;
    margin-right: 2em;
    margin-bottom: 2em;
}
.newsContent{
    background-color: rgb(245, 244, 244);
    padding:1em;
    height: 100%;
    margin-left: 4em;
}
.insertDate{
    font-size: 0.8em;
    color: #666;
}
@media screen and (max-width: 900px){
    .image{
        display: none;
    }
    .news{
        padding: 0;
    }
    .container{
        display: block;
    }
    .title{
        font-size: 1em;
        line-height: 2.5em;
    }
}