/*客服聊天框样式*/
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 13px Helvetica, Arial; }
.form{width: 100%;height: 50px;display: flex;}
.form input{width: 80%;padding: 0px 10px 0 10px;}
.form button{width: 20%;}
#messages { list-style-type: none; margin: 0; padding: 0; overflow: scroll;width: 100%;height: 100%;display:flex;flex-direction: column;}
::-webkit-scrollbar {
  width: 14px;
  height:0px;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent;
}
::-webkit-scrollbar-track {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2) inset;
}
::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
#sendMsg{background-color: #eee;text-align: end;padding: 10px 20px;width: fit-content;
  margin: 10px;
  border-radius: 15px;}
#reciveMsg{padding: 10px 20px;background-color: rgb(247, 222, 204);
  width: fit-content;
  float: right;
  border-radius: 15px;
  margin: 10px;align-self: flex-end;}
.chatK{width: 500px;height: 500px;border: 1px solid black;position: relative;}
.kefuName{margin: 10px 0 10px 10px;color: chocolate;}
.showkefu{
  width: 70px;
  height:70px;
  background-color: #FD6C01;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom:95px;
  right:50px;
color: #fff;
}.showkefu:hover{cursor: pointer;}
#dialog{
  position: fixed;
  z-index: 1000;
  right:0;
  top: 15%;
  background-color: beige;
  overflow: visible;
}