body {
    font-family: Garamond;
    min-height:100%;margin:0;padding:0;position:relative;
}

/* 聊天框的整体样式 */
#chatbox {
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 10px;
    height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;
}

/* 用户输入的文本样式 */
.userText span {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 20px;
    max-width: 80%;
    margin-bottom: 5px;
    word-wrap: break-word;
}

/* 机器人回复的文本样式 */
.botText span {
    display: inline-block;
    background-color: #eeeeee;
    padding: 5px 10px;
    border-radius: 20px;
    max-width: 80%;
    margin-bottom: 5px;
    word-wrap: break-word;
}

/* 用户输入区域的样式 */
#userInput {
    display: flex;
    justify-content: space-between;
}

#textInput {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

#buttonInput {
    width: 18%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

#buttonInput:hover {
    background-color: #0056b3;
}