移动端字体适配
var width = document.documentElement.clientWidth;
var root = document.getElementsByTagName('html')[0]
root.style.fontSize = width / 3.75 + 'px';
window.onresize = function(){
var width = document.documentElement.clientWidth;
var root = document.getElementsByTagName('html')[0];
root.style.fontSize = width / 3.75 + 'px';
}