: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—237—2个体
特殊项目编号:YHN-KHE-237 伤痕延付
危险等级:INTRANQUIL
归档者:万年风雪
特殊收容措施:置于30cm*30cm*30cm规格、厚度10mm的钨钢密封箱内,未授权禁止取出,该密封箱位于██内。取出时,至少由3名武装人员陪同,与取出人员保持5m距离。从取出时起,时刻由武装人员监视,至多5日内归还,并在YHN—KHE—237自然修复完成时焚毁用于实验的活体,在YHN—KHE—237处于损坏状态时,需尽可能保障用于实验的活体不受到物理损伤。
描述:外观为一把陶瓷材质的手术刀,刃口锋利,长度为17cm,相较于常见型号,长度略短1cm。表面覆盖无法清除的血迹,血迹来源不明,在被协会发现并收容前便存在。刀身两面各刻有一行字,“本金无法偿还,利息不会结束。”“债主已死,他人代偿。”
YHN—KHE—237遭受损坏时,将在5日内自行修复。使用YHN—KHE—237切割血肉时,将不会造成损伤,而是████,除此之外的物体无异常现象。若该血肉主体为活体,则YHN—KHE—237立即损坏,且被切割的个体标记为YHN—KHE—237—1,YHN—KHE—237—1在YHN—KHE—237自行修复完毕前,将不会受到任何意义上的物理损伤,包括但不限于中毒、机械性损伤、疾病、██等。
YHN—KHE—237自行修复完毕后,YHN—KHE—237—1先前受到的物理损伤将在1分钟内重新作用于身上,且优先重现于原先位置,其次为邻近位置。YHN—KHE—237—1不会因这一过程而死亡,即使产生致命性损伤,或缺失重要部位,也不会影响其生命活动,但副作用是在伤痕重现完毕后,身体为维持生命活动将会产生适应性变化。这一变化是违反生物学与物理学的,产生适应性变化后YHN—KHE—237—1标记为YHN—KHE—237—2。
YHN—KHE—237—2会因伤势不同而产生不同变化,但并非血肉增生或是器官增生,而是由一种████的血色粘膜覆盖创口,代替缺失器官的功能,维持生命活动。这一物质不会与血肉以外的其他物质产生物理接触,也无法被设备观测,仅能依靠肉眼观察,而YHN—KHE—237—2将不会意识到这一点,仍然以受伤前方式生活。
研究表明,YHN—KHE—237—2被代替的器官将导致整体感知与生理反应不同,但自身无法发觉,例如缺失心脏的个体逐渐全身发白,且逐渐加深对血液的需求,尤其是同类血液;缺失皮肤的个体逐渐加深畏光,且逐渐加深对同类皮肤的需求;缺失下半身的个体,在行走时始终悬浮于地面,从肉眼上看,是依靠粘膜在地面滑行,这类个体对血肉皮肤骨骼一类极度偏执,具有强烈攻击性。然而,在实际情况下,伤势类型混合的情况更多,最具有威胁的是肉体遭到严重摧毁的个体,这类个体不具有████,且无法依靠肉眼观测,对████有着强烈需求。
事实上,YHN—KHE—237—2并不会死亡,而肉体也不会自然修复,其需求更多是在本能上,而非客观需要,即使满足,也不会有其他现象,且不会满足。微观层面上观测,YHN—KHE—237—2身体组织的全部新陈代谢已停止,而脑电波也不产生于大脑,而是YHN—KHE—237与其接触过的部位。
若YHN—KHE—237—1在YHN—KHE—237修复完成前未受到物理损伤,则不会转化为YHN—KHE—237—2,并且其今后都不会产生癌症,因体内致癌基因与抑癌基因受到████的血色粘膜影响,基因表达受到严格管控。但若该个体今后在其他个体使用YHN—KHE—237时受到物理损伤,则仍然会在YHN—KHE—237修复完成后转化为YHN—KHE—237—2。
当YHN—KHE—237—2同时存在5个个体时,将会自发发生聚合,形成███,███外形为血色粘膜形成的蛹,体长5m,宽高为3m,表面不断膨胀收缩,频率与人类心跳频率相同。5日,███表面将破裂,从中涌出难以计量的YHN—KHE—237—3,YHN—KHE—237—3外观与血液相似,但其底部覆盖人眼的玻璃体,躯体细而长,只会与相对速度较慢的物体发生物理接触。YHN—KHE—237—3在接触到活体时,将融入其内,活体被转化为YHN—KHE—237—2。
YHN—KHE—237—3在足够多时,最终会凝聚形成███,这会引发一系列████████。这一实体带有某种现实扭曲能力,但影响范围限定为特定场景,场景遭遇严重破坏时,███消失。
研究记录
在█████医院对YHN—KHE—237展开第3次回收行动时的行动记录,因源文件损坏,转译为文字描述。
1997年█月2█日
YHN—KHE—237被发现于██的███市█████医院三楼手术室内,发现时已导致医院全体人员受到影响,并尝试冲击封锁。在先前两次回收行动失败得出经验后,由无人机观测,于YHN—KHE—237完全修复当天,███特遣队在凌晨2:00赶到进行镇压与收容,因后门YHN—KHE—237—2数量过多,由医院正门进入。
由正门进入时,医院大厅布满残破尸体,内脏、脂肪、血肉与皮肤碎片混杂,流淌在地面上,大厅柱子后方分布5只███,███特遣队使用火焰喷射器对其进行焚烧。3号队员在焚烧时遭到潜伏于尸体中的YHN—KHE—237—3袭击,因身着防爆服,并未受到损害,使用火焰喷射器将YHN—KHE—237—3焚毁。但防爆服出现缺口,暂时撤退进行修补,由医院外待命成员顶替。
3号队员在撤离过程中遭遇无法观测的攻击,瞬间失去上半身,大气污染检测设备检测到一小片区域内悬浮颗粒物相较于其他区域过多,且有悬浮的骨骼碎片,攻击来源判断为转换前经历火化的YHN—KHE—237—2。其他队员发射致密网进行捕获,随后前往楼梯间。
在楼梯间中遭遇了失去上半身的YHN—KHE—237—2,在腰部断口处覆盖粘膜,靠近███特遣队时,从粘膜中衍生出手臂,向小队成员进行抓取。███特遣队立刻进行火力压制,将目标双腿击碎,随后绕开YHN—KHE—237—2前往二楼。
到达二楼以后,███特遣队遭遇生还者,通过暴力测试,发现其为YHN—KHE—237—1,随后立刻判断情报有误,进行撤退。在撤退过程中,███特遣队的录像设备中显示,一楼被鲜血淹没,而窗外被鲜血覆盖。但███特遣队肉眼并未观测到这一变化,直接走下楼梯,被鲜血淹没,随后失联。
在医院外待命人员的录像设备中显示,医院内一切如常,███特遣队在下楼时突然失联,携带的设备与物品滚落到一楼。
███特遣队失联后,备用方案启动。重新等待5天后,对医院进行饱和打击,打击结束后,由剩余队员从废墟中回收YHN—KHE—237。
探究YHN—KHE—237—1向YHN—KHE—237—2的转化过程,并观察其生理特性。
使用液压机碾压YHN—KHE—237—1上半身:在YHN—KHE—237完全修复后,YHN—KHE—237—1在一分钟内,上半身不断扁平化,血液与内脏碎片受到挤压从孔洞处喷溅,骨骼碎裂,直到上半身被完全压断。随后开始转化,从压断断口处逐渐形成血色粘膜,黏膜通过划分不同区域进行不同频率的收缩膨胀顶替不同功能,并在边缘形成玻璃体结构,随后衍生出晶状体。
利用反器材步枪对YHN—KHE—237—1大脑造成完全损伤:YHN—KHE—237—1在伤痕复现的1分钟内,头颅瞬间消失,血液涂满观察室的天花板与墙体,从脖颈处形成血色粘膜,同样形成眼球结构与接受震动而不主动震动的膜区域。随后向观察室内投入生牛肉,YHN—KHE—237—2拾起生牛肉并置于脖颈前,脖颈处血色粘膜延伸出触手接触生牛肉,并在3秒内将生牛肉消除。
因第二次实验的实验素材较完整,故对其进行沟通,以下为沟通记录
“你好,你有正常思维吗?”
【YHN—KHE—237—2粘膜产生震动,形成声波】
“雿惩末嚗峕穃虾隞亙毺鍂雿删铜匧梹”
“额,你还会人类的语言吗?”
“煾𠗕㮖齿糓銁雿輻鍂鈭箇掩霂剛梹煺㰘單𨑳衤梹”
沟通实验失败
附录
《马太福音》:“凡是有的必使其加倍,凡是没有的必连同剩下的一起夺去。”
《罪与罚》:“我只想证明一件事,就是,那时魔鬼引诱我,后来又告诉我,说我没有权利走那条路,因为我不过是个虱子,和所有其余的人一样。”
《神秘岛》:“历史喜爱英勇豪迈的事迹,同时也谴责这种事迹所造成的后果。”
« YHN-KHE-0236 | YHN-KHE-0237 | YHN-KHE-0238 »

