* {
  margin: 0;
  padding: 0;
}

.IntelligentCustomerServiceBox {
  /* margin: auto; */
  height: 100vh;
  /* border-top: none;
  border-bottom: none;
  box-shadow: rgba(30, 30, 30, 0.16) 0px 4px 32px 0px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.IntelligentCustomerServiceBox .IntelligentCustomerServiceTopBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-shrink: 0;
}

.IntelligentCustomerServiceBox .IntelligentCustomerServiceTopBox .IntelligentCustomerServiceTopLeft {
  color: #999;
}

.IntelligentCustomerServiceBox .IntelligentCustomerServiceTopBox .IntelligentCustomerServiceTopRight {
  color: red;
}

.IntelligentCustomerServiceMainBox {
  flex: 6;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 12px;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  overflow: auto;
}

.IntelligentCustomerServiceMainBox .IntelligentCustomerServiceMainLineBox {
  margin: 10px 0;
}

.IntelligentCustomerServiceMainBox .IntelligentCustomerServiceTime {
  text-align: center;
  color: #000;
}

.IntelligentCustomerServiceMainBox .IntelligentCustomerServiceUser {
  text-align: right;
  width: fit-content;
  flex: 0 0 auto;
  background-color: rgb(214, 222, 255);
  border-radius: 8px 0px 8px 8px;
  padding: 10px 14px;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 22px;
  color: rgb(13, 26, 38);
  word-break: break-word;
  margin-left: auto;
}

.IntelligentCustomerServiceMainBox .IntelligentCustomerServiceRobot {
  display: flex;
}

.IntelligentCustomerServiceMainBox .IntelligentCustomerServiceRobot .IntelligentCustomerServiceMainLinePicBox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 10px;
  background-color: #000;
}

.IntelligentCustomerServiceMainBox .IntelligentCustomerServiceRobot .IntelligentCustomerServiceMainLineBottomBox .IntelligentCustomerServiceMainLineNameBox {
  color: #999;
  font-size: 12px;
}

.IntelligentCustomerServiceMainBox .IntelligentCustomerServiceRobot .IntelligentCustomerServiceMainLineBottomBox .IntelligentCustomerServiceMainLineMessageBox {
  margin-top: 10px;
  width: fit-content;
  flex: 0 0 auto;
  background-color: rgb(248, 249, 251);
  border-radius: 0px 8px 8px;
  padding: 10px 14px;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 22px;
  color: rgb(13, 26, 38);
  word-break: break-word;
}

.IntelligentCustomerServiceBox .IntelligentCustomerServiceInputBox {
  flex-shrink: 0;
  padding: 14px;
}

.IntelligentCustomerServiceBox .IntelligentCustomerServiceInputBox .IntelligentCustomerServiceTextarea {
  display: flex;
}

.IntelligentCustomerServiceBox .IntelligentCustomerServiceInputBox .IntelligentCustomerServiceTextarea textarea {
  flex: 1 1 auto;
  resize: none;
  color: rgb(61, 67, 92);
  font-size: 14px;
  line-height: 20px;
  background: transparent;
  outline: none;
  border: none;
  width: 100%;
  overflow: hidden;
}

.IntelligentCustomerServiceBox .IntelligentCustomerServiceInputBox .IntelligentCustomerServiceInputBottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.IntelligentCustomerServiceBox .IntelligentCustomerServiceInputBox .IntelligentCustomerServiceInputBottom .IntelligentCustomerServiceInputBottomText {
  color: rgba(0, 0, 0, 0.25);
  margin-right: 10px;
}

.IntelligentCustomerServiceBox .IntelligentCustomerServiceInputBox .IntelligentCustomerServiceInputBottom .IntelligentCustomerServiceInputBtn {
  background-color: rgb(47, 84, 235);
  border-color: rgb(47, 84, 235);
  color: #fff;
  padding: 4px;
  border-radius: 10px;
  cursor: pointer;
}