// 判断设备类型
const isMobile = /Mobile|Android/.test(navigator.userAgent);

// 动态加载 CSS 文件
const link = document.createElement('link');
link.rel = 'stylesheet';
link.href = isMobile ? 'mobile.css' : 'desktop.css';
document.head.appendChild(link);

// 动态加载 JS 文件
const script = document.createElement('script');
script.src = isMobile ? 'mobile.js' : 'desktop.js';
document.body.appendChild(script);