单行、多行 超过显示省略号


// 单行溢出隐藏       
.storeIntro{   width: 400rpx;   white
-space: nowrap;   overflow: hidden;   text-overflow: ellipsis; }
// 多行溢出隐藏     
.storeIntro {   width: 400rpx;
  -webkit-line-clamp: 2;   display: -webkit-box;   -webkit-box-orient: vertical;   overflow: hidden;   text-overflow: ellipsis; }