html,body {
	height: 100%;
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,button,input
	{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 12px;
	vertical-align: baseline;
	font-family: Microsoft YaHei;
}

/*滚动条整体部分，其中的属性有width,height,background,border等（就和一个块级元素一样）（位置1）*/
::-moz-scrollbar {
	width: 4px;
}

/*滚动条整体部分，其中的属性有width,height,background,border等（就和一个块级元素一样）（位置1）*/
::-webkit-scrollbar {
	width: 4px;
}

/*滚动条两端的按钮，可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果（位置2）*/
::-webkit-scrollbar-button {
	display: none;
}

/*外层轨道，可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果（位置3）*/
::-webkit-scrollbar-track {
	display: none;
}

/*内层轨道，滚动条中间部分（位置4）*/
::-webkit-scrollbar-track-piece {
	background: #c2c2c2;
	border-radius: 4px;
}

/*滚动条里面可以拖动的那部分（位置5）*/
::-webkit-scrollbar-thumb {
	background-color: #665db9;
	border-radius: 4px;
}

/*边角（位置6）*/
::-webkit-scrollbar-corner {
	display: none;
}

/*定义右下角拖动块的样式（位置7）*/
::-webkit-scrollbar-resizer {
	display: none;
}

dl,ul,ol,menu,li {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	background-color: #495A6D;
	text-align: center;
	overflow: hidden;
}

body,table,td,div,p {
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
}

a {
	color: #0085F6 !important;
	cursor: pointer;
	text-decoration: none;
}

a:hover {
	color: #f60;
}

.cur {
	cursor: pointer;
}

div {
	text-align: left
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* Mozilla Firefox 4 to 18 */
:-moz-placeholder {
	color: #a3a3a3;
}

::-moz-placeholder {
	color: #a3a3a3;
}

input:-ms-input-placeholder,textarea:-ms-input-placeholder {
	color: #a3a3a3;
}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
	color: #a3a3a3;
}

.wrapper {
	margin: 0 auto;
	width: 73.2%;
	height: 90%;
	position: absolute;
	top: 5%;
	left: 50%;
	margin-left: -36.6%;
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 11px 6px 24px rgba(0, 0, 0, .41);
	min-width: 1000px;
}

.header {
	height: 50px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	box-shadow: 0px 4px 4px 0px rgb(92, 93, 138, .4);
}

.nav-right {
	width: 220px;
	float: right;
	height: 100%;
}

.logo {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 5px center;
	background-size: 180px 40px;
}

.top-btn {
	float: right;
	display: block;
	background-repeat: no-repeat;
	background-position: left center;
	text-decoration: none;
	margin-top: 15px;
	margin-right: 30px;
}

.top-btn:hover {
	text-decoration: none;
}

.top-btn-close {
	background-image: url(../image/top_btn_close.png);
	width: 16px;
	height: 16px;
	margin-top: 18px;
}

.top-btn-min {
	background-image: url(../image/top_btn_min.png);
	background-size: 25px 22px;
	width: 25px;
	height: 22px;
}

.top-btn-max {
	background-image: url(../image/top_btn_max.png);
	background-size: 25px 22px;
	width: 25px;
	height: 22px;
}

.column {
	height: 100%;
}

.question-height {
	/* 252 = .images 的 height 155 + .question-head 的height 30  + #serviceTimePrompt 的height 30  + .header border-top-right-radius 8 
	即 155 + 30 + 30 +8 */
	height: calc(100% -           225px) !important;
}

#question {
	float: right;
	width: 264px;
	height: 100%;
	background: #FFF;
	border-left: 1px solid #d8d8d8;
	border-bottom-right-radius: 8px;
}

.question-close #question {
	display: none;
}

#main,.main {
	display: none;
	margin-right: 265px;
	position: relative;
	left: 0;
	top: 0;
}

.question-close #main {
	margin-right: 0px;
}

#buttons {
	position: absolute;
	height: 45px;
	left: 0;
	bottom: 0;
	width: 100%;
}

#inputBox {
	position: absolute;
	left: 0;
	bottom: 45px;
	width: 100%;
	height: 85px;
	background: #FFF;
	overflow: hidden;
}

