: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-548
危险等级:DANGEROUS
发现地:■■市■■村附近的荒山中
归档者:夏末
特殊收容措施:在未被使用时,YHN-KHE-548应当被存放在一个60cm×60cm×60cm的由钢化玻璃组成的盒子内部,盒子内部应存在将YHN-KHE-548完全浸泡的鲜血,该盒子应当由至少两位协会成员同时看守,看守人员应当在血液凝固之前,及时更换容器内部的鲜血。在没有得到至少两位博士层阶权限的许可前,任何人不得擅自将YHN-KHE-548从收容盒中取出并佩戴,如果有人得到许可并将YHN-KHE-548佩戴,也应该在三分钟内将YHN-KHE-548摘下,避免该人员变为YHN-KHE-548-2。
外观描述:
九相之刑是一件由白骨磨制而成的手镯,其上雕刻着一只长有九首的巨兽,巨兽图案表面存在意义不明的阴刻纹路,纹路中由鲜艳的红色颜料填充,所有纹路皆最终以巨兽浮雕的眼部为起点与终点。
能力:
YHN-KHE-548将会在吸收宿主的一部分血液后自行激活,激活后,会以YHN-KHE-548为起点产生一件由爬行类生物鳞片材料制成的全身护甲,该护甲会随着YHN-KHE-548被取下而消失,护甲的保护范围包括了躯干,四肢与头部,护甲通体漆黑,并无额外纹路装饰,被称为YHN-KHE-548-1。
YHN-KHE-548-1表面十分坚韧,可在未破损时保证使用者的人身安全,并使得使用者的身体机能得到极大幅度的增长,但YHN-KHE-548使用者的行为会随着YHN-KHE-548-1出现逐渐产生严重的暴力倾向,且使用者的血液会在YHN-KHE-548-1出现的一瞬间发生变化(详情见本篇档案的实验报告2),已经发生转变的使用者被称为YHN-KHE-548-2。
当YHN-KHE-548-2受到致命伤势时,YHN-KHE-548将会抽干使用者的全部鲜血,并将其释放,被抽走的血液会转化成YHN-KHE-548-3,一片可以腐蚀常规生物的血泊,该血泊会存在二十四小时,该血泊的规模根据使用者的体型而定。
现状:
在特定情况下可遵照相关规定,将YHN-KHE-548将作为收容手段之一调出,若使用者无法确保在三分钟内完成任务内容,应在确保使用者自愿的情况下,召唤YHN-KHE-548-3。
智能:
目前尚未发现YHN-KHE-548拥有自我意识,但安德鲁博士曾提交过一篇YHN-KHE-548当中可能存在一道沉睡意识的报告,出于安全性考虑,暂且认为YHN-KHE-548拥有智能,并作出相应防护,避免看守者被其蛊惑(详情见实验记录2中的录音记录)。
故事1:
■■■■年■月■日,位于■■市当地的警局接到报案,■■村发生大规模屠杀事件,当警方赶到时,■■村仅剩下一名活口。
据该名村民口述,凶手是一位浑身被漆黑铠甲包裹的不明人士,案发当时,对方恰好从村子附近的一座矮山上下来,在见到村民的第一时间便大开杀戒。
负责此案的警官判断,该凶手极有可能逃入山林之中,在组织大规模人员进行搜山却一无所获后,该案件被封存,直到被协会人员注意到。
协会派出收容小队,最终在一处隐蔽的,因为地震塌方而显现出来的山洞中找到了已经被侵蚀成YHN-KHE-548-2的凶手(后被命名为YHN-KHE-548-0),在经历一番苦战并付出惨痛代价的情况下,收容人员成功将其击毙。但随之产生的YHN-KHE-548-3将该小队淹没吞噬,仅剩一人幸存,该幸存人员于YHN-KHE-548-3消失后找到了位于血泊中的YHN-KHE-548。
故事2:
在完成针对YHN-KHE-548的收容后,协会组织人手深入探索YHN-KHE-548-0临死前躲藏的洞穴,并于洞穴深处发现了一座已经腐朽的宏伟地宫,地宫中立有一块刻有大量古篆的石碑。以下是经过翻译的石碑内容:“祂不甘,祂愤怒,祂的天赋成为了最有力的罪证,当利刃落下,,祂向天空发出咆哮,以血肉设下诅咒,当血海的浪潮遮蔽天空,吞噬大地,死去的厄兽会自血海中苏醒,将世界拖入无尽血海,品尝祂曾经的痛苦与绝望。”
实验记录
2019年8月15日,星期四,由安德鲁博士独自主持,目的是寻找YHN-KHE-548-1能承受的力量极限极限,以及探寻YHN-KHE-548的使用者的身体可能存在的变化,YHN-KHE-548由实验志愿者进行佩戴,成功唤出了YHN-KHE-548-1。
以下是实验概况。
经测试,YHN-KHE-548-1可以在包括高温、低温、真空、深海等极端环境下保护使用者不被环境因素所伤,也可正面接下反器材狙击步枪的一次射击后保证自身的完整。
以下是实验过程中的部分录音。
“感觉如何?”
“我有点头晕……它好像在抽取我的血液。”
“除此之外呢?还有什么。”
“等等,我脑袋里突然有个声音……啊!”(痛苦的嘶吼)
“来历不明的声音(笔尖摩擦纸面的声音),然后呢?”
“它要我……要我杀了你们,这样我才能重新拥有自由……”
“嗯,还有微弱的精神层面的蛊惑性。来人,带我们的志愿者去进行身体检查。”
……
“肌肉密度提升,骨骼密度提升,肺活量提升,血氧含量提升,自愈速度加快……所有身体机能全部大幅度强化,但失去了一半的血液,不过这部分血液正在飞速再生,而且剩余血液好像产生了变化。助手,抽取他的一部分血液进行化验,今天的实验到此为止。”
实验报告:经化验,抽取的这部分血液拥有着强大的腐蚀性,除了拥有腐蚀性外,该部分血液的常规数据均无异常。初步怀疑是YHN-KHE-548改变了佩戴者的体质,使佩戴者分泌出一种特殊物质,改变了血液的性质。
在针对大部分常规材料的测试中,发现该腐蚀性仅针对有机物,在接触无机物时未有任何反应。在针对常规生物的接触实验中,YHN-KHE-548-2的血液对常规生物组织的腐蚀进程无法被现代医学阻止。
该部分血液拥有着极强的腐蚀性,但志愿者在转换期间并无不适,初步怀疑在YHN-KHE-548-2体内会产生一种可以中和YHN-KHE-548-2血液中腐蚀性的物质。
2019年8月23日,星期五,由实验2中的志愿者再次佩戴上了YHN-KHE-548,本次实验目的是确认实验2中的两个猜测,在经过常规流程检测后,确认两种物质的存在,改变血液性质的物质被命名为YHN-KHE-548-4,中和血液腐蚀性的物质被命名为YHN-KHE-548-5.
试验结束后,实验人员依据规定回收YHN-KHE-548,但却遭到YHN-KHE-548-2的拒绝,该志愿者认为YHN-KHE-548被回收后,已经转化为YHN-KHE-548-2的自己将会被“无害化”,实验人员只得将其击毙。
在收容报告中出现过的YHN-KHE-548-3在志愿者死去时出现,但YHN-KHE-548-3只吞噬了已经转化为YHN-KHE-548-2的志愿者,研究人员在YHN-KHE-548-3失效后从中打捞出完好无损的YHN-KHE-548。
实验报告:经测验,现有技术尚无法分辨构成YHN-KHE-548-4与YHN-KHE-548-5的成分。
YHN-KHE-548-5在接触空气的一分钟内便迅速失去中和效果,进一步实验确认是因为只有YHN-KHE-548-2的体内是适合YHN-KHE-548-5的环境。
YHN-KHE-548-2的血液拥有着极强的传染性,因沾染YHN-KHE-548-2的血液而被腐蚀致死的生物体,其血液拥有着和YHN-KHE-548-2血液一样的腐蚀性,经实验,导致该结果的因素为YHN-KHE-548-2血液中残留的YHN-KHE-548-4,残留的YHN-KHE-548-4同样改变了该生物体血液的性质。
附录
当YHN-KHE-548-3于第三次实验爆发后,安德鲁博士上传了一份文件,称他在YHN-KHE-548-3中隐约看到了一道九首巨兽的虚影,排除是自己因为压力而产生的幻觉后,安德鲁博士联系到实验记录2中YHN-KHE-548存在的蛊惑性,推测YHN-KHE-548中应该存在着一道正处于沉睡阶段的意识。
以下是安德鲁博士与其助手的对话录音。
“博士,您说YHN-KHE-548中可能存在着一道沉睡的意识,那要怎样才能唤醒这道意识?”
“让它一直睡下去吧,唤醒它或许并不是什么好事。”
«YHN-KHE-0547 | YHN-KHE-0548 | YHN-KHE-0549 »

