.chat {
  display: none;
  width: 100%;
  height: calc(100% - 57px);
  align-items: flex-start;
  justify-content: center;
  background: transparent;
  position: fixed;
  top: 57px;
  font-family: Arial,Microsoft YaHei;
}
.chat .card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  border: 1px solid #f4f5ed;
  border-radius: 10px;
  background-color: #ecf0f4;
}
.chat .card .chat-list {
  width: 160px;
  overflow-y: auto;
}
.chat .card .chat-list .chat-top {
  display: flex;
  align-items: center;
  margin: 10px 0;
  margin-left: 10px;
}
.chat .card .chat-list .chat-top.active {
  background-color: #ffffff;
  border-radius: 10px;
}
.chat .card .chat-list .chat-top .list {
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  border-radius: 5px;
  padding-left: 10px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}
.chat .card .chat-list .chat-top .list .span {
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background-color: red;
  position: absolute;
  right: -15px;
  top: 10px;
}
.chat .card .chat-center {
  width: 650px;
  height: 500px;
  position: relative;
  border: 1px solid #f4f5ed;
  border-radius: 10px;
  background-color: #fff;
}
.chat .card .chat-center .title-wrapper {
  display: flex;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  align-items: center;
  height: 50px;
  justify-content: space-between;
}
.chat .card .chat-center .title-wrapper .close {
  cursor: pointer;
  margin-right: 15px;
}
.chat .card .chat-center .title-wrapper .title {
  margin-left: 30px;
  width: 56px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.chat .card .chat-center .chat-content {
  width: 100%;
  height: calc(100% - 90px - 100px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 5px 10px;
  background-color: #fff;
}
.chat .card .chat-center .chat-content .cont {
  width: 100%;
}
.chat .card .chat-center .chat-content .cont .user {
  font-size: 12px;
}
.chat .card .chat-center .chat-content .cont .msg {
  width: fit-content;
  height: auto;
  padding: 8px;
  font-weight: 500;
  word-break: break-all;
  max-width: 80%;
}
.chat .card .chat-center .chat-content .cont .left {
  display: flex;
  text-align: left;
  margin: 10px 0;
}
.chat .card .chat-center .chat-content .cont .left .msg {
  display: flex;
  align-items: center;
  margin-left: 10px;
  background: #F2F5F7;
  border-radius: 5px;
}
.chat .card .chat-center .chat-content .cont .right {
  display: flex;
  text-align: right;
  margin: 10px;
}
.chat .card .chat-center .chat-content .cont .right .msg {
  display: flex;
  align-items: center;
  margin-right: 10px;
  background-color: #87c9f0;
  border-radius: 5px;
  padding: 8px;
  text-align: left;
  margin-left: auto;
  max-width: 80%;
}
.chat .card .chat-center .chat-content::-webkit-scrollbar {
  width: 3px;
}
.chat .card .chat-center .chat-content::-webkit-scrollbar-track {
  background: rgba(0, 94, 255, 0.08);
  border-radius: 1px;
}
.chat .card .chat-center .chat-content::-webkit-scrollbar-thumb {
  background: rgba(42, 78, 100, 0.3);
  border-radius: 10px;
}
.chat .card .chat-center .chat-tools {
  width: 100%;
  display: flex;
}
.chat .card .chat-center .chat-tools .tool {
  position: relative;
  margin: 5px;
}
.chat .card .chat-center .chat-tools .tool .bq-list {
  position: absolute;
  bottom: 30px;
  width: 453px;
  border-radius: 5px;
  border: 1px solid #eaeaea;
  background-color: #ffffff;
}
.chat .card .chat-center .chat-tools .tool .bq-list img {
  margin: 3px;
  width: 24px;
  height: auto;
}
.chat .card .chat-center .chat-tools .tool img {
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.chat .card .chat-center .chat-input {
  height: 100px;
  background-color: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  position: relative;
}
.chat .card .chat-center .chat-input .button {
  cursor: pointer;
  width: 64px;
  height: 30px;
  background: #326AF0;
  border-radius: 4px;
  position: absolute;
  bottom: 30%;
  right: 2%;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*# sourceMappingURL=chat.css.map */