#toolbar {
	position: absolute;
	left: 0;
	bottom: 131px;
	width: 100%;
	height: 34px;
}

#messages {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background: #FFF;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-face-color: #CCC;
	scrollbar-shadow-color: #EEE;
	scrollbar-highlight-color: #EEE;
	scrollbar-3dlight-color: #EEE;
	scrollbar-darkshadow-color: #EEE;
	scrollbar-track-color: #EEE;
	scrollbar-arrow-color: #999;
	border-bottom: 1px solid #d8d8d8;
}

#inputBox textarea {
	width: calc(100% -           40px);
	height: 75px;
	padding: 5px 20px;
	overflow-y: auto;
	border: 0px;
}

#inputBox textarea:focus {
	outline: none;
}

.toolbar_btn {
	display: none;
}

.tb-btn {
	display: block;
	height: 100%;
	background-position: center;
	width: 100%;
	float: left;
	background-repeat: no-repeat;
	text-decoration: none;
}

.tb-btn:hover {
	text-decoration: none;
}

.tb-btn span {
	display: block;
	margin-top: 28px;
	text-align: center;
	font-size: 11px;
	color: #999
}

.tb-send-file {
	background-image: url(../image/tb_send_file.png);
}

.tb-font {
	background-image: url(../image/tb_font.png);
}

.tb-opinion {
	background-image: url(../image/pp.png);
}

.tb-video {
	background-image: url(../image/video.png);
}

.tb-remote {
	background-image: url(../image/remote.png);
}

#toolbar div {
	width: 38px;
	height: 100%;
	margin-left: 10px;
	float: left;
}

#toolbar div span {
	font-size: 28px;
	line-height: 34px;
	text-align: right;
	color: rgb(125, 125, 125);
}

.btn-chat {
	float: right;
	margin-left: 10px;
	background-repeat: no-repeat;
	text-decoration: none;
	display: block;
	width: 88px;
	height: 34px;
	cursor: pointer;
}

.shortCut {
	padding-top: 8px;
	position: absolute;
	display: none;
	right: 20px;
	bottom: 39px;
	width: 113px;
	height: 80px;
	z-index: 99999;
	background: url(../image/enter_bg1.png) no-repeat;
}

.shortCut div {
	width: 104px;
	height: 32px;
	line-height: 32px;
	margin-left: 4px;
	padding-left: 10px;
	font-size: 12px;
	cursor: pointer;
}

.shortCut div.selected {
	background: url(../image/enter_bg2.png) no-repeat;
}

.btn-chat:hover {
	text-decoration: none;
}

.btn-chat-send {
	line-height: 35px;
	color: #fff;
	margin-right: 20px;
	border-radius: 4px;
}

.btn-rebot-send {
	background-image: url(../image/chat_btn_close.png );
	font-size: 14px;
	font-weight: 400;
	line-height: 35px;
	text-align: center;
	color: #444444;
}

.btn-chat-send .send {
	height: 100%;
	width: 55px;
	float: left;
	text-align: center;
	font-size: 14px;
}

.btn-chat-send .send-line {
	position: absolute;
	right: 44px;
	bottom: 19px;
	height: 16px;
	margin-right: 10px;
	border-right: 1px solid #fff;
}

.btn-chat-send .sendType {
	height: 100%;
	width: 33px;
	font-size: 18px;
	text-align: center;
	line-height: 35px;
}

.btn-chat-close {
	background-image: url("../image/chat_btn_close.png");
	font-size: 14px;
	font-weight: 400;
	line-height: 35px;
	text-align: center;
	color: #444444;
}

.question-head {
	width: 235px;
	height: 30px;
	line-height: 30px;
	margin-left: 20px;
	font-size: 16px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #fff;
}

.question-head-icon {
	margin-left: 10px;
	margin-right: 8px;
}

.question-list {
	height: calc(100% - 40px);
	overflow-y: scroll;
}

.question-list ul {
	padding: 0px;
	margin-left: 15px;
	margin-right: 15px;
}

.question-list ul li {
	line-height: 20px;
	text-align: left;
	border-bottom: 1px solid #EEE;
	list-style: none;
	padding: 10px 0px;
}

