<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1804078.xyz | 个人主页</title>
<style>
:root {
--primary-color: #6366f1;
--bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: var(--bg-gradient);
color: white;
}
.card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 2rem;
border-radius: 20px;
text-align: center;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
max-width: 350px;
width: 90%;
}
h1 { margin-bottom: 0.5rem; font-size: 1.8rem; }
p { opacity: 0.8; line-height: 1.6; }
.domain-tag {
background: rgba(255, 255, 255, 0.2);
padding: 5px 15px;
border-radius: 50px;
font-size: 0.9rem;
display: inline-block;
margin-bottom: 1.5rem;
}
.links { display: flex; flex-direction: column; gap: 10px; }
.link-btn {
background: white;
color: #4b6cb7;
text-decoration: none;
padding: 12px;
border-radius: 10px;
font-weight: bold;
transition: transform 0.2s;
}
.link-btn:hover { transform: translateY(-3px); }
.footer { margin-top: 2rem; font-size: 0.7rem; opacity: 0.5; }
</style>
</head>
<body>
<div class="card">
<div class="domain-tag">1804078.xyz</div>
<h1>你好,欢迎光临</h1>
<p>这是我的数字领地。目前正在通过 Cloudflare Pages 稳定运行中。</p>
<div class="links">
<a href="#" class="link-btn">关于我</a>
<a href="#" class="link-btn">我的项目</a>
<a href="mailto:admin@1804078.xyz" class="link-btn">联系我</a>
</div>
<div class="footer">
© 2026 Powered by Gemini & Cloudflare
</div>
</div>
</body>
</html>