.rightDiv {
  background: #F6FBFF;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.talkBox {
  /*flex: 1;*/
  overflow-y: auto;
  scrollbar-width: none;
}
.talkBox::-webkit-scrollbar {
  width: 0;
}
/* ::-webkit-scrollbar-thumb {
  background-color: #d7d4d4;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 5px;
} */
.input {
  height: 100px;
  margin: 0 42px;
}
.action-btn {
  display: flex;
}
.yyBtn {
  width: 120px;
  height: 32px;
  line-height: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  cursor: pointer;
  font-size: 16px;
  color: #457AC6;
  text-align: center;
  margin-bottom: 10px;
  margin-right: 10px;
}
.cleanBtn {
  width: 120px;
  height: 32px;
  line-height: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  cursor: pointer;
  font-size: 16px;
  color: #457AC6;
  text-align: center;
  margin-bottom: 10px;
  display: none;
}
.rgkfBtn {
  width: 120px;
  height: 32px;
  line-height: 32px;
  background: #457AC6;
  border-radius: 16px;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  margin-left: 10px;
  display: none;
}
.input-main {
  height: 56px;
  background: #FFFFFF;
  border-radius: 32px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.yuyin {
  width: 36px;
  height: 36px;
  margin: 0 10px;
  cursor: pointer;
}
#inputText {
  flex: 1;
  margin-right: 10px;
  padding-top: 15px;
  border: none;
  resize: none;
  height: 50px !important;
  box-sizing: border-box;
}
.pullBtn {
  height: 100%;
  width: 88px;
  border-radius: 32px;
  background: #25C99D;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.user {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0;
}
.user img {
  width: 32px;
  height: 32px;
}
.userAnswer {
  background: #457AC6;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  padding: 13px 24px;
  margin-right: 10px;
  max-width: calc(100% - 133px);
  word-break: break-all;
}
.robotBox {
  display: flex;
  margin: 20px 0;
}
.robotBox .robotBox-img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.robotAnswer {
  width: 100%;
  margin-right: 42px;
}
.robotAnswer .robotTitle {
  font-size: 12px;
  color: #828485;
  margin-bottom: 10px;
}
.robotAnswer .robotCont {
  border-radius: 8px;
  overflow: hidden;
  line-height: 24px;
}
.robotAnswer .robotCont .mzsm {
  height: 40px;
  background: #E3F0FF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #202944;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
}
.robotAnswer .robotCont .mzsm p {
  margin-bottom: 0 !important;
}
.robotAnswer .robotCont .mzsm .masmIcon {
  color: #25C99D;
  cursor: pointer;
}
.robotAnswer .robotCont .mzsm .masmIcon img {
  width: 16px;
  height: 14px;
  margin-right: 5px;
}
.robotAnswer .robotCont .robotText {
  padding: 16px 20px;
  box-sizing: border-box;
  font-size: 16px;
  color: #202944;
  background: #fff;
  border-radius:0 0 8px 8px;
}
.triangle {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin: 0 5px;
  animation: slide 0.9s infinite linear;
  background: #000;
}
.triangle:nth-child(2) {
  animation-delay: 0.3s;
}

.triangle:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes slide {
  0% {
    opacity: 1;
    transform: rotate(90deg);
  }
  50% {
    opacity: 0.1;
    transform: rotate(90deg);
  }
  100% {
    opacity: 1;
    transform: rotate(90deg);
  }
}
.feedBox {
  display: flex;
  justify-content: flex-end;
  padding: 15px 0;
  align-items: center;
}
.feedBox span{
  font-size: 16px;
}
.feedBox img {
  width: auto;
  height: 18px;
  margin-left: 20px;
  cursor: pointer;
  margin-right: 0;
}
.feedBox .audioImg {
  width: auto;
  height: 16px;
}
.feedBox .playAudioImg {
  width: 16px;
  height: 16px;
}
.feedBox .cumline {
  width: 1px;
  height: 16px;
  background: #182A60;
  margin-left: 20px;
  opacity: 0.3;
}