Files
my_one_web/index.html
2026-03-11 21:21:51 +08:00

118 lines
3.1 KiB
HTML

<!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>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}
.container {
text-align: center;
padding: 60px 40px;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
max-width: 600px;
animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.avatar {
width: 120px;
height: 120px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 50%;
margin: 0 auto 30px;
display: flex;
justify-content: center;
align-items: center;
font-size: 60px;
color: white;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
h1 {
font-size: 48px;
color: #333;
margin-bottom: 20px;
font-weight: 700;
}
.welcome {
font-size: 28px;
color: #667eea;
margin-bottom: 30px;
font-weight: 500;
}
.message {
font-size: 16px;
color: #666;
line-height: 1.8;
margin-bottom: 30px;
}
.footer {
font-size: 14px;
color: #999;
padding-top: 20px;
border-top: 1px solid #eee;
}
.footer span {
color: #667eea;
}
.sparkle {
animation: sparkle 2s infinite;
}
@keyframes sparkle {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
</style>
</head>
<body>
<div class="container">
<div class="avatar">
<span class="sparkle">👋</span>
</div>
<h1>欢迎云下飞</h1>
<p class="welcome">Welcome, Yun Xia Fei!</p>
<p class="message">
这是您的个人服务器<br>
<strong>小白</strong> 🐶 为您精心打造<br>
祝您使用愉快!
</p>
<div class="footer">
Powered by <span>OpenClaw</span> & <span>Nginx</span>
</div>
</div>
</body>
</html>