#top{
    height: 72px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
#nav{
    -webkit-user-select:none;
    -moz-user-select:none;
    display: table;
    height: 100%;
    width: 100%;
}
#nav>div{
    display: table-cell;
    vertical-align: middle;
}
#nav>div:nth-child(1){
    width: 15%;
    padding-top: 0;
    height: 100%;
}
#nav>div:nth-child(1) a{
	  margin:2% 7%;
    display: block;
    height: 100%;  
    background: url(../img/logo.png)no-repeat center;
    background-size: 100%;
}
#nav>div:nth-child(3){
	position: absolute;
	top:18px;
	right:22px;
}
#nav>div:nth-child(4){
    min-width: 100px;
    width: 16%;
}
#nav>div:nth-child(5){
    width: 4.5%;
}
#nav>span{
    margin-right: 60px;
}
#nav span a{
    display: inline-block;
    padding: 8px 1.3%;
    color: rgba(220,245,255,0.65);
    font-size: 15px; 
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
}
#nav span a:after{
    content: '';
    height: 3px;
    position: absolute;
    bottom: 0;
    background: #FFBD4D;
    left: 15px;
    right: 15px;
    transition: all 0.3s;
    transform: translateY(3px);
    opacity: 0;
}
#nav span a:hover:after{
    transform: translateY(0);
    opacity: 1;
}
#nav span a.active, #nav span a:hover{
    color: #FFBD4D;
}
#search{
    display: inline-block;
    background: #fff;
    border-radius: 5px;
    height: 34px;
    width: 170px;
    border:1px solid #FF7100;
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
#search>span{
    width: 38px;
    height: 100%;
    background: #FF7100 url(../img/search.png)no-repeat center center;
    background-size: auto 70%;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}
#search input{
    height: 100%;
    width: 130px;
    box-sizing: border-box;
    outline: none;
    border:none;
    text-indent: 0.9em;
    font-family: inherit;
    background: transparent;
}
#pslist{
    box-shadow: rgb(136, 136, 136) 0px 2px 6px;
    z-index: 4;
    position: absolute;
    display: none;
    background: rgba(255, 255, 255, 0.901961);
    margin: 0px;
    font: 13px/30px \5FAE\8F6F\96C5\9ED1;
    list-style: none;
    padding: 5px 0;
    text-align: left;
    right: 0;
    width: 170px;
}
#pslist a {
    color: #0000ff;
    height: 100%;
    padding: 0 10px;
    display: block;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}
#pslist a:hover {
    background: #1369c0;
    color: #fff;
}
::-webkit-input-placeholder{
    color: #bbb;
}
#stwin{
    height: 36px;
    display: inline-block;
    width:80px;
    line-height: 36px;
    box-sizing: border-box;
    padding-left: 34px;
    color: #CF8724;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    position: relative;
}
#stwin:before{
    content: '';
    display: inline-block;
    height: 36px;
    width: 36px;
    background: url(../img/chat.png)no-repeat center left;
    background-size: 80% auto;
    position: absolute;
    left: 0;
    animation: shake 0.7s;
    animation-iteration-count: infinite;
    -webkit-animation: shake 0.7s;
    -webkit-animation-iteration-count: infinite;
}
@keyframes shake{
    0%{
        transform: translateY(-2px);
    }
    50%{
        transform: translateY(2px);
    }
    100%{
        transform: translateY(-2px);
    }
}
/*通讯*/
#mwin{
    position: fixed;
    background: #EDF3F9;
    box-shadow: 0 0 6px 1px rgba(0,0,0,0.3);
    border-radius: 3px;
    left:50%;
    top:50%;
    margin-top: -295px;
    margin-left:-350px;
    overflow: hidden;
    -webkit-user-select:none;
    -moz-user-select:none;
    z-index: 1000;
    display: none;
}
xmp{
    margin:0;
    font: inherit;
    white-space: normal;
}
#bar{
    height: 60px;
    border-bottom: 1px solid #dfdfdf;
    line-height: 57px;
    background: url(../img/cmd_1.png)no-repeat 12px center;
    background-size: 28px;
    padding: 0 0 0 48px;
    box-sizing: border-box;
    font-size: 16px;
    cursor: pointer;               
}
#clientloc{
    height: 20px;
    margin: 20px 70px 0 200px;
    display: inline-block;
    float: right;
    padding-left: 18px;
    line-height: 22px;
    font-size: 13px;
    letter-spacing: 0.8px;
    color: #999;
    background: url(../img/loc_r.png)no-repeat left center/auto 95%;
}
.chatbtn{
    float: right;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 20px;
    color: #bbb;
    text-align: center;               
}
.chatbtn:hover{
    background: #F67168;
    color: #fff;
}
#minw{
    font-size: 30px;
    line-height: 28px;
}
#content{
    height:630px;
}
#dialogue{
    width: 900px;
    height: 100%;
    display: inline-block;
}
#box{
    height: 445px;              
    overflow: auto;
    position: relative;
    width: 71.5%;
    vertical-align: top;
    display: inline-block;
}
#attcol{
    width: 28.5%;
    height: 480px; 
    border-left: 1px solid #ddd;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
}
#attcol>div{
    line-height: 35px;
    border-bottom: 1px solid #dedede;
    text-align: center;
    font-size: 14px;
    background: #eee;
    color: #333;  
}
#attcol>a{
    padding: 15.5px 10px;
    box-sizing: border-box;
    display: block;
}
#attcol>a:nth-child(even){
    background: rgb(196, 220, 251);
}
#attcol>a>i{
    display: inline-block;
    height: 56px;
    width: 56px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 1px solid #eee;
    background-color: #fff;
    vertical-align: middle;
}
#attcol>a>div{
    padding-left: 15px;
    display: inline-block;
    vertical-align: middle;
    max-width: 162px;
}
#attcol>a p{
    font-size: 13px;
    line-height: 22px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin: 0 0 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#attcol>a span{
    width: 80px;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    border-radius: 6px;
    background: #FF7100;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
