.content-style {
width: 100%;
height: 40px;
line-height: 20px;
position: relative;
/*多行文本省略*/
overflow: hidden;
text-overflow: ellipsis;
display: -moz-box;
-moz-line-clamp: 2 !important;
-moz-box-orient: vertical;
white-space: pre-wrap;
/*! autoprefixer: off */
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.content-style:after {
background: linear-gradient(to right, rgba(255, 255, 255, 0), #FFFFFF 25%) repeat scroll 0 0 rgba(0, 0, 0, 0);
bottom: 0;
content: "...";
padding: 0px 5px 1px 10px;
position: absolute;
right: 0;
}