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 {