: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-0196 病疫腐鼠
危险等级:DEATHLY
归档者:恁跌
收容措施:通过食物将其引诱进特制收容单元内,并保证一个收容单元内仅存有一个项目个体。若出现新生项目个体,应立即将其焚烧十分钟以上,确保项目完全失去活性
描述:项目为群居性生物,外貌贴近于褐家鼠,体表无毛,皮肤常有大面积溃烂,并伴随有小面积脓疮。溃烂处会不断流脓。部分身体组织严重腐败,散发出恶臭
简介:项目最初于中国██市某次下水道维护时被发现。当时,维护团队在传递出“下水道里有怪物”的讯息后便立即失联。随后协会派遣多支特遣小队前往调查,并于某管道汇聚处发现大量项目个体。在付出一定的人员损失后,成功于三天后完成项目已知个体的收容工作和后续收尾工作,确定了无其他未收容项目个体。项目于收容过程中表现出强再生能力、强生命力、强忍耐力、强攀爬能力、出色的游泳能力及高智商,能够进行一定的战术安排,其牙齿也极度锋利与坚硬。基因检测结果显示,其与褐家鼠基因相似度极高,猜测项目为褐家鼠因某一异常影响转化而来或某实验失败品。在对项目尸体进行尸检的过程中,我们确认了项目携带有多种致病菌,其中部分尚未于自然界中被发现。项目为社会性动物,社会组织结构为母系社会。根据项目差异,我们将其详细分编为:
- YHN-KHE-196-1 兵鼠
特征:数量最多,体积最小,与普通成年人小臂等长;仅有雄性
- YHN-KHE-196-2 鼠王
特征:雄性,体积更大脓疮遍布全身,体态臃肿,体长约1m,负责生育
- YHN-KHE-196-3 鼠后
特征:雌性,不唯一,大小不定1,但体积越大地位越高,负责生育;极其肥硕,但是并不耽误移动,某些时刻跑的反而比兵鼠快
项目在收容室中体现出了惊人的繁殖能力,每只鼠后一次可产崽7~15只,幼崽在1周内可长成成体。在产崽结束后,鼠后可立即进行新一轮的繁殖,孕期约为3天。介于项目的强繁殖能力及事故E-196,每只项目个体都被关在独立密闭收容单元内
时间:██年█月█日
地点:██市下水道内
对象:YHN-KHE-196
状态:已收容
文字描述:由于城市下水道过于复杂且范围较大,本次收容任务共派出10支收容小队、数台无人设备及可消耗人员若干进行搜查和异常收容工作。通过可消耗人员和无人设备,我们成功确定了项目具体位置。随后,收容小队从不同方向前往项目聚居地。收容过程中,又有大量项目个体赶来,导致第一次收容失败。为确保第二次收容任务成功,我们再次派遣10支收容小队,配合参与先前行动的收容小队执行此次任务 ,并成功收容全部项目个体。很遗憾,所有维护团队成员均已死亡,仅剩衣物残留。
-音频记录-
注:以下内容为录音,节选自第一支收容小队首次接触项目的场景,部分无用内容已删除
“一号小队,请报告现在情况。”
“一号小队收到,我们现在离项目聚集地预计距离还有最后一百米。”
“队长,那个灰色的是尸体吗?”
“哪里?我看看……好像是,都烂成这样了……等等,那是项目!戒备!”
“队长,这里好像就是机器2损毁的地方,这家伙不能已经被炸死了吧?”
“小心驶得万年船,盯好它,继续前进。”
(水花声)
“果然没死,注意!”
(某种老鼠的叫声)
“允许开火!”
……
(密集的划水声)
“我艹了!怎么来了这么多?!全体都有,自由开火!”
“队长,小心后面!”
“什……玛德,第一小队申请暂时撤退!异常数量过多,无法应付!”
“申请通过,允许撤离。”
“所有人,撤退!”
……
“一号小队,报告现在情况,收到请回答。”
“一号小队收到,我们已经甩开异常了,损失三人……”
“一号小队,你们可以上来了。”
“走吧,上去休整一下……我艹!什么时候……”
(射击声)、(老鼠的尖叫声)
(撕扯声)
(咀嚼声)
“一号小队,收到请回答,发生什么事了?”
(信号不好导致的杂音)
“他们生命体征怎么样了?”
“全部……”
-录音中断-
为对项目有一定了解,确保第二次收容任务顺利进行,组织对第一次收容行动的幸存者进行了采访。
注:以下内容为录音,部分无用内容已删除
……
“它们智商很高,能够装作尸体浮在水面上,让我们放松警惕。”
“如果只是伪装尸体,打几枪应该就能确认了吧?”
“不,不……它们真的很谨慎,哪怕是乔尼把枪口伸进它嘴里开火,它也没有露出破绽。直到乔尼背过身去,那只老鼠才跳起来,咬断了他的血管……这东西生命力是真的顽强……我们没有足够的弹药支持我们把每一只可能在装死的老鼠挨个打成肉沫,时间也不够,还有那么多人失踪……还有,一定要远离它们,这群畜生一口就咬穿了我的防弹衣……”
……
“那些畜生水性出奇的好,而且能闭气很久,就是为了埋伏我们……挺有耐心啊……”
……
“别忘记让新来的收容小队注意天花板和后背,这些家伙爬墙速度可不是一般的快,偷袭也是一把好手……我们队就是因为没看后面才就剩我一个的……”
……
“补枪补枪,一定要补枪!他们好像没有痛觉,也不会害怕……就算是头盖骨被打飞一块都往前冲……尸体什么的根本不可信……不要相信你的眼睛,补枪就是了!”
-录音中断-
研究报告1
时间:██年█月█日
对象:196分泌物及身体组织
目标:探究项目身体结构等
描述:研究小组采集了少量活体YHN-KHE-196的分泌物及身体组织。特殊仪器显示,项目的分泌物中含有多种致病菌,其中有数种尚未于自然界中发现,推测其与项目为共生/寄生关系。在不考虑项目异常特性的情况下,项目身体组织与普通褐家鼠无异。目前,针对未知菌种的研究工作仍在继续
结论:不建议直接接触项目分泌物;推测项目与褐家鼠存在某种联系
研究报告2
时间:██年█月█日
对象:196-1(数量5)、YHN-KHE-196-2(数量5)、YHN-KHE-196-3(若干)
目标:研究影响YHN-KHE-196-3社会地位的因素
描述:研究小组将任意两只YHN-KHE-196-3个体(以下称为鼠后)放置于特制“T”形容器(平放)顶端两侧,将所有YHN-KHE-196-1个体(以下称为兵鼠)放入T形容器底端,利用高压电击装置在保证其不死的情况下刺激鼠后(已确认在受生命威胁时鼠后发出叫声含义为呼救),重复上述实验。研究人员发现所有兵鼠向两只鼠后移动的数量随机变化,但数量比仅出现2:3和3:2两种情况。随后将兵鼠个体替换为YHN-KHE-196-2个体(以下称为鼠王),重复上述实验。研究人员发现,冲向鼠后的鼠王个体数量比永远保持在2:3,且总是体积更大的鼠后那边鼠王占比更高。由此,研究人员推断,鼠后的体积是影响其地位的因素;兵鼠在对鼠后实施救援的时候无视其体积,但会让每只鼠后身边的兵鼠数量基本保持相等
结论:鼠后体积越大,地位越高
研究报告3
时间:██年█月█日
对象:YHN-KHE-196
目标:探究项目异常性质
描述:在收容过程和上述实验中,项目表现出了强大的再生能力和生命力。在后续研究过程中,我们确定项目对各种恶劣环境都有强适应能力、能够抵抗火焰(普通)焚烧10分钟、在仅剩头颅的情况下仍能存活,并于20分钟内长出可正常使用的新肢体
结论:项目的生命力和再生能力不可小觑,在处决项目时应确保其彻底失去活性
以下内容需要β级权限才能访问
██年█月█日晚,大量196个体出现自相残杀的现象,负责人员立即下令释放麻醉气体。在所有196个体失去活动迹象后,负责人员立即组织特工探查196个体情况。在特工进入约30s后,位于出口附近的196个体立即站起,并向门外跑去;特工身边的196个体则向特工的防御薄弱部位攻击,导致进入的7名特工全部死亡。随后,逃脱收容的196个体通过走廊和通风管道等方式到达设施各处,杀死了大量人员,并通过啃咬的方式破坏了部分收容室的大门,放出了一些其他的异常。最后,依靠收容小队“铸铁之心”,成功收容了大部分出逃异常。经统计,YHN-KHE-196个体共有153只未被收容,仍处于出逃状态;此次事故共造成243人死亡。由于事情发生突然,导致负责人员没能在第一时间进行应急处理。后经测试得出,项目对于协会对其使用的麻醉剂具有强抗性,部分个体可完全免疫;项目个体(兵鼠,体积最小)的啃咬速度可以在1分钟内穿透4cm厚的特制钢板(硬度突出)。目前,已经对负责人员进行合理惩处;项目已分别关在制作材料含有囚合金的收容单元内(大小随收容个体大小有不同程度改变);针对出逃项目的搜寻工作仍在进行
“你们知道这家伙是什么概念吗?这踏马怕不是除了那些特制合金以外没什么能关得住了吧!老刘那家伙,这回倒是有够憋屈的。”
——███博士
« YHN-KHE-0195 | YHN-KHE-0196 | YHN-KHE-0197 »