.question-list .question {
	cursor: pointer;
	padding-left: 5px;
}

.question-list .answer {
	font-size: 12px;
	display: none;
	padding: 0px;
	margin-top: 15px;
}

.chat-msg {
	float: left;
	clear: both;
	font-size: 15px;
	margin: 10px 30px 0;
	position: relative;
	left: 0;
	top: 0;
	text-align: left;
	line-height: 20px;
}

.chat-msg-1 {
	float: right;
}

.msg-body {
	margin: 0 15px;
	border: 1px solid rgb(255, 200, 190);
	padding: 20px;
	background: rgb(255, 239, 236);
}

.msg-arrow,.msg-lt,.msg-rt,.msg-lb,.msg-rb {
	position: absolute;
	z-index: 100;;
	background-repeat: no-repeat;
	background-color: #FFF;
	line-height: 8px;
}

.msg-arrow {
	left: 6px;
	top: 0;
	width: 16px;
	height: 22px;
	background-image: url(../image/msg_arrow_0.png);
	line-height: 22px;
}

.msg-rt {
	right: 15px;
	top: 0;
	width: 8px;
	height: 8px;
	background-image: url(../image/msg_rt_0.png);
	font-size: 1px;
}

.msg-lb {
	left: 15px;
	bottom: 0;
	width: 8px;
	height: 8px;
	background-image: url(../image/msg_lb_0.png);
	font-size: 1px;
}

.msg-rb {
	right: 15px;
	bottom: 0;
	width: 8px;
	height: 8px;
	background-image: url(../image/msg_rb_0.png);
	font-size: 1px;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
}

.clearfix {
	*zoom: 1;
}

.answer {
	padding: 4px 20px;
}

.answer .img {
	float: right;
	width: 38px;
	height: 38px;
}

.answer .img img {
	width: 38px;
	height: 38px;
	border: 0px;
}

.answerRight {
	padding-top: 0px;
	padding-bottom: 0px;
	float: right;
}

.answerText {
	max-width: 600px;
	float: right;
	border: 1px solid #DADADA;
	margin-right: 15px;
	line-height: 25px;
	background-color: #F4F4F4;
	padding: 5px 16px;
	border-radius: 5px;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	position: relative;
}

.answerRight .arrow {
	position: absolute;
	width: 0px;
	height: 0px;
	color: rgb(221, 221, 221);
	border-width: 5px 5px 5px 8px;
	border-style: solid;
	border-color: transparent transparent transparent currentcolor;
	left: 100%;
	top: 12px;
	margin-bottom: 5px;
}

.answerRight p {
	line-height: 25px;
	font-size: 12px;
	color: #454545;
	word-wrap: break-word;
	word-break: break-all;
}

.ask {
	padding: 10px 20px 30px 20px;
}

.ask .img {
	float: left;
	/*background:url(../image/w_kf_tx.png) no-repeat;*/
	width: 38px;
	height: 38px;
}

.ask .img img {
	width: 38px;
	height: 38px;
	border: 0px;
	border: 2px solid white;
	border-radius: 50%;
	box-sizing: border-box;
}

.ask .ct {
	float: left;
	margin-left: 25px;
}

.ask .ct .name {
	line-height: 20px;
	height: 20px;
	font-size: 12px;
	padding-left: 5px;
	color: #8B8B8B;
}

.askText {
	max-width: 600px;
	line-height: 25px;
	border: 1px solid #C4EAF1;
	background-color: #EAFCFF;
	padding: 5px 16px;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	position: relative;
}

.askRight {
	padding-top: 0px;
	padding-bottom: 0px;
	line-height: 25px;
	font-size: 12px;
	color: #454545;
	word-wrap: break-word;
	word-break: break-all;
}

.answer .answerText i,.ask .askText i {
	position: absolute;
}

.ask .askText .tl {
	width: 16px;
	height: 22px;
	top: -1px;
	left: -10px;
	background: url(../image/dh_qp_bg.png) no-repeat;
}

.ask .askText .tr {
	width: 8px;
	height: 8px;
	top: -1px;
	right: -1px;
	background: url(../image/dh_qp_bg_rj1.png) no-repeat;
}

.ask .askText .bl {
	width: 16px;
	height: 8px;
	bottom: -1px;
	left: -9px;
	background: url(../image/dh_qp_bg_lj.png) no-repeat;
	_display: none;
}

.ask .askText .br {
	width: 8px;
	height: 8px;
	bottom: -1px;
	right: -1px;
	background: url(../image/dh_qp_bg_rj2.png) no-repeat;
	_display: none;
}

.answer  .answerText .tl {
	width: 16px;
	height: 22px;
	top: -1px;
	left: -1px;
	background: url(../image/dh_qp_bg1_lj1.png) no-repeat;
}

.answer  .answerText .tr {
	width: 16px;
	height: 22px;
	top: -1px;
	right: -10px;
	background: url(../image/dh_qp_bg1.png) no-repeat;
}

.answer  .answerText .bl {
	width: 16px;
	height: 8px;
	bottom: -1px;
	left: -1px;
	background: url(../image/dh_qp_bg1_lj2.png) no-repeat;
	_display: none;
}

.answer  .answerText .br {
	width: 8px;
	height: 8px;
	bottom: -1px;
	right: -1px;
	background: url(../image/dh_qp_bg1_rj.png) no-repeat;
	_display: none;
}

.fontLayout,.faceLayout,.fileLayout {
	position: absolute;
	display: none;
	bottom: 166px;
	left: 0px;
	width: 100%;
	overflow: hidden;
	z-index: 999;
	background-color: #FBFBFB;
	border-top: 1px solid #c2c2c2;
}

.fontLayout {
	height: 40px;
	padding-top: 3px;
	font-size: 12px;
}

.fontLayout .sel {
	float: left;
	margin-left: 5px;
	padding-left: 10px;
	width: 80px;
	height: 32px;
	line-height: 32px;
	border: 1px solid #c2c2c2;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: #ffffff;
}

.fontLayout .font {
	width: 140px;
}

.fontLayout .fontSize {
	width: 80px;
}

.fontList,.fontSizeList {
	position: absolute;
	border: 1px solid #c2c2c2;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: #ffffff;
	bottom: 208px;
	z-index: 9999;
	overflow-y: auto;
	overflow-x: hidden;
	display: none;
	font-size: 12px;
}

.fontList div,.fontSizeList div {
	height: 25px;
	line-height: 25px;
	text-align: center;
}

.fontList div.selected,.fontSizeList div.selected {
	background-color: #DCFAFF;
}

.fontList {
	left: 10px;
	height: 160px;
	width: 140px;
}

.fontSizeList {
	height: 160px;
	left: 160px;
	width: 80px;
}

.faceLayout {
	height: 70px;
	padding-top: 5px;
}

.faceLayout .border {
	float: left;
	width: 35px;
	height: 35px;
	border: 0px;
}

.faceLayout .img {
	width: 25px;
	height: 25px;
	background-position-x: left;
	cursor: pointer;
}

.fileLayout {
	height: 45px;
	line-height: 45px;
}

.fileLayout .file-box {
	float: left;
	position: relative;
	padding-left: 5px;
	height: 100%;
	_height: 30px;
	_margin-top: 7px;
}

.fileLayout .file-box .txt {
	height: 25px;
	border: 1px solid #cdcdcd;
	width: 400px;
	line-height: 23px;
}

.fileLayout .file-box .btn {
	background-color: #FFF;
	border: 1px solid #CDCDCD;
	height: 27px;
	width: 70px;
}

.fileLayout .file-box .file {
	position: absolute;
	top: 7px;
	left: 0px;
	_left: 5px;
	height: 28px;
	filter: alpha(opacity :           0);
	opacity: 0;
	width: 480px;
}

.fileLayout .sendFileBtn {
	background: rgba(0, 0, 0, 0) url("../image/cc_upload_btn.png") no-repeat scroll 0 0;
	color: #7a7a7a;
	cursor: pointer;
	float: right;
	font-size: 14px;
	font-weight: 600;
	height: 32px;
	line-height: 32px;
	margin-right: 5px;
	margin-top: 6px;
	padding-left: 20px;
	text-align: center;
	width: 112px;
}

