body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background-color: #f0f0f0;
}

.entire-container {
  background: white;
  max-width: 1000px;
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc; 
}

.logo {
  width: 60px;
  height: 60px;
  margin-top: 10px;
  margin-right: 10px;
}

.title {
  font-size: 32px;
  margin: 0;
}

.right-line{
    width: 0;
    height: 100%;
    border-right: 1px solid var(--el-border-color);
}

.content-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-left{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.box-card {
    margin-bottom: 10px;
}

.question-container {
  background: white;
  border-radius: 8px;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.chat-container {
  display: flex;
  padding: 10px;
  flex-direction: column;
}

.chat-box {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  .chat-container {
    height: auto;
  }
  .chat-box {
    padding: 10px;
  }
  .input-box {
    margin-bottom: 5px;
  }
}

.input-container {
  display: flex;
  align-items: center;
}

.input-box {
  flex: 1;
  margin-right: 10px;
}

.send-button {
  flex-shrink: 0;
}
