/* 聊天-侧边栏 */
.tio-wx-container{
    width:100%;
    height:calc(100vh - 70px);
    display: flex;
}
.tio-wx-leftbar{
    width:50px;
    background: #282c31;
    padding-top:20px;
    display: flex;
    flex-direction: column;
}
.leftbar-top{
    width:35px;
    height:35px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom:20px;
}
.leftbar-top>img{
    width:100%;
    height:100%;
    border-radius: 50%;
    cursor: pointer;
}
.curuser-status{
    position: absolute;
    width:10px;
    height:10px;
    border-radius: 100%;
    z-index: 2;
    right:-5px;
    top:-5px;
}
.wx-mine-status.online{
    background: #45c00c;
}
.wx-mine-status.offline{
    background: #ccc;
}
.leftbar-center{
    /*flex:1;*/
}
.iconsize{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: relative; 
    cursor: pointer;
}
.iconsize.with-tag{
    flex-direction: column;
    padding-left: 8px;
    padding-right: 8px;
}
.iconsize.with-tag p{
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 2px;
    text-align: center;
    position: relative;
    width: 100%;
    line-height: 16px;
}
.iconsize i{
    color: #9ea0a3;
    font-size: 25px;
}
.iconsize .on{
    color: #41b883;
}
.leftbar-news em,.collaspe-leftbar-center em{
    position: absolute;
    top:10px;
    right:6px;
}
.collaspe-leftbar-center em{
    top:14px;
    right:10px;
    height: 8px;
    border-radius: 4px;
    padding: 0;
}
.curuser-info{
    width: 300px;
    padding: 0 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 3px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .15);
    z-index: 3;
    position: absolute;
    top: 20px;
    left: 24px;
    display: none;
    animation: anim-fadeIn .5s;
}
.leftbar-btngroup .wx_badge,.collaspe-leftbar-center .wx_badge{
    display: none;
}
.leftbar-btngroup .wx_badge.with-tag{
    display: block;
}
@keyframes anim-fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
.info-border-bot{
    border-bottom:1px solid #f2f2f2;
    padding:15px 0;
}
.curuser-info-top{
    display: flex;
    align-items: center;
    line-height: 18px;
}
.curuser-info-detailed{
    flex:1;
}
.curuser-name{
    display:flex;
    align-items: center;
    line-height: 20px;
    cursor: pointer;
}
.curuser-name span{
    display: inline-block;
    max-width:130px;
}
.curuser-info-head{
    width:50px;
    height:50px;
}
.curuser-name b{
    color: blue;
}
.curuser-info-head img{
    width:100%;
    height:100%;
    border-radius: 50%;
}
.icon-male{
    color:#46b6ef;
    margin-left:10px;
}
.curuser-info-center span{
    color:#999;
    padding-left:16px;
}
.curuser-tel,.curuser-nick{
    color:#999;
    font-size:12px;
}
.curuser-info-bottom{
    padding: 22px 0;
    text-align: right;
}
.curuser-info-bottom i{
    color: #41b883;
    cursor: pointer;
    font-size: 24px;
    margin: 0px 2px;
}
.curuser-info-bottom .show-ban-time {
    color: red;
    font-size: 14px;
    /*float: left;*/
    line-height: 16px;
    cursor: pointer;
    margin-top: -16px;
    margin-bottom: 8px;
    display: block;
}
.wx-common-title{
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #e7e7e7;
    padding-left: 25px;
    font-size: 17px;
}
.leftbar-version {
    color: #9ea0a3;
    height: 30px;
    line-height: 30px;
    text-align: center;
}
@media  (max-width: 1000px) {
    .tio-wx-container {
        height: calc(100vh - 32px);
    }
}