<!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 {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            font-size: 22px;
            color: #333;
            font-family: "Microsoft YaHei", sans-serif;
        }
    </style>
</head>
<body>
    系统维护中，请稍后再试
</body>
</html>