.chatList::-webkit-scrollbar {
    display: none; /* Chrome Safari */
}
.chatList{
    background: #fdfdfd;
    width: 100%;
    flex: 1;
    /*border-bottom: 1px  solid #666;*/
    overflow-y: auto;
    height: 360px;
}
.control{
    width: 92%;
    height: 100px;
    display: flex;
    margin-top: 10px;
    margin-left: 30px;
}
.control textarea {
    width: 430px;
    height: 90px;
    margin-top: 7px;
    margin-left: -4px;
    resize:none;
    border: 1px solid #EBEAF5;
    border-radius:10px;
}
.cancelBtn{
    width: 75px;
    height: 30px;
    background: #fdfdfd;
    border: 1px solid #00b074;
    border-radius: 10px;
    margin-right: 10px;
    cursor:pointer;
}
.sendBtn{
    width: 75px;
    height: 30px;
    background: #00b074;
    border-radius: 10px;
    cursor:pointer;
}
.message-right .msg-date {
    font-size: 12px;
    color: #797979;
    width: 113px;
    text-align: right;
}
.message-left .msg-date {
    font-size: 12px;
    color: #797979;
    width: 113px;
    text-align: left;
}
.msg-one {
    margin: 15px 20px;
    display: flex;
    align-items: flex-start;
}

.message {
    max-width: 50%;
    padding: 5px 10px;
    line-height: 25px;
    word-break: break-all;
    position: relative;
    color: black;
    margin: 0 12px 0 12px;
}

/*.message::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	width: 0;*/
/*	height: 0;*/
/*	border: 3px solid;*/
/*	top: 0;*/
/*}*/

.message-left .message {
    background-color: #f3f2f7;
    border-radius: 0 10px 4px 10px;
    margin-top: 15px;
    margin-left: -108px;
}

.messageBtnGroup {
    float: right;
    margin-right: 50px;
    margin-top: 10px;
}

.message-left .message::before {
    left: -6px;
    border-color: white white transparent transparent;
}

.message-right {
    flex-direction: row-reverse;
}

.message-right .message {
    background-color: #6ec8ef;
    border-radius: 10px 0 10px 4px;
    margin-top: 15px;
    margin-right: -113px;
    color: #FFF;
}

.message-right .message::before {
    right: -6px;
    border-color: #cfe7ff transparent transparent #cfe7ff;
}

#menuContent {
    min-height: 703px;
    padding: 0px 20px;
}

.layerOpen .layui-layer-content {
    background: #fdfdfd;
}