.news_top{
    background-color: rgb(245,245,245);
    height: 50px;
}
.news_boxes{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 670px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 8px 3px rgb(204 204 204);
    border-bottom: 1px dashed #eee;
    margin-bottom: 20px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.news_box:hover{
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}
.news_box:nth-child(2n):hover{
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}
.news_box_img{
    width: 203px;
    height: 145px;
    background-color: #999999;
}
.news_box_left{
    width: 460px;
}
.news_box_tit{
    font-weight: bold;
    height: 70px;
}
.news_box_date{
    font-style: italic;
    font-size: 14px;
    margin: 10px 0;
    color: #666666;
}
.mews_box_text{
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    color: #666666;
}
.news_title{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 30px auto 10px;
}
.news_date{
    text-align: center;
    color: rgb(172, 166, 166);
    padding: 15px 0;
    background-color: #f5f5f5;
    margin: 15px 0 0;
}
.news_content img{
    margin: 10px auto;
}