
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>系统维护中</title>
    <style>
        body {
            font-family: "Microsoft YaHei",sans-serif;
            background:#f5f7fa;
            display:flex;
            justify-content:center;
            align-items:center;
            height:100vh;
            margin:0;
        }
        .box {
            background:#fff;
            padding:40px 60px;
            border-radius:12px;
            box-shadow:0 2px 16px rgba(0,0,0,0.08);
            text-align:center;
        }
        h2 {
            color:#333;
            margin-bottom:20px;
        }
        p {
            font-size:16px;
            color:#666;
            line-height:1.8;
            margin:8px 0;
        }
    </style>
</head>
<body>
    <div class="box">
        <h2>系统维护通知 / Maintenance Notice</h2>
        <p>系統預計於凌晨 1 時至 3 時進行維護，維護期間網站將暫停服務，造成不便敬請見諒。</p>
        <p>System maintenance is scheduled from 1 AM to 3 AM. The website will be unavailable during this period. We apologize for any inconvenience caused</p>
    </div>
</body>
</html>
        