b0f5d6a51c
Split platform admin and ops APIs into standalone admin-server.mjs with network guards; simplify billing to RMB token pricing, refactor user auth, and add rsync deploy plus local-test scripts and docs. Co-authored-by: Cursor <cursoragent@cursor.com>
160 lines
4.6 KiB
HTML
160 lines
4.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="John 的专属欢迎页面 - TKMind 为您呈现">
|
|
<meta name="mindspace-cover" content='{"tag":"报告","emoji":"👋","accent":"#f093fb","accent2":"#24243e","subtitle":"Hello John","cover":"https://images.unsplash.com/photo-1579547945413-497e1b99dac0?w=1200&q=80"}'>
|
|
<title>Hello, John!</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* 动态粒子背景 */
|
|
.bg-particles {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.bg-particles span {
|
|
position: absolute;
|
|
width: 6px;
|
|
height: 6px;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
border-radius: 50%;
|
|
animation: float 20s infinite;
|
|
}
|
|
|
|
.bg-particles span:nth-child(1) { top: 10%; left: 10%; animation-duration: 18s; animation-delay: 0s; }
|
|
.bg-particles span:nth-child(2) { top: 30%; left: 80%; width: 10px; height: 10px; animation-duration: 22s; animation-delay: 2s; }
|
|
.bg-particles span:nth-child(3) { top: 70%; left: 20%; animation-duration: 16s; animation-delay: 4s; }
|
|
.bg-particles span:nth-child(4) { top: 85%; left: 85%; width: 8px; height: 8px; animation-duration: 24s; animation-delay: 1s; }
|
|
.bg-particles span:nth-child(5) { top: 50%; left: 50%; width: 4px; height: 4px; animation-duration: 20s; animation-delay: 3s; }
|
|
.bg-particles span:nth-child(6) { top: 15%; left: 60%; animation-duration: 19s; animation-delay: 5s; }
|
|
.bg-particles span:nth-child(7) { top: 60%; left: 5%; width: 7px; height: 7px; animation-duration: 21s; animation-delay: 0.5s; }
|
|
.bg-particles span:nth-child(8) { top: 40%; left: 70%; width: 5px; height: 5px; animation-duration: 17s; animation-delay: 2.5s; }
|
|
|
|
@keyframes float {
|
|
0% { transform: translateY(0) rotate(0deg); opacity: 0; }
|
|
10% { opacity: 1; }
|
|
90% { opacity: 1; }
|
|
100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
|
|
}
|
|
|
|
.card {
|
|
position: relative;
|
|
z-index: 1;
|
|
text-align: center;
|
|
padding: 60px 80px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 24px;
|
|
backdrop-filter: blur(20px);
|
|
-webkit-backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
box-shadow:
|
|
0 25px 50px rgba(0, 0, 0, 0.3),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
animation: fadeIn 1.2s ease-out;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 72px;
|
|
font-weight: 700;
|
|
background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
margin-bottom: 16px;
|
|
animation: pulse 3s ease-in-out infinite;
|
|
letter-spacing: 4px;
|
|
}
|
|
|
|
p {
|
|
font-size: 24px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.emoji {
|
|
font-size: 48px;
|
|
display: block;
|
|
margin-bottom: 24px;
|
|
animation: wave 2s ease-in-out infinite;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 36px;
|
|
font-size: 13px;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px) scale(0.95);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { transform: scale(1); }
|
|
50% { transform: scale(1.03); }
|
|
}
|
|
|
|
@keyframes wave {
|
|
0%, 100% { transform: rotate(0deg); }
|
|
25% { transform: rotate(15deg); }
|
|
75% { transform: rotate(-15deg); }
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.card {
|
|
padding: 40px 32px;
|
|
margin: 20px;
|
|
border-radius: 16px;
|
|
}
|
|
h1 {
|
|
font-size: 48px;
|
|
}
|
|
p {
|
|
font-size: 18px;
|
|
}
|
|
.emoji {
|
|
font-size: 36px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="bg-particles">
|
|
<span></span><span></span><span></span><span></span>
|
|
<span></span><span></span><span></span><span></span>
|
|
</div>
|
|
<div class="card">
|
|
<span class="emoji">👋</span>
|
|
<h1>Hello!</h1>
|
|
<p>Welcome, John</p>
|
|
<div class="footer">powered by TKMind</div>
|
|
</div>
|
|
</body>
|
|
</html>
|