:root { --lh-red: #c0392b; --lh-blue: #2980b9; --lh-green: #27ae60; --lh-dark-green: #16a085; --lh-purple: #8e44ad; --lh-orange: #e67e22; --lh-yellow: #f1c40f; --lh-paper-bg: 255, 251, 240; --lh-string-color: 192, 57, 43; --lh-book-color: var(--gray-monochrome); --lh-tape-color: 90,90,90,0.3; --lh-white-bg: 249,249,249; --lh-dark-bg: 50, 50, 50; --lh-highlighter: var(--bright-accent); --lh-border-color: var(--gray-monochrome); --lh-wiki-note-color: var(--bright-accent) } /** * 旧代码合集 * 为了向下兼容而保留 */ .grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto} /** * 便签纸 * notepaper */ .notepaper { background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0); line-height: 2em; background-size: 100% 2em; background-attachment: local; border: 2em solid rgb(var(--lh-paper-bg)); box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2); padding: 0; margin: 1em auto; box-sizing: border-box; position: relative } .notepaper p { margin: 0; font-size: 1.05rem; letter-spacing: 0.1rem; line-height: inherit } .notepaper.narrow, .notepaper.wide { width: 90% } @media screen and (min-width:768px){ .notepaper.narrow { width: 50% } .notepaper.wide { width: 75% } } .notepaper.tight { border-width: 1rem; border-left-width: 1.2rem; border-right-width: 1.2rem; line-height: 1.8em; background-size: 100% 1.8em; font-size: 13px } .notepaper.with-string::before { content: ''; width: 0.5em; height: 6rem; background: rgb(var(--lh-string-color)); top: -2rem; right: -1rem; display: block; position: absolute; box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2); clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%); } .notepaper.with-tape::before { content: ''; border: 1px solid #ddd; background: rgba(var(--lh-tape-color)); width: 1.5em; height: 4em; transform: rotate(45deg); display: block; position: absolute; top: -3em; left: -1.8em } .notepaper.tight.with-string::before { top: -1rem; right: -0.25rem; } .notepaper.tight.with-tape::before { top: -2.5em; left: -1.3em } .notepaper.page { min-height: 36em; counter-increment: page; display: flex; flex-direction: column; justify-content: space-between } @media screen and (min-width:768px){ .notepaper.page { width: 70% } } .notepaper.page:after { content: counter(page); display: block; text-align: center } .notepaper-group { counter-reset: page; } .book-pattern { display: flex; flex-wrap: wrap; flex-direction: row } .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 100% } @media screen and (min-width: 768px) { .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 50% } } .book-wrapper { background: rgb(var(--lh-book-color)); padding: 0.5rem; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2); border-radius: 5px; margin: 1rem auto } @media screen and (min-width: 768px) { .book-wrapper .notepaper { margin: 0 } } /** * 文字修饰 */ .text-highlighted { position: relative } .text-highlighted::before { content: ""; position: absolute; height: 0.9em; bottom: 2px; left: -2px; width: 105%; z-index: -1; background-color: rgb(var(--lh-highlighter)); opacity: .6; transform: skew(-15deg); transition: opacity .2s ease; border-radius: 3px 8px 10px 6px; transition: 0.1s ease background-color; } .text-underlined { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-wavy { text-decoration: underline wavy; text-underline-offset: 4px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-circled, .text-squared { display: inline-block; border: 2px solid rgb(var(--lh-highlighter)); border-radius: 100%; box-sizing: border-box } .text-squared { border-radius: 0 } .text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) } .text-highlighted.td-red::before { background: var(--lh-red) } .text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) } .text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) } .text-highlighted.td-blue::before { background: var(--lh-blue) } .text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) } .text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) } .text-highlighted.td-green::before { background: var(--lh-green) } .text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) } .text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) } .text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) } .text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) } .text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) } .text-highlighted.td-purple::before { background: var(--lh-purple) } .text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) } .text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) } .text-highlighted.td-yellow::before { background: var(--lh-yellow) } .text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) } .text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) } .text-highlighted.td-orange::before { background: var(--lh-orange) } .text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) } .text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) } /* 隐藏文字 */ .text-blank { color: rgba(0,0,0,0) } .text-block { background: rgb(var(--black-monochrome)); color: rgb(var(--black-monochrome)); } .text-blur { filter: blur(0.3em); -webkit-filter: blur(0.3em) } .text-hoverback, .text-selectback { transition-duration: 0.3s; transition-property: background, transform, color } .text-blank.text-hoverback:hover, .text-blank.text-selectback::selection, .text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) } .text-block.text-hoverback:hover { background: transparent!important } .text-block.text-selectback::selection, .text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) } .text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important } /** * 附加项 */ .with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) } .with-border-dark { border: 1px solid rgb(var(--black-monochrome)) } .with-border-light { border: 1px solid rgb(var(--white-monochrome)) } .with-border-thick { border-width: 2px } .with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) } .with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) } .with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) } .with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) } .with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) } .with-padding, .with-box-style { padding: 0.25em 1em } .with-p-sm { padding: 0.125em 0.5em } .with-p-lg { padding: 0.5em 2em } .with-margin, .with-box-style { margin: 1em auto } .with-m-sm { margin: 0.5em auto } .with-m-lg { margin: 2em auto } .with-narrow-width { width: 90%!important; margin-left: auto; margin-right: auto } @media screen and (min-width: 768px) { .with-narrow-width { width: 75%!important } } [class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important } .with-bg-red { background: var(--lh-red)!important } .with-bg-blue { background: var(--lh-blue)!important } .with-bg-green { background: var(--lh-green)!important } .with-bg-darkgreen { background: var(--lh-dark-green)!important } .with-bg-yellow { background: var(--lh-yellow)!important } .with-bg-orange { background: var(--lh-orange)!important } .with-bg-purple { background: var(--lh-purple)!important } /** * 删除类 */ .offwith-shadow { box-shadow: none!important } .offwith-border { border: none!important } .offwith-padding, .offwith-pam { padding: 0!important } .offwith-margin, .offwith-pam { margin: 0!important } .offwith-width-limit { width: auto!important; margin-left: auto!important; margin-right: auto!important } div[class*="grider"].offwith-grid-gap { grid-gap: 0!important } /** * 网格布局 */ /* Gridder 容器 */ div[class*="gridder"] { display: grid; box-sizing: border-box; grid-gap: 1rem; padding: 0 } div[class*="gridder"] * { box-sizing: border-box } .gridder, .gridder-col-2 { grid-template-columns: 1fr 1fr; } .gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .gridder-col-4 { grid-template-columns: repeat(4, 1fr); } @media screen and (min-width: 768px) { .pc-gridder, .pc-gridder-col-2 { grid-template-columns: 1fr 1fr; } .pc-gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .pc-gridder-col-4 { grid-template-columns: repeat(4, 1fr); } } .spanner, .spanner-2 { grid-column-start: span 2; } .spanner-3 { grid-column-start: span 3; } /** * 告示组件 */ .signblock, .signblock-dark, .signblock-warn { margin: 1rem auto; box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4); background: rgb(var(--lh-white-bg)); font-size: 1.05rem; padding: 2rem } @media screen and (min-width: 768px) { .signblock, .signblock-dark, .signblock-warn { width: 75% } } .signblock-dark, .signblock-dark h1 { background: rgb(var(--lh-dark-bg)); color: #fff } .signblock-warn, .signblock-warn h1 { background: var(--lh-red); color: #fff } .signblock h1, .signblock-dark h1, .signblock-warn h1 { text-align: center; font-size: 2rem; margin: 0; font-weight: 700 } .signblock-img { display: flex; flex-direction: row; justify-content: center } .signblock-img img { width: 8em } .signblock-footer { font-size: 0.9em; text-align: center; margin: 0.5rem 0; font-weight: bolder; display: block } /** * 报告 */ .reportblock, .reportblock-dark { border: 2px solid rgb(var(--lh-border-color)); box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3); background: rgb(var(--white-monochrome)); padding: 0.8rem 1.5rem; padding-bottom: 0.4rem; margin: 1.5rem auto; margin-bottom: 1rem; position: relative } .reportblock hr, .reportblock-dark hr { background-color: rgb(var(--lh-border-color)); margin-left: -1.5rem; margin-right: -1.5rem } .reportblock h1:first-child, .reportblock-dark h1:first-child { position: absolute; top: -1rem; left: 1.5rem; font-size: 110%; font-weight: 600; background: rgb(var(--lh-border-color)); color: #fff; padding: 0.2rem 0.5rem; margin: 0; } .reportblock-dark, .reportblock-dark h1 { border-color: rgb(var(--lh-white-bg)); background: rgb(var(--lh-dark-bg)); color: #fff } .reportblock-dark hr { background-color: rgb(var(--lh-white-bg)); } /* 更好的折叠框 */ .bettercollap { margin: 1em 0; } .bettercollap .collapsible-block { width: auto; overflow: hidden; border: 1px solid rgb(var(--lh-border-color)) } .bettercollap .collapsible-block-content, .bettercollap .collapsible-block-link { background: rgb(var(--white-monochrome)); padding: 0.5em } .bettercollap .collapsible-block-content { padding-left: 1em; padding-right: 1em } .bettercollap .collapsible-block-link { color: rgb(var(--lh-border-color)); background: rgb(var(--white-monochrome)); transition: .3s; display: block; } .bettercollap .collapsible-block-link:hover, .bettercollap .collapsible-block-unfolded .collapsible-block-link, .styledcollap.bettercollap .collapsible-block-link { color: rgb(var(--white-monochrome)); background: rgb(var(--lh-border-color))!important; text-decoration: none } .bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) } .bettercollap .collapsible-block-link::before { content: "\25BC"; display: inline-block; margin-right: 0.5em; transform: rotate(-90deg) scale(0.9) } .bettercollap .collapsible-block-unfolded .collapsible-block-link::before { transform: rotate(0) scale(0.9) } .bettercollap .collapsible-block + .collapsible-block { border-top: none } .styledcollap.bettercollap .collapsible-block { border-radius: 2px; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3) } .styledcollap.bettercollap .collapsible-block-content { background-color: rgb(var(--pale-gray-monochrome)); border-width: 3px } .styledcollap.bettercollap .collapsible-block-link:hover { background: rgba(var(--lh-border-color),0.95)!important; } /** * 提示框 */ .infoblock { color: #f1f1f1; font-weight: bold; background: #424242; padding: 5px 5px 5px 5px; border-radius: 4px; margin: -0.5rem 0 1rem 0; display: block; width: fit-content; padding-right: 25px; } .infoblock::before { content: "ⓘ " } /** * 单页迭代 */ .offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none } .offset-page:target { display: block }
特性:恐慌,扭曲实体
描述
YHN-KHE-0506 “犬”
首次发现YHN-KHE-0506是来自于一场失败的异常收容实验,而实验中则因为YHN-KHE-0506出逃,其原本具有多种特殊作用【包含:作为两个世界的屏障、可作为人类用于研究观察另一个世界的观测工具和“镜中世界”中众多异常实体的特殊收容物】的YHN-KHE-0506-A“望镜”被摧毁,现已经失去应有收容价值。YHN-KHE-0506身躯高大,体表毛发在观察下与犬类类似,头部则是一种“抽象”的,类似人类常识中的“狗”一样的头部。同时,YHN-KHE-0506四肢形态基本同人类相同,但看着更加瘦弱细长(虽外表瘦弱不堪,但YHN-KHE-0506的力量和速度却强大的极其惊人,由于YHN-KHE-0506现任处于【未收容】状态,故只能将其给予编号,并综合目击者对其描述和其他有关视频或文字记录以作为该异常实体的研究报告,YHN-KHE-0506的当前数据会展示在描述下方)。
YHN-KHE-0506数据及其收集过程:

最高移动速度:331公里/小时
记录来源:2xxx年xx月xx日,【第一次遭遇】
YHN-KHE-0506从YHN-KHE-0506-A“望镜”中冲出,并通过暴力手段突破协会实验室安全措施封锁以及屠杀所有武装人员以及实验员后,以高速冲上了距离最近的高速公路。在协会派出直升机与武装车辆后,异常实体继续以超高速全力奔跑在黑夜下的盘山高速公路上,其最高移动速度被高速公路一处哨卡的车速记录仪记录,支援人员乘坐载具追击无果后,研究人员到场收集到了车速记录仪的现场记录报告。
最大力量和视力:目击轻松撕碎一辆的小型山地越野车/可目视前方130左右米,角度为180°的范围。
记录来源:2xxx年xx月xx日,【第二次遭遇】
从被毁车辆搜寻到的录音带一:这里是研究员xxx,现在是凌晨时间xx时xx分,在三个小时前,协会特雷姆森市山体实验基地遭受代号“犬”的摧毁后,协会增援对“犬”的第一次追击失败,由上层决定,对代号“犬”所逃离后进入的当地xxxx地区森林施行封锁,并通过当地政府宣布xxxx地区森林进行长期的消防封锁以掩人耳目。
被发现挂在树杈上的录音带二:这里是研究员xxx,,就在刚才,我们发现了代号“犬”的身影。现在协会增援小组决定组织武装小队,并驾驶山地越野车进入森林,此次人物也同时邀请到了【“知更鸟”全球特遣队-静声人支队(此处附带介绍组织文章网络链接)】的协助,他们能来我也挺意外的,但听他们支队汇报说是因为最近YHN-KHE-0222在群体实验中再次出现,并在新的歌词中提及了相关预言以及该异常实体对现实人类的危害性,所以才让“静声人”这支小队同其他非“知更鸟”全球特遣队组织合作,并在这次行动中提供设备支援,但当询问他们具体原因时则表示拒绝,同时对预言中有关“犬”的其他信息闭口不谈,这让我们十分奇怪。不过我们现在也已经在配备好了隔音服,并装备“单兵声波器”后开始进入森林了。
记录仪下的异常实体
【一段持续了30分钟的嘈杂的引擎声和轮胎压过落叶的声音后】
(可能是因为距离“犬”的距离较近,这段录音中的声音很小)我们找到他了,目前我们已经距离祂只有大概两百多米的距离,看来“犬”的视力并不是很好。我们现在处于祂的身后,并准备对祂使用声波武器。
【持续大概5秒刺耳的爆鸣声后】
【出现类似猪叫和人声混合的尖啸】
奇怪异常刚才好像受到我们的声波影响后就迅速消失了……该死,这个隔音服让我除了对讲机和自己的呼吸声,周围其他什么声音都听不到了。
(持续不断的惨叫声)….我….我们!…被攻击了!…..声波没有…..控制住祂!…救命!!!(电子产品的白噪音,并参杂着疑似车辆的爆炸声)
被攻击后的一辆载具残骸
此段录音结束,并在一小时后被发现,该合作行动小组被确认已全员阵亡。人员身体被全部撕碎,行动车辆也全部被摧毁,且一部分车辆的金属部分发现了人类手指粗细的孔洞,在对这些孔洞上残留的血迹和残留的毛发进行取样化验后,化验确认了血祭来自于现场阵亡人员中的研究员,同时毛发的化验结果中非地球已有任何生物的DNA表明,这些毛发来自于“犬”,并说明了其力量足以撕碎金属等高强度材料,同时在现场也发现和回收了“静声人”小队报废的声波武器。在此之后现场就在没有发现其他的有关代号“犬”的异常实体的其他相关物品。
对目前与“犬”有关物品的介绍:
YHN-KHE-0506-A望镜【已失效】:
YHN-KHE-0506-A望镜第一被协会发现于一家即将关闭的古董店,该古董店距今已有【未知】年份的历史,期间经过采访自家古董店的店主早在60年前就从未见过他的踪影,至于这家为何能在这么多年管理却依然能够继续存在至今依然处于调查之中。该异常边缘由黄金和白银材料制成的手工锻造花边为边框,内部装设硅基镜面,外表与普通装饰镜无异的异常实体。该异常可观测到一个与现实世界相悖的“镜面现实”,并且“望镜”在作为对镜内世界的观测物的同时,还能通过该镜与镜内世界生物沟通的功能。但该实体在协会特雷姆森市山体实验基地对YHN-KHE-0506-A的第三次实验中被YHN-KHE-0506破坏并突破实验室防卫后从此失效。
“镜中世界”(臆想世界):
“镜中世界”或称“臆想世界”,这个由YHN-KHE-0506-A的出现而被发现的空间维度,在两次实验观察后让协会以及该基地实验人员对这个平行于正常人类认知的“现实世界”之外的世界基本的认知和定义,而“镜中世界”环境通过“望镜”的第一次实验观测中发现其并不存在现实世界中的物理法则,同时其中的动植物和物质大多混乱扭曲、血肉交错,其中也存在大量人类肢体的混合物。而在第二次观测实验中,研究人们发现了“镜中世界”的事物出现了与自己睡梦相互影响的情况。
随机抽取的有关“镜中世界”的“两次观测”实验后研究组成员们生前的报告录音:
组员一实验后所画
组员一(沉思后回忆到):“我当时本来在看着那个“镜中世界”的一颗像树一样的蒸汽机发呆,就在我无意间的次将目光转移时我看到了我昨晚梦里所梦到的一个像是猫一样的肉球,一开始我也只是觉得很眼熟,但却越看越觉得有即视感,最后随着我越来越觉得熟悉,那个“猫”竟然具象化并开始自己动了起来,最后被卷入那颗像树的蒸汽机中,被搅成了一滩碎肉,然后变成血红的泡泡消失不见了。”
组员二所看到并描述的画面
组员二(浑身颤抖):“一开始我看到了我幼年5岁时因为我的恶作剧被我推向马路,然后被开过来的卡车撞击碾压死的弟弟,我…我在这次实验的前一天晚上也刚好梦到了他,我当时在梦里很愧疚,希望他能原谅我,但话还没说出口就被第二天工作的闹钟吵醒了。后来在实验时看到祂,那时候……祂还是一团模糊的虚影,我看着祂总觉得很熟悉,但说不上来是为什么…直到最后我彻底回忆起祂是谁时,那团虚影就彻底具象化成了我弟弟当时被卡车碾压后的模样,我当时被吓了一跳,我的同事们也发现了祂,但因为我从未说过次“意外”所以他们也很奇怪为什么会突然出现一个虽然肢体破碎,但是能一眼看出过去式正常人类的小孩在里面,这根本不符合“镜中世界”的规则,一直到我因为实在承受不了我自己做过的事带来的罪恶感,我才尖叫出声,并且一直喊出对不起之后,“我弟弟”就被一道黑影抓走,之后再怎么观测也看不到了。我知道我有罪,但那时候我还小并不知道会发生这些求求你们!我……”(该组员因为精神崩溃,之后被送往监察室观察治疗了)
【有关“两次观察”的介绍】
对目前通过YHN-KHE-0506-A“望镜”对“镜中世界”的两次研究活动,在协会后续重新建立的当地临时分会内的研究员们的讨论过后,将这两次研究活动正式命名为“两次观察”事件。
“两次观察”事件中,分别被定义为第一次观察和第二次观察:
- 第一次观察即了解YHN-KHE-0506-A所展示出的“镜中世界”的物理性质,以及同我们所在的“现实世界”之间的不同的粗略研究。
- 第二次观察即在有了第一次观察后对“镜中世界”有了基础认知后,原当地分会开展的对“镜中世界”内部构成的长期深度观察研究。
对异常实体现有资料与报告的总结:
由于代号“犬”的异常实体目前仍然处于在逃状态,故协会在当地新组建的临时分会在会议研究决定将该异常实体编号为【YHN-KHE-0506】,而因YHN-KHE-0506出逃导致被毁的“望镜”则被编号为【YHN-KHE-0506-A】。由于YHN-KHE-0506-A被毁,导致了协会目前暂时无法对“镜中世界”展开更加细致的调查和实验以弄清楚YHN-KHE-0506具体是属于“镜中世界”原生物种还是上文中提到的受梦境影响而产生的梦境生物,故而当地分会决定展开空间实验,并设立专门小队以防止同类事件再次发生。
2███年██月██日
——报告人:“知更鸟”博士
«YHN-KHE-0505 | YHN-KHE-0506 | YHN-KHE-0507 »


