#content_chat {
	padding: 0;
}
.chat-list, .chat-content {
    display: inline;
    zoom: 1;
    float: left;
}
.chat-list {
	width: 300px;
}
.chat-content {
	width: calc(100% - 301px);
}
.chat-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    border-bottom: 1px solid #e7e7eb;
}
.chat-item {
	width: 100%;
	text-align: center;
}
.chat-item a{
	font-size: 14px;
    display: block;
    padding: 10px 0;
    padding-top: 16px;
    color: #212121;
    text-decoration: none;
    
}

.chat-item.selected {
    background: rgba(67,205,128,.1);
    margin-bottom: -1px;
    border-bottom: 3px solid #43CD80;
}
.chat-item.selected  a{
	color: #43CD80;
}
.cha-list-warp {
    position: relative;
    padding: 1rem 0;
    border-right: 1px solid #e6ecf3;
}
.search-box {
    -webkit-border-radius: 3px 0 0 0;
    -moz-border-radius: 3px 0 0 0;
    border-radius: 3px 0 0 0;
    padding: 0 1rem .75rem 1rem;
}
.search-box .input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.search-box .form-control {
    display: block;
    width: 100%;
    height: 38px;
    padding: 6px;
    font-size: 16px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 2px 0 0 2px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.search-box .btn {
    display: inline-block;
    font-weight: 400;
    height: 38px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 0 2px 2px 0;
    border: 0;
    padding: 6px 16px;
    background-color: #44b549;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#43CD80), to(#44b549));
    background-image: -webkit-linear-gradient(right, #43CD80, #44b549);
    background-image: -moz-linear-gradient(right, #43CD80, #44b549);
    background-image: -ms-linear-gradient(right, #43CD80, #44b549);
    background-image: -o-linear-gradient(right, #43CD80, #44b549);
    background-image: linear-gradient(right, #43CD80, #44b549);
}
.search-box .input-group>.form-control {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.search-box .ico-search {
	display: inline-block;
	background: url("../images/sprite.png") no-repeat;
	width: 16px;
	height: 16px;
	margin: -3px 5px 0 0;
	vertical-align: middle;
	background-position: -162px -132px;
}

.users .person {
    position: relative;
    padding: 10px 1rem;
    cursor: pointer;
    /* background-color: #ffffff; */
    border-bottom: 1px solid #f0f4f8;
}
.users .person .user {
    display: inline-block;
    position: relative;
    margin-right: 10px;
    float: left;
    padding: 0;
}
.users .person .user img {
    width: 48px;
    height: 48px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.users .person .user .status {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
   /*  background: #e6ecf3; */
    position: absolute;
    top: 0;
    right: 0;
}
.users .person .user .status.online {
	background: red;/* #50b924 */
}

.users .person .user .status.offline {
	background: #c4d2e2;
}

.users .person .user .status.away {
	background: #ffda3e;
}

.users .person .user .status.busy {
	background: #ff0000;
}
.users .person p.name-time {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin: 4px 0;
}
.users .person p.name-time .time {
    font-weight: 400;
    font-size: 12px;
    color: #8796af;
}
.users .person p.name-time .status_block{
	font-weight: 400;
    font-size: 12px;
    color: #8796af;
    width: 100%;
    display: block;
}
.users .person:hover {
    background-color: #ffffff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e9eff5), to(#ffffff));
    background-image: -webkit-linear-gradient(right, #e9eff5, #ffffff);
    background-image: -moz-linear-gradient(right, #e9eff5, #ffffff);
    background-image: -ms-linear-gradient(right, #e9eff5, #ffffff);
    background-image: -o-linear-gradient(right, #e9eff5, #ffffff);
    background-image: linear-gradient(right, #e9eff5, #ffffff);
}
.users .person.active-user {
    background-color: #ffffff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f4f8), to(#ffffff));
    background-image: -webkit-linear-gradient(right, #f0f4f8, #ffffff);
    background-image: -moz-linear-gradient(right, #f0f4f8, #ffffff);
    background-image: -ms-linear-gradient(right, #f0f4f8, #ffffff);
    background-image: -o-linear-gradient(right, #f0f4f8, #ffffff);
    background-image: linear-gradient(right, #f0f4f8, #ffffff);
}

/*聊天对话*/
.chat-header {
    padding: 0 15px;
    min-height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #e7e7eb;
    -webkit-border-radius: 0 3px 0 0;
    -moz-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
}
.chat-conten-message {
    position: relative;
    padding: 15px;
    height: 445px;
}
.chat-box  li.chat-left, .chat-box li.chat-right {
    display: flex;
    flex: 1;
    flex-direction: row;
    margin-bottom: 40px;
}
.chat-box li.chat-right {
    justify-content: flex-end;
}
.chat-box  li .chat-avatar {
    margin-right: 20px;
}
.chat-box  li img {
    width: 48px;
    height: 48px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.chat-box li .chat-name {
    font-size: 12px;
    color: #999999;
    text-align: center;
}
.chat-box li .chat-text {
    padding: .4rem 1rem;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #ebf8ff;
    font-weight: 300;
    line-height: 150%;
    position: relative;
}
.chat-box li .chat-text:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 10px;
    left: -20px;
    border: 10px solid;
    border-color: transparent #ebf8ff transparent transparent;
}
.chat-box li.chat-right>.chat-text:before {
    right: -20px;
    border-color: transparent transparent transparent #fff3f3;
    left: inherit;
}
.chat-box li.chat-right>.chat-text {
    background-color: #fff3f3;
}
.chat-box li.chat-right>.chat-avatar {
    margin-left: 20px;
    margin-right: 0;
}
.chat-box li .chat-hour {
    padding: 0;
    margin-bottom: 10px;
    font-size: .75rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 15px;
}
.chat-box li.chat-right>.chat-hour {
    margin: 0 15px 0 0;
}

.chat-box span {
	width: 28px;
    height: 18px;
    margin: 0 5px;
    display: inline-block;
    background: url(../images/base_z413fd5.png) no-repeat;
}
.chat-box .ico-done {
    background-position: 0 -4996px;
}
.chat-box .ico-error {
    background-position: 0 -5218px;
}

.chat-message {
    padding: 0
}
.chat-message .form-control {
    color: #67757c;
    min-height: 38px;
    display: initial;
    width: calc(100%);
   /*  width: calc(100% - 108px); */
	padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 2px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border:0;
}
.chat-message button {
    float: right;
    border-radius: 10px;
	margin-bottom:15px;
	margin-right: 15px;
}
.chat-message .ico-file {
    width: 17px;
    height: 18px;
    display: inline-block;
    margin-top: -9px;
    background: url("../images/base_z413fd5.png") no-repeat;
    background-position: 0 -3610px;
}
.chat-message .icon-picture {
    width: 17px;
    height: 18px;
    display: inline-block;
    margin-top: -9px;
    background: url("../images/base_z413fd5.png") no-repeat;
    background-position: 0 -3630px;
}
.chat-message .ico-expression {
    width: 17px;
    height: 18px;
    display: inline-block;
    margin-top: -9px;
    background: url("../images/base_z413fd5.png") no-repeat;
    background-position: 0 -3649px;
}
.chat-lasttime {
	display: block;
	text-align: center;
	height: 30px;
	margin: 10px 0;
	position: relative;
}
.chat-lasttime:after {
	content: "";
	position: absolute;
	top: 40%;
	left: 68px;
	height: 1px;
	width: calc(100% - 136px);
	background: #E3DEDE;
}
.chat-lasttime .chat-lasttime-title {
	position: absolute;
    left: 0;
    right: 0;
    width: 115px;
    margin: 0 auto;
    background: #fff;
    color: #E3DEDE;
    z-index: 2;
}
/*正在发送*/
.box {
    display: inline-block;
    height: 10px;
    width: 60px;
    top: 13px;
    position: relative;
    transition: all .2s ease;
}
.loader10 {
    position: relative;
    width: 10px;
    height: 10px;
    top: 46%;
    left: 46%;
    border-radius: 12px;
    -webkit-animation: loader10m 1.5s ease-in-out infinite;
    animation: loader10m 1.5s ease-in-out infinite;
}
.loader10:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -15px;
    height: 10px;
    width: 10px;
    border-radius: 12px;
    -webkit-animation: loader10g 3s ease-in-out infinite;
    animation: loader10g 3s ease-in-out infinite;
}
.loader10:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 15px;
    height: 10px;
    width: 10px;
    border-radius: 10px;
    -webkit-animation: loader10d 1.5s ease-in-out infinite;
    animation: loader10d 1.5s ease-in-out infinite;
}
@-webkit-keyframes loader10g{
	0%{background-color: rgba(154, 183, 244, .2);}
	25%{background-color: rgba(154, 183, 244, 1);}
	50%{background-color: rgba(154, 183, 244, .2);}
	75%{background-color: rgba(154, 183, 244, .2);}
	100%{background-color: rgba(154, 183, 244, .2);}
}
@keyframes loader10g{
	0%{background-color: rgba(154, 183, 244, .2);}
	25%{background-color: rgba(154, 183, 244, 1);}
	50%{background-color: rgba(154, 183, 244, .2);}
	75%{background-color: rgba(154, 183, 244, .2);}
	100%{background-color: rgba(154, 183, 244, .2);}
}

@-webkit-keyframes loader10m{
	0%{background-color: rgba(154, 183, 244, .2);}
	25%{background-color: rgba(154, 183, 244, .2);}
	50%{background-color: rgba(154, 183, 244, 1);}
	75%{background-color: rgba(154, 183, 244, .2);}
	100%{background-color: rgba(154, 183, 244, .2);}
}
@keyframes loader10m{
	0%{background-color: rgba(154, 183, 244, .2);}
	25%{background-color: rgba(154, 183, 244, .2);}
	50%{background-color: rgba(154, 183, 244, 1);}
	75%{background-color: rgba(154, 183, 244, .2);}
	100%{background-color: rgba(154, 183, 244, .2);}
}

@-webkit-keyframes loader10d{
	0%{background-color: rgba(154, 183, 244, .2);}
	25%{background-color: rgba(154, 183, 244, .2);}
	50%{background-color: rgba(154, 183, 244, .2);}
	75%{background-color: rgba(154, 183, 244, 1);}
	100%{background-color: rgba(154, 183, 244, .2);}
}
@keyframes loader10d{
	0%{background-color: rgba(154, 183, 244, .2);}
	25%{background-color: rgba(154, 183, 244, .2);}
	50%{background-color: rgba(154, 183, 244, .2);}
	75%{background-color: rgba(154, 183, 244, 1);}
	100%{background-color: rgba(154, 183, 244, .2);}
}