diff --git a/apps/kimi-web/src/components/ChatPane.vue b/apps/kimi-web/src/components/ChatPane.vue
index dfe675ad0..686376f03 100644
--- a/apps/kimi-web/src/components/ChatPane.vue
+++ b/apps/kimi-web/src/components/ChatPane.vue
@@ -253,12 +253,14 @@ function processSummary(turn: ChatTurn): string {
-
-
-
-
-
-
+
@@ -350,12 +352,14 @@ function processSummary(turn: ChatTurn): string {
-
-
-
-
-
-
+
@@ -557,7 +561,17 @@ function processSummary(turn: ChatTurn): string {
color: var(--muted);
}
.fold-body {
- margin-bottom: 8px;
+ max-height: 0;
+ overflow: hidden;
+ opacity: 0;
+ transition: max-height 0.28s ease, opacity 0.22s ease;
+}
+.fold-body.open {
+ max-height: 3000px;
+ opacity: 1;
+}
+.fold-inner {
+ padding-bottom: 8px;
}
.a-cpbtn {