-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreader.html
More file actions
434 lines (412 loc) · 23 KB
/
Copy pathreader.html
File metadata and controls
434 lines (412 loc) · 23 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>阅读模式 - 本地电子书阅读器</title>
<script>
(function() {
try {
var theme = localStorage.getItem('local_reader_theme');
if (theme === 'light' || theme === 'dark') {
document.documentElement.setAttribute('data-theme', theme);
}
} catch (error) {
console.warn('Theme preload failed', error);
}
})();
</script>
<!-- CSS Files -->
<link rel="stylesheet" href="src/css/base.css">
<link rel="stylesheet" href="src/css/components.css">
<link rel="stylesheet" href="src/css/responsive.css">
<link rel="stylesheet" href="src/css/titlebar.css">
<!-- Libraries (本地化) -->
<script src="src/vendor/jszip.min.js"></script>
<script src="src/vendor/epub.min.js"></script>
</head>
<body data-theme="light">
<!-- 自定义标题栏(Electron 环境下显示) -->
<div id="titlebar" class="titlebar" style="display:none">
<div class="titlebar-drag">
<svg class="titlebar-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path></svg>
<span class="titlebar-title">本地阅读</span>
</div>
<div class="titlebar-controls">
<button id="titlebar-min" class="titlebar-btn" title="最小化">
<svg viewBox="0 0 10 10"><line x1="1" y1="5" x2="9" y2="5" stroke="currentColor"/></svg>
</button>
<button id="titlebar-max" class="titlebar-btn" title="最大化">
<svg viewBox="0 0 10 10"><rect x="1" y="1" width="8" height="8" stroke="currentColor" fill="none"/></svg>
</button>
<button id="titlebar-close" class="titlebar-btn titlebar-close-btn" title="关闭">
<svg viewBox="0 0 10 10"><line x1="1" y1="1" x2="9" y2="9" stroke="currentColor"/><line x1="9" y1="1" x2="1" y2="9" stroke="currentColor"/></svg>
</button>
</div>
</div>
<script>
if (window.electronAPI && window.electronAPI.isElectron) {
document.documentElement.classList.add('electron-app', 'reader-page');
document.body.classList.add('electron-app', 'reader-page');
var tb = document.getElementById('titlebar');
tb.style.display = '';
document.getElementById('titlebar-min').onclick = function() { window.electronAPI.windowMinimize(); };
document.getElementById('titlebar-max').onclick = function() { window.electronAPI.windowMaximize(); };
document.getElementById('titlebar-close').onclick = function() { window.electronAPI.windowClose(); };
window.electronAPI.onMaximizeChange(function(isMax) {
var btn = document.getElementById('titlebar-max');
btn.title = isMax ? '还原' : '最大化';
btn.innerHTML = isMax
? '<svg viewBox="0 0 10 10"><rect x="2.5" y="0" width="7" height="7" stroke="currentColor" fill="none"/><rect x="0" y="2.5" width="7" height="7" stroke="currentColor" fill="var(--toolbar-bg, #fff)"/></svg>'
: '<svg viewBox="0 0 10 10"><rect x="1" y="1" width="8" height="8" stroke="currentColor" fill="none"/></svg>';
});
}
</script>
<div class="reading-progress"><div class="reading-progress__bar" id="readingProgressBar"></div></div>
<div class="reading-progress__text" id="readingProgressText">0%</div>
<div class="right-toolbar">
<a id="backToShelfBtn" class="toolbar-link" href="./index.html" title="返回书架">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
<span>书架</span>
</a>
<div class="toolbar-divider"></div>
<button id="tocToggleBtn" title="目录">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3.01" y2="6"></line><line x1="3" y1="12" x2="3.01" y2="12"></line><line x1="3" y1="18" x2="3.01" y2="18"></line></svg>
<span>目录</span>
</button>
<button id="bookmarkListBtn" title="书签">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"></path></svg>
<span>书签</span>
</button>
<button id="fontIncreaseBtn" title="增大字体">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 7V5h16v2"/><path d="M12 5v14"/><path d="M8 19h8"/><path d="M17 11h4"/><path d="M19 9v4"/></svg>
<span>增大</span>
</button>
<button id="fontDecreaseBtn" title="减小字体">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 7V5h16v2"/><path d="M12 5v14"/><path d="M8 19h8"/><path d="M17 11h4"/></svg>
<span>减小</span>
</button>
<div class="toolbar-divider"></div>
<button id="themeToggle" title="切换日/夜间模式">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg>
<span>夜间</span>
</button>
<div class="toolbar-divider"></div>
<button id="addBookmarkBtn" title="添加书签">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"></path><line x1="12" y1="7" x2="12" y2="13"></line><line x1="9" y1="10" x2="15" y2="10"></line></svg>
<span>书签</span>
</button>
<button id="saveProgressBtn" title="手动保存进度">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"></path><polyline points="17 21 17 13 7 13 7 21"></polyline><polyline points="7 3 7 8 15 8"></polyline></svg>
<span>保存</span>
</button>
<div class="toolbar-divider"></div>
<button id="settingsBtn" title="设置">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="3"></circle>
<path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 1 1-4 0v-.09a1.65 1.65 0 0 0-1-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 5 15.4a1.65 1.65 0 0 0-1.51-1H3.4a2 2 0 1 1 0-4h.09A1.65 1.65 0 0 0 5 8.49a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 8.49 5c.26 0 .51-.05.74-.15A1.65 1.65 0 0 0 10.74 3.4V3.31a2 2 0 1 1 4 0v.09c0 .65.38 1.24.97 1.51.23.1.48.15.74.15.65 0 1.24-.38 1.51-.97l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06c-.47.47-.6 1.18-.33 1.82.1.23.15.48.15.74 0 .65.38 1.24.97 1.51.23.1.48.15.74.15h.09a2 2 0 1 1 0 4h-.09c-.65 0-1.24.38-1.51.97Z"></path>
</svg>
<span>设置</span>
</button>
</div>
<div class="container">
<aside class="sidebar" id="sidebar">
<div class="bookshelf-view">
<div class="bookshelf">
<div style="font-weight:700">书架</div>
<div id="bookshelfList"></div>
</div>
<button id="refreshBookshelfBtn">刷新书架</button>
</div>
<div class="toc-view">
<div style="padding:12px;border-bottom:1px solid var(--border-color); flex-shrink: 0;">
<div style="font-weight:700">目录</div>
</div>
<div class="chapter-list-container">
<div id="toc" class="chapter-list"></div>
</div>
</div>
<div class="bookmark-view">
<div style="padding:12px;border-bottom:1px solid var(--border-color); flex-shrink: 0;">
<div style="font-weight:700; display: flex; justify-content: space-between; align-items: center;">
<span>书签</span>
<button id="clearAllBookmarksBtn" style="background: none; border: 1px solid var(--border-color); color: var(--muted); padding: 4px 8px; border-radius: 4px; font-size: 12px; cursor: pointer;" title="清空所有书签">清空</button>
</div>
</div>
<div class="chapter-list-container">
<div id="bookmarkList" class="chapter-list"></div>
</div>
</div>
</aside>
<main class="main">
<div id="reader" class="reader">
<div id="book-meta"></div>
<div id="readerInner">
<h1>欢迎使用本地电子书阅读器</h1>
<p class="muted">请通过书架页面选择一本书籍开始阅读。</p>
</div>
<div id="chapter-nav"></div>
<div id="save-indicator">已保存</div>
</div>
</main>
</div>
<!-- Settings modal -->
<div id="settingsMask" class="settings-mask">
<div id="settingsModal" class="settings-modal">
<div class="settings-header">
<h2 class="settings-title">阅读设置</h2>
<button id="settingsClose" class="settings-close">×</button>
</div>
<!-- Settings Navigation -->
<div class="settings-nav">
<button class="settings-nav-item active" data-category="reading">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path>
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path>
</svg>
<span>阅读体验</span>
</button>
<button class="settings-nav-item" data-category="shortcuts">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect>
<line x1="8" y1="21" x2="16" y2="21"></line>
<line x1="12" y1="17" x2="12" y2="21"></line>
</svg>
<span>快捷键</span>
</button>
<button class="settings-nav-item" data-category="advanced">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="3"></circle>
<path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 1 1-4 0v-.09a1.65 1.65 0 0 0-1-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 5 15.4a1.65 1.65 0 0 0-1.51-1H3.4a2 2 0 1 1 0-4h.09A1.65 1.65 0 0 0 5 8.49a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 8.49 5c.26 0 .51-.05.74-.15A1.65 1.65 0 0 0 10.74 3.4V3.31a2 2 0 1 1 4 0v.09c0 .65.38 1.24.97 1.51.23.1.48.15.74.15.65 0 1.24-.38 1.51-.97l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06c-.47.47-.6 1.18-.33 1.82.1.23.15.48.15.74 0 .65.38 1.24.97 1.51.23.1.48.15.74.15h.09a2 2 0 1 1 0 4h-.09c-.65 0-1.24.38-1.51.97Z"></path>
</svg>
<span>高级功能</span>
</button>
</div>
<div class="settings-content">
<!-- 阅读体验设置 -->
<div class="settings-category" id="category-reading">
<div class="settings-category-header">
<svg class="settings-category-icon" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path>
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path>
</svg>
<h3>阅读体验</h3>
</div>
<div class="settings-section">
<div class="settings-subsection">
<h4>排版调整</h4>
<div class="settings-row">
<span class="settings-label">页宽</span>
<div class="settings-control">
<input type="range" id="pageWidthInput" class="settings-slider" min="400" max="2000" step="10" value="800">
<span id="pageWidthVal" class="settings-value">800px</span>
</div>
</div>
<div class="settings-row">
<span class="settings-label">页边距(左右)</span>
<div class="settings-control">
<input type="range" id="pageMarginInput" class="settings-slider" min="10" max="150" step="2" value="40">
<span id="pageMarginVal" class="settings-value">40px</span>
</div>
</div>
<div class="settings-row">
<span class="settings-label">行距</span>
<div class="settings-control">
<input type="range" id="lineHeightInput" class="settings-slider" min="1.0" max="3.5" step="0.05" value="1.8">
<span id="lineHeightVal" class="settings-value">1.8</span>
</div>
</div>
<div class="settings-row">
<span class="settings-label">段落间距</span>
<div class="settings-control">
<input type="range" id="paraSpacingInput" class="settings-slider" min="0.2" max="4" step="0.05" value="1">
<span id="paraSpacingVal" class="settings-value">1</span>
</div>
</div>
<div class="settings-row">
<span class="settings-label">字间距</span>
<div class="settings-control">
<input type="range" id="letterSpacingInput" class="settings-slider" min="0" max="5" step="0.05" value="0.2">
<span id="letterSpacingVal" class="settings-value">0.2px</span>
</div>
</div>
</div>
<div class="settings-subsection">
<h4>显示设置</h4>
<div class="settings-row">
<span class="settings-label">当前字体大小</span>
<div class="settings-control">
<span id="currentFontSize" class="settings-info">18px</span>
<div class="settings-button-group">
<button class="settings-mini-btn" onclick="window.changeFontSize && window.changeFontSize(-1)">-</button>
<button class="settings-mini-btn" onclick="window.changeFontSize && window.changeFontSize(1)">+</button>
</div>
</div>
</div>
<div class="settings-row">
<span class="settings-label">当前主题</span>
<div class="settings-control">
<span id="currentTheme" class="settings-info">日间模式</span>
<button class="settings-mini-btn" onclick="window.toggleTheme && window.toggleTheme()">切换</button>
</div>
</div>
<div class="settings-row">
<span class="settings-label">顶部进度条</span>
<div class="settings-control">
<label class="toggle-switch">
<input type="checkbox" id="progressBarToggle" checked />
<span class="toggle-slider"></span>
</label>
</div>
</div>
</div>
<div class="settings-subsection">
<h4>字体设置</h4>
<div class="settings-row">
<span class="settings-label">阅读字体</span>
<div class="settings-control">
<select id="fontSelector" class="settings-select">
<!-- 字体选项由JS动态生成 -->
</select>
</div>
</div>
<div class="settings-row font-upload-row">
<span class="settings-label">自定义字体</span>
<div class="settings-control">
<input type="file" id="fontFileInput" accept=".ttf,.otf,.woff,.woff2" hidden />
<button id="uploadFontBtn" class="settings-mini-btn upload-font-btn">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
<polyline points="17 8 12 3 7 8"></polyline>
<line x1="12" y1="3" x2="12" y2="15"></line>
</svg>
上传
</button>
<span id="fontUploadStatus" class="font-upload-status"></span>
</div>
</div>
</div>
<div class="settings-actions">
<button id="resetReadingPrefsBtn" class="settings-reset-btn">恢复默认设置</button>
</div>
</div>
</div>
<!-- 操作指南 -->
<div class="settings-category" id="category-shortcuts" style="display: none;">
<div class="settings-category-header">
<svg class="settings-category-icon" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect>
<line x1="8" y1="21" x2="16" y2="21"></line>
<line x1="12" y1="17" x2="12" y2="21"></line>
</svg>
<h3>键盘快捷键</h3>
</div>
<div class="settings-section">
<div class="keyboard-shortcuts">
<div class="shortcut-category">
<h5>导航操作</h5>
<div class="shortcut-grid">
<div class="shortcut-item">
<span>上一章</span>
<span class="shortcut-key">←</span>
</div>
<div class="shortcut-item">
<span>下一章</span>
<span class="shortcut-key">→</span>
</div>
<div class="shortcut-item">
<span>快速翻页</span>
<span class="shortcut-key">空格</span>
</div>
</div>
</div>
<div class="shortcut-category">
<h5>阅读调整</h5>
<div class="shortcut-grid">
<div class="shortcut-item">
<span>增大字号</span>
<span class="shortcut-key">+</span>
</div>
<div class="shortcut-item">
<span>减小字号</span>
<span class="shortcut-key">-</span>
</div>
<div class="shortcut-item">
<span>切换主题</span>
<span class="shortcut-key">T</span>
</div>
</div>
</div>
<div class="shortcut-category">
<h5>书签与保存</h5>
<div class="shortcut-grid">
<div class="shortcut-item">
<span>添加书签</span>
<span class="shortcut-key">B</span>
</div>
<div class="shortcut-item">
<span>保存进度</span>
<span class="shortcut-key">S</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 功能预览 -->
<div class="settings-category" id="category-advanced" style="display: none;">
<div class="settings-category-header">
<svg class="settings-category-icon" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="3"></circle>
<path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 1 1-4 0v-.09a1.65 1.65 0 0 0-1-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 5 15.4a1.65 1.65 0 0 0-1.51-1H3.4a2 2 0 1 1 0-4h.09A1.65 1.65 0 0 0 5 8.49a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 8.49 5c.26 0 .51-.05.74-.15A1.65 1.65 0 0 0 10.74 3.4V3.31a2 2 0 1 1 4 0v.09c0 .65.38 1.24.97 1.51.23.1.48.15.74.15.65 0 1.24-.38 1.51-.97l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06c-.47.47-.6 1.18-.33 1.82.1.23.15.48.15.74 0 .65.38 1.24.97 1.51.23.1.48.15.74.15h.09a2 2 0 1 1 0 4h-.09c-.65 0-1.24.38-1.51.97Z"></path>
</svg>
<h3>高级功能</h3>
</div>
<div class="settings-section">
<div class="feature-preview">
<div class="feature-category">
<h5>📖 排版增强</h5>
<ul class="feature-list">
<li>行距调整</li>
<li>两端对齐</li>
<li>页边距设置</li>
<li>首行缩进控制</li>
</ul>
</div>
<div class="feature-category">
<h5>🎨 主题定制</h5>
<ul class="feature-list">
<li>自定义主题色</li>
<li>护眼模式</li>
<li>背景纹理</li>
<li>字体选择</li>
</ul>
</div>
<div class="feature-category">
<h5>📊 阅读统计</h5>
<ul class="feature-list">
<li>阅读时长统计</li>
<li>阅读进度分析</li>
<li>阅读习惯报告</li>
<li>目标设定</li>
</ul>
</div>
<div class="feature-category">
<h5>🔧 更多工具</h5>
<ul class="feature-list">
<li>笔记标注</li>
<li>全文搜索</li>
<li>导出功能</li>
<li>云端同步</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Main Application Script -->
<script type="module" src="src/js/app.js"></script>
</body>
</html>