: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-004
危险等级:ORIGINSUPREME
归档者:大聪明
描述:
模糊的高大人影。周围漂浮着众多渺小如烟尘的书籍。
第一观测者:YHN-KHE-002绘画家-完美
档案更新:由于YHN-KHE-006的活动影响,对绘画家-完美及其历史记录作失效封存处理。
前往查看:绘画家-完美历史档案
2014年6月28日早晨,一名协会文职人员在员工餐厅就座用餐时,发现餐厅地面上有一幅倒在地上的画作,在扶起画框后,该名人员出于好奇查看了画作内容,随即发现自身正不受控制地靠近画作。协会特遣队随行顾问Dr.Raphmandas恰好经过,借由随身收容的YHN-KHE-057隔绝了画作对该名人员的影响,并从中释放了一名协会总部警备人员以及数只蚂蚁。在仔细查看过画作内容后,Dr.Raphmandas通过YHN-KHE-057完成了对该幅画作的收容。
后续调阅监控显示,画作于6月28日凌晨3:12时出现在协会总部餐厅地面,4:13时该警备人员巡逻至此处并发现了画作,在扶起画框后便被吸纳入画中,随后重新倒地。这一状态持续至早晨文职人员与Dr.Raphmandas到达。
Dr.Raphmandas对此画作采取的收容措施为将画布拆下折叠后夹于YHN-KHE-057书页内,并驱使其将画布分解为对应知识粉碎后融入其中。
当协会准备进行后续调查时,画作本身已被彻底吸收,无法进行调查。在确认画框不具备特异后,调查人员只能寄希望于画作内容所传达的信息。但是画作始终背对着监控画面,且其内容似乎可以达到滞缓思想的能力,包括Dr.Raphmandas在内的目击者均无法回忆画作内容。调查被迫中止。
调查后续:
在协会与绘画家-完美进行交流后,确认该画作为绘画家-完美所绘,其所绘画面内容如下:漂浮于灰色背景中,由粗黑线条构勒轮廓、由大块白色填充的高大人形。其周围环绕着体积极小、数量极多的书籍,所有书籍呈摊开状态,其中各有一条线条射向位于中心的人形。
Dr.Raphmandas经由YHN-KHE-057确认该生物确实存在,且超于世界基础法则层次。目前从YHN-KHE-057仅能获知其空间状态为位于此地之外,且缺乏直接影响现实的手段。
项目名称沿用绘画家-完美观测后所绘画作名称“光影之隙”。前缀加入收容物状态与之区分。
结论:
确认为极高位次存在。正常情况下难以与现实发生任何形式的直接交互。无法收容。
但危险度极高。详见附录
附录
在经过与绘画家-完美绘制的画作“光影之隙”的直接接触人员及绘制者绘画家-完美交流后,初步确认该幅画作所具备的能力与负面影响互为一体:
持续吸引目击画作内容的生物直至目击生物进入画布。初期画面不会产生任何变化,到达一定阈值后画中人形将活化并尝试进入现实。
由于收容措施不当,该收容物已被彻底破坏,该人形活化后是否具备智慧,能否交流均无从得知。
注:由于Dr.Raphmandas并未按照安全规定收容“光影之隙”而导致其损坏,严重影响调查进行。据其反常行为推测YHN-KHE-057经收容后随身携带仍可能对人体造成的不明影响。综上协会决定对Dr.Raphmandas进行隔离观察,为期一个月。在此期间Dr.Raphmandas需配合协会进行各项检查测试。
-
- _
“让我与我的影子(杂音)隔离,真是个好点子。
“在任何提到YHN-KHE-057的档案里,都在强调它是我随身收容的异常。再这样下去,我就要打算向上层申请一个心理咨询师的职位了。骗下属可以,别把自己骗了。”
“这是为了避免你再干出什么出格的事情,造成不必要的恐慌。我不希望自己的加长办公桌上再出现更多的文件,它已经放不下了。
“你从未在以前使用过如此直接的方式进行收容。这是不是代表——它与你的主体有关?”
“……”
“我们需要答案。YHN-KHE-057的档案一直无法更改,你也从未向协会全面展示你的能力。作为随行顾问,你确实为协会提供了高效的帮助。但是意图不明的善意并不能让人安心接受。‘所有命运的馈赠,都早已标注好了价格’,我们不希望到了付账的那天因为无力偿还而遭受沉重打击。”
“那就去调查。去动用一切的资源去追求真相。我不会阻挠你们。加入协会时我们达成的契约依然有效。”
██年██月█日
Dr.Raphmandas与Dr.数据丢失
第一次隔离审讯录音
审讯现场使用异常项目YHN-KHE-1002进行隔离处理,由于该项目潜在的未知影响,请对录音内容谨慎甄别。
由于绘画家-完美是YHN-KHE-004第一观测者,调查人员选择尝试通过与绘画家-完美的交流完善YHN-KHE-004的信息。在调查人员尝试按照绘画家-完美提供的信息绘制出YHN-KHE-004大致形象后,绘画家-完美却否认画面内容为自己所描述的形象,并重复了原版“光影之隙”的画面内容。然而此次所记录下的信息却与初次记录的对应内容在细节处完全不同。具体表现为:画面存在书籍环绕的人形,但其颜色及姿势发生变化。
请求对方重新叙述画作内容后,再次出现了上述情况。但绘画家-完美强调自己所重复的话分毫不差。
初步推测:YHN-KHE-004具备无法被正常观测的特性。
经Dr.数据丢失询问隔离中的Dr.Raphmandas后,推测得到证实。对方强调并非是无法被观测,而是无法被观测到,对象具备一定扭曲现实的能力。且指明YHN-KHE-004这一行为的目的是为了保护基础智慧生物避免因直视祂而遭遇污染(存疑)。
-
- _
“你在写什么?”
“之前答应告诉你们的关于旧日的信息。以前一直跟着特遣队跑,这次隔离算是有了空闲。”
“你不是知晓所有知识?难道时间层面的知识不足以让你具备停止时间的可能性?”
“这会影响历史进程。而且我觉得你比我更需要这种能力。19岁的身体应该也经不起连续一个月的加班和熬夜吧?”
(磨牙声)
“说实话,知道初步调查结束时,我才意识到协会对你们以及你们背后的存在知之甚少,我甚至在怀疑,绘画家的权能是否如同先前档案记录的那样没有限制。”
“看第二节第一行第一句。”
“‘相信神灵的威能。’所以绘画家没有问题?”
“你的提问非常可笑。高位次的存在所具有的权能其边界本就难以测定,特别是当你面对的神灵无需在源质的夹缝里寄生的时候。更何况校订绘画家档案时我也在场,自然不会放任谬误出现在涉及高位次异常的档案中。
“绘画家的观测和绘制一直非常完美,就算所绘制的存在层次高于祂,祂也依然能完美地复现004具备的权能与形象。你们无法确定祂的形象,只是因为人类无法承担直视祂的代价。”
“好吧。但我依然需要提醒你,这无法证明你和004对人类抱有善意。毕竟你编写的那份关于高位次异常项目收容须知就有大部分是假话。”
“我在重申一遍,我和你们站在同一立场上,只是方法不同。就像我要求高危作战中尽量随身携带那份须知,这是保命的手段。”
“这倒是我一直好奇的东西。为什么你始终坚持在开头保留这句话?”
“所有的须知所用的纸张都是从我的书里撕下来的——不要露出那副表情。你们一直认为我的书是我的影子,但事实上并非如此。它和我一样源于004对世界的投影,由纯粹的知识构成,是我的延伸。所以纸张上遗留的气息不是来自于057,而是004,所以你们无法直接利用——这会带来难以承受的负面影响,但可以用纸张本身进行直接威慑。这种虚张声势对部分至高效果微弱,但对那些仅是具有神性的存在还是能起到作用的,再不济也能争取一些时间。”
“‘全知并非代表全能’,你说的。”
“‘知识本身就是力量’,我说的。”
██年██月█日
Dr.Raphmandas与Dr.数据丢失
第二次隔离审讯录音
YHN-KHE-004 此地之外-“光影之隙”,本质为各世界信息统合体,诸界锚点,“馆长”。
以投影形式将自身与各个世界建立联系并收集统合各世界信息,已知收集行为不受限于时间规则,收集进度仅视投影是否抵达世界而分为未收集和已完成两种状态。故信息收集进程不受投影数量影响。
通常一个世界内最多存在一个投影(具备高度活化可能)。其影响范围为所处的世界范围。
目前已确认投影为YHN-KHE-057 拉夫曼达斯。(已收容)
YHN-KHE-004最初通过无意识连接的各个世界内部的文明交流接收到刺激,由此脱离混沌获得智慧,具备了自主行动能力。因此祂对智慧文明抱有一定好感。
自身最初具备连接和锚定各世界的特质,于是苏醒后仍然选择通过投影及世界的知识稳定自身状态,导致自身具备极高成长性,在苏醒前即掌握的稳定与变化、起始与终点的权能之后,又借自身的成长方式获取了知识方面的权柄。
由于YHN-KHE-004自身特质,故祂主张保护与稳定,反对任何高位层次存在直接影响世界内部发展进程的行为,并通过活化投影作为自身意志的践行者。
« YHN-KHE-0003 | YHN-KHE-0004 | YHN-KHE-0005 »

