﻿.mytext{
    border:0;padding:10px;padding-right:50px;background:whitesmoke;
}
.text{
    width:75%;display:flex;flex-direction:column;
}
.text > p:first-of-type{
    width:100%;margin-top:0;margin-bottom:auto;line-height: 13px;font-size: 12px;
}
.text > p:last-of-type{
    width:100%;text-align:right;color:silver;margin-bottom:-7px;margin-top:auto;
}
.text-l{
    float:left;padding-right:10px;
}        
.text-r{
    float:right;padding-left:10px;
}
.avatar{
    display:flex;
    justify-content:center;
    align-items:center;
    width:25%;
    float:left;
    padding-right:10px;
}
.macro{
    margin-top:5px;width:85%;border-radius:5px;padding:5px;display:flex;
}
.msj-rta{
    float:right;background:rgba(135, 135, 190, 0.8);
}
.msj{
    float:left;background:rgba(150, 150, 255, 0.8);
}
.frame{
    background:rgba(100, 100, 100, 0.1);
    height:80vh;
    overflow:hidden;
}
.frame > div:last-of-type{
    position:absolute;bottom:5px;width:100%;display:flex;
}
#chat-records {
    width:100%;
	height:100%;
    padding:18px;
    list-style-type: none;
    position:absolute;
    bottom:32px;
    display:flex;
    flex-direction: column;
}
.msj:before{
    width: 0;
    height: 0;
    content:"";
    top:-5px;
    left:-17px;
    position:relative;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent rgba(150, 150, 255, 0.8) transparent transparent;            
}
.msj-rta:after{
    width: 0;
    height: 0;
    content:"";
    top:-5px;
    left:17px;
    position:relative;
    border-style: solid;
    border-width: 15px 15px 0 0;
    border-color: rgba(135, 135, 190, 0.8) transparent transparent transparent;           
}      

.cut-text { 
    text-overflow: ellipsis;
    overflow: hidden; 
    width: 100%; 
    height: 100%; 
    white-space: nowrap;
  }