.contain{
    width: 480px;
    height: 449px;
    /* border: 1px solid #7a7a7a; */
    position: relative;
}
.chattop{
    height: 449px;
    display: flex;
    flex-direction: column;
}
.top-box{
    height: 449px;
    display: flex;
    /* flex-wrap: wrap;
     */
     flex-direction: column;
    overflow: auto;
}
 
.chat-lst-1{
    max-width: 380px;
    display: flex;
    padding: 20px;
}
.chat-lst-1 img{
    width: 40px;
    border-radius: 50%;
}
.chat-content-1{
    max-width: 380px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    margin-left: 10px;
    padding: 10px;
    background-color: #fff;
    box-shadow:1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    border-radius:4px;
    word-break: break-word;

}
 
.chat-lst-2{
    min-width: 400px;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    margin-left: auto;
}
.chat-lst-2 img{
    width: 40px;
    border-radius: 50%;
}
.chat-content-2{
    max-width: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    padding: 10px 15px;
    background-color: #CBE3FB;
    box-shadow:1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    border-radius:4px;
    word-break: break-word;
}
.bottom{
    height: 30%;
    border-top: 1px solid #7a7a7a;
}
.input textarea{
    width: 99%;
    margin: auto;
    resize: none;
    border: 0;
}
.input textarea:focus{
    outline: none;
}
.send{
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.selectWra{
    display:flex;
    justify-content: space-between;
    padding-top:10px;
    /* border-top:1px solid #F4F4F4;  */
}
.selectItem{
    height: 38px;
    line-height: 38px;
    width: 100px;
    text-align: center;
    background: #CE021D;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
}

.selectItem{
    margin-right:8px;
}

::-webkit-scrollbar {
    display: none;
}

