.talkDialog {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.talkDialog .button {
  text-align: right;
}
.talkDialog .talkIcon {
  width: 69px;
  height: 69px;
  line-height: 59px;
  text-align: center;
  font-size: 60px;
  color: #fff;
  background-color: #772410;
  border-radius: 19px;
  overflow: hidden;
  float: right;
}
.talkDialog .talkIcon img {
  width: 100%;
  height: 100%;
}
.talkDialog .chatBox {
  width: 496px;
  margin-bottom: 10px;
  border-radius: 26px;
  overflow: hidden;
  background-color: #f4f3f3;
}
.talkDialog .chatBox .chatHeader {
  position: relative;
  height: 90px;
  line-height: 90px;
  background-color: #2c2c2c;
  color: #fff;
  display: flex;
}
.talkDialog .chatBox .chatHeader .head {
  width: 48px;
  height: 48px;
  margin: 23px 31px;
}
.talkDialog .chatBox .chatHeader .name {
  font-size: 25px;
}
.talkDialog .chatBox .chatHeader .close {
  position: absolute;
  width: 20.64px;
  height: 20.64px;
  line-height: 20.64px;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}
.talkDialog .chatBox .chatHeader .close img {
  width: 20.64px;
  height: 20.64px;
  overflow: hidden;
}
.talkDialog .chatBox .chatContent {
  width: 100%;
  background-color: #fff;
}
.talkDialog .chatBox .chatContent .board {
  height: 40vh;
  max-height: 60vh;
  background-color: #f3f3f3;
  overflow-x: hidden;
  overflow-y: none;
  font-family: ".PINGFANG";
  padding: 10px 0;
}
.talkDialog .chatBox .chatContent .board::-webkit-scrollbar {
  background: transparent;
  width: 5px;
}
.talkDialog .chatBox .chatContent .board::-webkit-scrollbar-thumb {
  background-color: #a1a1a1;
  border-radius: 5px;
}
.talkDialog .chatBox .chatContent .board .userMod {
  display: flex;
  padding: 10px 30px;
}
.talkDialog .chatBox .chatContent .board .userMod img {
  width: 48px;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 500%;
  overflow: hidden;
  background-color: #fff;
  margin: 2px;
}
.talkDialog .chatBox .chatContent .board .userMod .msgBox {
  width: calc(100% - 40px);
}
.talkDialog .chatBox .chatContent .board .userMod .msgBox .name {
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  color: #999;
  margin-left: 20px;
}
.talkDialog .chatBox .chatContent .board .userMod .msgBox .msg {
  position: relative;
  display: inline-block;
  max-width: 80%;
  min-height: 54px;
  padding: 14px 19px;
  line-height: 26px;
  background-color: #fff;
  border-radius: 16px;
  margin-left: 16px;
  font-size: 20px;
  word-wrap: break-word;
  color: #2b2b2b;
}
.talkDialog .chatBox .chatContent .board .userMod .msgBox .msg .triangle {
  position: absolute;
  top: 4px;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #fff transparent transparent;
}
.talkDialog .chatBox .chatContent .board .custMod {
  display: flex;
  justify-content: flex-end;
  padding: 10px 30px;
}
.talkDialog .chatBox .chatContent .board .custMod img {
  width: 48px;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 500%;
  overflow: hidden;
  background-color: #fff;
  margin: 2px;
}
.talkDialog .chatBox .chatContent .board .custMod .msg {
  position: relative;
  max-width: 80%;
  min-height: 54px;
  padding: 14px 19px;
  line-height: 26px;
  background-color: #2c2c2c;
  color: #fff;
  border-radius: 16px;
  margin-right: 16px;
  font-size: 20px;
  word-wrap: break-word;
}
.talkDialog .chatBox .chatContent .board .msgMod {
  width: 100%;
  color: #333;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  margin: 10px auto;
}
.talkDialog .chatBox .chatContent .board .msgMod .msg {
  display: inline-block;
  background-color: #ddd;
  border-radius: 5px;
  padding: 3px 20px;
}
.talkDialog .chatBox .chatInput {
  position: relative;
  width: 100%;
  height: 163px;
  border-top: 1px solid #cacaca;
  background-color: #f4f3f3;
}
.talkDialog .chatBox .chatInput .el-textarea__inner {
  width: 382px;
  height: 107px !important;
  border: 1px solid #8f8f8f;
  border-radius: 16px;
  margin: 28px 0 28px 30px;
  font-size: 20px;
  font-family: "PINGFANG";
}
.talkDialog .chatBox .chatInput .send {
  position: absolute;
  top: 34px;
  right: 18px;
}
.talkDialog .chatBox .chatInput .send img {
  width: 50px;
  height: 50px;
}
.talkDialog .chatBox .chatInput .el-button {
  padding: 0 20px;
  float: right;
}
.talkDialog .chatBox .chatInput .el-button {
  border: none;
}