: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-729
项目名称:梵高的星夜月
项目等级:DANGEROUS
归档人员:疯子
收容措施
YHN-KHE-729应被密封保存在一个内部完全黑暗的保险柜中,该保险柜用合金构造,内部涂有梵塔黑涂料,所有研究人员在没有最高指令的情况下禁止开启保险柜。
该区域所有监管人员必须每两天进行一次精神评测,以确保精神状态稳定,对于出现异常的人员,安保人员必须枪决该人员并进行尸体无害化处理,对于设施的检修工作,需派以经过特别训练的可消耗人员进行检修,如检修人员受到影响,则对该区域进行封锁并派出特遣队员进行清除,直至警报解除。
项目描述
该异常项目为梵高1著名画作《星月夜》,由于其特殊性质,目前协会无法判定两幅画中哪一个是梵高著作,画作被镶于昂贵的画框中,其被发现于荷兰的■■■小镇,该异常在被探测到的时候已经造成了群体性精神污染,据统计共有100多人受到影响。对于被污染的个体,协会规定将其统一命名为YHN-KHE-729-2,根据收容记录和Dr.■■■的笔录,可以断定该项目具有极强的精神侵蚀,并且该过程无法逆转,且伴随着明显的身体外观改变。
YHN-KHE-729-2是受到该异常项目精神侵蚀所诞生的个体,其身体部分部位呈现后印象派风格,双眼也会与产生与身体同样的异变情况,该个体会在整个转化过程中以一种狂热状态接近YHN-KHE-729,以此来加速转化速度,并且他们会试图将YHN-KHE-729暴露于所有人的视线中,当受到影响的人数到达37人的时候,YHN-KHE-729-2便会有组织有纪律地绑架其他人接触画像,完成人员扩张,目前没有研究报告说明YHN-KHE-729-2的最高智力如何。
YHN-KHE-729-2的转化过程分为三阶段:
一阶段
受影响人员会出现幻觉,精神失常状态,并在该阶段拥有接近YHN-KHE-729的行为。
二阶段
受影响人员彻底失去自我意识,双眼变成《星夜月》画作,外观无明显变化,对正常人具有敌意,会主动发起攻击。
三阶段
受影响人员外表发生变化,身体组织变成后印象派风格,身体在受到伤害后所流出的液体为颜料,仍对人类抱有极大的敌意。
附录
收容记录
此次收容行动中,共有一支行动小队被异常污染,两人受伤,且该小镇所有信息已被全部抹除。
行动音频2
①:这次行动所有人都打起精神来,根据情报显示,我们有两名侦查人员在这里失踪了,别把自己整成下一个失踪的人!
②:队长,那里怎么那么多人啊?
①:小心点,别出什么事了……你们在哪里干什么……你们要干什么?
③:他们的身体不对劲!!!
①:快开火!快开火!
④:他们到处都是!!!
(信号中断)
后续处理
在确定信号丢失的五分钟后,总部组织派出更高等级的行动小队进行收容,在行动过程中,失踪的小队成员已被YHN-KHE-729影响并向行动队开火,造成了一定的伤亡,在消灭所有YHN-KHE-729-2后,我们成功收容了YHN-KHE-729。
在行动结束的三分钟后,部分看过YHN-KHE-729的行动队员陷入了疯狂状态,好在被快速镇压,没有造成伤亡,在镇压过程中几名发疯的行动队员一直在用各自的母语重复“星月夜”这个词语。
关于行动所涉及的小镇,协会高层已决定对其执行清除协议,以保证协会不会暴露在公众视野之中,目前小镇已被协会安置在政府中的员工封锁,禁止外人进入。
Dr.■■■的录音记录:【已删除】
Dr.■■■在YHN-KHE-729被成功收容后第一时间接触到了YHN-KHE-729,并且从事该项目的研究工作,但是在第二天,我们只在她的办公室看到了被黑布覆盖的YHN-KHE-729和自杀的Dr.■■■,在她的尸体上我们发现了大量的切割伤害,送葬人部门员工推断Dr.■■■, 是通过自残行为延缓转变影响,并保证自己受痛觉影响保证意识清醒。
听完语音记录后,我们才得知有关YHN-KHE-729的具体特征……她详细记录了转变全过程,并且在最后总结出了该项目的影响,这次记录是她在承受着巨大的精神折磨中完成的,感谢她的牺牲,我们才能安全管制YHN-KHE-729……
我们无法得知到底是什么支撑着Dr.■■■, 完整记录了整个转变过程,但是毋庸置疑的是Dr.■■■, 就是当之无愧的英雄。
我十分建议协会能正式通过替换协议,我们部门的员工已经快累坏了,尤其是这种被异常所污染的尸体,我们部门处理起来麻烦的要命。
——医疗部部门员工
你们说■■■,梵高会不会也是个可怜人?■■■他的孤独永远不会有人知道……我甚至能听到他的叹息……看到他的悲哀……
[[>]]
——Dr.■■■
[[/>]]
(该语录已进行认知处理)
警告
在20■■/■9/■■ ,YHN-KHE-729的录像被人恶意泄露到英国■■■博物馆,并造成了重大异常侵蚀事件,在该行动中,共有12名行动人员在此次镇压行动中牺牲,为防止该事故再次发生,协会已下令销毁所有与YHN-KHE-729有关的录像,如果发现有私藏录像带的行为,按照背叛协会的罪名进行审判。

十五人议会
档案补充
YHN-KHE-729-2的危险程度超出了我们的预期,一位设施部长在YHN-KHE-729送到站点的时候受到污染,并且在很长一段时间内没有被协会发现,在该设施部长完成转化后,一直潜伏在协会设施之中,直到在一次会议中,该YHN-KHE-729-2在投影仪上展示了YHN-KHE-729图像,污染了所有参加会议的设施人员,根据幸存人员报告,该YHN-KHE-729-2在会议现场将自己所有的异常特征全部隐藏了起来,并且在设施过半安保人员和研究人员都被污染的情况下依然保证着其他异常项目的正常收容,根据监控录音内容表明,该YHN-KHE-729-2原本计划将该异常的影响扩散到其他设施,所幸其他设施负责人及时收到警报,得以在第一时间作出反应,但是在镇压过程中,YHN-KHE-729失踪,部分YHN-KHE-729-2不知所踪,协会推测是YHN-KHE-729-2带走了YHN-KHE-729,目前异常位置未知,为避免情况进一步恶化,高层决定不惜一切代价重新收容YHN-KHE-729,目前那名带头暴乱并且带走YHN-KHE-729的YHN-KHE-729-2被正式定名为“月亮”,并且判定抹除程序。
协会决定,如果情况继续恶化,可以尝试销毁YHN-KHE-729。
根据目前有关“月亮”的记录,可以确定Dr.■■■也属于特殊YHN-KHE-729-2之一。
«YHN-KHE-0728 | YHN-KHE-0729 | YHN-KHE-0730 »

