.zjtodo__chat .chat-editor {
  // position: absolute;
  // left: 0;
  // right: 0;
  // bottom: 0;
  // overflow: hidden;
  position: relative;
  height: $chat-editor-h;
  background: $theme-bg-gray;
  border-top: 1px solid #e3e3e3;
  // box-shadow: 0 0px 9px 0px #c4c4c4;
  box-sizing: border-box;
  user-select: none;

  &.disabled::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(244, 244, 245, 0.65);
  }

  .__tools {
    text-align: left;
    height: 40px;
    max-height: 40px;
    position: relative;
    overflow: hidden;

    .btn-icon {
      display: inline-block;
      height: 40px;
      padding: 8px 10px;
      box-sizing: border-box;

      &:first-child {
        padding-left: 20px;
      }

      .zj-iconfont {
        font-size: 25px;
        cursor: pointer;
      }
    }
  }

  .__input {
    .input-area {}

    .el-textarea__inner {
      background-color: $theme-bg-gray;
      background-image: none;
      border: none;
      border-radius: 0;
      padding: 5px 20px;
      height: calc(#{$chat-editor-h} - 90px);
      font-family: 'Microsoft YaHei';
    }
  }

  .__input .__send {
    height: 50px;
    line-height: 50px;
    padding-right: 20px;
    text-align: right;
    font-size: 12px;
    color: #999999;

    .el-button {
      padding: 9px 23px;
      font-size: 12px;
      border-radius: 2px;
      margin-left: 10px;
    }

    .remain-text {
      margin-left: 20px;
    }
  }

  .emoj-poppver {
    position: absolute;
    top: -230px;
    left: 10px;
    height: 200px;
    width: 70%;
    overflow: hidden scroll;
    background-color: #ffffff;
    padding: 10px 5px;
    border-radius: 5px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.16);
    animation: emjoSlideUp 0.2s ease-in;
    -webkit-animation: emjoSlideUp 0.2s ease-in;
    -moz-animation: emjoSlideUp 0.2s ease-in;

    .emoj-row {
      text-align: center;
      margin-bottom: 5px;

      .el-col {
        padding: 0 5px;
      }
    }

    .emoj-row .emoji-icon {
      font-size: 24px;
      box-sizing: border-box;
      overflow: hidden;
      min-height: 37px;
      border-radius: 4px;

      &:hover {
        font-size: 26px;
        transition: all 0.2s ease;
        background-color: #efefef;
        cursor: pointer;
      }
    }
  }
}

@keyframes emjoSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}