28 lines
352 B
CSS
Raw Normal View History

/* 简单样式,仅用于展示 */
#chatContainer {
border: 1px solid #ccc;
padding: 10px;
height: 50px;
overflow-y: auto;
margin-bottom: 10px;
2025-03-31 22:34:17 +08:00
}
.message {
margin: 5px 0;
padding: 5px;
2025-03-31 22:34:17 +08:00
}
.user {
color: blue;
text-align: right;
2025-03-31 22:34:17 +08:00
}
.bot {
color: green;
text-align: left;
2025-03-31 22:34:17 +08:00
}
#userInput {
2025-04-01 22:47:57 +08:00
width: 93%;
2025-03-31 22:34:17 +08:00
}