
#chat-container {
    width: 600px;
    height: 650px;
    z-index: 9999;
}
#chat-container .chat-container-top {
    height: 50px;
    padding: 7px 20px;
    background: #019AAC;
    border-radius: 12px 12px 0px 0px;
}
#chat-container .chat-container-top img {
    width: 36px;
    height: 36px;
}
#chat-container .chat-container-top .close-chat {
    font-size: 30px;
    transform: rotate(45deg);
    cursor: pointer;
}

#chat-container .enter-msg {
    padding: 20px;
    background-color: #FCFCFC !important;
}

#chat-container .enter-msg .msg-ipt {
    width: 100%;
    height: 113px;
    line-height: 1.5;
    /* 恢复正常行高 */
    padding: 8px;
    /* 适当添加内边距 */

    /* background: #FFFFFF; */
    border-radius: 8px 8px 8px 8px;
    border: none;
    /* 移除默认边框 */
    outline: none;
    /* 移除聚焦时的默认轮廓 */
    border: 1px solid #D8D8D8;
    resize: none;
}

#message-container .left-msg {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 12px;
    background: #E3FCFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0px 16px 16px 16px;
}

#message-container .right-msg {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 12px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 16px 0px 16px 16px;
}

#message-container .left-msg .msg-info {
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 350;
    font-size: 14px;
    color: #3D3D3D;
    line-height: 22px;
}

#message-container {
    background-color: #FCFCFC;
}

input::placeholder,
textarea::placeholder {
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 350;
    font-size: 14px;
    color: #999999;
    line-height: 20px;
}

#chat-container .enter-msg {
    position: relative;
}
.left-icon>img {
    width: 30px;
    height: auto;
}

#chat-container .enter-msg .send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 34px;
    right: 30px;
    width: 76px;
    height: 32px;
    line-height: 32px;
    background: #5DC1CF;
    border-radius: 4px 4px 4px 4px;
    cursor: pointer;
}

#chat-container .enter-msg .send-btn .icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

#chat-container .enter-msg .send-btn .txt {

    font-family: Source Han Sans, Source Han Sans;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

#chat-container .enter-msg .send-btn .icon img {
    width: 100%;
    height: 100%;
}

 .open-chat-btn {
    position: fixed;
    right: 2%;
    bottom: 5%;
    width: 48px;
    height: 140px;
    padding: 10px;
    text-align: center;
    background: linear-gradient(180deg, #5DC1CF 0%, #0090AD 100%);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #FFFFFF;
    cursor: pointer;
     z-index: 9999;
}

.open-chat-btn .serve-image {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
}

 .open-chat-btn .text p {
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
}
