28 lines
388 B
CSS
28 lines
388 B
CSS
/* 简单样式,仅用于展示 */
|
|
#chatContainer {
|
|
border: 1px solid #ccc;
|
|
padding: 10px;
|
|
height: 50px;
|
|
overflow-y: auto;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.message {
|
|
margin: 5px 0;
|
|
padding: 5px;
|
|
}
|
|
|
|
.user {
|
|
color: blue;
|
|
text-align: right;
|
|
}
|
|
|
|
.bot {
|
|
color: green;
|
|
text-align: left;
|
|
}
|
|
|
|
#userInput {
|
|
width: 800px; /* 你可以调整这个数值 */
|
|
}
|