/*!
 * LiteWebChat_Frame v2.1.0
 * MorFans Lab(c) 2017
 *
 * BY:SuperPaxxs & Haswikr
 * https://lab.morfans.cn
 *
 * Released under the LGPL License
 */
/* 主 */
 .lite-chatbox{
  font-family: Helvetica, "PingFang SC", "Microsoft YaHei", sans-serif;
  padding: 0px;
  font-size:18px;
  width: 100%;
  position:relative;
  overflow-y: auto;
  overflow-x: hidden;
}
/* 聊天区域 */
.lite-chatbox .cmsg{
  position: relative; 
  margin: 4px 7px;
  min-height: 50px;
  border: 0;
}
.lite-chatbox .cright{
  text-align: right;
  margin-left: 64px;
}
.lite-chatbox .cleft{
  text-align: left;
  margin-right: 64px;
}
/* 聊天组件：全局*/    
/* 头像 */
.lite-chatbox img.headIcon{
  width: 90px;
  height: 90px;
  top: 9px;
  position: absolute;
  border: 1px solid #c5d4c4;
}
/* 昵称 */
.lite-chatbox .name{
  color: #8b8b8b;
  font-size: 12px;
  display: block;
  line-height: 18px;
}
.lite-chatbox .name .htitle{
  display: inline-block;
  padding: 0 3px 0 3px;
  background-color: #cccccc;
  color: #ffffff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin-right: 4px;
  font-size: 11px;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  max-width: 50px;
}
/* 消息内容 */
.lite-chatbox .content{
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
  position: relative;
  display: inline-block;
  font-size: 15px;
  padding: 10px 15px;
  line-height: 20px;
  left: 20px;
  /* -moz-border-radius: 6px; 
  -webkit-border-radius: 6px; 
  border-radius: 6px; */
  /*空白消息*/
  min-width: 9px; 
  min-height: 18px;
}
/*消息内容图片处理*/
.lite-chatbox .content img{
  height: auto;
}
/*消息内容超链接处理*/
.lite-chatbox .content a{
  color: #0072C1;
  margin: 0 5px;
  cursor: hand;
}
/*聊天提示条*/
.lite-chatbox .tips{
  margin: 12px;
  text-align: center;
  font-size: 12px;
}
/*聊天提示条文本*/
.lite-chatbox .tips span{
  display: inline-block;
  padding: 4px;
  background-color: #cccccc;
  color: #ffffff;
  -moz-border-radius: 6px; 
  -webkit-border-radius: 6px; 
  border-radius: 6px;
}
/* 聊天组件：微调 */
/* 圆头像 */
.lite-chatbox img.radius{
  -moz-border-radius: 100%; 
  -webkit-border-radius: 100%; 
  border-radius: 100%;
}
/* 左右头像 */
.lite-chatbox .cright img.headIcon{
  right: 0;
}
.lite-chatbox .cleft img.headIcon{
  left: 0;
}
/* 左右昵称 */
.lite-chatbox .cright .name{
  margin: 0 128px 2px 0;
}
.lite-chatbox .cleft .name{
  margin: 0 0 2px 128px;
}
/* 左右聊天气泡 */
.lite-chatbox .cright .content{
  margin: 0 160px 0 0;
  -webkit-border-radius: 20px 0 20px 20px;
  border-radius: 20px 0 20px 20px;
  color: white;
  /* border: 1px solid #78cdf8; */
  background: -webkit-linear-gradient(70deg, #3FD1E1 0%, #44D7CD 100%);
  background: linear-gradient(20deg, #3f8fe1cc 0%, #44d7c9 100%);
  -webkit-box-shadow: 5px 5px 15px 0 rgba(102,102,102,0.15);
  box-shadow: 5px 5px 15px 0 rgba(102,102,102,0.15);
}
.lite-chatbox .cleft .content{
  margin: 0 0 0 88px;
  -webkit-border-radius: 0 20px 20px 20px;
  border-radius: 0 20px 20px 20px;
  color: #666;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
  -webkit-box-shadow: 5px 5px 15px 0 rgba(102,102,102,0.1);
  box-shadow: 5px 5px 15px 0 rgba(102,102,102,0.1);
}
.lite-chatbox .cright .content:after{
  right: -12px;
  top: 8px;
}
.lite-chatbox .cleft .content:after{
  left: -12px;
  top: 8px;
}
/* 聊天提示条附加样式 */
.lite-chatbox .tips .tips-primary{
  background-color: #3986c8;
}
.lite-chatbox .tips .tips-success{
  background-color: #49b649;
}
.lite-chatbox .tips .tips-info{
  background-color: #5bb6d1;
}
.lite-chatbox .tips .tips-warning{
  background-color: #eea948;
}
.lite-chatbox .tips .tips-danger{
  background-color: #e24d48;
}
.lite-chatbox .name .admin{
  background-color: #72D6A0;
}
.lite-chatbox .name .owner{
  background-color: #F2BF25;
}


