<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>安全验证</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .warning-icon {
            font-size: 60px;
            color: #ff6b6b;
            margin-bottom: 20px;
        }

        h1 {
            color: #333;
            margin-bottom: 15px;
            font-size: 24px;
        }

        p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .countdown {
            font-size: 18px;
            font-weight: bold;
            color: #4a69bd;
            margin-bottom: 20px;
        }

        .progress-bar {
            height: 6px;
            background-color: #e9ecef;
            border-radius: 3px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .progress {
            height: 100%;
            background-color: #4a69bd;
            width: 100%;
            transition: width 0.1s linear;
        }

        .manual-verify-btn {
            background-color: #4a69bd;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

            .manual-verify-btn:hover {
                background-color: #3c5aa8;
            }

        .footer {
            margin-top: 20px;
            font-size: 14px;
            color: #999;
        }

        @media (max-width: 480px) {
            .container {
                padding: 30px 20px;
            }

            h1 {
                font-size: 20px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>请人工验证</h1>
        <p>用户45.42.92.2抱歉！请《请拖动图片验证码》后可访问。</p>
        <div class="countdown"><span id="timer">10</span> 秒后自动进入验证页面</div>
        <div class="progress-bar">
            <div class="progress" id="progress"></div>
        </div>
        <button class="manual-verify-btn" onclick="redirectToVerification()">立即验证</button>
    </div>

    <script>
        let countdown = 10;
        const timerElement = document.getElementById('timer');
        const progressElement = document.getElementById('progress');
        const totalTime = countdown;

        function updateCountdown() {
            countdown--;
            timerElement.textContent = countdown;

            // 更新进度条
            const progressPercentage = (countdown / totalTime) * 100;
            progressElement.style.width = progressPercentage + '%';

            if (countdown <= 0) {
                redirectToVerification();
            } else {
                setTimeout(updateCountdown, 1000);
            }
        }

        function redirectToVerification() {
            window.location.href = 'http://vercode.app17.com/code.html?ip=45.42.92.2&url=http%3A%2F%2Fwww.app17.com%2Fdefault.aspx%3Fnews%2Fnews';
        }

        // 开始倒计时
        setTimeout(updateCountdown, 1000);
    </script>
</body>
</html>