acca846856
Memind CI / Test, build, and release guards (pull_request) Failing after 4m17s
引入批量回填与审计工具链,强制 mindspace-geo 元数据,扩展 sitemap/llms 收录 /learn,并为 Plaza 壳页注入 canonical/OG/JSON-LD;本地 593 页已通过 check:mindspace-cover。 Co-authored-by: Cursor <cursoragent@cursor.com>
180 lines
6.0 KiB
HTML
180 lines
6.0 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://m.tkmind.cn/brand/tkmind-icon.png"}">
|
|
<meta name="mindspace-geo" content='{"summary":"John 的专属欢迎页面 - TKMind 为您呈现","keywords":["报告","Hello John","Hello, John!"],"faq":[{"q":"Hello!讲什么?","a":"John 的专属欢迎页面 - TKMind 为您呈现"}]}'>
|
|
<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>
|
|
<style id="mindspace-platform-brand-style">
|
|
[data-mindspace-page-tag="platform-brand"] {
|
|
display: block !important;
|
|
opacity: 1 !important;
|
|
visibility: visible !important;
|
|
color: #9aa3a0 !important;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif !important;
|
|
font-size: 12px !important;
|
|
font-weight: 500 !important;
|
|
letter-spacing: 0.02em !important;
|
|
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
|
|
}
|
|
</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>
|
|
<p data-mindspace-page-tag="platform-brand">TKMind · 智趣</p>
|
|
|
|
<section data-mindspace-seo-outline="1" aria-label="页面提纲" style="margin:32px auto 20px;padding:20px 16px;max-width:920px;border-top:1px solid rgba(15,23,42,.08);color:#64748b;font-size:14px;line-height:1.75"><h2 style="font-size:17px;color:#334155;margin:0 0 8px">内容概要</h2>
|
|
<p style="margin:0 0 16px">John 的专属欢迎页面 - TKMind 为您呈现</p>
|
|
<h2 style="font-size:17px;color:#334155;margin:16px 0 8px">Hello!讲什么?</h2>
|
|
<p style="margin:0 0 12px">John 的专属欢迎页面 - TKMind 为您呈现</p></section>
|
|
</body>
|
|
</html>
|