@charset "UTF-8";/*!
 * LiteWebChat_Frame 2.2.1 (https://lab.morfans.cn/LiteWebChat_Frame)
 * MorFans Lab(c) 2017-2023
 * Licensed under LGPL
 */
.lite-chatbox {
    height: calc(100% - 80px) /* 从calc(100% - 131px)改为calc(100% - 80px) */
}

.lite-chatbox>div:last-child {
    margin-bottom: 20px
}

.lite-chatinput {
  width: 100%;
  height: 80px; /* 从131px改为80px，降低51px */
  position: relative;
  bottom: 0;
  background-color: #fff
}

[litewebchat-theme=dark] .lite-chatinput {
    background-color: #202223
}

.lite-chatinput img {
    max-width: 150px;
    max-height: 150px;
    -o-object-fit: contain;
    object-fit: contain
}

.lite-chatinput .boundary {
    cursor: s-resize;
    margin: 0 auto;
    border-width: 1px 0 0 0;
    border-color: rgba(0,0,0,.2);
    height: 1px;
    background: #fff
}

[litewebchat-theme=dark] .lite-chatinput .boundary {
    background: #202223
}

.lite-chatinput>.chatinput {
  position: relative;
  overflow-y: scroll;
  width: calc(100% - 1px);
  margin: auto;
  height: calc(100% - 30px); /* 从calc(100% - 75px)改为calc(100% - 30px) */
  border: none;
  outline: 0;
  resize: none;
  font-size: 18px;
  color: #373737;
  word-break: break-all;
  overflow-wrap: break-word;
  padding: 5px;
  outline: 0
}

[litewebchat-theme=dark] .lite-chatinput>.chatinput {
    color: #d4d4d4
}

.lite-chatinput .send {
    float: right;
    padding: 4px 20px 4px 20px;
    margin-right: 12px;
    margin-top: -2px;
    color: #fff;
    background: -o-linear-gradient(70deg,rgba(63,143,225,.8) 0,#44d7c9 100%);
    background: linear-gradient(20deg,rgba(63,143,225,.8) 0,#44d7c9 100%);
    -webkit-box-shadow: 5px 5px 15px 0 rgba(102,102,102,.1);
    box-shadow: 5px 5px 15px 0 rgba(102,102,102,.1);
    border: none;
    border-radius: 4px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

[litewebchat-theme=dark] .lite-chatinput .send {
    background: -o-linear-gradient(70deg,rgba(25,91,159,.8) 0,#219a92 100%);
    background: linear-gradient(20deg,rgba(25,91,159,.8) 0,#219a92 100%)
}

.lite-chatinput .send:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .7
}

.lite-chatinput .send:active {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    opacity: 1
}

.lite-chatinput .tool-button {
    padding: 0 3px 0 3px;
    background: 0 0;
    border: none;
    margin: 5px;
    margin-bottom: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.lite-chatinput .tool-button:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .7
}

.lite-chatinput .tool-button:active {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    opacity: 1
}

.lite-chatinput .tool-button path {
    fill: #8b8799
}

.lite-chatinput .tool-button svg {
    width: 18px
}

.lite-chatbox-tool {
    position: absolute;
    margin-left: 3px;
    z-index: 3
}

#toolMusk {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 2
}

.float-left {
    float: left
}

.float-right {
    float: right
}