: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 }
我今天的工作,是来整理一些资料的,关于那些已经被毁灭的层级。
我已经忘记M.E.G.开始取消编号是什么时候的事了,不过也好,起码那些已经被毁灭的层级不会占着编号,正如那星辰明灭,名字应当留着,但编号还是留给那些还“活着”的层级吧。
我打开了相关的通讯记录,想去看一些那些被毁灭的层级都经历了什么,不出意外,无非就是些哀嚎与祈祷……
但我发现了几个奇怪的通讯记录:
汇报人员:██
报告时间:██/██/████
我们在层级内发现了一团疑似能量体的存在,并成功将其捕获,值得注意是在捕获的过程中发现它存在一定的自主行为。
在准备对其进行研究时,有一名研究员开玩笑说:如果这玩意就是个玻璃就好了。
其他人也回应了这个玩笑,但我们回过神来的时候发现它已经变成了一块不定型的玻璃,深入研究后发现这玩意无论从什么角度检测都是玻璃,无论是理化性质还是别的什么,甚至不小心打碎了它。
试图让它变成别的物质的尝试目前均告失败,当前正有计划将其转移至其他有条件的层级进行深入研究。
……
我们目前已经迷失方向了,对于这个新层级的探索依旧欠缺。不过我们运气不错,发现了一团奇怪的能量体,不知道是实体还是什么。
我们起初并没有在意,毕竟现在的当务之急是找些吃的,但就在这时,那团能量变成了一个面包,我们感到十分吃惊,有名队员表示他向那团能量“许愿”,想要一块面包,那团能量体旧变成了面包。
我们尚不清楚那是怎么实现的,我们也吃下了“面包”,就像是普通的面包。也许这样做很危险,但是如果不这么做就必死无疑,吃下去活着回去的概率起码增加。
祝我们好运吧。
……
这几个层级里甚至没人意识到他们所处的层级要毁灭了,还是说来的太快根本来不及反应?他们没有求救,反而都在描述一个可以被叫做“实体”的东西,巧合吗?我准备继续整理。
这时,我看到了另一个人,我不认识他,这不奇怪,来这里查阅资料或者整理资料的人也不少。直到我们将手伸向了同一个地方。
“你是来查阅资料的还是整理资料的?”我有些警惕的问了一句。
“整理。”很简单的回答。
“你是也来整理关于层级的资料?但这里都是些关于被毁灭层级的资料,而我不记得有其他人也在做这份工作。”我警觉了起来。
“实体,”他依旧平静,“不过也称不上是整理,我只是来看看你们是怎么记录这个东西的。”
“你们?”我心中警铃大作,“你是什么人?”
“这无关紧要……”他还是那样没有情绪波动。
他直接调出了一份资料,没有打开,只是淡淡地说:“Level C-1495,这是你们给的编号,毁灭于病变的同化,该编号目前尚未被重新启用。但是你们很疑惑,病变的蔓延有着明确的前兆,但这个层级似乎没有发出过任何的求助信息,只有少量的人死里逃生,他们没有闻到血腥味,也没有收到无线电的信号,更没有感受到震感,但猩红的血肉就那么吞噬了整个层级。”
我打开了那份资料,其中记录的关于曾经的Level C-1495毁灭后的报告,其大致内容与你面前的这个人描述的相差无几。
“你们在调查原因,但一直没有进展。”他拿出了通讯器,不过好像有播放录音的功能,“来听听我们从中截获的一份通讯记录。”
我接了过来,打开了录音:
……
这该不会就是那个C-1295那边提到的那个实体吧,可这东西现在还不是玻璃。
鬼知道,那边全变成玻璃了,也不知道发生了啥,指不定就是这东西在搞怪。
可这东西就是一个漂浮在能量体,要不是它能让光线偏折,我们都看不到它,还是说不要去想它是啥就像。
谁知道啊,万一这东西像那个叫病变的rede实体,那咱们岂不是完了。
说的也是,这东西是病变的话,咱们确实都得完……
[脏话],那东西怎么变成一团肉块了?!
[规律的背景杂音]
什么情况?
桌面![脏话],这东西在同化别的东西!
快跑!
……
“难道说?”我有些惊讶,“难道不是正常的……”
“那几份资料都还在,要不要看看那些层级是怎么毁灭的?”他问我,指着那些我尚未整理的内容。
我看着屏幕,还是打开了那些文件:
……
我们通过常规手段进入了Level C-1295,目前已经确定内部已经彻底玻璃化,通过简易的检测装置,确定层级内的所有物质全部都是玻璃,成分似乎都是一致。
经过探索,我们确认内部未发现任何生命迹象,且存在大量人形以及各种层级内原本具有的实体形状的玻璃。他们的组成成分经确认是玻璃,流浪者的身体结构完整的被保留着,部分断面显示其内部结构应该未发生变化,推测这里所有事物都直接被转化为了玻璃且其基本结构未发生任何变化。而且他们似乎完全不知道发生了什么,就这么……
层级内出现了大量损坏的结构,根据之前层级内的记录,很显然玻璃很可能无法支撑得起这些结构导致的损坏。
另外,层级内全都是玻璃结构让我们以及出现了空间迷向的症状,我们申请立刻离开。
……
后续:我们发现了该层级的切出方式已经失效,在后续的队伍支援下才得以离开层级。另外层级内的层级效应也确认失效了。
……
如果这也算是个层级的话,我觉得这个层级该改名了,干脆叫面包吧。
我们还好,上一个探险队进来之后直接没了,原因是这里没有任何空气,正因如此才使用全套的装备进入。当前该层级内没有光源,我们只能依靠手中的照明装置。同时层级环境无法深入探索,这里应该是连空气都变成了“面包”,这还不是一个个的面包堆叠成的,现在就像在面包里面穿梭。到处都是面包内部的那种絮状结构,前进的阻力太大了。
目前我们探索的速度十分缓慢,所携带的物资根本坚持不了太久,目前正准备采取撤离措施,等待下次做好充分的准备后再进行深入的探索。
……
[已编辑]
……
内容已经编辑,这就是一个窃皮者尸体的内部。此层级内部结构与已知的窃皮者解刨结果类似,但层级内部原有的结构似乎也是其组成部分,这导致内部结构根本无法支撑其“生存”的必要条件,这大概就是这个“巨型窃皮者死亡”的原因。
……
“也就是说……”我看着资料,“这东西会把整个层级变成和它一样的东西?”
“很难说,”他收起了给我的通讯装置,“但根据我的情报不是它做的。有一个倒霉蛋他亲眼看着有另一个东西进入了层级。”
“倒霉蛋?”
“其实不止,你可以去溯源一下,这些层级都在那个实体发生变化后出现了轻微的通讯干扰,不过那干扰基本上可以忽略不计。”
“我好像有印象,之前的录音里有十分规律的杂音,但那不是背景噪声吗?”我有些不解。
“我这么说空口无凭,这些需要你去溯源。”他摊开手,摇了摇头。
“所以,你的目的是?”我问。
“和你一样,整理最后的资料,如果顺利我也不介意分享结果……”他的眼睛瞬间瞪大,似乎看到了什么,“不过现在我们得赶紧跑了,不要去想,不要思考任何东西,跑!”
我回头,看到了那个漂浮在半空,似乎在扭曲着周边的一个“能量体”……
通告
由于未知原因,存储大量数据资料的Level ███失去联系,根据从层级内离开的人员表示,该层级已经被毁灭。目前,M.E.G.正在组织探索小队,同时也着手开始对损失资料的恢复。
M.E.G.数据库
