<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>欢迎访问</title>
    <style>
        * { margin: 0; padding: 0; }
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            font-family: "Microsoft YaHei", sans-serif;
            color: #fff;
            font-size: 4rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .container {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.15);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        }
        .sub {
            font-size: 1.5rem;
            margin-top: 1rem;
            opacity: 0.8;
        }
    </style>
</head>
<body>
    <div class="container">
        <div>有没有一种可能是cn</div>
        <div class="sub">— 来自 Nginx 的问候</div>
    </div>
</body>
</html>