.mask {
	display: none;
	position: absolute;
	z-index: 10000;
	top: 0px;
	left: 0px;
	width: 9999px;
	height: 9999px;
	background-color: rgb(0, 0, 0);
	filter: alpha(opacity =           30);
	opacity: 0.3;
}

.opinionLayout {
	position: absolute;
	display: none;
	height: 40px;
	z-index: 99999;
	width: 400px;
	background-color: #FBFBFB;
	text-align: left;
}

.opinionLayout .head {
	height: 50px;
	line-height: 50px;
	background-color: #F3F3F3;
	position: relative;
}

.opinionLayout .head .title {
	margin-left: 15px;
	padding-left: 35px;
	font-weight: bold;
	background: url(../image/pj_icon1_tt.png) no-repeat left center;
}

.opinionLayout .head .close {
	position: absolute;
	top: 5px;
	right: 20px;
	height: 40px;
	width: 20px;
	cursor: pointer;
	background: url(../image/pj_kk_close.png) no-repeat left center;
}

.opinionLayout .context .level,.opinionLayout .context .desp {
	margin-left: 10px;
	margin-right: 10px;
}

.opinionLayout .context,.opinionLayout .button {
	background-color: #ffffff;
}

.opinionLayout .context .level {
	height: 60px;
	line-height: 60px;
	border-bottom: 1px solid #E2E2E2;
}

.opinionLayout .level .start {
	padding-left: 2px;
	float: left;
	width: 30px;
	height: 60px;
	cursor: pointer;
	background: url(../image/pj_hui_xx.png) no-repeat center center;
}

.opinionLayout .level div.selected {
	background: url(../image/pj_hs_xx.png) no-repeat center center;
}

.opinionLayout .level .text {
	float: right;
	font-size: 14px;
}

.opinionLayout .desp .text {
	margin-top: 5px;
	margin-left: 3px;
	height: 30px;
	line-height: 30px;
	padding-left: 30px;
	background: url(../image/pj_icon2_tt.png) no-repeat left center;
}

.opinionLayout .desp textarea {
	width: 380px;
	height: 100px;
}

.opinionLayout .button {
	width: 100%;
	height: 70px;
}

.opinionLayout .button div {
	padding-top: 10px;
	height: 46px;
	width: 114px;
	float: right;
	margin-right: 10px;
	margin-top: 8px;
	cursor: pointer;
	border-radius: 5px;
}

.opinionLayout .button .commit {
	font-size: 16px;
	font-weight: 500;
	line-height: 35px;
	text-align: center;
	color: #fff;
}

.rebotAnswer {
	line-height: 25px;
}

.leaveMsgContext,.leaveMsgSuccess {
	background-color: #ffffff;
	text-align: left;
	border-bottom-left-radius: 8px;
	overflow-x: hidden;
	overflow-y: auto;
}

.leaveMsgSuccess .msg {
	position: relative;
	top: 50%;
	text-align: center;
	font-size: 25px;
}

