-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 2.35 KB
/
index.html
File metadata and controls
46 lines (45 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>签证电调准备 | 速记与卡片</title>
<style>
:root { --bg:#f6f8fa; --card:#fff; --text:#111; --muted:#555; --accent:#0b57d0; }
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--text);font-family:-apple-system,system-ui,Segoe UI,Roboto,Helvetica,Arial,"PingFang SC","Hiragino Sans GB","Noto Sans SC","Microsoft Yahei",sans-serif}
header{max-width:920px;margin:36px auto 10px;padding:0 16px}
h1{margin:0 0 6px;font-size:26px;color:var(--accent)}
p.lead{margin:0;color:var(--muted)}
.grid{max-width:920px;margin:16px auto;padding:0 16px;display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:14px}
.card{background:var(--card);border:1px solid #e6e6e6;border-radius:12px;padding:16px;box-shadow:0 2px 6px rgba(0,0,0,0.06)}
.card h2{margin:0 0 8px;font-size:18px}
.card p{margin:0 0 10px;color:var(--muted)}
.card a{display:inline-block;padding:8px 12px;border-radius:8px;border:1px solid #c7d2fe;background:#eef2ff;color:#1d4ed8;text-decoration:none}
footer{max-width:920px;margin:20px auto 40px;padding:0 16px;color:var(--muted);font-size:14px}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace}
</style>
</head>
<body>
<header>
<h1>签证电调准备(瑞士/意大利)</h1>
<p class="lead">打印友好页面:速记单与两页卡片。建议使用浏览器“打印”功能导出 PDF。</p>
</header>
<main class="grid">
<section class="card">
<h2>速记单(罗瑞萍)</h2>
<p>单页/两页 A4,大字号,包含行程、住宿与常见问答。</p>
<a href="瑞士签证电调速记单-罗瑞萍.html">打开速记单</a>
</section>
<section class="card">
<h2>电调准备卡片(2页)</h2>
<p>多列行程卡片与核心问答,排版适配 A4 比例。</p>
<a href="visa_interview_cards.html">打开卡片页</a>
</section>
</main>
<footer>
<div>打印提示:打开页面后点击“打印”按钮或使用浏览器打印(建议边距 12mm)。</div>
<div class="mono">仓库:comoysha/comoysha.github.io</div>
</footer>
</body>
</html>