<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>网站暂时无法访问</title>
    <style>
        body { 
            margin: 0; 
            height: 100vh; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            background: #f9fafb; /* 更柔和的灰白色背景 */
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
            color: #374151;
        }
        
        .icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #9ca3af; /* 浅灰色图标，低调不刺眼 */
            animation: float 3s ease-in-out infinite;
        }

        h1 { 
            font-size: 2rem; 
            margin: 0; 
            color: #111827; 
            font-weight: 700;
            letter-spacing: -0.025em;
        }

        p { 
            font-size: 1.05rem; 
            color: #6b7280; 
            margin: 1.5rem 0 0; 
            text-align: center;
            max-width: 480px;
            line-height: 1.6;
            padding: 0 20px;
        }

        .divider {
            width: 40px;
            height: 4px;
            background: #e5e7eb;
            margin: 2rem auto;
            border-radius: 2px;
        }

        .footer-note {
            font-size: 0.85rem;
            color: #9ca3af;
            margin-top: 2rem;
        }

        /* 简单的浮动动画，让页面不那么死板 */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        /* 移动端适配 */
        @media (max-width: 480px) {
            h1 { font-size: 1.75rem; }
            p { font-size: 0.95rem; }
        }
    </style>
</head>
<body>
    <!-- 中性图标：信号塔或云朵 -->
    <div class="icon">☁️</div>
    
    <h1>网站暂时无法访问</h1>
    
    <div class="divider"></div>
    
    <p>
        抱歉，当前服务不可用。<br>
        我们正在努力恢复中，请您稍后再次尝试访问。
    </p>

    <div class="footer-note">
        感谢您的耐心等待
    </div>

</body>
</html>
