diff --git a/src/pages/index/components/chat/ChatCardOther/index.vue b/src/pages/index/components/chat/ChatCardOther/index.vue
index 315d209..b0dfde1 100644
--- a/src/pages/index/components/chat/ChatCardOther/index.vue
+++ b/src/pages/index/components/chat/ChatCardOther/index.vue
@@ -1,6 +1,6 @@
-
- {{ text }}
+
+ {{ text }}
diff --git a/src/pages/index/components/chat/ChatCardOther/styles/index.scss b/src/pages/index/components/chat/ChatCardOther/styles/index.scss
index ff593d0..afc5cb8 100644
--- a/src/pages/index/components/chat/ChatCardOther/styles/index.scss
+++ b/src/pages/index/components/chat/ChatCardOther/styles/index.scss
@@ -1,14 +1,3 @@
.chat-other {
- width: 100%;
margin: 6px 0;
- display: flex;
- flex-direction: column;
- max-width: 100%; // ✅ 限制最大宽度
- overflow-x: hidden; // ✅ 防止横向撑开
- padding-left: 20px;
-
- text {
- font-size: $uni-font-size-base;
- color: $uni-text-color;
- }
}
diff --git a/src/pages/index/components/chat/ChatMoreTips/index.vue b/src/pages/index/components/chat/ChatMoreTips/index.vue
index 4b2c3ee..98c506b 100644
--- a/src/pages/index/components/chat/ChatMoreTips/index.vue
+++ b/src/pages/index/components/chat/ChatMoreTips/index.vue
@@ -1,6 +1,6 @@
-
+
-
+
-
- {{ item.topic }}
+
+
+ {{ item.topic }}
+
+
+ {{ item.userInputContent }}
+
diff --git a/src/pages/index/components/module/RecommendPostsList/styles/index.scss b/src/pages/index/components/module/RecommendPostsList/styles/index.scss
index 3f28785..bd6fe32 100644
--- a/src/pages/index/components/module/RecommendPostsList/styles/index.scss
+++ b/src/pages/index/components/module/RecommendPostsList/styles/index.scss
@@ -4,7 +4,6 @@
.card-item {
width: 128px;
- height: 164px;
}
.card-img {
diff --git a/src/static/scss/font-size.scss b/src/static/scss/font-size.scss
index f17411f..6ce6e3d 100644
--- a/src/static/scss/font-size.scss
+++ b/src/static/scss/font-size.scss
@@ -11,6 +11,10 @@
font-size: 10px;
}
+.font-size-11 {
+ font-size: 11px;
+}
+
.font-size-12 {
font-size: 12px;
}
diff --git a/src/static/scss/index.scss b/src/static/scss/index.scss
index 2bcb00d..38fea4d 100644
--- a/src/static/scss/index.scss
+++ b/src/static/scss/index.scss
@@ -14,8 +14,8 @@
@import "./rounded.scss";
@import "./ellipsis.scss";
@import "./position.scss";
-@import "./scroll.scss";
@import "./overflow.scss";
+@import "./scroll.scss";
@import "./width.scss";
@import "./z-index.scss";
@import "./white-space.scss";
diff --git a/src/static/scss/white-space.scss b/src/static/scss/white-space.scss
index 8817748..b2989ec 100644
--- a/src/static/scss/white-space.scss
+++ b/src/static/scss/white-space.scss
@@ -1,3 +1,3 @@
-.whitesspace-nowrap {
+.whitespace-nowrap {
white-space: nowrap;
}