962 lines
39 KiB
HTML
962 lines
39 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
|
||
<meta http-equiv="Pragma" content="no-cache">
|
||
<meta http-equiv="Expires" content="0">
|
||
<title>番外·后宫的日常 - 阿拉德:剑之回响</title>
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||
<style>
|
||
:root {
|
||
--bg-primary: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
|
||
--text-primary: #e0e0e0;
|
||
--text-secondary: #888;
|
||
--accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
--border-color: rgba(255,255,255,0.1);
|
||
--btn-bg: rgba(255,255,255,0.1);
|
||
--btn-hover: rgba(255,255,255,0.2);
|
||
}
|
||
|
||
[data-theme="light"] {
|
||
--bg-primary: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
||
--text-primary: #333;
|
||
--text-secondary: #666;
|
||
--border-color: rgba(0,0,0,0.1);
|
||
--btn-bg: rgba(0,0,0,0.05);
|
||
--btn-hover: rgba(0,0,0,0.1);
|
||
}
|
||
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
font-family: 'Noto Serif SC', serif;
|
||
background: var(--bg-primary);
|
||
color: var(--text-primary);
|
||
line-height: 1.8;
|
||
min-height: 100vh;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.container {
|
||
max-width: 800px;
|
||
margin: 0 auto;
|
||
padding: 20px;
|
||
padding-bottom: 120px;
|
||
}
|
||
|
||
/* 顶部导航 */
|
||
.top-nav {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
background: rgba(0,0,0,0.3);
|
||
backdrop-filter: blur(10px);
|
||
border-bottom: 1px solid var(--border-color);
|
||
z-index: 1000;
|
||
padding: 10px 20px;
|
||
}
|
||
|
||
.top-nav-content {
|
||
max-width: 800px;
|
||
margin: 0 auto;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
}
|
||
|
||
.nav-link {
|
||
color: var(--text-primary);
|
||
text-decoration: none;
|
||
font-family: 'Noto Sans SC', sans-serif;
|
||
font-size: 14px;
|
||
padding: 8px 16px;
|
||
background: var(--btn-bg);
|
||
border: 1px solid var(--border-color);
|
||
border-radius: 8px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.nav-link:hover {
|
||
background: var(--btn-hover);
|
||
}
|
||
|
||
.chapter-header {
|
||
text-align: center;
|
||
padding: 80px 0 40px;
|
||
border-bottom: 1px solid var(--border-color);
|
||
margin-bottom: 40px;
|
||
}
|
||
|
||
.chapter-number {
|
||
font-size: 14px;
|
||
color: var(--text-secondary);
|
||
letter-spacing: 4px;
|
||
text-transform: uppercase;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.chapter-title {
|
||
font-size: 32px;
|
||
font-weight: 700;
|
||
background: var(--accent-gradient);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.chapter-meta {
|
||
font-size: 14px;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.chapter-content {
|
||
font-size: 18px;
|
||
line-height: 2;
|
||
text-align: justify;
|
||
}
|
||
|
||
.chapter-content p {
|
||
margin-bottom: 1.5em;
|
||
text-indent: 2em;
|
||
}
|
||
|
||
.chapter-content p:first-of-type::first-letter {
|
||
font-size: 3em;
|
||
float: left;
|
||
line-height: 1;
|
||
margin-right: 8px;
|
||
margin-top: -5px;
|
||
background: var(--accent-gradient);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
font-weight: 700;
|
||
}
|
||
|
||
/* 固定底部导航 */
|
||
.fixed-nav {
|
||
position: fixed;
|
||
bottom: 0;
|
||
left: 0;
|
||
right: 0;
|
||
background: rgba(0,0,0,0.3);
|
||
backdrop-filter: blur(10px);
|
||
border-top: 1px solid var(--border-color);
|
||
z-index: 1000;
|
||
padding: 15px 20px;
|
||
}
|
||
|
||
.fixed-nav-content {
|
||
max-width: 800px;
|
||
margin: 0 auto;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
}
|
||
|
||
.nav-btn {
|
||
padding: 12px 24px;
|
||
background: var(--btn-bg);
|
||
border: 1px solid var(--border-color);
|
||
border-radius: 8px;
|
||
color: var(--text-primary);
|
||
text-decoration: none;
|
||
transition: all 0.3s ease;
|
||
font-family: 'Noto Sans SC', sans-serif;
|
||
font-size: 14px;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.nav-btn:hover {
|
||
background: var(--btn-hover);
|
||
transform: translateY(-2px);
|
||
}
|
||
|
||
.nav-btn.disabled {
|
||
opacity: 0.3;
|
||
cursor: not-allowed;
|
||
pointer-events: none;
|
||
}
|
||
|
||
/* 右侧滚动按钮 */
|
||
.scroll-buttons {
|
||
position: fixed;
|
||
right: 20px;
|
||
bottom: 90px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 10px;
|
||
z-index: 1001;
|
||
}
|
||
|
||
.scroll-btn {
|
||
width: 40px;
|
||
height: 40px;
|
||
border-radius: 8px;
|
||
background: var(--btn-bg);
|
||
border: 1px solid var(--border-color);
|
||
color: var(--text-primary);
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 16px;
|
||
transition: all 0.3s ease;
|
||
font-family: 'Noto Sans SC', sans-serif;
|
||
}
|
||
|
||
.scroll-btn:hover {
|
||
background: var(--btn-hover);
|
||
}
|
||
|
||
/* TTS控制面板 */
|
||
.tts-panel {
|
||
position: fixed;
|
||
left: 20px;
|
||
bottom: 90px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 10px;
|
||
z-index: 1001;
|
||
background: rgba(0,0,0,0.5);
|
||
backdrop-filter: blur(10px);
|
||
border-radius: 12px;
|
||
border: 1px solid var(--border-color);
|
||
padding: 15px;
|
||
min-width: 180px;
|
||
}
|
||
|
||
.tts-title {
|
||
font-size: 12px;
|
||
color: var(--text-secondary);
|
||
text-transform: uppercase;
|
||
letter-spacing: 2px;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.tts-controls {
|
||
display: flex;
|
||
gap: 8px;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.tts-btn {
|
||
width: 36px;
|
||
height: 36px;
|
||
border-radius: 8px;
|
||
background: var(--btn-bg);
|
||
border: 1px solid var(--border-color);
|
||
color: var(--text-primary);
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 14px;
|
||
transition: all 0.3s ease;
|
||
font-family: 'Noto Sans SC', sans-serif;
|
||
}
|
||
|
||
.tts-btn:hover {
|
||
background: var(--btn-hover);
|
||
}
|
||
|
||
.tts-btn.active {
|
||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
border-color: #667eea;
|
||
}
|
||
|
||
.tts-progress {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.tts-progress-bar {
|
||
flex: 1;
|
||
height: 4px;
|
||
background: var(--btn-bg);
|
||
border-radius: 2px;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.tts-progress-fill {
|
||
height: 100%;
|
||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
width: 0%;
|
||
transition: width 0.1s ease;
|
||
}
|
||
|
||
.tts-time {
|
||
font-size: 12px;
|
||
color: var(--text-secondary);
|
||
font-family: 'Noto Sans SC', sans-serif;
|
||
min-width: 80px;
|
||
}
|
||
|
||
.tts-speed {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
|
||
.tts-speed-label {
|
||
font-size: 12px;
|
||
color: var(--text-secondary);
|
||
font-family: 'Noto Sans SC', sans-serif;
|
||
}
|
||
|
||
.tts-speed-select {
|
||
padding: 4px 8px;
|
||
background: var(--btn-bg);
|
||
border: 1px solid var(--border-color);
|
||
border-radius: 4px;
|
||
color: var(--text-primary);
|
||
font-size: 12px;
|
||
cursor: pointer;
|
||
font-family: 'Noto Sans SC', sans-serif;
|
||
}
|
||
|
||
@media (max-width: 600px) {
|
||
.tts-panel {
|
||
left: 10px;
|
||
right: 10px;
|
||
bottom: 75px;
|
||
min-width: auto;
|
||
padding: 12px;
|
||
width: auto;
|
||
}
|
||
|
||
.tts-btn {
|
||
width: 32px;
|
||
height: 32px;
|
||
font-size: 12px;
|
||
}
|
||
|
||
.tts-title {
|
||
font-size: 11px;
|
||
}
|
||
|
||
.tts-speed-label {
|
||
font-size: 11px;
|
||
}
|
||
|
||
.tts-speed-select {
|
||
padding: 3px 6px;
|
||
font-size: 11px;
|
||
}
|
||
|
||
.tts-time {
|
||
font-size: 11px;
|
||
min-width: 60px;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 400px) {
|
||
.tts-panel {
|
||
bottom: 70px;
|
||
padding: 10px;
|
||
}
|
||
|
||
.tts-controls {
|
||
gap: 6px;
|
||
}
|
||
|
||
.tts-btn {
|
||
width: 28px;
|
||
height: 28px;
|
||
font-size: 11px;
|
||
}
|
||
}
|
||
|
||
/* 侧边栏 - 标题固定,内容滚动 */
|
||
.sidebar {
|
||
position: fixed;
|
||
right: 20px;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
background: rgba(0,0,0,0.5);
|
||
backdrop-filter: blur(10px);
|
||
border-radius: 12px;
|
||
border: 1px solid var(--border-color);
|
||
width: 200px;
|
||
max-height: 70vh;
|
||
z-index: 999;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.sidebar-title {
|
||
font-size: 14px;
|
||
color: var(--text-secondary);
|
||
text-transform: uppercase;
|
||
letter-spacing: 2px;
|
||
padding: 15px 20px;
|
||
border-bottom: 1px solid var(--border-color);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.sidebar-content {
|
||
overflow-y: auto;
|
||
padding: 10px 20px 20px;
|
||
flex: 1;
|
||
scrollbar-width: thin;
|
||
scrollbar-color: transparent transparent;
|
||
transition: scrollbar-color 0.3s ease;
|
||
}
|
||
|
||
.sidebar-content:hover {
|
||
scrollbar-color: rgba(255,255,255,0.3) transparent;
|
||
}
|
||
|
||
.sidebar-content::-webkit-scrollbar {
|
||
width: 6px;
|
||
}
|
||
|
||
.sidebar-content::-webkit-scrollbar-track {
|
||
background: transparent;
|
||
}
|
||
|
||
.sidebar-content::-webkit-scrollbar-thumb {
|
||
background: transparent;
|
||
border-radius: 3px;
|
||
transition: background 0.3s ease;
|
||
}
|
||
|
||
.sidebar-content:hover::-webkit-scrollbar-thumb {
|
||
background: rgba(255,255,255,0.3);
|
||
}
|
||
|
||
.sidebar-content:hover::-webkit-scrollbar-thumb:hover {
|
||
background: rgba(255,255,255,0.5);
|
||
}
|
||
|
||
[data-theme="light"] .sidebar-content:hover {
|
||
scrollbar-color: rgba(0,0,0,0.3) transparent;
|
||
}
|
||
|
||
[data-theme="light"] .sidebar-content:hover::-webkit-scrollbar-thumb {
|
||
background: rgba(0,0,0,0.3);
|
||
}
|
||
|
||
[data-theme="light"] .sidebar-content:hover::-webkit-scrollbar-thumb:hover {
|
||
background: rgba(0,0,0,0.5);
|
||
}
|
||
|
||
.sidebar-chapter {
|
||
display: block;
|
||
padding: 8px 0;
|
||
color: #aaa;
|
||
text-decoration: none;
|
||
font-size: 13px;
|
||
border-bottom: 1px solid rgba(255,255,255,0.05);
|
||
transition: all 0.3s ease;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.sidebar-chapter:hover {
|
||
color: #667eea;
|
||
}
|
||
|
||
.sidebar-chapter.current {
|
||
color: #667eea;
|
||
font-weight: 600;
|
||
}
|
||
|
||
@media (max-width: 1200px) {
|
||
.sidebar {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 600px) {
|
||
.chapter-title {
|
||
font-size: 24px;
|
||
}
|
||
|
||
.chapter-content {
|
||
font-size: 16px;
|
||
}
|
||
|
||
.fixed-nav-content {
|
||
gap: 10px;
|
||
}
|
||
|
||
.nav-btn {
|
||
padding: 10px 15px;
|
||
font-size: 12px;
|
||
}
|
||
|
||
.scroll-buttons {
|
||
right: 10px;
|
||
bottom: 80px;
|
||
}
|
||
|
||
.scroll-btn {
|
||
width: 36px;
|
||
height: 36px;
|
||
}
|
||
}
|
||
|
||
/* 滚动条样式 */
|
||
.sidebar::-webkit-scrollbar {
|
||
width: 4px;
|
||
}
|
||
|
||
.sidebar::-webkit-scrollbar-track {
|
||
background: transparent;
|
||
}
|
||
|
||
.sidebar::-webkit-scrollbar-thumb {
|
||
background: rgba(255,255,255,0.2);
|
||
border-radius: 2px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<!-- 顶部导航 -->
|
||
<nav class="top-nav">
|
||
<div class="top-nav-content">
|
||
<a href="../index.html" class="nav-link">返回首页</a>
|
||
<button class="nav-link" id="themeToggle">切换主题</button>
|
||
</div>
|
||
</nav>
|
||
|
||
<div class="container">
|
||
<header class="chapter-header">
|
||
<div class="chapter-number">Chapter 116</div>
|
||
<h1 class="chapter-title">{{CHAPTER_TITLE}}</h1>
|
||
</header>
|
||
|
||
<article class="chapter-content">
|
||
<p>清晨的阳光透过窗帘洒进房间,林克迷迷糊糊地睁开眼睛。</p>
|
||
<p>还没等他完全清醒,一个柔软的身躯就钻进了他的被窝。</p>
|
||
<p>"林克哥哥,起床啦!"敏泰的声音在耳边响起,带着少女特有的活力。</p>
|
||
<p>"嗯...几点了?"林克揉了揉眼睛。</p>
|
||
<p>"太阳都晒屁股了!大家都等着你吃早餐呢!"</p>
|
||
<p>林克这才注意到,房间里不止敏泰一个人——赛丽亚、帕丽丝、莎兰、奥菲利亚都在门口探头探脑,脸上带着促狭的笑容。</p>
|
||
<p>"你们..."</p>
|
||
<p>"今天是后宫大聚会嘛!"帕丽丝大大咧咧地说,"大家都约好了,要让你好好休息,然后..."</p>
|
||
<p>"然后?"</p>
|
||
<p>"然后陪你一整天!"五人异口同声。</p>
|
||
<p>林克哭笑不得,但心中涌起一股温暖。</p>
|
||
<p>这就是他的家人。</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
||
<p>赛丽亚的旅馆餐厅里,十三位少女围坐在一张巨大的圆桌旁。</p>
|
||
<p>林克坐在主位,左右分别是赛丽亚和敏泰。奥菲利亚、莎兰、帕丽丝、莫纳亨、泽丁、马琳、皇女艾丽婕、米娅、贝奇、艾泽拉依次落座。</p>
|
||
<p>艾丽丝的位置空着,但桌上摆着一副碗筷,仿佛她也在场。</p>
|
||
<p>"今天是我们难得的聚会。"赛丽亚微笑着说,"林克,你一直在冒险,也该好好休息一下了。"</p>
|
||
<p>"没错!"帕丽丝拍着桌子,"再不休息,我们都要被冷落了!"</p>
|
||
<p>"帕丽丝姐姐,你又夸张了。"米娅捂着嘴笑,"林克大哥明明每次都很照顾我们。"</p>
|
||
<p>"哼,照顾是照顾,但时间太少了。"帕丽丝嘟着嘴,"我都要忘记被拥抱的感觉了。"</p>
|
||
<p>"帕丽丝!"众少女同时脸红。</p>
|
||
<p>林克也有些尴尬,但更多的是幸福。</p>
|
||
<p>"好了好了,先吃饭。"赛丽亚打圆场,"今天的早餐是我和敏泰一起做的哦。"</p>
|
||
<p>桌上摆满了各种美食——面包、牛奶、煎蛋、培根、水果沙拉...还有班图族特有的奶酪茶。</p>
|
||
<p>"大家尝尝这个!"敏泰兴奋地说,"这是我从班图族带来的奶酪,超级好喝!"</p>
|
||
<p>林克端起杯子,浓郁的奶香扑鼻而来。他喝了一口,温暖的感觉从胃里蔓延到全身。</p>
|
||
<p>"好喝。"他笑着说。</p>
|
||
<p>敏泰的脸瞬间红了,开心得差点跳起来。</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
||
<p>早餐后,众人来到旅馆后院的草坪上。</p>
|
||
<p>阳光正好,微风轻拂,是个适合休息的好日子。</p>
|
||
<p>"林克,我最近研究了一个新魔法。"莎兰走到林克身边,手中悬浮着一个小小的光球,"想看看吗?"</p>
|
||
<p>"当然。"</p>
|
||
<p>莎兰轻轻一挥手,光球升空,然后炸开,化作无数闪烁的星星。那些星星在空中飞舞,组成了一幅美丽的画面——林克和后宫们的合影。</p>
|
||
<p>"好漂亮!"贝奇惊叹道,"莎兰姐姐好厉害!"</p>
|
||
<p>莎兰的脸微微泛红:"只是...一点小魔法而已。"</p>
|
||
<p>"我也想学!"敏泰举手,"莎兰姐姐,教教我吧!"</p>
|
||
<p>"好呀。"莎兰温柔地笑了,"不过魔法需要天赋和耐心,你要做好心理准备哦。"</p>
|
||
<p>"没问题!我最有耐心了!"</p>
|
||
<p>林克看着这一幕,嘴角不自觉地上扬。</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
||
<p>草坪的另一边,帕丽丝正在和泽丁、马琳切磋。</p>
|
||
<p>"来来来,让我看看你们的实力有没有退步!"帕丽丝活动着手腕,一脸跃跃欲试。</p>
|
||
<p>"帕丽丝姐姐,你太嚣张了!"泽丁握紧拳头,"我可是皇都军的守备队长!"</p>
|
||
<p>"那又怎样?本小姐可是诺斯玛尔的街霸!"</p>
|
||
<p>两人你来我往,打得难解难分。马琳在一旁观战,偶尔出声指点。</p>
|
||
<p>"泽丁,你的出拳速度不够快!"</p>
|
||
<p>"帕丽丝姐姐,你的步伐有漏洞!"</p>
|
||
<p>林克走过去,看着三人切磋。</p>
|
||
<p>"需要指导吗?"他笑着问。</p>
|
||
<p>"林克!"帕丽丝眼睛一亮,"来,让我试试你的实力!"</p>
|
||
<p>"你确定?"林克挑眉,"我可是剑神。"</p>
|
||
<p>"剑神又怎样?本小姐才不怕!"</p>
|
||
<p>林克摇摇头,拔出腰间的细雪之舞。</p>
|
||
<p>"那就...点到为止。"</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
||
<p>一炷香后,帕丽丝躺在草地上,气喘吁吁。</p>
|
||
<p>"你...你是不是放水了?"她不甘心地说。</p>
|
||
<p>"没有。"林克收剑入鞘,"你进步了。"</p>
|
||
<p>帕丽丝翻了个白眼,但嘴角却带着笑意。</p>
|
||
<p>泽丁和马琳也走了过来,脸上满是敬佩。</p>
|
||
<p>"林克大人的实力...真是深不可测。"泽丁感叹。</p>
|
||
<p>"不愧是剑神。"马琳点头。</p>
|
||
<p>林克笑了笑,伸出手将帕丽丝拉了起来。</p>
|
||
<p>"还需要继续努力。"他轻声说。</p>
|
||
<p>帕丽丝的脸红了,但很快恢复了常态:"哼,下次我一定会赢你!"</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
||
<p>下午,皇女艾丽婕拉着林克来到旅馆的二楼。</p>
|
||
<p>"林克,我有件事想和你商量。"她的表情严肃。</p>
|
||
<p>"什么事?"</p>
|
||
<p>"关于...艾丽丝。"艾丽婕说道,"她离开去赎罪,但我们都很担心她。"</p>
|
||
<p>林克沉默了。</p>
|
||
<p>艾丽丝...他心中永远的痛。虽然她被赫尔德控制,但她确实伤害了很多人。</p>
|
||
<p>"我知道她在做什么。"林克轻声说,"她需要这个。"</p>
|
||
<p>"但我们...能不能帮帮她?"艾丽婕问道,"她是我们的姐妹,我们不希望她一个人承受。"</p>
|
||
<p>林克看向艾丽婕,眼中闪过一丝温暖。</p>
|
||
<p>"我也有这个想法。"他说,"等她完成一部分赎罪,我会去找她。"</p>
|
||
<p>"真的?"艾丽婕的眼睛亮了。</p>
|
||
<p>"嗯。"林克点头,"她是我的人,我不会让她一个人。"</p>
|
||
<p>艾丽婕开心地扑进他怀里:"谢谢你,林克!"</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
||
<p>傍晚,夕阳将天空染成了橘红色。</p>
|
||
<p>林克独自站在旅馆门口,看着远处的风景。</p>
|
||
<p>十三位少女在他身后,有的在聊天,有的在玩耍,有的在安静地陪伴。</p>
|
||
<p>这是他的家人,他的牵挂,他的...一切。</p>
|
||
<p>"林克。"赛丽亚走到他身边,轻轻握住他的手,"在想什么?"</p>
|
||
<p>"在想...我是多么幸运。"林克轻声说,"能有你们在身边。"</p>
|
||
<p>赛丽亚笑了,靠在他的肩上:"是我们幸运,能遇到你。"</p>
|
||
<p>其他少女也纷纷围了过来,十三个人挤在一起,看着夕阳慢慢落下。</p>
|
||
<p>"林克。"贝奇突然说,"你以后...还会继续冒险吗?"</p>
|
||
<p>"会。"林克点头,"赫尔德的阴谋还没有结束,还有很多真相需要揭开。"</p>
|
||
<p>"那我们陪你!"众少女异口同声。</p>
|
||
<p>林克看着她们,心中涌起一股暖流。</p>
|
||
<p>"好。"他轻声说,"我们一起。"</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
||
<p>夜幕降临,旅馆里点起了温暖的灯光。</p>
|
||
<p>林克坐在客厅的沙发上,十三位少女围坐在他身边。</p>
|
||
<p>"今天开心吗?"他问。</p>
|
||
<p>"开心!"众少女齐声回答。</p>
|
||
<p>赛丽亚靠在他左边,敏泰靠在他右边。奥菲利亚和莎兰坐在地毯上,帕丽丝和莫纳亨坐在另一张沙发上。泽丁和马琳挤在一起,皇女艾丽婕优雅地坐在椅子上。米娅抱着平板电脑,贝奇和艾泽拉坐在窗台上。</p>
|
||
<p>"林克。"艾泽拉突然开口,"你...后悔吗?"</p>
|
||
<p>"后悔什么?"</p>
|
||
<p>"后悔遇到我们...后悔背负这么多。"</p>
|
||
<p>林克沉默了片刻,然后笑了。</p>
|
||
<p>"不后悔。"他认真地说,"遇到你们,是我这辈子最幸运的事。"</p>
|
||
<p>众少女的眼中闪烁着泪光,但嘴角都带着幸福的笑容。</p>
|
||
<p>"我们也一样。"赛丽亚轻声说,"遇到你...是我们最大的幸运。"</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
||
<p>深夜,林克躺在床上,却睡不着。</p>
|
||
<p>他起身走到窗前,看着星空。</p>
|
||
<p>艾丽丝...你还好吗?</p>
|
||
<p>他拿出一根紫色的发丝,轻轻放在唇边。</p>
|
||
<p>"等你回来..."他轻声说,"我会去找你。"</p>
|
||
<p>窗外,月光如水,洒在这片宁静的土地上。</p>
|
||
<p>明天,又是新的一天。</p>
|
||
<p>新的冒险,新的挑战,在等着他。</p>
|
||
<p>但此刻,他只想享受这份平静。</p>
|
||
<p>因为...他知道,无论前方有什么,他都不是一个人。</p>
|
||
<p>他有她们。</p>
|
||
<p>他的家人。</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0; margin-top: 2em;">(第一百一十六章完)</p>
|
||
<p style="text-align: center; color: var(--text-secondary); text-indent: 0; margin-top: 2em;">(番外·后宫日常 完)</p>
|
||
|
||
</article>
|
||
</div>
|
||
|
||
<!-- 固定底部导航 -->
|
||
<nav class="fixed-nav">
|
||
<div class="fixed-nav-content">
|
||
<a href="chapter-115.html" class="nav-btn ">上一章</a>
|
||
<a href="../chapters.html" class="nav-btn">目录</a>
|
||
<a href="chapter-117.html" class="nav-btn ">下一章</a>
|
||
</div>
|
||
</nav>
|
||
|
||
<!-- 右侧滚动按钮 -->
|
||
<div class="scroll-buttons">
|
||
<button class="scroll-btn" id="scrollTop" title="回到顶部">顶</button>
|
||
<button class="scroll-btn" id="scrollBottom" title="回到底部">底</button>
|
||
</div>
|
||
|
||
<!-- TTS语音朗读面板 -->
|
||
<div class="tts-panel" id="ttsPanel">
|
||
<div class="tts-title">语音朗读</div>
|
||
<div class="tts-controls">
|
||
<button class="tts-btn" id="ttsPlay" title="播放">▶</button>
|
||
<button class="tts-btn" id="ttsPause" title="暂停">⏸</button>
|
||
<button class="tts-btn" id="ttsStop" title="停止">⏹</button>
|
||
</div>
|
||
<div class="tts-progress">
|
||
<div class="tts-progress-bar">
|
||
<div class="tts-progress-fill" id="ttsProgressFill"></div>
|
||
</div>
|
||
<div class="tts-time" id="ttsTime">0 / 0</div>
|
||
</div>
|
||
<div class="tts-speed">
|
||
<span class="tts-speed-label">速度:</span>
|
||
<select class="tts-speed-select" id="ttsSpeed">
|
||
<option value="0.5">慢速</option>
|
||
<option value="0.75">较慢</option>
|
||
<option value="1" selected>正常</option>
|
||
<option value="1.25">较快</option>
|
||
<option value="1.5">快速</option>
|
||
<option value="2">极速</option>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 侧边栏章节导航 -->
|
||
<aside class="sidebar">
|
||
<div class="sidebar-title">章节导航</div>
|
||
<div class="sidebar-content" id="sidebarContent">
|
||
<a href="chapter-86.html" class="sidebar-chapter ">第86章:普鲁兹发电站·闪电之帕特里斯</a>
|
||
<a href="chapter-87.html" class="sidebar-chapter ">第87章:特伦斯发电站·熔岩之萨姆</a>
|
||
<a href="chapter-88.html" class="sidebar-chapter ">第88章:格兰迪发电站·虚空之弗曼</a>
|
||
<a href="chapter-89.html" class="sidebar-chapter ">第89章:安图恩攻坚战·黑雾之源</a>
|
||
<a href="chapter-90.html" class="sidebar-chapter ">第90章:安图恩攻坚战·震颤的大地</a>
|
||
<a href="chapter-91.html" class="sidebar-chapter ">第91章:安图恩攻坚战·擎天之柱</a>
|
||
<a href="chapter-92.html" class="sidebar-chapter ">第92章:安图恩攻坚战·黑色火山</a>
|
||
<a href="chapter-93.html" class="sidebar-chapter ">第93章:安图恩攻坚战·使徒陨落</a>
|
||
<a href="chapter-94.html" class="sidebar-chapter ">第94章:克洛诺斯岛·寂静城的召唤</a>
|
||
<a href="chapter-95.html" class="sidebar-chapter ">第95章:寂静城的秘密</a>
|
||
<a href="chapter-96.html" class="sidebar-chapter ">第96章:番外·贝奇的献身</a>
|
||
<a href="chapter-97.html" class="sidebar-chapter ">第97章:光之舞会</a>
|
||
<a href="chapter-98.html" class="sidebar-chapter ">第98章:钢铁之臂</a>
|
||
<a href="chapter-99.html" class="sidebar-chapter ">第99章:能源熔炉</a>
|
||
<a href="chapter-100.html" class="sidebar-chapter ">第100章:王之书库</a>
|
||
<a href="chapter-101.html" class="sidebar-chapter ">第101章:不灭回廊</a>
|
||
<a href="chapter-102.html" class="sidebar-chapter ">第102章:机械王座</a>
|
||
<a href="chapter-103.html" class="sidebar-chapter ">第103章:番外·寂静城的早晨</a>
|
||
<a href="chapter-104.html" class="sidebar-chapter ">第104章:番外·贝奇与艾泽拉</a>
|
||
<a href="chapter-105.html" class="sidebar-chapter ">第105章:番外·卢克的嘱托</a>
|
||
<a href="chapter-106.html" class="sidebar-chapter ">第106章:时空之门的召唤</a>
|
||
<a href="chapter-107.html" class="sidebar-chapter ">第107章:格兰之火</a>
|
||
<a href="chapter-108.html" class="sidebar-chapter ">第108章:瘟疫之源</a>
|
||
<a href="chapter-109.html" class="sidebar-chapter ">第109章:卡勒特之初</a>
|
||
<a href="chapter-110.html" class="sidebar-chapter ">第110章:无法地带</a>
|
||
<a href="chapter-111.html" class="sidebar-chapter ">第111章:暗黑圣战</a>
|
||
<a href="chapter-112.html" class="sidebar-chapter ">第112章:昔日悲鸣</a>
|
||
<a href="chapter-113.html" class="sidebar-chapter ">第113章:凛冬</a>
|
||
<a href="chapter-114.html" class="sidebar-chapter ">第114章:迷之觉悟</a>
|
||
<a href="chapter-115.html" class="sidebar-chapter ">第115章:番外·艾丽丝的抉择</a>
|
||
<a href="chapter-116.html" class="sidebar-chapter current">第116章:番外·后宫的日常</a>
|
||
<a href="chapter-117.html" class="sidebar-chapter ">第117章:番外·与赛丽亚的约会</a>
|
||
<a href="chapter-118.html" class="sidebar-chapter ">第118章:番外·与奥菲利亚的重逢</a>
|
||
<a href="chapter-119.html" class="sidebar-chapter ">第119章:番外·与敏泰的雪山之行</a>
|
||
<a href="chapter-120.html" class="sidebar-chapter ">第120章:番外·与莎兰的魔法时光</a>
|
||
<a href="chapter-121.html" class="sidebar-chapter ">第121章:番外·与帕丽丝的格斗训练</a>
|
||
<a href="chapter-122.html" class="sidebar-chapter ">第122章:番外·与莫纳亨的念动力</a>
|
||
<a href="chapter-123.html" class="sidebar-chapter ">第123章:番外·与泽丁的天界巡逻</a>
|
||
<a href="chapter-124.html" class="sidebar-chapter ">第124章:番外·与马琳的骑士之道</a>
|
||
<a href="chapter-125.html" class="sidebar-chapter ">第125章:番外·与皇女的皇家约会</a>
|
||
<a href="chapter-126.html" class="sidebar-chapter ">第126章:番外·与米娅的工坊时光</a>
|
||
<a href="chapter-127.html" class="sidebar-chapter ">第127章:番外·与贝奇的人造之心</a>
|
||
<a href="chapter-128.html" class="sidebar-chapter ">第128章:番外·与艾泽拉的守护誓言</a>
|
||
<a href="chapter-129.html" class="sidebar-chapter ">第129章:魔界的召唤</a>
|
||
<a href="chapter-130.html" class="sidebar-chapter ">第130章:魔界营地</a>
|
||
<a href="chapter-131.html" class="sidebar-chapter ">第131章:凯蒂的指引</a>
|
||
<a href="chapter-132.html" class="sidebar-chapter ">第132章:营地危机</a>
|
||
<a href="chapter-133.html" class="sidebar-chapter ">第133章:尼梅尔的心意</a>
|
||
<a href="chapter-134.html" class="sidebar-chapter ">第134章:中央公园</a>
|
||
<a href="chapter-135.html" class="sidebar-chapter ">第135章:剑圣的试炼</a>
|
||
<a href="chapter-136.html" class="sidebar-chapter ">第136章:地轨中心</a>
|
||
<a href="chapter-137.html" class="sidebar-chapter ">第137章:魔剑士阿斯兰</a>
|
||
<a href="chapter-138.html" class="sidebar-chapter ">第138章:泪目之眼</a>
|
||
<a href="chapter-139.html" class="sidebar-chapter ">第139章:使徒会晤</a>
|
||
<a href="chapter-140.html" class="sidebar-chapter ">第140章:复仇之剑</a>
|
||
<a href="chapter-141.html" class="sidebar-chapter ">第141章:寂静城再访</a>
|
||
<a href="chapter-142.html" class="sidebar-chapter ">第142章:时间之钥</a>
|
||
<a href="chapter-143.html" class="sidebar-chapter ">第143章:翡翠梦魇</a>
|
||
<a href="chapter-144.html" class="sidebar-chapter ">第144章:诅咒的守护者</a>
|
||
<a href="chapter-145.html" class="sidebar-chapter ">第145章:精灵的誓言</a>
|
||
<a href="chapter-146.html" class="sidebar-chapter ">第146章:深渊之眼</a>
|
||
|
||
</div>
|
||
</aside>
|
||
|
||
<script>
|
||
// 记录阅读进度
|
||
let readChapters = JSON.parse(localStorage.getItem('readChapters') || '[]');
|
||
if (!readChapters.includes(116)) {
|
||
readChapters.push({{CHAPTER_ID}});
|
||
localStorage.setItem('readChapters', JSON.stringify(readChapters));
|
||
}
|
||
|
||
// 主题切换
|
||
const themeToggle = document.getElementById('themeToggle');
|
||
const savedTheme = localStorage.getItem('theme') || 'dark';
|
||
document.documentElement.setAttribute('data-theme', savedTheme);
|
||
themeToggle.textContent = savedTheme === 'dark' ? '浅色' : '深色';
|
||
|
||
themeToggle.addEventListener('click', () => {
|
||
const currentTheme = document.documentElement.getAttribute('data-theme');
|
||
const newTheme = currentTheme === 'dark' ? 'light' : 'dark';
|
||
document.documentElement.setAttribute('data-theme', newTheme);
|
||
localStorage.setItem('theme', newTheme);
|
||
themeToggle.textContent = newTheme === 'dark' ? '浅色' : '深色';
|
||
});
|
||
|
||
// 滚动到顶部
|
||
document.getElementById('scrollTop').addEventListener('click', () => {
|
||
window.scrollTo({ top: 0, behavior: 'smooth' });
|
||
});
|
||
|
||
// 滚动到底部
|
||
document.getElementById('scrollBottom').addEventListener('click', () => {
|
||
window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' });
|
||
});
|
||
|
||
// 页面加载时,侧边栏自动滚动到当前章节
|
||
window.addEventListener('load', () => {
|
||
const sidebarContent = document.getElementById('sidebarContent');
|
||
const currentChapter = sidebarContent.querySelector('.current');
|
||
if (currentChapter) {
|
||
currentChapter.scrollIntoView({ behavior: 'smooth', block: 'center' });
|
||
}
|
||
});
|
||
|
||
// ========== TTS语音朗读功能 ==========
|
||
let ttsSynth = window.speechSynthesis;
|
||
let ttsUtterance = null;
|
||
let ttsText = '';
|
||
let ttsSentences = [];
|
||
let ttsCurrentIndex = 0;
|
||
let ttsIsPlaying = false;
|
||
let ttsIsPaused = false;
|
||
let ttsSpeed = 1;
|
||
|
||
// 初始化:提取章节内容
|
||
function initTTS() {
|
||
const contentEl = document.querySelector('.chapter-content');
|
||
if (!contentEl) return;
|
||
|
||
// 获取所有段落文本,清理HTML标签
|
||
ttsText = contentEl.innerText || contentEl.textContent;
|
||
// 分割成句子(中文按句号、问号、感叹号分割)
|
||
ttsSentences = ttsText.match(/[^。!?\n]+[。!?\n]+|[^。!?\n]+$/g) || [ttsText];
|
||
ttsSentences = ttsSentences.filter(s => s.trim().length > 0);
|
||
|
||
updateTTSProgress();
|
||
}
|
||
|
||
// 更新进度显示
|
||
function updateTTSProgress() {
|
||
const total = ttsSentences.length;
|
||
const current = ttsCurrentIndex;
|
||
document.getElementById('ttsTime').textContent = `${current} / ${total}`;
|
||
const percent = total > 0 ? (current / total * 100) : 0;
|
||
document.getElementById('ttsProgressFill').style.width = `${percent}%`;
|
||
}
|
||
|
||
// 播放当前句子
|
||
function playCurrentSentence() {
|
||
if (ttsCurrentIndex >= ttsSentences.length) {
|
||
stopTTS();
|
||
return;
|
||
}
|
||
|
||
const text = ttsSentences[ttsCurrentIndex].trim();
|
||
ttsUtterance = new SpeechSynthesisUtterance(text);
|
||
ttsUtterance.lang = 'zh-CN';
|
||
ttsUtterance.rate = ttsSpeed;
|
||
|
||
// 尝试选择中文语音
|
||
const voices = ttsSynth.getVoices();
|
||
const zhVoice = voices.find(v => v.lang.includes('zh') || v.lang.includes('CN'));
|
||
if (zhVoice) {
|
||
ttsUtterance.voice = zhVoice;
|
||
}
|
||
|
||
ttsUtterance.onend = () => {
|
||
if (ttsIsPlaying && !ttsIsPaused) {
|
||
ttsCurrentIndex++;
|
||
updateTTSProgress();
|
||
playCurrentSentence();
|
||
}
|
||
};
|
||
|
||
ttsUtterance.onerror = (e) => {
|
||
console.error('TTS error:', e);
|
||
if (ttsIsPlaying) {
|
||
ttsCurrentIndex++;
|
||
updateTTSProgress();
|
||
playCurrentSentence();
|
||
}
|
||
};
|
||
|
||
ttsSynth.speak(ttsUtterance);
|
||
}
|
||
|
||
// 播放
|
||
function playTTS() {
|
||
if (ttsSentences.length === 0) {
|
||
initTTS();
|
||
}
|
||
|
||
if (ttsIsPaused) {
|
||
ttsSynth.resume();
|
||
ttsIsPaused = false;
|
||
} else {
|
||
ttsIsPlaying = true;
|
||
playCurrentSentence();
|
||
}
|
||
|
||
document.getElementById('ttsPlay').classList.add('active');
|
||
document.getElementById('ttsPause').classList.remove('active');
|
||
}
|
||
|
||
// 暂停
|
||
function pauseTTS() {
|
||
if (ttsIsPlaying) {
|
||
ttsSynth.pause();
|
||
ttsIsPaused = true;
|
||
document.getElementById('ttsPlay').classList.remove('active');
|
||
document.getElementById('ttsPause').classList.add('active');
|
||
}
|
||
}
|
||
|
||
// 停止
|
||
function stopTTS() {
|
||
ttsSynth.cancel();
|
||
ttsIsPlaying = false;
|
||
ttsIsPaused = false;
|
||
ttsCurrentIndex = 0;
|
||
updateTTSProgress();
|
||
document.getElementById('ttsPlay').classList.remove('active');
|
||
document.getElementById('ttsPause').classList.remove('active');
|
||
}
|
||
|
||
// 设置速度
|
||
function setTTSSpeed(speed) {
|
||
ttsSpeed = parseFloat(speed);
|
||
// 如果正在播放,需要重新开始当前句子
|
||
if (ttsIsPlaying && !ttsIsPaused) {
|
||
ttsSynth.cancel();
|
||
playCurrentSentence();
|
||
}
|
||
}
|
||
|
||
// 绑定事件
|
||
document.getElementById('ttsPlay').addEventListener('click', playTTS);
|
||
document.getElementById('ttsPause').addEventListener('click', pauseTTS);
|
||
document.getElementById('ttsStop').addEventListener('click', stopTTS);
|
||
document.getElementById('ttsSpeed').addEventListener('change', (e) => setTTSSpeed(e.target.value));
|
||
|
||
// 加载语音列表(某些浏览器需要异步加载)
|
||
if (speechSynthesis.onvoiceschanged !== undefined) {
|
||
speechSynthesis.onvoiceschanged = initTTS;
|
||
}
|
||
|
||
// 页面加载时初始化
|
||
window.addEventListener('load', () => {
|
||
initTTS();
|
||
});
|
||
|
||
// 页面离开时停止播放
|
||
window.addEventListener('beforeunload', stopTTS);
|
||
</script>
|
||
</body>
|
||
</html> |