1. 单行文本超长显示
width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
  1. 多行文本超长显示
width: 200px;
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;