var link;
if (window.orientation === 90 || window.orientation === -90) {
// 手机横屏
link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = '1.css';
document.getElementsByTagName('head')[0].appendChild(link);
}