<!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>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .container {
            text-align: center;
            color: white;
            padding: 40px;
        }
        .icon { font-size: 80px; margin-bottom: 20px; animation: spin 3s linear infinite; }
        @keyframes spin {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(15deg); }
            75% { transform: rotate(-15deg); }
        }
        h1 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 700; }
        p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 10px; }
        .time { 
            margin-top: 30px;
            padding: 15px 30px;
            background: rgba(255,255,255,0.2);
            border-radius: 50px;
            display: inline-block;
            backdrop-filter: blur(10px);
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="icon">🔧</div>
        <h1>活动调整中</h1>
        <p>我们正在对系统进行升级维护</p>
        <p>给您带来的不便，敬请谅解</p>
        <div class="time">服务热线：4008282888</div>
    </div>
</body>
</html>