<html lang="zh-CN"><head><meta http-equiv="Content-Type" content="text/html; 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;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            line-height: 1.6;
        }

        /* 主容器样式 */
        .main-container {
            text-align: center;
            max-width: 600px;
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        /* 图标样式 */
        .maintenance-icon {
            font-size: 80px;
            color: #4299e1;
            margin-bottom: 20px;
        }

        /* 标题样式 */
        h1 {
            font-size: 2.2rem;
            color: #2d3748;
            margin-bottom: 15px;
        }

        /* 说明文字样式 */
        .description {
            font-size: 1.1rem;
            color: #718096;
            margin-bottom: 30px;
        }

        /* 时间提示样式 */
        .time-info {
            background-color: #e8f4f8;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            font-weight: 500;
            color: #2d3748;
        }

        /* 联系方式样式 */
        .contact {
            margin-top: 20px;
            font-size: 0.95rem;
            color: #4a5568;
        }

        .contact a {
            color: #4299e1;
            text-decoration: none;
        }

        .contact a:hover {
            text-decoration: underline;
        }

        /* 页脚样式 */
        footer {
            margin-top: 40px;
            font-size: 0.9rem;
            color: #a0aec0;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .main-container {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .maintenance-icon {
                font-size: 60px;
            }
        }
    </style>

</head>
<body>
    <div class="main-container">
       
        <!-- 标题 -->
        <h1>网站维护中</h1>
        
        <!-- 说明文字 -->
        <p class="description">
            我们正在对网站进行升级维护，以提供更好的服务体验。<br>
            暂时无法访问，敬请谅解！
        </p>
        
        

</div></body></html>