diff --git a/src/addon/aikefu/shop/view/kefu/conversation.html b/src/addon/aikefu/shop/view/kefu/conversation.html index 656767db2..7a4453a02 100644 --- a/src/addon/aikefu/shop/view/kefu/conversation.html +++ b/src/addon/aikefu/shop/view/kefu/conversation.html @@ -19,6 +19,50 @@ .status-inactive { color: #faad14; } + + /* 简单消息列表样式 */ + .simple-message-list { + max-height: 500px; + overflow-y: auto; + padding: 15px; + } + .message-item { + margin-bottom: 15px; + padding: 10px; + border-radius: 4px; + } + .message-item.user { + background-color: #e6f7ff; + border-left: 3px solid #1890ff; + } + .message-item.assistant { + background-color: #f6ffed; + border-left: 3px solid #52c41a; + } + .message-header { + display: flex; + justify-content: space-between; + margin-bottom: 5px; + font-size: 12px; + } + .message-role { + font-weight: bold; + color: #333; + } + .message-time { + color: #999; + } + .message-content { + font-size: 14px; + line-height: 1.4; + color: #666; + word-break: break-word; + } + .empty-message { + text-align: center; + color: #999; + padding: 30px; + }