body{
    background-color: #f7f7f7;
}



.newsList{
    margin:30px 0;
}

.newsList ul li {
    display: flex;
    align-items: center;
    margin:10px 0px;
    padding:10px;
    background-color: #fff;
    border-radius: 3px;
    transition: .3s ease-out; -webkit-transition: .3s ease-out; -moz-transition: .3s ease-out; -o-transition: .3s ease-out;
}
.newsList ul li .imgbox{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 112px;
    width:138px;
    flex-shrink: 0;
    margin-right: 15px;
    background-color: #eee;
    overflow: hidden;
}
.newsList ul li .imgbox img{
    display: block;
    width:100%;
}
.newsList ul li h3 a{
    font-weight: normal;
    height: 30px;
    line-height: 30px;
    font-size:16px;
    transition: .3s ease-out; -webkit-transition: .3s ease-out; -moz-transition: .3s ease-out; -o-transition: .3s ease-out;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.newsList ul li h3 a:hover{
    color:var(--theme_active);
}

.newsList ul li .info .description{
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    opacity: 0.7;
    margin-bottom: 5px;
}

.newsList ul li .info .time{
    opacity: 0.7;
}