/****** 以iphone为基准||宽度为100则为1倍宽 ******/
var y={}
y.fontSize=100*(document.documentElement.clientWidth/320);
var b = y.fontSize;
b = b >= 240 ? 240 : b; //最大就240||100就是一倍宽
document.documentElement.style.fontSize = b + "px"
/****** 以iphone为基准||宽度为100则为1倍宽 ******/