@charset "utf-8";
/* 公用css */
/* 重置页面高度，使其和窗口高度保持一致（适用于不分屏页面，如平台、登录页面、后台） */

/* 重置内外边距，使各个浏览器样式的表现位置保持一致 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,a,img,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	margin: 0;
	padding: 0;
}
img{ border:0; vspace:0;}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display: block;}

/* HTML5 媒体文件跟 img 保持一致 */
audio,canvas,video {
	display: inline-block;
    *display: inline;
    *zoom: 1;
}

/* 表单元素并不继承父级 font 的属性，重设表单元素属性 */
input,select,textarea {
	font-size: 100%;
	text-indent: .2em;
}

/* 去掉各Table  cell 的边距并让其边重合 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* IE bug fixed: th 不继承 text-align*/
th { text-align: inherit;}

/* 去除默认边框 */
fieldset,img { border: 0;}

/* ie6 7 8(q) bug 显示为行内表现 */
iframe { display: block;}

/* 去除默认列属性 */
ul,li,h3,p,fieldset,legend,dd,dt { list-style: none;}

/* 重置页面高度，使其和窗口高度保持一致（适用于不分屏页面，如平台、登录页面、后台） */
/* html,body{ height:100%;} */

/* 设置a标签文字颜色,去掉下划线*/
a {
	color: #333;
	text-decoration: none;
}
a:hover { color: #f00;} 
 
/* 公用css */
/* 靠左边浮动 */
.b-left {
	*display: inline; 
	float: left;
}

/* 靠右边浮动 */
.b-right { 
	*display: inline; 
	float: right;
}

/* 清除浮动 */
.b-clear {
	clear: both;
	height: 0px;
	line-height: 0px;
	margin: 0px ;
	padding: 0px;
	font-size: 0px;
	overflow: hidden;
}

/* 隐藏 */
.b-hide { display: none !important;}

/* 显示 */
.b-show { display: block !important;}

/* 超出显示省略号 */
.b-ellipsis {
	white-space: nowrap !important;
	text-overflow: ellipsis !important;
	overflow: hidden !important;	
}

html {
	font-size: 20px;
	font-family: "微软雅黑";
}

#wrapper {
	position: absolute;
	z-index: 1;
	top: 0px;
	bottom: 0px;
	left: 0;
	width: 100%;
	overflow: hidden;
}