document.addEventListener('DOMContentLoaded', () => {
const userAgent = navigator.userAgent || navigator.vendor || window.opera;
// 检测移动设备
const isMobile = /android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(userAgent.toLowerCase());
const href = isMobile ? 'https://h5' : 'https://web'
window.location.href = href;
});