﻿/*html, body, div, p, ol, ul, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, form, input, select, button, textarea, iframe, table, th, td .login_panel{
	margin:0;
	padding:0
}
img .login_panel{
	border:0 none; position:relative;
}
body .login_panel{
	color:#666;
	font-size:13px;
	background-color:#f2f2f2
}
body, input, blockquote, textarea .login_panel{
	font-family:'微软雅黑','Oswald', 'Helvetica Neue', 'Microsoft YaHei', Helvetica, Arial, Verdana, sans-serif;
}*/

/*底部登录提示面板*/
.login_panel{ width:100%; height:65px; background:url(images/float_bottom_bg.png) 0 0 repeat-x; overflow:hidden; display:none; position:fixed; bottom:0; z-index:99999;}
.login_panel .panel_center{ margin:10px auto; /*background:url(images/login_panel_bg.png) 228px 0 no-repeat;*/ width:980px; height:45px; overflow:hidden;}
.login_panel .panel_center p{ /*float:left;*/ line-height:45px; /*margin-top:6px;*/ /*text-align:center;*/ /*justify-content:center; display:flex;*/}
.login_panel .panel_center .tips{ font-size:14px; font-weight:bold; color:#4ba6e5; width:437px; margin-left:0; text-align:left; text-indent:110px; line-height:40px;}
.login_panel .panel_center .close{ font-size:14px; background:url(images/icon_close.png) 0 center no-repeat; margin-left:30px;  height:32px; line-height:32px; text-indent:30px; display:block; color:#e54e4b;}

.window-center {
            /* 将position设置为fixed，使元素相对于浏览器窗口定位 */
            position: fixed;
            /* 将margin设置为auto，使浏览器自动推算元素外边距 */
            margin: auto;
            /* 将上下左右边距（相对于浏览器窗口边缘）全设为0，使浏览器推算出的外边距上下、左右对应相等
               可以设置任何其他相等的值，但如果窗口小到不能容下任意一个方向的两侧边距，元素也将不居中，所以推荐设为0 */
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }