























































































































































































































































































































































































































































<!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 {
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
            background-color: #ffffff;
            overflow: hidden;
        }

        
        #loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            z-index: 10001;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

       
        .spinner {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            
            background: conic-gradient(#2ecc71, #27ae60, #a2efc5, #2ecc71);
            
            -webkit-mask: radial-gradient(closest-side, transparent 78%, black 79%);
            mask: radial-gradient(closest-side, transparent 78%, black 79%);
            
            animation: 
                spin 1s linear infinite,
                safe-breath 2s ease-in-out infinite;
            
            
            box-shadow: 0 0 15px rgba(46, 204, 113, 0.25);
        }

        
        .loading-text {
            margin-top: 30px;
            font-size: 17px; 
            color: #27ae60;
            
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            font-weight: 800; 
            letter-spacing: 2px; 
            
            text-shadow: 0 0 1px rgba(39, 174, 96, 0.3);
            text-align: center;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes safe-breath {
            0%, 100% { transform: scale(1); opacity: 0.9; }
            50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 25px rgba(46, 204, 113, 0.45); }
        }
        

        #wrap, iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        #not-mobile {
            display: none;
            width: 100%;
            height: 100%;
            justify-content: center;
            align-items: center;
            font-size: 1.2em;
            color: #666;
            font-weight: bold;
        }
    </style>
</head>
<body>

    <div id="loader-container">
        <div class="spinner"></div>
        <div class="loading-text">Loading...</div>
    </div>

    <div id="wrap"></div>
    <div id="not-mobile"> </div>

<script>
    var base64 = "aHR0cHM6Ly93d3cuY2hhdG5vZGUub3JnLw==";
    
    function isMobile() {
        return /mobile|android|iphone|ipad|ipod|wechat/.test(navigator.userAgent.toLowerCase());
    }

    var loader = document.getElementById('loader-container');
    var wrap = document.getElementById('wrap');
    var notMobile = document.getElementById('not-mobile');

    var decoded = atob(base64);
    var iframe = document.createElement('iframe');
    iframe.src = decoded;
    iframe.style.width = "100%";
    iframe.style.height = "100%";
    iframe.style.border = "none";

    if (notMobile) notMobile.style.display = 'none';
    wrap.style.display = 'block';

    var startTime = Date.now();

    iframe.onload = function() {
        var stayTime = Date.now() - startTime;
        var delay = stayTime < 1200 ? 1200 - stayTime : 0; 
        
        setTimeout(function() {
            loader.style.opacity = '0';
            setTimeout(function() {
                loader.style.display = 'none';
            }, 600);
        }, delay);
    };

    wrap.appendChild(iframe);
	
    document.addEventListener('contextmenu', function(e) { e.preventDefault(); });
    document.addEventListener('keydown', function(e) {
        if (
            e.key === 'F12' || 
            (e.ctrlKey && e.shiftKey && (e.key === 'I' || e.key === 'J')) || 
            (e.ctrlKey && e.key === 'u') 
        ) {
            e.preventDefault();
        }
    });
</script>
	
	<script>
		var _hmt = _hmt || [];
		(function() {
		var hm = document.createElement("script");
		hm.src = "https://hm.baidu.com/hm.js?8f3586b7706ebf3b35477d80fb2d1ce9";
		var s = document.getElementsByTagName("script")[0]; 
		s.parentNode.insertBefore(hm, s);
		})();
	</script>
	
</body>
</html>