$active-color: #eaebee; //超出n行... @mixin exceeding-line-overflow($num) { overflow : hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: $num; word-wrap: break-word; -webkit-word-break: break-word; word-break: break-word; } //超出... @mixin exceed-point($width) { max-width: $width; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }