<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 无法访问此网站</title>
    <style>
        body {
            background-color: #202124;
            color: #E8EAED;
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }
        .container {
            text-align: left;
            width: 600px;
            padding: 20px;
            box-sizing: border-box;
            background-color: #202124;
            min-height: 700px;
            position: relative;
        }
        .error-icon {
            margin-bottom: 20px;
            width: 50px;
            height: 50px;
            position: relative;
            background-color: #cfcfcf;
            clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
        }
        .error-icon::after {
            content: '';
            position: absolute;
            width: 14px;
            height: 14px;
            background-color: #202124;
            clip-path: polygon(0 0, 100% 0, 100% 100%);
            top: 0;
            right: 0;
        }
        .face {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 12px;
            transform: translate(-50%, -50%);
        }
        .eye {
            width: 3px;
            height: 3px;
            background-color: #202124;
            border-radius: 50%;
            position: absolute;
            top: 0;
        }
        .eye.left {
            left: 0;
        }
        .eye.right {
            right: 0;
        }
        .mouth {
            width: 10px;
            height: 3px;
            border-radius: 10px 10px 0 0;
            border: 2px solid #202124;
            border-bottom: none;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .title {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .subtitle {
            font-size: 14px;
            margin-bottom: 20px;
        }
        .details {
            font-size: 12px;
            color: #9AA0A6;
            margin-bottom: 10px;
        }
        .button-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        .button {
            background-color: #8AB4F8;
            color: #202124;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 4px;
            font-size: 14px;
            font-family: Arial, sans-serif;
        }
        .button:hover {
            background-color: #5F6368;
        }
        .link {
            color: #8AB4F8;
            cursor: pointer;
            text-decoration: none;
            border: 1px solid #8AB4F8;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 14px; 
            font-family: Arial, sans-serif;
        }
        .link:hover {
            text-decoration: none;
        }
        .additional-details {
            display: none;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="error-icon">
            <div class="face">
                <div class="eye left"></div>
                <div class="eye right"></div>
                <div class="mouth"></div>
            </div>
        </div>
        <div>
            <div class="title">无法访问此网站</div>
            <div class="subtitle">www.thechannelingboard.com 的响应时间过长。</div>
        </div>
        <div class="details">请尝试以下方法：</div>
        <ul class="details">
            <li>检查网络连接</li>
            <li>检查代理服务器和防火墙</li>
        </ul>
        <div class="details">ERR_CONNECTION_TIMED_OUT</div>
        <div class="button-container">
            <span class="link" onclick="toggleDetails()">详情</span>
            <button class="button" onclick="location.reload();">重新加载</button>
        </div>
        <div class="additional-details">
            <div class="details">请检查您的互联网连接是否正常</div>
            <div class="details">请检查所有网络是否都已连接好，然后重新启动您可能正在使用的任何路由器、调制解调器或其他网络设备。</div>
            <div class="details">在防火墙或防病毒设置中允许浏览器访问网络。</div>
            <div class="details">如果它已在访问网络的程序列表中，请尝试将它从列表中移除，然后重新添加回其中。</div>
            <div class="details">如果您使用代理服务器...</div>
            <div class="details">请检查您的代理服务器设置或与网络管理员联系，以确保代理服务器设置正常运行。如果您认为自己不需要使用代理服务器，请执行以下操作：依次转到“应用”>“系统偏好设置”>“网络”>“高级”>“代理”，然后取消选中所有已选中的代理。</div>
        </div>
    </div>
    <script>
        function toggleDetails() {
            var details = document.querySelector('.additional-details');
            var link = document.querySelector('.link');
            if (details.style.display === 'none' || details.style.display === '') {
                details.style.display = 'block';
                link.textContent = '隐藏详细信息';
            } else {
                details.style.display = 'none';
                link.textContent = '详情';
            }
        }
    </script>
</body>
</html>
