<!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 { margin: 0; padding: 0; font-family: Arial, "Microsoft YaHei", sans-serif; background: #f5f7fa; }
        .container { width: 100%; max-width: 600px; margin: 100px auto; padding: 30px; background: #fff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); text-align: center; }
        h1 { color: #e63946; font-size: 24px; margin-bottom: 20px; }
        p { color: #333; font-size: 16px; line-height: 1.8; margin: 10px 0; }
        .link { color: #1d3557; font-weight: bold; font-size: 18px; text-decoration: underline; }
        .tips { color: #666; font-size: 14px; margin-top: 30px; }
    </style>
</head>
<body>
    <div class="container">
        <h1>⚠️ 访问方式提示</h1>
        <p>当前站点仅支持 <strong>HTTP（80端口）</strong> 访问，不支持HTTPS（443端口）。</p>
        <p>请复制以下地址到浏览器访问：</p>
        <p class="link">http://auflyers.gz.fzht.work</p>
        <p class="tips">提示：若自动跳转失败，请手动删除地址栏中的 https://，替换为 http:// 后访问</p>
    </div>
</body>
</html>