.news_home .item {
    max-width: calc(33% - 10px);
    margin-bottom: 15px;
    margin: 0px 12px;
    width: 33%;
}

@media (max-width: 991px) {
    .news_home .item {
        max-width: 100%;
        margin-bottom: 30px;
        width: 100%;
        margin: 0;
        margin-bottom: 30px;
    }
}

.news_home .item .item_header {
    display: block;
    width: 100%;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 991px) {
    .news_home .item .item_header {
        height: 50vw;
    }
}


.news_home .item .item_body {
    background-color: #eee;
    padding: 7px;
    display: block;
    float:left;
    width: 100%;
    height: auto;
}

.news_home .item .item_date {
    float: left;
    width: 70px;
    padding: 10px;
    background-color: white;
    margin-right: 15px;
    margin-left: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.news_home .item .item_date .d {
    font-size: 2em;
    border-bottom: 1px solid #f5f5f5;
    width: 100%;
    display: block;
    text-align: center;
    line-height: 49px;
}

.news_home .item .item_date .m {
    font-size: 0.8em;
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 6px;
}

.news_home .item .item_desc {
    float: left;
    width: calc(100% - 90px);
}

.news_home .item .item_desc h5 {
    font-size: 1.15rem;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_home .item .item_desc p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}