: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-0057
危险等级:SECURE (locked)
归档者:大聪明
本档案编辑权限已锁定。详情请咨询Dr.Raphmandas
收容措施:经Dr.Raphmandas协助,转化为书籍状随身收容。
描述
一座占地面积超6000平方米的哥特式建筑。内部书架呈放射形排列,中心为服务台。内有一名图书管理员。
现已确认该建筑为YHN-KHE-057各类形象之一。其内部据“图书管理员”声称收录有囊括了“世界上所有的信息”的书籍,但当向对方请求提供与目前各领域尚未解决的学术问题相关的书籍时,其拒绝透露目标书籍的具体位置。
该建筑于1992年被英国人█████第一次观测到出现在埃及帝王谷,该建筑在特遣队队员及随行专家到达3小时27分钟后于当地时间上午7:35消失。
该建筑于2003年被一名于█████警察局中任职的情报人员报告发现。收到报告4小时53分钟后,协会所派特遣队及随行专家抵达该建筑,并与其内部的图书管理员进行了交流。
现已与协会建立稳定联系。(存疑)
附录
异常现象(超自然)
时间:2003.11.12 9:35
地点:██████████警察局
估测程度:INTRANQUIL-DANGEROUS
事态:紧急
内容:
调查一起谋杀案的警员在市立图书馆内找到了这起谋杀案的结案报告,且署名为自己本人。根据此报告该警员才成功将嫌疑人抓捕归案。现怀疑该建筑或其内部中有物品涉及因果方面的超自然现象,请求许可进行调查。
附件:图书馆外景.jpg
回复:
已知悉。尝试确认知情人名单,调查队伍预计将于4小时后抵达,请作好接应的准备工作并积极配合接下来的调查行动。——Dr. ███
经调查队伍进入建筑内部后,队员发现除坐在位于中心服务台,自称为图书管理员的人形生物(下称YHN-KHE-057-1)外,并无其他工作人员及借阅者。经观察交流后确认图书管理员具备高度智慧,该生物对待调查人员持友善态度,但在初步交涉时拒绝了特遣队调查建筑及内部物品的请求。
在特遣队接到协会允许并接受其提出的图书馆规章制度后,图书管理员随即表示会积极配合特遣队的调查行动并服从协会后续的调度安排,但其始终拒绝透露姓名。
调查中期时,在确认057-1的行为表现与正常人类无异后,调查人员认为异常现象的症结在于建筑本身,决定将其暂时以YHN-KHE-057为编号进行记录。猜测057-1正处于该异常的控制之下。所以专家在得到协会许可、并与057-1进行交涉并得到许可后,便尝试以各种方案分割057-1与057之间的联系,然而包括动用武力将057-1移出建筑甚至直接击毙的解决方案均已失败告终,通常情况下057-1会在各项方案完成后便立即重新于服务台处出现。
仅有一次在调查人员尝试点燃057时,057-1立即出现在该人员身旁并制止了该行为。其后057-1就该行为已严重违犯了其先前强调的图书馆规章制度这一问题表示极度不满,并通过调查队伍携带的通信设备与协会总部的Dr. ███进行了严正交涉;同时057垂直上升约100米,该现象持续15分钟23秒,以Dr. ███担保协会任何调查行为都会以保证057建筑本身与藏书的安全为第一要务结尾。在此期间在场调查人员发现周边行人对这一极为明显的异常现象视若无睹,随即对三名行人以当地某旅游节目记者的身份进行了采访,确认了“市区内并没有市立图书馆”。然而在交涉结束后,正在接受采访的第三名对象却确认了市立图书馆的存在,并提供了相应的地址。经确认该地址正与057降落后所在的街道位置相符。
而根据多次实验结果,可以确认的是:
- 057-1与057之间存在深层紧密关联,目前已排除双方为从属关系的可能。
- 057自身具备干扰观测结果的能力,干扰效果主要作用于生物感官以及相关的记忆。
在接下来方案实施的过程里,057-1始终平静且顺从的表现甚至使两名调查人员出现了精神崩溃的症状。因此在进行反馈并收到协会关于调查方针上的指示后,立刻停止了这一方面的尝试,并改用了以面谈形式获取信息。在谈及1992年第一次调查行动时,057-1表示对此知情,并解释了057突然消失的原因:当时那名来自英国的第一目击者尝试以工具破坏建筑外层,这在图书馆的规章制度中是明令禁止的。由于对方并不知晓馆内规章,故而没有惩罚对方,而是选择了转移建筑。
在后续交流中,057-1对协会表示了一定的兴趣,并表达了加入协会的意愿。在经过核查后,其作为协会顾问随行特遣队协助执行高危任务。
由于受限于馆内的规章制度,并鉴于调查行动第一阶段中出现的变故,调查初期时,调查人员选择以口头询问的形式与图书管理员进行交流以推进调查。据图书管理员所述,该建筑于公元3085年在名为拉夫曼达斯的城镇内建成。其交流时强调,馆内藏有记录该城镇历史的同名书籍。随后调查人员找到了目标书籍,随行博士Dr.Amalie经图书管理员许可后办理了借阅手续,将书影传回了协会总部并进行了研究。
目前已确认“拉夫曼达斯”不存在于已知的任何时代中。书中所记载的历史自公元3085年起,至公元前1051年终。书内记载该城镇终于一场大火,仅有三名人员生还。
不同于常规史书的记录形式,多用隐喻进行历史记录。其中出现的年份谬误推测是记录者刻意为之。拉夫曼达斯可能是某一个前文明的代称。生还的三名人员,其中一名已可确认为图书管理员。调查尽量通过直接与其交流的形式进行,避免发生任何形式的冲突。禁止一切侧面进行的辅助调查。建议尽快上调该档案危险等级。
——Dr. ███
条目更新:取消上调危险等级的申请,维持原有危险等级。
“我知道你有很多想问的,眼下正是一个合适的机会,毕竟我是应聘者,而你是面试官。”
“你的目的。”
“只问这个?其余的疑问都不想获得答案吗?我记得你们这97天来所做的每一项实验,全是无用功,不是吗?”
“我不在乎,我们不在乎。你们总会骗人的,各自都有一套关于世界之外的谎言,协会听腻了。所以,我只要你回答问题。”
“嗯哼——好。那我便直说了。我需要一个合适的去处,为着一种可能性。
“你们同意了我的应聘申请,但你们显然还不明白我是什么,对不对?别盯着这本书了,一路上跟你走过来,它受到的关注可比以往千百年间加起来还要多得多。你们总是在最不恰当的地方保持着谨慎,以至于这么快就忘了和你们朝夕相处的老朋友……”
(响指声)
(警报器蜂鸣声)
“你做了什么?”
“把它摘下来吧,虽然你的耳朵可能受得住。别费心去听报告了,不过几句话的事情:那一栋建筑消失了。你们的调查人员还是没有停止那些浪费时间的监视。不过,这样也可以让对话更简单一些。
“简单来讲,你们所见的建筑仅是这本书的影子,而这本书则是这个世界内知识的集合体。”
“呵,姑且不论那么大一幢房子怎么能算作“影子”,一本记录了所有知识的书?我可以理解为你是想说这个世界存在末日,是吗?这倒是有些新意。你活了这么久——就当你确实活了那么久吧——就想出了这一套唬人的说辞?”
“你觉得我会在乎你的想法吗?就像你刚才说的:‘我不在乎’,唔,也许吧;毕竟我有多少价值可全赖着这个世界能活多久……但这事暂且不管,我就先顺着一个话题往下说。
“你们研究了那本书那么久,研究了点什么出来?原地踏步。
(轻笑声,叹气)
“说真的,我本来不想见你们。但这一次你们确实和那些自焚者有些不同。”
“不要说些不相关的——”
“行了,你后头的人都没讲话,你就别插嘴了。接下去说。我清楚博士会看到了什么程度,他们会认为那场火是一场灾难,是那些人的咎由自取。但事实上不止。
“这是一场失败的自救。他们本希望通过那火烧过来之前从那源头逃离自己的命运,但毫无疑问没有成功。
“但你们还有可能,有更加充分的时间,以及,虽然用你们的话来说,‘很不人道’的是,你们还有几次用牺牲者换来的试错机会。
“你知道的,虽然我们可能不熟。”
(小物件与桌面碰撞的轻响)
“‘图书管理员’。久仰。非常抱歉,我只能以分身来见你。但我想,这应该不妨碍我们之间开诚布公地聊聊吧。”
(被放置于YHN-KHE -057档案袋中的纸张)
如果您读到了这段文字,请不要试图将这张纸与档案袋分离。因为这是无用功——我尝试着通过057对这张纸赋予了某项异常能力。其具体表现为:受力的作用时,可以在不改变其物理性质的前提下向任意方向无限制的延伸。
如果您对此持怀疑态度的话,不妨来试一下吧。相信您很快就会发现,这一次试验相当成功。
同样的,如果您具备足够的洞察力,相信您也能明白,您可以在这张纸上写一些您想写的,因为它永远写不到头。
另:为了便于本档案信息更新,所有057档案中都放入了相同的纸张。请注意,任一纸张上留下的字迹都会出现在其他纸张个体上。协会异常信息库也会定期上传更新该纸张上的内容。落笔留言前请认真斟酌措辞。
请各位注意,当访问YHN-KHE -057图书馆式形态时,请勿走进或将任何物体置于带有“阅览室”标题的房间内,如若不然,您将会被记载有关于自己或该物体的所有过往信息的纸质文件淹没。
所以你宁愿这么麻烦也不愿意把在前面文本上莫名其妙的权限锁去掉?
——Dr.Zenith佟天宇
这一点也不麻烦。
« YHN-KHE-0056 | YHN-KHE-0057 | YHN-KHE-0058 »

