#deepseek-chatbot-toggle {
position: fixed;
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
background-color: #007bff; color: white;
border-radius: 50%;
text-align: center;
line-height: 60px;
font-size: 30px;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
z-index: 9999;  } #deepseek-chatbot-container {
position: fixed;
bottom: 20px;
right: 20px;
width: 350px; height: 500px; background-color: #f8f9fa; border: 1px solid #ced4da; border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
display: flex;
flex-direction: column;
z-index: 9998;
font-family: 'Microsoft YaHei', sans-serif;
} #deepseek-chatbot-header {
background-color: #007bff; color: white;
padding: 10px 15px;
font-size: 1.1em;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
cursor: grab; } #deepseek-chatbot-minimize {
font-size: 1.5em;
cursor: pointer;
line-height: 1;
margin-left: auto; padding: 0 5px;
user-select: none; } #deepseek-chatbot-messages {
flex-grow: 1;
padding: 15px;
overflow-y: auto;
border-bottom: 1px solid #e9ecef;
background-color: white;
} #deepseek-chatbot-messages::-webkit-scrollbar {
width: 8px;
}
#deepseek-chatbot-messages::-webkit-scrollbar-thumb {
background-color: #adb5bd;
border-radius: 4px;
}
#deepseek-chatbot-messages::-webkit-scrollbar-track {
background-color: #f1f1f1;
} .message {
padding: 8px 12px;
margin-bottom: 10px;
border-radius: 15px;
max-width: 80%;
word-wrap: break-word; }
.message.user {
background-color: #e2e6ea; color: #343a40;
margin-left: auto; border-bottom-right-radius: 3px;
}
.message.bot {
background-color: #d1ecf1; color: #0c5460;
margin-right: auto; border-bottom-left-radius: 3px;
}
.message.bot.error {
background-color: #f8d7da; color: #721c24;
} #deepseek-chatbot-input {
display: flex;
padding: 10px 15px;
background-color: #f8f9fa;
border-top: 1px solid #e9ecef;
}
#deepseek-chatbot-textarea {
flex-grow: 1;
border: 1px solid #ced4da;
border-radius: 5px;
padding: 8px;
font-size: 0.95em;
resize: none; min-height: 40px; max-height: 120px; overflow-y: auto;
}
#deepseek-chatbot-send {
background-color: #28a745; color: white;
border: none;
border-radius: 5px;
padding: 8px 15px;
margin-left: 10px;
cursor: pointer;
font-size: 0.95em;
transition: background-color 0.2s;
}
#deepseek-chatbot-send:hover {
background-color: #218838;
}
#deepseek-chatbot-send:disabled {
background-color: #6c757d;
cursor: not-allowed;
}