<CTYPE 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",Roboto,sans-serif;background:linear-gradient(135deg,#f5f7fa 0%,#e4eaf5 100%);min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;color:#333;padding:20px}
        .container{max-width:600px;width:100%}
        .loader{width:60px;height:60px;border:5px solid #e4eaf5;border-top:5px solid #3498db;border-radius:50%;margin:0 auto 30px;animation:spin 1s linear infinite}
        .title{font-size:32px;font-weight:600;margin-bottom:20px;color:#2c3e50;animation:fadeIn 1s ease forwards}
        .subtitle{font-size:18px;color:#7f8c8d;margin-bottom:40px;line-height:1.6;animation:fadeIn 1s ease .3s forwards;opacity:0}
        .footer{margin-top:50px;font-size:14px;color:#95a5a6;animation:fadeIn 1s ease .6s forwards;opacity:0}
        @keyframes fadeIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
        @keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
        @media (max-width:768px){.title{font-size:26px}.subtitle{font-size:16px}}
    </style>
</head>
<body>
    <div class="container">
        <div class="loader"></div>
        <h1 class="title">网站正在更新中</h1>
        <p class="subtitle">我们正在对网站进行更新，敬请期待！</p>
    </div>
    <meta http-equiv="refresh" content="300">
</body>
</html>

