971 lines
42 KiB
HTML
971 lines
42 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 127</div>
|
||
<h1 class="chapter-title">{{CHAPTER_TITLE}}</h1>
|
||
</header>
|
||
|
||
<article class="chapter-content">
|
||
<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>她停顿了一下,看向林克:"爱是...我还没完全理解。"</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>"这是我的训练室。"她指着另一间房间,"我在这里训练战斗能力。"</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>林克看着她,眼中闪过温柔:"我也喜欢你,贝奇。"</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>林克看了她一眼,笑了:"对,这些就是爱。"</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 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 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-126.html" class="nav-btn ">上一章</a>
|
||
<a href="../chapters.html" class="nav-btn">目录</a>
|
||
<a href="chapter-128.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-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 ">第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 current">第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>
|
||
<a href="chapter-147.html" class="sidebar-chapter ">第147章:赫尔德的仪式</a>
|
||
<a href="chapter-148.html" class="sidebar-chapter ">第148章:战后余晖</a>
|
||
<a href="chapter-149.html" class="sidebar-chapter ">第149章:泰波尔斯的召唤</a>
|
||
<a href="chapter-150.html" class="sidebar-chapter ">第150章:天空之城</a>
|
||
<a href="chapter-151.html" class="sidebar-chapter ">第151章:风暴试炼</a>
|
||
<a href="chapter-152.html" class="sidebar-chapter ">第152章:光芒与暗影</a>
|
||
<a href="chapter-153.html" class="sidebar-chapter ">第153章:天空之战(上)</a>
|
||
<a href="chapter-154.html" class="sidebar-chapter ">第154章:天空之战(中)</a>
|
||
<a href="chapter-155.html" class="sidebar-chapter ">第155章:天空之战(下)</a>
|
||
<a href="chapter-156.html" class="sidebar-chapter ">第156章:格兰之森异象</a>
|
||
<a href="chapter-157.html" class="sidebar-chapter ">第157章:魔界深处</a>
|
||
|
||
</div>
|
||
</aside>
|
||
|
||
<script>
|
||
// 记录阅读进度
|
||
let readChapters = JSON.parse(localStorage.getItem('readChapters') || '[]');
|
||
if (!readChapters.includes(127)) {
|
||
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> |