2014-08-13 00:14:00 +08:00
|
|
|
|
#chat_frame {
|
2014-07-25 22:28:51 +08:00
|
|
|
|
position: fixed;
|
2014-08-14 21:33:47 +08:00
|
|
|
|
right: -370px;
|
2014-07-25 22:28:51 +08:00
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
width: 360px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-left: 1px solid #d67e29;
|
|
|
|
|
box-shadow: 0 0 5px rgba(214, 126, 41, 0.50);
|
|
|
|
|
box-sizing: border-box;
|
2014-08-13 00:14:00 +08:00
|
|
|
|
transition: all linear 0.3s;
|
2014-08-04 16:15:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-13 00:14:00 +08:00
|
|
|
|
#chat_frame.open {
|
|
|
|
|
right: 0;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2014-08-04 16:15:56 +08:00
|
|
|
|
|
|
|
|
|
#chat_float_tip {
|
|
|
|
|
display: none;
|
2014-07-25 22:28:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-13 00:14:00 +08:00
|
|
|
|
#chat_frame .chat-page {
|
|
|
|
|
position: absolute;
|
2014-08-30 01:32:27 +08:00
|
|
|
|
top: 67px;
|
2014-08-14 21:33:47 +08:00
|
|
|
|
left: 370px;
|
2014-08-13 00:14:00 +08:00
|
|
|
|
bottom: 10px;
|
|
|
|
|
width: 340px;
|
|
|
|
|
transition: all linear 0.2s;
|
|
|
|
|
}
|
2014-07-25 22:28:51 +08:00
|
|
|
|
|
2014-08-13 00:14:00 +08:00
|
|
|
|
#chat_frame .chat-page-current {
|
|
|
|
|
left: 10px;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: all linear 0.2s;
|
|
|
|
|
}
|
2014-07-25 22:28:51 +08:00
|
|
|
|
|
2014-08-13 00:14:00 +08:00
|
|
|
|
#chat_frame > header {
|
2014-08-30 01:32:27 +08:00
|
|
|
|
line-height: 44px;
|
2014-08-13 00:14:00 +08:00
|
|
|
|
font-size: 18px;
|
|
|
|
|
padding: 5px 10px 5px 10px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: linear-gradient(to bottom, #FF8005, #EF7108);
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
2014-07-25 22:28:51 +08:00
|
|
|
|
|
2014-08-13 00:14:00 +08:00
|
|
|
|
@media(max-width:1730px) {
|
|
|
|
|
.wrap.chat-on {
|
|
|
|
|
margin-right: 365px;
|
2014-09-10 21:49:46 +08:00
|
|
|
|
margin-left: 0;
|
2014-08-13 00:14:00 +08:00
|
|
|
|
}
|
|
|
|
|
}
|