From d6dcbb26b51d6708fa4109c1161bf0b8812bd669 Mon Sep 17 00:00:00 2001 From: dongqian <3475123872@qq.com> Date: Wed, 25 Jun 2025 10:36:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=83=85=E7=BB=AA=E5=A4=A7?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E7=9A=84=E6=B6=88=E6=81=AF=E5=AD=97=E4=BD=93?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=B8=8E=E5=A4=BA=E5=AE=9D=E5=A5=87=E5=85=B5?= =?UTF-8?q?=E7=BB=9F=E4=B8=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/AiEmotion.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/AiEmotion.vue b/src/views/AiEmotion.vue index 2a765c8..07ab5a0 100644 --- a/src/views/AiEmotion.vue +++ b/src/views/AiEmotion.vue @@ -1830,25 +1830,29 @@ defineExpose({ } .user-message { - background-color: #007bff; - color: #fff; + color: #6d22f8; + background: white; + font-weight: bold; padding: 10px 15px; border-radius: 15px; max-width: 60%; text-align: left; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); margin-left: auto; /* 将用户消息推到右边 */ + padding: 20px 20px; } .ai-message { background-color: #f1f1f1; color: #333; + font-weight: bold; padding: 10px 15px; border-radius: 15px; max-width: 60%; text-align: left; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); margin-right: auto; /* 将AI消息保持在左边 */ + padding: 20px 20px; } .input-container {