-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
88 lines (80 loc) · 3.7 KB
/
Copy pathsupport.html
File metadata and controls
88 lines (80 loc) · 3.7 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>超时空记账 - 技术支持 / Support</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.8;
color: #333;
max-width: 720px;
margin: 0 auto;
padding: 40px 20px;
background: #f9fafb;
}
h1 { font-size: 24px; color: #111; margin-bottom: 8px; }
.lang-en { font-size: 20px; color: #555; margin-bottom: 32px; font-weight: normal; }
.section { margin-bottom: 28px; }
.section-title {
font-size: 16px; font-weight: 600; color: #111;
padding-bottom: 6px; border-bottom: 1px solid #e5e7eb;
margin-bottom: 10px;
}
p { margin-bottom: 6px; color: #444; font-size: 14px; }
.contact { background: #fff; padding: 16px; border-radius: 8px; border: 1px solid #e5e7eb; }
.contact p { font-size: 13px; color: #666; }
footer { margin-top: 40px; font-size: 12px; color: #999; text-align: center; }
</style>
</head>
<body>
<h1>超时空记账 - 技术支持</h1>
<p class="lang-en">Super Bookkeeping - Support</p>
<!-- 中文 -->
<div class="section">
<div class="section-title">常见问题</div>
<p><b>Q:如何备份数据?</b></p>
<p>进入「设置」→「备份与恢复」,点击「导出备份」即可将数据库文件保存到 iCloud Drive 或其它位置。</p>
<p style="margin-top:10px"><b>Q:如何恢复数据?</b></p>
<p>在同一页面点击「导入备份」,选择之前导出的备份文件即可恢复。</p>
<p style="margin-top:10px"><b>Q:会员购买后如何恢复?</b></p>
<p>会员权益与您的 Apple ID 绑定,换设备后点击「恢复购买」即可自动恢复。</p>
<p style="margin-top:10px"><b>Q:如何反馈问题或建议?</b></p>
<p>请通过应用内「设置」→「意见反馈」发送,我们会尽快回复。</p>
</div>
<div class="section">
<div class="section-title">联系我们</div>
<div class="contact">
<p>请优先使用应用内的「意见反馈」功能,这样我们可以更快地定位问题。</p>
<p>如有紧急问题,请通过以下邮箱联系我们:</p>
<p><a href="mailto:feedback@zdwbuy.cn">feedback@zdwbuy.cn</a></p>
</div>
</div>
<hr style="margin:32px 0; border:none; border-top:1px solid #e5e7eb;">
<!-- English -->
<div class="section">
<div class="section-title">FAQ</div>
<p><b>Q: How do I back up my data?</b></p>
<p>Go to "Settings" → "Backup & Restore", tap "Export Backup" to save the database file to iCloud Drive or other locations.</p>
<p style="margin-top:10px"><b>Q: How do I restore my data?</b></p>
<p>On the same page, tap "Import Backup" and select your backup file to restore.</p>
<p style="margin-top:10px"><b>Q: How do I restore my VIP purchase?</b></p>
<p>VIP status is tied to your Apple ID. Tap "Restore Purchase" on the VIP page to restore automatically.</p>
<p style="margin-top:10px"><b>Q: How to report issues or suggest features?</b></p>
<p>Use the "Feedback" option in "Settings" within the app. We'll respond as soon as possible.</p>
</div>
<div class="section">
<div class="section-title">Contact Us</div>
<div class="contact">
<p>For the fastest response, please use the in-app feedback feature.</p>
<p>For urgent matters, you can reach us at:</p>
<p><a href="mailto:feedback@zdwbuy.cn">feedback@zdwbuy.cn</a></p>
</div>
</div>
<footer>
<p>超时空记账 Super Bookkeeping © 2026</p>
</footer>
</body>
</html>