-
diff --git a/src/styles/common.scss b/src/styles/common.scss
index ff2ea2af..b717bad5 100644
--- a/src/styles/common.scss
+++ b/src/styles/common.scss
@@ -270,4 +270,18 @@
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
+}
+// 显示两行
+.multi-text {
+ max-width: 100%;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ display: -webkit-box;
+ line-clamp: 2;
+ -webkit-line-clamp: 2;
+ -webkit-box-orient: vertical;
+ min-height: 3.2rem;
+ line-height: 1.6rem;
+ font-size: 1.4rem;
+ white-space: initial;
}
\ No newline at end of file