/* pages/myComment/myComment.wxss */ .tab-item { flex: 1; font-size: 31rpx; font-weight: 500; display: flex; align-items: center; justify-content: center; line-height: 31rpx; letter-spacing: 3rpx; height: 55rpx; color: #c7c7c7; } .tab-item.active { color: #1b2b42; } .title-text { display: -webkit-box; -webkit-line-clamp: 1; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; word-break: break-all; /*强制英文单词自动换行*/ } .content-text { display: -webkit-box; -webkit-line-clamp: 5; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; word-break: break-all; /*强制英文单词自动换行*/ }