-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
116 lines (108 loc) · 3.84 KB
/
support.html
File metadata and controls
116 lines (108 loc) · 3.84 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Picdo - 技术支持</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
padding: 20px;
max-width: 800px;
margin: 0 auto;
color: #333;
}
h1 {
text-align: center;
color: #2c3e50;
margin-bottom: 30px;
}
.support-section {
background: #f8f9fa;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
}
h2 {
color: #34495e;
margin-top: 0;
}
.contact-info {
background: #e9ecef;
padding: 15px;
border-radius: 8px;
margin-top: 20px;
}
.faq-item {
margin-bottom: 20px;
}
.faq-question {
font-weight: 600;
color: #2c3e50;
margin-bottom: 10px;
}
.faq-answer {
color: #666;
}
</style>
</head>
<body>
<h1>Picdo 技术支持</h1>
<div class="support-section">
<h2>联系我们</h2>
<p>如果您在使用 Picdo 应用时遇到任何问题,我们随时为您提供帮助。</p>
<div class="contact-info">
<p><strong>邮箱:</strong> 1063543630@qq.com</p>
<p><strong>响应时间:</strong> 通常在24小时内回复</p>
</div>
</div>
<div class="support-section">
<h2>常见问题解答(FAQ)</h2>
<div class="faq-item">
<div class="faq-question">Q: 如何获取并设置 API Key?</div>
<div class="faq-answer">
1. 访问阿里云通义千问官网<br>
2. 注册/登录阿里云账号<br>
3. 在控制台中创建 API Key<br>
4. 将获取的 API Key 复制到应用的设置页面中
</div>
</div>
<div class="faq-item">
<div class="faq-question">Q: 为什么有些图片无法识别?</div>
<div class="faq-answer">
请确保:<br>
- 图片清晰可读<br>
- 图片大小不超过10MB<br>
- 网络连接稳定<br>
- API Key 设置正确
</div>
</div>
<div class="faq-item">
<div class="faq-question">Q: 如何设置提醒?</div>
<div class="faq-answer">
1. 创建待办事项时,系统会自动识别时间信息<br>
2. 如果识别到时间信息,系统会自动设置提醒<br>
3. 您也可以手动修改提醒时间
</div>
</div>
<div class="faq-item">
<div class="faq-question">Q: 数据是否安全?</div>
<div class="faq-answer">
- 所有待办事项数据均存储在本地设备中<br>
- 图片分析仅在必要时传输到服务器<br>
- 我们不会存储您的任何个人信息<br>
- API Key 使用安全加密存储
</div>
</div>
</div>
<div class="support-section">
<h2>功能建议</h2>
<p>我们非常重视用户的反馈和建议。如果您有任何功能建议或改进意见,请通过邮件联系我们。我们会认真考虑每一条建议,并在后续版本中不断改进应用体验。</p>
</div>
<div class="support-section">
<h2>隐私政策</h2>
<p>关于我们如何保护您的隐私和数据安全的详细信息,请查看我们的<a href="index.html">隐私政策</a>。</p>
</div>
</body>
</html>