section{
	background: #fff;
}
.info_list{
	padding: 15px 10px;
	display: flex;
	border-bottom: 1px solid #f2f2f2;
}
.info_list .right{
	display:inline-block;
	width: 120px;
	flex-shrink: 0;
	margin-left:10px;
}
.right img{
	width: 100%;
}
.info_list .left{
	display: inline-block;
	width:calc(100% - 140px);
	flex-direction: column;
	justify-content: space-between;
}
.left h4{
	font-weight: 500;
}
.left p{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #888888;
}
