<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>网站已停用 - Site Suspended</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: #f5f7fa;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #303133;
        }

        .container {
            text-align: center;
            padding: 40px 20px;
            max-width: 500px;
        }

        .icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: #fef0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon svg {
            width: 40px;
            height: 40px;
            color: #f56c6c;
        }

        h1 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #303133;
        }

        .subtitle {
            font-size: 16px;
            color: #909399;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .divider {
            width: 40px;
            height: 3px;
            background: #dcdfe6;
            margin: 24px auto;
            border-radius: 2px;
        }

        .info {
            font-size: 14px;
            color: #606266;
            line-height: 1.8;
        }

        .footer {
            margin-top: 40px;
            font-size: 12px;
            color: #c0c4cc;
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 22px;
            }
            .subtitle {
                font-size: 14px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="icon">
            <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
                <circle cx="12" cy="12" r="10"></circle>
                <line x1="15" y1="9" x2="9" y2="15"></line>
                <line x1="9" y1="9" x2="15" y2="15"></line>
            </svg>
        </div>
        
        <h1>网站已停用</h1>
        <p class="subtitle">Site Suspended</p>
        <p class="subtitle">该网站已被管理员停用或尚未开通</p>
        
        <div class="divider"></div>
        
        <p class="info">
            如有疑问，请联系网站管理员或客服<br>
            If you have any questions, please contact the administrator
        </p>
        
        <div class="footer">
            &copy; <span id="year"></span> All Rights Reserved
        </div>
    </div>

    <script>
        document.getElementById('year').textContent = new Date().getFullYear();
    </script>
</body>
</html>