/*--最新消息--*/
.news{
    padding: 30px 0;
}
.news-box:after{
    display: table;
    content: '';
    clear: both;
}
.news-item{
    width: calc( 100%/2 - 30px );
    margin: 10px 15px;
    float: left;
}
.news-item-img{
    position: relative;
    overflow: hidden;
    height: 220px;
    width: 100%;
    /*border-radius: 5px;
    border: 1px solid rgba(134, 153, 97, 0.76);*/
}
.news-item-img h3{
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 25px;
    padding: 30px;
    margin: 0;
    transition: .7s;

}
.news-item-img img{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: 100% ;
}
.news-item-img:hover h3{
    right: 0;
}
.news-item-text h3{
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    color: rgba(134, 153, 97, 0.76);
    margin: 10px 5px;
    text-align: left;
    height: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}
.news-item-text a{
    text-decoration: none!important;
}
.news-item-text a:hover h3{
    color: rgba(134, 153, 97, 0.96);

}
@media (max-width: 991px) {

    .news-item-img{
        height: 170px;
    }

}
@media (max-width: 767px) {

    .news-item-img{
        height: 120px;
    }

}
@media (max-width: 520px) {
    .news{
        padding: 30px 0 0;
    }
    .news-item{
        width: calc( 100%);
        margin: 10px 0 ;
    }

}
/*--/最新消息--*/