@charset "gb18030";
/*===================================
	根据不同的屏幕高度缩放基本计算单位rem的值
	假设无行间距，按照一个文档可以摆放30-40行单倍字体计算
==============================  */
@media screen and (max-height:5000px){
	html {
		font-size: 84px;
	}
}
@media screen and (max-height:3000px){
	html {
		font-size: 74px;
	}
}
@media screen and (max-height:2200px){
	html {
		font-size: 54px;
	}
}
@media screen and (max-height:1600px){
	html {
		font-size: 40px;
	}
}
@media screen and (max-height:1200px){
	html {
		font-size: 28px;
	}
}
@media screen and (max-height:840px){
	html {
		font-size: 21px;
	}
}
@media screen and (max-height:640px){
	html {
		font-size: 16px;
	}
}
@media screen and (max-height:480px){
	html {
		font-size: 12px;
	}
}
@media screen and (max-height:360px){
	html {
		font-size: 9px;
	}
}
@media screen and (max-height:270px){
	html {
		font-size: 7px;
	}
}
@media screen and (max-height:210px){
	html {
		font-size: 5px;
	}
}
body{
font-family: "微软雅黑";	
}


html {
	font-size: 16px;
}
  

  
