.news_item
{
    width:100%;
    height:auto;
    margin:30px auto;
    border-bottom:1px solid #efefef;
}

.news_title
{
    display:flex;
    justify-content: center;
    align-items: center;
    width:100%;
    font-size: 26px;
    text-shadow: 0px 0px 1px #cccccc;
}

.news_time
{
    display:flex;
    justify-content: end;
    align-items: center;
    width:100%;
    height:auto;
    color: #868686;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0px 0px 1px #cccccc;
}

.news_img
{
    display:flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:auto; 
}

.news_img img
{
   width:100%;
   height:auto; 
}

.news_desc
{
    display: -webkit-box;
    font-size: 18px;
    line-height: 1.8em;
    color: #868686;
    height: auto;
    overflow: hidden;
    text-shadow: 0px 0px 1px #cccccc;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    box-sizing: border-box;
    white-space: normal;
    text-indent:2em;
    margin:10px auto;
}

.news_btn
{
    position: relative;
    z-index: 1;
    margin-bottom:10px;
}