1.ios 弹框输入导致光标错位
//解决方法
var ua = navigator.userAgent;
if (ua.indexOf('iPhone') > 0 || ua.indexOf('iPad') > 0) { //键盘收齐页面空白问题
document.body.scrollTop = document.body.scrollHeight;
}
2.小程序设置margin-right无效
// 解决方法 給盒子添加
Box-sizing:border-Box;