let [zyHost, zyPath, zySearch] = headUrl();
//添加返回主页，用于：所有小游戏页面
let zhuye = {
    style:"<style> .zhuye {display:block; position:fixed; color:rgb(128 128 128 / 0.5); z-index:999;text-decoration: none;font-weight:normal;}</style>",
    css:["top:15px;left:20px;", "top:15px;right:20px;", "right:20px;bottom:15px;","left:20px;bottom:15px;"],
    suiji() {
        return Math.floor(Math.random()*4);
    },
};
document.head.insertAdjacentHTML("beforeend", zhuye.style);
setTimeout(() => {
    let suiji = zhuye.suiji();
    let url = `https://${zyHost}`;
    document.body.insertAdjacentHTML("afterbegin", `<a class='zhuye' style='${zhuye.css[suiji]}'  href='${url}' target='_blank'>${url}</a>`);
    (function weizhi() {
        let suiji = zhuye.suiji();
        document.querySelector("a[class='zhuye']").style.cssText = zhuye.css[suiji];
        setTimeout(weizhi, 15000);
    })();
}, 500);