190 lines
4.9 KiB
HTML
190 lines
4.9 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>
|
||
/* ============================================================
|
||
闲言 App 下载页
|
||
创建时间: 2026-06-13
|
||
作用: App Store 下载落地页
|
||
============================================================ */
|
||
|
||
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
||
|
||
:root {
|
||
--bg: #f5f5f7;
|
||
--fg: #1d1d1f;
|
||
--muted: #86868b;
|
||
--accent: #0071e3;
|
||
--glass-bg: rgba(255,255,255,0.72);
|
||
--glass-border: rgba(255,255,255,0.5);
|
||
--radius: 20px;
|
||
--font: -apple-system, 'SF Pro Display', 'PingFang SC', sans-serif;
|
||
}
|
||
|
||
body {
|
||
font-family: var(--font);
|
||
background: var(--bg);
|
||
color: var(--fg);
|
||
min-height: 100vh;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 24px;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
/* 背景光晕 */
|
||
body::before {
|
||
content: '';
|
||
position: fixed;
|
||
top: -30%;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
width: 800px;
|
||
height: 600px;
|
||
background: radial-gradient(ellipse, rgba(0,113,227,0.12) 0%, transparent 70%);
|
||
pointer-events: none;
|
||
z-index: 0;
|
||
}
|
||
|
||
.card {
|
||
position: relative;
|
||
z-index: 1;
|
||
max-width: 420px;
|
||
width: 100%;
|
||
background: var(--glass-bg);
|
||
backdrop-filter: blur(40px) saturate(180%);
|
||
-webkit-backdrop-filter: blur(40px) saturate(180%);
|
||
border: 1px solid var(--glass-border);
|
||
border-radius: var(--radius);
|
||
padding: 48px 36px 40px;
|
||
text-align: center;
|
||
box-shadow:
|
||
0 4px 30px rgba(0,0,0,0.06),
|
||
0 1px 3px rgba(0,0,0,0.04);
|
||
animation: float-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
|
||
}
|
||
|
||
@keyframes float-in {
|
||
from { opacity: 0; transform: translateY(24px); }
|
||
to { opacity: 1; transform: translateY(0); }
|
||
}
|
||
|
||
/* 图标 */
|
||
.icon-wrap {
|
||
width: 96px;
|
||
height: 96px;
|
||
margin: 0 auto 24px;
|
||
border-radius: 22px;
|
||
background: linear-gradient(145deg, #667eea 0%, #764ba2 100);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 44px;
|
||
box-shadow: 0 8px 28px rgba(102,126,234,0.35);
|
||
}
|
||
|
||
h1 {
|
||
font-size: 28px;
|
||
font-weight: 700;
|
||
letter-spacing: -0.4px;
|
||
margin-bottom: 6px;
|
||
}
|
||
|
||
.subtitle {
|
||
color: var(--muted);
|
||
font-size: 15px;
|
||
margin-bottom: 28px;
|
||
}
|
||
|
||
.desc {
|
||
font-size: 14px;
|
||
line-height: 1.7;
|
||
color: var(--muted);
|
||
margin-bottom: 32px;
|
||
padding: 0 4px;
|
||
}
|
||
|
||
/* 下载按钮 */
|
||
.btn {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 10px;
|
||
background: var(--fg);
|
||
color: #fff;
|
||
text-decoration: none;
|
||
padding: 14px 32px;
|
||
border-radius: 12px;
|
||
font-size: 15px;
|
||
font-weight: 600;
|
||
transition: all 0.25s ease;
|
||
cursor: pointer;
|
||
border: none;
|
||
}
|
||
|
||
.btn:hover {
|
||
transform: scale(1.03);
|
||
box-shadow: 0 6px 24px rgba(29,29,31,0.3);
|
||
}
|
||
|
||
.btn:active { transform: scale(0.98); }
|
||
|
||
.btn svg { width: 20px; height: 20px; fill: currentColor; }
|
||
|
||
/* 标签 */
|
||
.tags {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 8px;
|
||
flex-wrap: wrap;
|
||
margin-top: 28px;
|
||
padding-top: 24px;
|
||
border-top: 1px solid rgba(0,0,0,0.06);
|
||
}
|
||
|
||
.tag {
|
||
font-size: 12px;
|
||
color: var(--muted);
|
||
background: rgba(0,0,0,0.04);
|
||
padding: 5px 12px;
|
||
border-radius: 100px;
|
||
}
|
||
|
||
.card-footer {
|
||
margin-top: 24px;
|
||
font-size: 12px;
|
||
color: var(--muted);
|
||
opacity: 0.5;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<article class="card">
|
||
<div class="icon-wrap"><img src="https://s2ss.com/assets/img/logo.png" alt="闲言" style="width:64px;height:64px;object-fit:contain;border-radius:14px;"></div>
|
||
<h1>闲言</h1>
|
||
<p class="subtitle">文字阅读更纯粹</p>
|
||
<p class="desc">每日精选诗词名句,搭配液态玻璃视觉设计。摇一摇换句、AI 会话流、壁纸创作编辑器——让每一次阅读都成为美学体验。</p>
|
||
|
||
<a href="https://apps.apple.com/app/闲言" class="btn" target="_blank" rel="noopener">
|
||
<!-- Apple Logo -->
|
||
<svg viewBox="0 0 384 512"><path d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 52.3-11.4 69.5-34.3z"/></svg>
|
||
App Store 下载
|
||
</a>
|
||
|
||
<div class="tags">
|
||
<span class="tag">每日拾句</span>
|
||
<span class="tag">壁纸创作</span>
|
||
<span class="tag">AI 对话</span>
|
||
<span class="tag">14 种语言</span>
|
||
</div>
|
||
|
||
<p class="card-footer">© 2026 闲言 · 文字阅读更纯粹</p>
|
||
</article>
|
||
|
||
</body>
|
||
</html>
|