

/*电脑适配*/
@media screen and (min-width: 800px){
    .chatMainBoxDiv {
        padding: 10px;
    }
}


/*手机适配*/
@media screen and (max-width: 800px){
    .chatMainBoxDiv {
        padding: 5px;
    }
}



.mainBox{
    border: 1px solid #cccccc;
}
#mainBox div{
    font-size: 15px;
}
.chatTitleBoxDiv{
    /*height: 35px;*/
    background: #444444;
}

.chatTitleDiv, .chatTitleDiv div, .chatTitleDiv span{
    color: #ffffff;
}


.chatTitleDiv{
    height: 100%;
    margin: auto;
    line-height: 35px;
    text-align: center;
}

.closeSpan{
    float: right;
    right: 0;
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
}
.closeSpan:hover{
    color: #ffff00;
    background: #555;
}

.refreshSpan a{
    float: left;
    padding: 0 5px;
    cursor: pointer;
    color: #ffffff;
}

.msgBoxDiv{
    padding: 8px;
    background: #c4e6ff;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 1px 1px 1px #a0a0a0;
    max-width: 80%;
}
.chatMainBoxDiv{
    height: 400px;
    overflow-y: auto;
}
.rightChatBoxDiv{
    text-align: right;
}

.rightChatBoxDiv, .leftChatBoxDiv{
    margin-top: 15px;
}

.nameSpan, .timeSpan{
    color: #777777;
}

.textarea{
    width: 100%;
    height: 100px;
    border-radius: 5px;
    padding: 5px;
    font-size: 16px;
    background-color: #ffffff;
    overflow-y: auto;
}

.inputChatBoxDiv, .textareaBottomBoxDiv{
    background-color: #444444;
}

.sendA{
    background: #57a3f3;
    padding: 7px 30px;
}


.textareaBottomBoxDiv a{
    color: #ffffff;
    cursor: pointer;
}

.textareaBottomBoxDiv{
    text-align: right;
    padding: 0 5px;
    line-height: 32px;
    margin-top: 10px;
}

a img{
    vertical-align: middle;
}

.selectImageA{
    margin-right: 15px;
}

.textareaBoxDiv{
    padding: 5px;
}

.emjoy-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    height: 300px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    border: 1px solid #ccc;
    padding: 5px;
    text-align: left;
    overflow-y: scroll;
}

.emjoy-wrap ul li {
    display: inline-block;
    list-style: none;
    margin: 3px;
    cursor: pointer;
}

.emjoy-wrap ul{
    padding-left: 10px;
}

.imojBoxDiv{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
}

.emojDiv, .uploadImgDiv{
    padding-bottom: 0px;
}

.emojDiv img, .uploadImgDiv img{
    max-width: 100%;
    max-height: 250px;
}

#chatTitleSpan{
    font-size: 15px;
}

#chatMainBoxFaterDiv{
    overflow: hidden;
    padding: 2px 0px;
}

.msgBoxDiv pre{
    white-space: pre-wrap;
}

.chatTipsDiv{
    text-align: left;
    padding-left: 5px;
    background: #c4e6ff;
}
#mainBox #chatTipsDiv{
    font-size: 13px;
}