@charset "utf-8";

/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html{
	color:#000;background:#fff;
	-webkit-text-size-adjust: 100%;/* 使移动设备保持字体一致 */
    -ms-text-size-adjust: 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,font,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
dd,dl,dt,li,ol,ul,
form,fieldset,label,legend,input,select,textarea,
table,caption,tbody,tfoot,thead,tr,th,td {
	margin: 0;
	padding: 0;
	list-style:none;
}

/* 去除默认边框 */
fieldset,img{
	border:0;
}
img{
	*display:block;
}

/* 要注意表单元素并不继承父级 font 的问题 */
body,button,input,select,textarea{
	font:12px arial,微软雅黑 b8b\4f53,georgia,verdana,helvetica,sans-serif;/* 12px为字体大小；1.5为行高（字体大小的1.5倍）；“tahoma” ，“arial”，“\5b8b\4f53(宋体)”为字体 */
}
input,select,textarea{
	font-size:100%;
}

/* 去掉各Table  cell 的边距并让其边重合 */
table{
	border-collapse:collapse;
	border-spacing:0;
}


/* ie6 7 8(q) bug 显示为行内表现 */
iframe{
	display:block;
}

/* 默认不显示下划线，保持页面简洁 */
a{
	color:#000;
	text-decoration:none;
}

/* 消除虚线框*/
a,img,input{
	star:expression(this.onFocus=this.blur()); 
	outline:none;
}

/* 常用功能样式，以".b-"起始命名的样式名均为常用功能样式 */
.b-clear{
	clear:both;
	height:0px;
}
.b-ellipsis{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;	
}
.b-hide{
	display:none !important;
}
.b-left{
	float:left;
	_display:inline !important;	
}
.b-right{
	float:right;
	_display:inline !important;	
}
.b-show{
	display:block !important;
}
.b-select{
-ms-user-select:none;
-o-user-select:none;
-moz-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
user-select:none;
}