//单行溢出省略号
.box {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
//多行溢出省略号
.box {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;//几行后显示省略号
}