From f06260cf78fd51f8e9b8f71d7247760a1d00d667 Mon Sep 17 00:00:00 2001 From: hubian <908234780@qq.com> Date: Sat, 25 Apr 2026 17:23:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A2=9E=E5=8A=A0=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E5=AE=BD=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 用户消息宽度从 75% 增加到 85% - AI 消息宽度调整为 80% - 减少消息行数,显示更紧凑 --- works/ai-chat-app/www/style.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/works/ai-chat-app/www/style.css b/works/ai-chat-app/www/style.css index d6148d3..46ae9bd 100644 --- a/works/ai-chat-app/www/style.css +++ b/works/ai-chat-app/www/style.css @@ -326,7 +326,16 @@ body { display: flex; flex-direction: column; gap: 8px; - max-width: 75%; +} + +/* 用户消息更宽 */ +.message.user .message-body { + max-width: 85%; +} + +/* AI 消息稍窄 */ +.message.assistant .message-body { + max-width: 80%; } .message.user .message-body {