/*用户留言弹窗*/ 
.windowBlack{width:100%; background-color:rgba(0,0,0,0.4); position:absolute; left:0; top:0; z-index:99; }  
.windowMsgBox{position:absolute; z-index:999; left:50%; top:200px; margin:0 0 0 -240px; overflow:hidden; }  
.windowMsgWrap{padding:20px 40px; background-color:#fff; border-radius:4px; overflow:hidden; position:fixed; }   
.windowMsgTit{text-align:center; margin:0 auto 20px auto; }  
.windowMsgTit span{line-height:40px; font-size:18px; }  
.windowMsgInputWrap{margin:0 auto; overflow:hidden; }  
.windowMsgInputWrap label, .windowMsgInputWrap input{display:block; float:left; font-size:14px; }  
.windowMsgInputWrap .inputLab{min-width:60px; height:38px; line-height:38px; text-align:left; }  
.windowMsgInputWrap input[type="text"]{width:320px; height:28px; padding:4px 8px; margin-bottom:20px; outline:none; border:solid 1px #999; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; line-height:28px; vertical-align:middle; font-size:14px; }  
.windowMsgInputWrap textarea.msgCont{width:320px; min-height:96px; padding:4px 8px; margin-bottom:12px; border-radius:4px; line-height:24px; resize:none; }  
.windowMsgInputWrap .checkWrap{float:left; overflow:hidden; padding:7px 0; margin-right:30px; }  
.windowMsgInputWrap .checkWrap input[type="radio"], .windowMsgInputWrap .checkWrap span{display:block; float:left; }  
.windowMsgInputWrap .checkWrap input[type="radio"]{width:14px; height:14px; margin:5px 0; }  
.windowMsgInputWrap .checkWrap span{margin-left:4px; height:24px; line-height:24px; font-size:14px; }  
.windowMsgBtnWrap{margin:20px auto 40px auto; padding-left:42px; overflow:hidden; }  
.windowMsgBtnWrap a{display:block; width:154px; line-height:36px; border-radius:2px; text-align:center; font-size:16px; float:left; }  
.windowMsgBtnWrap a.current{background-color:#1f8fff; color:#fff; }  
.windowMsgBtnWrap a.current:hover{background-color:#107BE6; }  
.windowMsgBtnWrap a.cancel{background-color:#ccc; color:#666; }  
.windowMsgBtnWrap a.cancel:hover{background-color:#ddd; }  
.marginR30{margin-right:30px; }

/*弹出框*/ 
.black_overlay{display:none; position:absolute; top:0%; left:0%; width:100%; height:100%; background-color:black; z-index:1001; -moz-opacity:0.6; opacity:.60; filter:alpha(opacity=80); }  
.white_content{display:none; position:absolute; top:40%; left:50%; width:26%; margin-left:-15%; background-color:white; z-index:1002; overflow:auto; padding:20px 30px; box-sizing:border-box; text-align:center; border-radius:5px; }  
.white_content h3, .white_content p{box-sizing:border-box; color:#333; text-align:left; }  
.white_content h3{margin-bottom:10px; line-height:30px; padding-left:24px; background:url(../images/tip.png) no-repeat left 5px; background-size:20px; font-size:16px; }  
.white_content p{line-height:24px; font-size:14px; /*text-indent:2em; */ }  
.white_content span{display:inline-block; margin-top:20px; padding:0 20px; border-radius:5px; line-height:30px; cursor:pointer; font-size:14px; color:#fff; }  
.white_content a{display:inline-block; margin-top:20px; padding:0 20px; border-radius:5px; line-height:30px; cursor:pointer; font-size:14px; color:#fff; }  
.white_content_small{display:none; position:absolute; top:20%; left:30%; width:40%; height:50%; border:16px solid lightblue; background-color:white; z-index:1002; overflow:auto; } 
.goTop{position:fixed; right:0px; bottom:20px; z-index:999; box-shadow:0 3px 10px rgba(59,67,73, .1); width:48px; height:48px; } 
.goTop > img{width:48px; height:48px; cursor:pointer; }