<!doctype html><html lang="ko"><head><meta charset="UTF-8"><meta name="referrer" content="always"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=2,user-scalable=no,viewport-fit=cover"><style>body{margin: -10000px}</style><style>@media (prefers-color-scheme: dark) {
                body,html{background-color:#1e1e1e}
            }</style><script>// window.appChunks={
            //  "0":0
            // };
            //页面显示后,监听事件
            window.onpageshow = function(){
                var ua = window.navigator.userAgent.toLowerCase();
                var isSafari = ua.indexOf('safari') > -1 && ua.indexOf('chrome') < 0;
                if (window.device.mobile() && isSafari) {
                    //默认为第一次进入的导航页附加一个 tag
                    this.history.replaceState(location.hash, '', location.hash);
                    //监听 hashchange 事件
                    window.addEventListener('hashchange', function() {
                        //为当前导航页附加一个 tag
                        this.history.replaceState(location.hash, '', location.hash);
                    }, false);
                    //监听浏览器前进后退
                    window.addEventListener('popstate', function(e) {
                        var state = e.state || window.history.state || '';
                        //页面点击按钮去往另一个页面时,popstate中state属性不会有值,当用户点击前进后退后,会出现我们前面设置的state
                        if (state !== '') {
                            //侦测是用户触发的前进后退操作,设置isPopstate为true,提供阻止body渲染,并刷新当前 url
                            window.isPopstate = true;
                            window.location.reload();
                        } else {
                            window.isPopstate = false;
                        }
                    }, false);
                }