.leaveMsgContext .form-label {
	display: inline-block;
	zoom: 1;
	*display: inline;
	width: 50px;
	padding: 0 10px;
	height: 32px;
	line-height: 32px;
	text-align: right;
	vertical-align: middle;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.leaveMsgContext .title {
	border-bottom: 1px solid #E7E7E7;
	width: 100%;
}

.leaveMsgContext .title div {
	padding-left: 40px;
	margin-left: 20px;
	background: url(../image/ly_fk_ly_icon.png) no-repeat left center;
	height: 45px;
	line-height: 45px;
	font-size: 16px;
}

.leaveMsgContext .form-item {
	margin-top: 20px;
}

.leaveMsgContext .form-item .head {
	clear: left;
	width: 120px;
	padding-right: 10px;
	font-size: 14px;
	text-align: right;
}

.leaveMsgContext .form-item .form-item-required {
	color: #ff0042;
	display: inline-block;
	width: 20px;
	text-align: center;
	vertical-align: middle;
}

.leaveMsgContext .form-item .form_tip {
	background: url(../image/leaveMsg_error.png) no-repeat;
	padding: 0 0 0 24px;
	color: #ff5b5b;
	vertical-align: middle;
	font-size: 14px;
	line-height: 18px;
	height: 18px;
}

.leaveMsgContext .form-item input[type="text"],select {
	width: 400px;
	height: 40px;
	border: 1px #aaa solid;
	border-radius: 4px;
	text-align: left;
	padding: 0 8px;
}

.leaveMsgContext .form-item textarea {
	width: 418px;
	height: 90px;
	line-height: 20px;
	overflow-y: auto;
	padding: 7px 8px;
	border: 1px solid #c1c1c1;
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: height .3s ease-in-out;
	transition: height .3s ease-in-out;
}

.leaveMsgContext .buttons {
	margin-top: 40px;
}

.leaveMsgContext .buttons .commit {
	clear: left;
	width: 88px;
	height: 34px;
	background: url(../image/chat_btn_close.png) no-repeat;
	float: left;
	margin-left: 76px;
	font-family: helvetica, elvetica, elvetica;
	font-size: 14px;
	font-weight: 400;
	line-height: 35px;
	text-align: center;
	color: #444444;
}

.leaveMsgContext .buttons .cancel,.turn-back {
	width: 88px;
	height: 34px;
	background: url(../image/chat_btn_close.png) no-repeat;
	float: left;
	margin-left: 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 35px;
	text-align: center;
	color: #444444;
}

.leaveMsgContext .upload_tiptop {
	padding-left: 76px;
	color: #999;
}

.leaveMsgContext .form-bottom {
	margin-bottom: 20px;
	width: 100%;
	height: 40px;
}

.leaveMsgContext .form-item input[type="radio"] {
	width: 15px;
	vertical-align: sub;
	height: 15px;
	margin-left: 10px;
}

.leaveMsgContext .thumb-wrap {
	display: inline-block;
	width: 100%;
}

.leaveMsgContext .upload-thumb-wrap .thumb-item {
	width: 100px;
	height: 100px;
	float: left;
	position: relative;
	    margin-top: 10px;
	margin-right: 20px;
}

.leaveMsgContext .upload-thumb-wrap .thumb-item-first {
	padding-left: 76px;
}

.upload-thumb-wrap .thumb-item-wrap {
	width: 100px;
	height: 100px;
}

.upload-thumb-wrap .thumb-item .img-wrap {
	width: 100px;
	height: 100px;
}

.upload-thumb-wrap .thumb-item .thumb-img-box {
	width: 98px;
	height: 98px;
	line-height: 98px;
	text-align: center;
	color: #999;
	border: 1px dashed #c4c4c4;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	cursor: pointer;
}

.upload-thumb-wrap .thumb-item .thumb-img-box .file-input {
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity =     0);
	position: absolute;
	width: 98px;
	height: 98px;
	left: 0px;
	top: 0;
	z-index: 666;
}

.upload-thumb-wrap .thumb-item .thumb-img-box .file-input-first {
	left: 76px;
}

.upload-thumb-wrap .thumb-item .info {
	display: none;
}

.upload-thumb-wrap .thumb-item .info .link {
	float: right;
	margin-left: 5px;
}

.thumb-wrap .thumb-item .link {
	margin-left: 20px;
}

.link {
	color: #529dd2;
}

.upload-thumb-wrap .thumb-item .info .name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#hint {
	height: 28px;
	line-height: 28px;
	background: url(../image/hint-1.png) repeat-x;
	left: 0;
	top: 0px;
	position: absolute;
	width: 100%;
}

.hint-closer {
	text-decoration: none;
	width: 21px;
	height: 22px;
	margin: 3px 10px 0 0;
	background: url(../image/hint_closer.png) no-repeat;
	display: block;
	float: right;
}

.hint-closer:hover {
	text-decoration: none;
}

.hint-content {
	margin: 0 33px 0 20px;
	color: #8e782c;
	/* color: #C0E2FD;*/
	font-size: 13px;
	/* text-align: left;*/
}

#serviceTimePrompt {
	position: absolute;
	width: 245px;
	height: 20px;
	line-height: 20px;
	bottom: 10px;
	margin-left: 20px;
	font-size: 12px;
	color: #a3a3a3;
}

