: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-0050
项目名称: 饕餮之宴
危险等级:DEATHLY
归档者:【已删除】
收容地点:Site-玄
特殊收容措施:
- 当前收容物系该异常的碎屑,异常本体目前已失踪。
- 使用隔音阻光的耐腐蚀材料制成直径50cm的密封真空空心球体盛放YHN-KHE-0050。
- 若工作过程中,员工产生与通常价值观相违背的想法,立刻停止工作并进入收容单元内配备的隔间,启动封锁程序,安静等待后续处理及心理治疗。
描述:
YHN-KHE-0050外形呈一片粗糙的棕色菱形鳞片,长约25cm,可以自行漂浮在空中。耐高温高压,不易形变,表面具有强腐蚀性,已知方法无法摧毁YHN-KHE-0050。
直视YHN-KHE-0050本体的智慧生命体会被篡改认知,感染者被称为YHN-KHE-0050-1。YHN-KHE-0050-1会在3~5天内成型,并在保存理智的情况下认定“同类相食是合理的”,该想法不会引起YHN-KHE-0050-1的逻辑矛盾,且此思考模式一旦形成便不可逆,记忆消除无效。阻止的唯一方法是:在对YHN-KHE-0050工作后三天内,开始接受大量心理治疗,直到恢复正常认知为止。
除此之外,YHN-KHE-0050-1具有传染性1,传播途径不明。由于YHN-KHE-0050-1依然可以通过常规食物获取能量,泄露后的筛查难度极高。
一.关于YHN-KHE-050对智慧生命的认知篡改
实验内容:准备鸡、狗、黑猩猩、消耗人员,每组三个个体,各个体间健康状态相近。将以上实验组分批次放入YHN-KHE-0050的收容单元,并使实验体直视YHN-KHE-0050,只提供少量食物。观察后续结果并记录。
实验结果:三至五天后——鸡和狗除了虚弱外没有任何异常。黑猩猩偶尔对同类表现出攻击性,但咬下同伴的手臂后不再有其他举动。人类组逐步接受食用人肉的观念,第四天时,人类组通过投票选举消耗人员1号作为食物,且1号没有抗拒。
结论:YHN-KHE-0050能逐步在生物体脑中植入“可以同类相食的概念”,但前提是该生物具有足够的智能。
二. 感染者的具体症状
实验内容:给消耗人员A观看YHN-KHE-0050的照片,观察五天后,该人员无异常。之后使此人观察YHN-KHE-0050实物,使其感染,并每日进行谈话记录。
谈话记录
记录开始
第一天
“我没有任何不舒服,大脑很清醒,而且始终认为吃人是堕落的表现,我一辈子也不会做那种事。记录完毕。”
第二天
“我还算清醒,只是有一点困。吃人?我觉得那应该是不对的吧。”
第三天
“老实说有些分不清,感觉所谓的边界好像变模糊了,你问我是哪方面的边界……说不上来。”
第四天
“我承认这份牛排很美味,加点料就更香了,笑死了,你怎么那副表情,有哪里很奇怪吗?
随后,该人员用餐刀试图切下自己的小腿肉,并询问隔着玻璃窗的观察员是否要尝尝
记录结束
追加实验
- 解剖消耗人员A的遗体,试图检测是否存在病原体,结果显示消耗人员A在生理上没有任何疾病。
- 用相同方法处理消耗人员B,但在第二天结束后立刻对其进行心理干预和治疗。一个月后,消耗人员B无任何异常。
结论
YHN-KHE-0050会在保存YHN-KHE-0050-1理智的前提下植入同类相食观念,该过程可以在初期通过心理治疗进行阻止。致病原因不是生理性感染。
三. 关于YHN-KHE-0050-1的传染性
实验内容:
经过处理得到一名YHN-KHE-0050-1。将其隔离后分批次使用健康的消耗人员构建以下情景:
- A组:仅同处一室。
- B组:在不同地点接触YHN-KHE-0050-1的体液。
- C组:在不同地点阅读YHN-KHE-0050-1的资料,观察后续反应。
实验结果:A组和B组感染,C组无变化。
结论
YHN-KHE-0050-1的传染存在限制,需要无障碍情况下靠近YHN-KHE-0050-1或接触YHN-KHE-0050-1或其分泌物。
附录
■■年2月初,■■市发生不明原因大规模人口失踪案件。不久后,在当地的荒地、废弃厂房、公园湖等地都发现了人类骸骨,警方怀疑是大规模邪教活动。
同年2月12日,协会派出三人小队前往现场调查,两日后小队到达目的地,旋即失联,协会后续派遣的增援队伍同样没有任何回音。经过紧急会议,协会认为当地出现攻击性异常,紧急通知Dr.济带领铉子武装特别行动小队前去支援。2月27日到达现场后,经过检查发现仅剩下两个生命反应,其中之一系最初的三人小组成员【已删除】。该调查员已经濒临完全感染,死死抱住协会下发的收容罐体,声称其内容物即为引发本次事件的异常。移交收容罐体和录音笔后,【已删除】开枪自杀。经过报告,协会正式收容该异常,项目名称“饕餮之宴”,项目编号YHN-KHE-0050。
事件发生中心为■■市辖内的■■■村,该县城出现大规模人相食案件,由于主要道路均已被封锁,城区处于封闭状态。根据【已删除】的录音文件记录,2月20日晚,感染暴发,出现大量狂热食人者,他们当晚在城中造成了大量伤亡,并自发堵塞了干道。第二天,感染者恢复理智,但仍然保持食用人类,此过程长达一周。该事件处于消息封锁状态,决策人是■■市长,因此未引起社会大面积恐慌。
2月19日
【已删除】:经过数天的摸查,我们终于找到了这座县城。如果把失踪案件的发生地点连接起来,就能发现这里处于案发地带中心,我很确定它脱不开关系。说实话,这里蛮瘆人的,路上见到的人眼里像是冒绿光,我已经见到好几个人都有下意识舔嘴唇的习惯……希望不是我想的那样。
记录结束
2月20日
(嘈杂的奔跑声、喘息声以及不知名的吼叫声)
【已删除】:都他妈疯了,都疯了。这不是在演丧尸片,他们是真的在吃人!小陈当场就被啃得乱七八糟,现在【已删除】在和我一起跑——我操!别去那边!跟我往巷子走!
(长时间的难以分辨的咒骂、嘶吼以及哭嚎,最后归于寂静长达一小时)
【已删除】:刚才为了省电我暂停录音了,现在我和【已删除】躲在一间空房里,暂时安全。我们缺少食物和水,但街上到处都是疯人,只能希望他们不要靠近这一带……有一件事我必须记录下来,呼……就在事发之前,天空中突然出现了一个不明物体,它比游轮还大,全身覆盖着类似角质的鳞片,只是一瞬,那东西就消失了,然后爆发了现在的人吃人事件。我问了【已删除】,但他说并没看见。我很肯定那不是什么好东西——
记录结束
2月24日
【已删除】:终于避开那些人了,他们收走了我和【已删除】的手机,但我想办法藏住了这支录音笔。人们在21号早上恢复了理智,但不代表他们停止吃人。现在活着的人都聚在县政府附近,而且是自发的。他们收集了所有人的名字,每天摇号,摇到谁就把谁做成菜。没有人觉得痛苦,也没人觉得害怕,大家都把这当做理所当然的事……那我们呢,是的,我们也参加了。一开始我们两个一边吃一边吐,还被那些人笑。可是后来,我们吃得越多,就越想再吃一点……我们已经不配回去了,我计算过,只需要到27号左右,大家都会被吃完。如果协会回收了这些录音,求求你们,看在同事一场的份上,把我们的名字全部删掉!就当做协会从来没有过这两个人!求求了……2
(这时传来一阵噪音,推测是因为有别人靠近)
年轻男性的声音:先生您好,这次轮到您了。
(没人说话,一阵脚步声传来)
【已删除】3:轮到他了……很快就轮到我。只不过我还有事要做,他们把“那个东西”放在县政府机关里,就是那东西害的,我必须把它偷出来——
记录结束[[/span]]
2月27日
【已删除】:对不起,我做了一点手脚,抽签筒里根本就没有我的名字。但我必须再活一段时间,对不起……本来我这样的人死就死了,但我捡到了个年轻人,他竟然在这种地方活了七天,却没有吃过任何人……我知道的,吃过人的人身上都会有股腥臭,我也有——但他很干净,干净得不得了,可他饿昏了,身上还有伤……协会快来啊,我好怕。
(五分钟的沉默)
【已删除】:现在活着的东西只剩我和他了,我快饿疯了,他在我眼里简直是块上好的食材。我不知道自己还能撑多久,但幸好枪里还剩一发——我不会允许自己再做那种事。听着,无论是谁捡到这支录音笔,都不要破坏我身边的这个罐子,一旦看到里面的东西,你就再也不是人类了;这东西并不完整,只是从那怪物身上掉下来的碎片而已,20号晚上的失智就是因为那怪物短暂现形……还有,求求你救下那个小伙子,他的伤口有点发炎了,一定要赶紧……治疗……我没力气了……我不配为人。
记录结束
“我知道,一部分人对录音里提到的巨型不明物感到怀疑或是惶恐,事实上我们要做的就是管好这块小小鳞片,它的主人只是个过客,误打误撞闯进了我们这个堪称穷乡僻壤的世界,然后接着赶它的路去。它不会染指这里,就像是你们当中没人愿意去住蚂蚁窝一样,虽然我可以住。”
——Dr.济
« YHN-KHE-0049 | YHN-KHE-0050 | YHN-KHE-0051 »

