: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 }
近日,警方在洛杉矶一处农场发现一具破碎的男性尸体,死法极其惨烈
尸体四肢丧失,体内大量器官丢失,全身■■■■■■■■,同时身上有大量撕咬痕迹
经法医初步判定,死者大概率是被野兽袭击而死…
可又有什么生物可以把一个壮硕的成年男子像撕纸一样撕成碎片呢?
危险等级:DANGEROUS
- 中立人形异常
- 较高智慧
- 高度危险
YHN-KHE-110的画像,由AI进行绘画,画像仅供参考
描述:YHN-KHE-110表现为一名身高172厘米,体重■■公斤,年龄17岁左右的黑色长发少女,橘色瞳孔。在其头顶有黑色的猫耳,没有尾巴,其头顶的猫耳不具备正常猫类具备的功能
YHN-KHE-110体内有正常人类的骨骼,但没有器官,尚不清楚YHN-KHE-110是如何说话和进行各项生命活动
YHN-KHE-110第一报告地点为美国洛杉矶一处较为偏僻的中型农场,其农场主及妻子儿女四人遭受YHN-KHE-110袭击,其农场主尸体被当地政府发现,后由协会介入处理,最终在距离农场约10公里的森林中发现YHN-KHE-110并成功收容
YHN-KHE-110具有正常的交流能力,较高的学习力与记忆力,因此在面对YHN-KHE-110的相关工作时应更加警惕
能力:YHN-KHE-110具有极快的再生速度与极高的生命力,肉体强度远远高于正常人类,无弱点
当YHN-KHE-110展现出攻击倾向时,YHN-KHE-110会张开嘴巴并从中伸出大量远超于自身体积的触手1攻击目标,在杀死目标后YHN-KHE-110会把目标尸体撕成小碎片并吃下目标,一般而言,此举动会使YHN-KHE-110脱离攻击状态或降低攻击倾向
YHN-KHE-110可以吞下大部分生物与物品,其触手上可以分泌具有强腐蚀性的黏液帮其消化,根据报告,几乎所有被YHN-KHE-110吞下的生物无一存活
YHN-KHE-110无进食上限,虽然YHN-KHE-110可以感受到饱腹感,但饱腹感只能降低YHN-KHE-110的进食欲望
当YHN-KHE-110超过10小时未进食时YHN-KHE-110会逐渐感到饥饿并提高攻击倾向2直到脱离饥饿状态
特殊收容措施:YHN-KHE-110应被收容在一间专属的单人收容间里,其墙壁与门皆接可通电,电压为10万伏。当YHN-KHE-110超过12小时未被喂食或表现出任何突破收容的倾向时应立刻通电并立刻联系相关人员进行处理
YHN-KHE-110每次喂食时至少喂食450斤牛肉3,喂食期间禁止与YHN-KHE-110交流且不得在收容间停留过久
访谈记录1
访谈时间:2013/04/05
访谈者:协会中级研究员
研究员:喂喂?(拍打麦克风)321321?好,所以,我该怎么称呼小姐您?直接叫110?
YHN-KHE-110:(没有回应)
研究员:她听得懂中文吗?(转向保安)
YHN-KHE-110:我听得懂
研究员:行,事先说一下,这些问题是我按着上头给我的表念的哈,你可别记我仇哈。我一个一个问,你一个一个答,聊完收工,你好我好大家好,ok?
YHN-KHE-110:(点头示意)
研究员:好,第一个问题,请问您记得您来自来吗?或者说,您是怎么出现的?
YHN-KHE-110:我不知道,从我有记忆开始,我就在那个农场了
研究员:但您能熟练与我们沟通,并且具有一定的社会常识
YHN-KHE-110:好吧,其实我只是过去的记忆很…支离破碎,只记得一些常识
研究员:哦?支离破碎还能精通五国语言?
YHN-KHE-110:我觉得这是常识,没什么奇怪的
研究员:行,下一个问题,您为什么要攻击并杀了那农场主一家?
YHN-KHE-110:我太饿了,真的,太饿了,如果你要我道歉的话,我愿意说一声,对不起
研究员:您有感觉一丝的懊悔吗?当时没有觉得难以下口吗?
YHN-KHE-110:我不是人类了,说难听点,在我眼中,你,人类,跟那些牧场里的家畜,在我眼中没有一点区别
研究员:那您为什么道歉?
YHN-KHE-110:因为这会让你,你们感觉好受一点,不是吗?
研究员:这样嘛…还挺体贴人嘛,哈哈(尬笑)
YHN-KHE-110:(沉默)
研究员:咳咳,我们换个话题吧,您有什么爱好吗———如果有的话
YHN-KHE-110:爱好?喜欢吃
研究员:没了?
YHN-KHE-110:没了
研究员:那您喜欢吃什么?
YHN-KHE-110:我不挑食,只要能吃,什么都可以,但我喜欢生肉,如果是牛肉就更好了
研究员:我还以为您喜欢吃人肉呢
YHN-KHE-110:人骨头太多了
[访谈结束]
收容建议:建议给YHN-KHE-110多配几件衣服,或者加个洗衣机也行
提出人:站点研究员
答复:通过,已联系后勤部配发额外衣物与相关洗衣物品
收容建议:能不能给墙壁加个自动通电功能?时不时都要看一眼真的很烦诶
提出人:站点安保人员
答复:暂不考虑,请继续按照特殊收容措施进行相关工作
收容建议:拜托了,救救孩子吧,YHN-KHE-110无聊时就会张开嘴玩它的触手,一张嘴下颚就掉在地上,下颚掉在地上后我就得进去扫…我可不想跟异常打交道,还是个DANGEROUS的异常
提出人:站点清洁人员
答复:已联系后勤部配发娱乐读物及少量玩具
收容建议:YHN-KHE-110不是说啥都吃吗?那让她吃■会怎么样?
提出人:[已处理]
答复:爬
事件报告
发生时间:2014/04/30
事件类型:收容失效
事件规模:个体级
发生地点:QUA4-17
事件描述:2014年4月29日中午12点30分时YHN-KHE-110拒绝进食并拒绝于工作人员进行沟通,后于2014年4月30日凌晨4点49分时用触手刺穿收容室大门并突破收容
突破收容后YHN-KHE-110先在站点收容区内游荡,随后朝员工区域方向移动,为避免造成大规模伤亡,站点主管下令封锁YHN-KHE-110附近大部分权限门并让员工区域员工向其他区域避难,期间曾派遣安保人员攻击YHN-KHE-110,但效果显微
在事故发生27分钟后,FRT Hermod-1受令进入站点,并与站点安保人员合作完成对YHN-KHE-110的镇压与收容工作
本次事件共造成了7名研究员死亡,11名安保人员阵亡,3名清洁工死亡,4名研究员受伤,7名安保人员受伤,1名FRT Hermod-1成员受伤。共造成大约45000元直接经济损失
批注:根据上层命令,YHN-KHE-110于2014年5月4日移交给HEX5-04进行收容工作
…
这里是哪?
利格图拉女士,我希望你能好好考虑,机会不多啊…
谁在讲话?
是是,我知道,我理解你利格图拉…
利格图拉…为什么我想不起来了…
但说真的,按真心话说,你愿意碌碌无名的活一辈子吗?
如果我们成功了,我们甚至可以■■■■■!
啊…对啊…我离成功就差一点啊…
我该怪谁呢?做了这种事情,报应也是迟早的,而那报应是…
—失德事件—
铁锈味的鲜血,肆虐的火焰,闪烁的警报,以及…背后的枪声
…
结束了…
鲜血流出,带走身体的温度,染红身上的白大褂
但…我…我不想死…
手颤颤巍巍的伸向衣兜内,拿出一根密封试管,里面的液体呈现出翡翠般的颜色
只要能活下去…什么都好…
真是可悲,最后的实验体竟然是她自己
« YHN-KHE-0109 | YHN-KHE-0110 | YHN-KHE-0111 »

