

/*通用样式表*/
html, body{width: 100%;height: 100%;}
html, body, div, p, b, span, i, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, table, tr, td, form, input, textarea, select, button{
	margin: 0; 
	padding:0;
	font:14px/24px Lantinghei SC, Open Sans, Microsoft Yahei, Hiragino Sans GB, WenQuanYi Micro Hei, SimSun, sans-serif; 
 
  	-moz-font-smoothing:antialiased; /*控制字体渲染只对MacOS的Webkit有效  antialiased反锯齿*/
	-webkit-font-smoothing: antialiased;
  	font-smoothing:antialiased;	
  
	-moz-box-sizing:border-box; /*元素指定的任何内边距和边框都将在已设定的宽度和高度内进行绘制*/
	-webkit-box-sizing:border-box; 
  	box-sizing:border-box;   
  
	color: #;
}

h1, h2, h3, h4, h5, h6{font-weight: normal;}
ul, ol{list-style:none;}
li{list-style-type:none;}
img,button{border:0px;}
a{
	text-decoration:none; 
	cursor:pointer;
	outline:none;
}	
		