.progressWrap {
	display: none;
	position: absolute;
	height: 24px;
	background-color: #FFFFFF;
	text-align: center;
	bottom: 2px;
	width: 100%;
	z-index: 1000;
}

.progressBar {
	position: relative;
	height: 24px;
	background-color: #FFFFFF;
	border: 1px solid #BBBBBB;
	text-align: center;
	margin: 2px;
}

.progressBar .uploadBar {
	height: 20px;
	background-color: #6CAF00;
	border: 2px solid #FFFFFF;
	width: 100%;
}

.progressBar .uploadBar .uploadPercent {
	position: absolute;
	left: 0;
	top: 0;
	height: 24px;
	text-align: center;
	line-height: 24px;
	width: 100%;
	z-index: 1000;
}

.progressWrap {
	display: none;
	position: absolute;
	height: 24px;
	background-color: #FFFFFF;
	text-align: center;
	bottom: 2px;
	width: 100%;
	z-index: 1000;
}

.progressBar {
	position: relative;
	height: 24px;
	background-color: #FFFFFF;
	border: 1px solid #BBBBBB;
	text-align: center;
	margin: 2px;
}

.progressBar .uploadBar {
	height: 20px;
	background-color: #6CAF00;
	border: 2px solid #FFFFFF;
	width: 100%;
}

.progressBar .uploadBar .uploadPercent {
	position: absolute;
	left: 0;
	top: 0;
	height: 24px;
	text-align: center;
	line-height: 24px;
	width: 100%;
	z-index: 1000;
}

img {
	border: 0;
	vertical-align: middle;
	cursor: pointer;
}

.focus {
	padding-top: 10px;
	margin-left: 20px;
	position: relative;
	overflow: hidden;
}

.images {
	height: 155px;
	overflow: hidden;
	position: relative;
}

.images .item {
	position: absolute;
	top: 0;
	left: 0;
	height: 110px;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.8s linear;
	-webkit-transition: opacity 0.8s linear;
}

.images .item img {
	width: 235px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.images .question-active {
	opacity: 1;
}

.images .item a {
	display: none
}

.images .item .url {
	display: inline
}

.control {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
}

.control span {
	display: inline-block;
	cursor: pointer;
	background: #e7e7e7;
	width: 20px;
	height: 6px;
	border-radius: 6px;
	margin: 0 4px;
}

.title p {
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	padding: 20px 0;
	margin: 0;
	text-indent: 10px;
	width: 300px;
	opacity: 0;
	transform: translateX(-300px);
	-webkit-transform: translateX(-300px);
	transition: all 0.8s ease-out;
	-webkit-transition: all 0.8s ease-out;
}

.title p.question-active {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.class {
	height: 80px;
	padding-top: 10px
}

textarea {
	resize: none;
}

#messageTipsWrap {
	height: 28px;
	line-height: 28px;
	background: url(../image/hint-1.png) repeat-x;
	left: 0;
	top: 0px;
	position: absolute;
	width: 100%;
	z-index: 200;
}

#messageTips {
	margin: 0 33px 0 20px;
	color: #000;
	font-size: 13px;
}

#suggested_question {
	border: 1px solid red;
	position: absolute;
	left: -8px;
	bottom: 170px;
	width: auto;
	z-index: 200;
	font-size: 12px;
	text-align: left;
	line-height: 24px;
	margin-left: 10px;
	padding: 5px;
	padding-left: 8px;
	padding-right: 20px;
	border-radius: 5px;
	border: 1px solid #B0E0E6;
	background-color: #AFEEEE;
}

#suggested_question ul {
	padding: 0;
	margin: 0;
}

#suggested_question ul li a {
	text-decoration: none;
	color: black;
}

#suggested_question ul li:hover {
	background-color: #CECDCD;
	padding-left: 5px;
}

#inputPrompt {
	color: #888888;
	width: 200px;
	height: 30px;
	line-height: 45px;
	font-size: 14px;
	padding-left: 20px;
}

#inviteOpinionBtn {
	background-image: url("../image/v_opinion.png");
	cursor: pointer;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin-bottom: -5px;
	margin-left: 2px;
}

.logo .titleName {
	font-size: 18px;
	color: white;
	font-family: JZhongYi;
	font-weight: 600;
	line-height: 50px;
	text-align: center;
}

