.ChatBox_box {
    position: fixed;
    height: 0px;
    bottom: 0px;
}
.ChatBox {
    position: absolute;
    bottom: 0px;
    border: 1px solid #b6b6b6;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: hidden;
    width: 300px;
    height: 350px;
    background: #fff;
    box-shadow: 1px 1px 5px;
    margin-right: 10px;
}
.ChatBox_header {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #fff;
    background: #08c;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ChatBox_grimage {
    display: flex;
    border-radius: 100%;
    overflow: hidden;
    margin: 5px;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}
.ChatBox_grimage_img {
    width: auto;
    height: 100%;
}
.ChatBox_title {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    width: calc(100% - 30px - 30px);
    align-items: center;
    display: flex;
}
.ChatBox_setting_btn {
    width: 30px;
    height: 30px;
}
.ChatBox_setting_btn:after {
    font-family: "LineAwesome";
    content: "\f19a";
    font-size: 20px;
}
.ChatBox_close_btn {
    width: 30px;
    height: 30px;
}
.ChatBox_close_btn:after {
    font-family: "LineAwesome", "Line Awesome Brands";
    content: "\f191";
    font-size: 20px;
}
.ChatBox_content {
    width: 100%;
    height: 100%;
    overflow: auto;
}
.ChatBox_sendbox {
    width: 100%;
}
.ChatBox_sendtext {
    width: 100%;
}
.ChatBox_emoj {
    width: 30px;
    height: 30px;
}
.ChatBox_emoj:after {
    font-family: "LineAwesome";
    content: "\f305";
    font-size: 20px;
    position: absolute;
    right: 50px;
    bottom: 10px;
}
.ChatBox_sendBtn {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.ChatBox_sendBtn:after {
    font-family: "LineAwesome";
    content: "\f2a8";
    font-size: 20px;
}
.ChatBox_content_box {
    height: 100%;
}
.ChatBoxDisplay {
    width: 100%;
    height: calc(100% - 40px);
}
.ChatBox_sendtext {
    width: 100%;
    height: 100%;
    outline: none;
    padding: 10px;
    border-top: 1px solid #b6b6b6;
}
.ChatBox_sendtext:empty:after {
    content: "...";
}
.ChatBoxCommnet {
    display: flex;
}
.ChatBoxCommnet .cmtIcon {
    display: flex;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 5px;
    justify-content: flex-start;
    align-items: center;
    width: 30px;
    height: 30px;
}
.ChatBoxCommnet .cmtIcon img {
    width: auto;
    height: 100%;
}
.ChatBoxCommnet .cmtContent {
    width: 100%;
    justify-content: flex-start;
    border: 1px solid #b6b6b6;
    background: #08c;
    color: #fff;
    border-radius: 6px;
}
