/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2018-8-24, 11:15:05
    Author     : huangjicai
*/
.chat-box{
    width: 963px;
    background-color: #ffffff;
    margin: 0 auto;
}
.chat-title h2{
    margin-top: 50px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-family: AdobeHeitiStd-Regular;
	font-size: 20px;
    font-weight:bold;
    color: #7c7777;
}
.chat-box hr{
    margin: 0;
    background-color: #aeaeae;
}
.chat-list{
    padding-bottom: 30px;
}
.chat-list li{
    float: left;
    margin-top: 24px;
    margin-left: 24px;
    width: 132px;
    height: 184px;
    border: solid 1px #f0f0f0;
    cursor: pointer;
}
.chat-list li:hover{
    background-color: #fff49b;
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
}
.chat-list img{
    margin-top: 24px;
    margin-left: 12px;
    width: 111px;
    height: 111px;
    border-radius: 20px;
}
.chat-list p{
    margin-top: 12px;
    width: 100%;
    text-align: center;
    font-family: AdobeHeitiStd-Regular;
	font-size: 18px;
    color: #737373;
}
.clearfix { zoom: 1;}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
    overflow: hidden;
}