.chat-time {
	font-size: 12px;
	color: #999;
	text-align: center;
	margin-top: 16px;
	margin-bottom: 16px;
}

#faqvote {
	color: #858585;
	border-top: 1px dashed #bbb;
}

#faqvote li {
	float: right;
	margin-right: 10px;
}

#relateQuestion {
	position: absolute;
	left: 0;
	bottom: 165px;
	line-height: 25px;
}

#thinkbox {
	position: absolute;
	bottom: 1px;
	text-align: left;
	color: #000;
	z-index: 99999;
	line-height: 25px;
	border-top-color: rgb(221, 221, 221);
	border-top-style: solid;
	border-top-width: 1px;
	font-size: 12px;
}

.relate_out {
	padding: 3px 10px;
	background-color: #47B4F6;
	color: #fff;
	cursor: pointer;
}

.relate_hover {
	padding: 3px 10px;
	background-color: #fff;
	color: #000;
	cursor: pointer;
}

.question-list .hot-loser {
	padding: 100px 40px 40px;
	text-align: center;
	color: #B9B9B9;
}

.question-list .hot-loser i {
	margin: 0 auto 20px;
	width: 86px;
	height: 77px;
	display: block;
	background: url(../image/hotLoser.png) center top no-repeat;
}

.editor_paste_file_mask {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.2);
}

.editor_paste_file_mask .content {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.modal {
	position: absolute;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	min-width: 300px;
	background-color: #fff;
}

.modal--header {
	margin-bottom: 17px;
	border-bottom: 1px solid #d8d8d8;
}

.modal--title {
	float: left;
	font-size: 12px;
	line-height: 22px;
	width: 80%;
	color: #252525;
}

.modal--close {
	background: url(../image/pj_kk_close.png) no-repeat left center;
	width: 12px;
	height: 12px;
	margin-top: 3px;
	cursor: pointer;
	float: right;
}

.modal--body {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.paste-img-preview {
	max-width: 400px;
	max-height: 300px;
}

.paste_filename {
	font-size: 12px;
	min-height: 24px;
	line-height: 18px;
	color: #444444;
}

.modal--bottom {
	height: 30px;
	margin-top: 20px;
}

.modal--btn__confirm {
	float: right;
	max-width: 108px;
}

.modal--btn {
	height: 30px;
	line-height: 30px;
}

.looyu-btn {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 26px;
	padding: 0 12px;
	line-height: 26px;
	border-radius: 4px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.looyu-btn.panda {
	background: #fff !important;
	color: #343036;
	border: 1px solid #d9d9d9;
}

.modal--btn__cancel {
	float: right;
	margin-right: 20px;
	max-width: 108px;
}

.question-list .hot-loser {
	padding: 100px 40px 40px;
	text-align: center;
	color: #B9B9B9;
}

.question-list .hot-loser i {
	margin: 0 auto 20px;
	width: 86px;
	height: 77px;
	display: block;
	background: url(../image/hotLoser.png) center top no-repeat;
}

.question-list .hot-refresh {
	width: 100%;
	line-height: 20px;
	text-align: center;
	color: #3B99FC;
	background: url(../image/refresh.png) no-repeat 70px center;
	cursor: pointer;
	margin-top: 10px;
}

.question-list .side-links {
	padding: 10px;
	overflow: hidden;
}

.question-list .side-links li {
	float: left;
	width: 33.33%;
	text-align: center;
	padding: 10px 0;
}

.question-list .side-links li > a {
	display: block;
}

.question-list .side-links li a {
	color: #333;
}

.question-list .side-links .li:hover {
	color: #3B99FC !important;
}

.question-list .side-links .links-pic {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
}

.question-list .side-links .links-text {
	line-height: 24px;
	text-align: center;
	font-size: 12px;
}

.convenientService-head {
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-top: 1px solid #DEDEDE;
	border-bottom: 1px solid #DEDEDE;
}

.robotAnswer {
	line-height: 25px;
}

/*.robotAnswer ul {*/
/*	padding-left: 15px;*/
/*}*/

.robotAnswer .title {
	color: #888888;
}