*{padding: 0;margin: 0;}
li{
  display: block;
}
.main-container {
    width: 100%;
    padding-bottom: 1.6rem;
    position : absolute;
    width : 100%;
    height : 100%;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .chat-message-container{ 
    margin: 0 6%;
}
.chat-message{
  margin: 0.3rem 0;
}
.other{
  display: flex;
  /*flex-wrap: wrap;*/
  /*max-width: 90%;*/
}
.me {
  display: flex;
  justify-content: flex-end;
}
.avatar{
  width: 0.66rem;
  height: 0.66rem;
  margin-right: .08rem;
}
.user-avatar{
  width: 100%;
  display: block;
}
.msg-box{
  padding: 0.12rem 0.24rem;
  color: #333;
  background-color: f8f8f8;
  max-width: 4.2rem;
  font-size: 0.3rem;
  word-break: break-all;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;

}
.copy{
    width: 0.7rem;
    display: flex;  
    align-items: center;
    color: #7f7f7f;
    font-size: 0.2rem;
    border-radius:0.24rem;
    padding: 0.04rem 0.14rem;
    background: #f6f6f6;
    margin-left: 0.74rem;
    margin-top: 0.15rem;
}
.other .msg-box {
  color: #333;
  background-color: #f8f8f8;
  border-radius: 0 0.24rem 0.24rem 0.24rem;
}
.me .msg-box {
  color: #fff;
  background-color: #669def;
  border-radius: 0.24rem 0 0.24rem 0.24rem;

}

.send-box {
  flex-shrink: 0;
  width: 100%;
  background: #FFFFFF;
  position: fixed;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 100000;
  box-shadow: 0px -2rpx 12rpx 0px rgba(0, 0, 0, 0.03);
}

.send-form {
  background: #F6F6F6;
  border-radius: .45rem;
  position: relative;
  min-height: 0.80rem;
  margin: 0.20rem 0.32rem 0.60rem;
  display: flex;
  align-items: center;
}

.textareabox {
  min-height: 0.80rem;
  padding-left: 0.46rem;
  display: flex;
  align-items: center;
  flex: 1;
  max-height: 200px;
}
.send-form .input{
  width: 76%;
  border: none;
  background: #F6F6F6;
  outline: none;
  font-size: .32rem;
  max-height: 200px;
  overflow-y: auto;
}
.send-form textarea {
  width: 100%;
  font-size: 0.28rem;
  font-family: 'PingFang-Normal';
  color: #333333;
  word-break: break-all;
  line-height: 0.40rem;
  border: none;
  background: #F6F6F6;
  outline: none;
  min-height: 0.80rem;
}

.send-btn {
  width: 1.12rem;
  height: 0.68rem;
  background: linear-gradient(315deg, #72adf1 0%, #5090f4 100%);
  border-radius: .34rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0.06rem;
  right: 0.06rem;
}

.gray {
  color:#7f7f7f;
}

.send-btn img {
  width: 0.42rem;
  height: 0.42rem;
  display: block;
}
@keyframes blink-caret { 50% { background-color: transparent; } }
    span{
        animation:blink-caret 1s step-end infinite;
        width: 3px;
        height: 20px;
        background-color: #000;
        float: left;
        position: absolute;
        right: -10px;
    }

    .loader {
      width: .25rem;
      aspect-ratio: 1;
      margin-left: 5px;
      --_g: no-repeat radial-gradient(farthest-side,#000 94%,#0000);
      background:
        var(--_g) 0    0,
        var(--_g) 100% 0,
        var(--_g) 100% 100%,
        var(--_g) 0    100%;
      background-size: 40% 40%;
      animation: l38 .5s infinite; 
    }
    @keyframes l38 {
      100% {background-position: 100% 0,100% 100%,0 100%,0 0}
    }