#attcol>a span:hover{
    background: #F3A465;
}
#words{
    padding: 0 12px;
    box-sizing: border-box;
    width: 100%;
}
#quick{
    height: 35px;
    width: 71.5%;
    display: inline-block;
    border-top: 1px solid #dfdfdf;
    float: left;
    margin-top: -35px;
    background: #E8E7E7;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 20px;
    color: #777;
}
#quick>span{
    margin-right: 10px;
    vertical-align: middle;
}
#quick>a{
    display:inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    height:35px;
    width: 35px;
}
#quick>a:hover,#wuppic:hover{
    background: #ccc;
}
#quick>a>img{
    margin-top: 15%;
    width: 70%;
}
#wuppic>img{
    margin-top: 22%;
    width: 56%;
    opacity: 0.6;
}
#wuppic{
    float: right;
    margin-right: 0!important;
    text-align: center;
    height: 35px;
    line-height: 35px;
    width: 35px;
    cursor: pointer;
    position: relative;
}
#wuppic>.pop:before{
    content: '';
    width:0;
    height:0;
    display: inline-block;
    border-right:6px solid transparent;
    border-left:6px solid transparent;
    border-bottom:6px solid rgba(0,0,0,0.8);
    position: absolute;
    left: 50%;
    margin-left: -6px;
    top: -6px;
}
#wuppic>.pop{
    opacity: 0;
    height: 26px;
    width: 70px;
    line-height: 26px;
    color: #fff;
    background: rgba(0,0,0,0.8);
    position: absolute;
    left: 50%;
    margin-left: -35px;
    top: 25px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    font-size: 12px;
    border-radius: 4px;
}
#wuppic>.pop.active{
    opacity: 1;
    transform: translateY(12px);
    -webkit-transform: translateY(12px);
}
#wuppic>input{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 2;
}
#oper{
    border-top: 1px solid #dfdfdf;
    height: 150px;
}
#ipt{
    height: 110px;
    width: 100%;
    resize: none;
    padding: 7px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    border: none;
    background: transparent;
    font-family: inherit;
}
#send{
    display: inline-block;
    width: 70px;
    height: 30px;
    line-height: 30px;
    border-radius: 2px;
    font-size: 13px;
    color: #fff;
    background: #28A7F6;
    text-align: center;
    cursor: pointer;               
}
#send:hover{
    background: #67C5FF;
}
#tool{
    text-align: right;
    padding: 0 10px;
    position: relative;
}
.kf, .user{
    margin: 20px 0;
}
.kf>i{
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    background: #2FAAF7;
    margin-right: 20px;
    vertical-align: top;
    /*line-height: 52px;*/
    line-height: 50px;
}
.kf>i>img{
    width: 60%;
}
.kf>span{
    padding:12px;
    background: #E0E0E0;
    border-radius: 20px;
    position: relative;
    vertical-align: top;
    font-size: 14px;
    max-width: 300px;
    display: inline-block;
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.2);
}
.kf>span:before{
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #E0E0E0;
    border-left: 10px solid transparent;
    position: absolute;
    top:10px;
    left: -8px;
}
.user{
    text-align: right;
}
.user>i>img{
    width:40px;
    margin-left: 20px;
    vertical-align: top;
    border-radius: 50%;
}
.user>span{
    padding:12px;
    background: #009BDB;
    color: #fff;
    border-radius: 20px;
    position: relative;
    vertical-align: top;
    font-size: 14px;
    max-width: 300px;
    display: inline-block;
    word-break: break-all;
    text-align: left;
    box-shadow: 0px 1px 2px 1px rgba(1, 0, 68, 0.53);
}
.user>span>img{
    max-width: 100%;
    display: block;
}
.user>span:after{
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #009BDB;
    border-right: 10px solid transparent;
    position: absolute;
    top:10px;
    right: -8px;
}
.time{
    text-align: center;
    border-radius: 20px;
    font-size: 12px;
    margin: 20px 0;
    color: #999;
}
img.emoj{
    width: 75px;
}
#box::-webkit-scrollbar  
{  
    width: 10px;
} 
#ipt::-webkit-scrollbar  
{  
    background-color: transparent;
} 
::-webkit-scrollbar-track  
{   
    padding: 0 4px;
} 
#box::-webkit-scrollbar-thumb  
{  
    border-radius: 10px;   
    background-color: #dcdcdc;  
} 
#warn{
    position: absolute;
    background: url(../img/warn.png)no-repeat center center;
    background-size: 100% auto;
    top:-100px;
    right: 60px;
    height: 110px;
    color: red;
    width: 100px;
    line-height: 120px;
    font-size: 12px;
    text-align: center;
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transform-origin:70% 100%;
    -moz-transform-origin:70% 100%;
    transform-origin:70% 100%;
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.3s 0.2s;
    -moz-transition: opacity 0.2s, -moz-transform 0.3s 0.2s;
    transition: opacity 0.2s, transform 0.3s 0.2s;
}
#warn[active]{
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}