rem
//初始化font-size
function calSize(){
var clientWidth = window.innerWidth || document.documentElement.clientWidth;
var fontSize = clientWidth * 100 / 375;
document.documentElement.style.fontSize = fontSize + "px";
}
calSize();
window.addEventListener('resize',calSize)