<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>真人验证</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            text-align: center;
        }
        .container {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            max-width: 90%;
            width: 400px;
        }
        h1 {
            color: #333;
        }
        p {
            color: #666;
        }
        .checkbox-label {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
        }
        input[type="checkbox"] {
            margin-right: 10px;
            transform: scale(1.5);
        }
        button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        button:hover {
            background-color: #0056b3;
        }
        button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
        #status {
            margin-top: 20px;
            font-weight: bold;
            color: green;
        }
        @media (max-width: 600px) {
            .container {
                padding: 15px;
                width: 90%;
            }
            button {
                width: 100%;
            }
        }
    </style>
    <script src="https://static.zhoukai.vip/jquery.min.js"></script>
</head>
<body>
    <div class="container">
        <h1>真人验证</h1>
        <p>为了保护我们的网站，请验证您不是机器人。</p>
        <div class="checkbox-label">
            <input type="checkbox" id="human-check">
            <label for="human-check">我不是机器人</label>
        </div>
        <button id="verify-btn" disabled>验证</button>
        <div id="status"></div>
    </div>
</body>
</html>