// 输入法挡住输入框的问题
if (/Android/.test(navigator.appVersion)) {
window.addEventListener('resize', function() {
if (document.activeElement.tagName == 'INPUT' || document.activeElement.tagName == 'TEXTAREA') {
document.activeElement.scrollIntoView();
}
});
}