: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 }
“归乡路,漫遥途。”
“尘埃散去却又染灰无数。”
生存难度:生存難度:
等级等級 0
- 安全
- 稳定
- 返乡可能
Level R-223是后室R层群的第223层。
描述
本层级的山峰。
此层级表现为一处高度无法被精准测量的山峰,外观目测仅有不到500m的高度。当流浪者进入本层级时,他们总是会出现在山脚下的一段公路旁,一段石质的阶梯将依托山势而向上延伸。此层级无任何WIFI,无法与外界进行联络。如果你试图携带电子传输设备切入这里,设备将会发生猛烈爆炸,足以致流浪者死亡。
如果流浪者不踏入阶梯,天空将一直保持黑暗。山体的表面被大量草本植物所覆盖,其由阶梯两端蔓延并几乎占据了山体的其他所有部分。报告指出,流浪者尝试自公路离开山下皆会重新来到切入点。
“循环。”
“你曾经来过这里。”
因此,流浪者在本层级中唯一有效的活动为登上山路,当流浪者踏出第一步阶梯时,周边的环境将会开始发生变化。1:
“0。”
“你的眼前只有乌黑的雾。”
“就像是你曾被绊伤的路。”
随着流浪者开始走上阶梯,原本的山峰将消失,取而代之的将是无法计算长度的漫长路途。层级内原本极度黑暗的天空变得略微明亮,道路两侧的植被此时不发生任何变化。
“101。”
“你看见一抹破晓。”
“就像是你永无破晓的梦。”
当流浪者踏上第101级阶梯时,层级内将开始产生更加剧烈的变化。太阳升起八分之一,时间段则改变为傍晚。周围原先的草本植物的高度由5cm左右增至10cm左右,两阶石阶的相对高度也略有提升。
“201。”
“初日渐渐升起。”
“就像是你留下的一丝希望。”
踏入201阶梯后,太阳继续升起2:,草本植物中间开始长出部分的花朵,阶梯相对高度变高。
“301。”
“微风拂过脸庞。”
“就像是你曾经被遗忘的温柔。”
301,日升半,长出树,阶高至半米,攀爬难。
“401。”
“远方传来鸟儿的歌唱。”
“就像是你内心的自由。”
4,升,再高。
“501。”
“阳光穿过云层洒在大地。”
“就像是你心中的明亮。”
[数据缺失]
“601。”
“你走过青草丛生的原野。”
“就像是你追寻的自我。”
[数据缺失]
“701。”
“明日高悬,日光隐曜。”
“就像是你未来的光明。”
[数据缺失]
“801。”
“阳光普照,温暖着心房。”
“就像是你家人的关怀。”
[数据缺失]
“901。”
“山路将尽,强弩之末。”
“就像是你即将结束的路途。”
[数据缺失]
“1000。”
“山峰之巅,胜利大门。”
“就像是你赢得的荣耀。”
基地、前哨和社区
山峰之中,何人之居?
入口和出口
入口
出口
千层台阶,受尽苦难,来到你最后的荣耀之地
(关于一名流浪者与M.E.G.接听员的举报记录。)
您好,这里是M.E.G.,请问有什么能为您做的吗?
您好,我想向你举报关于Level R-223的层级报告。
请问是发生什么事了吗?
这里面的报告有误。
(仔细翻阅)这谁写的报告,乱七八糟。感谢您的举报,我们会修改这个报告的。
……我想我不是这个意思。
?
你看,里面说过一切通讯设备切入这个层级后都会爆炸,那这篇文档是怎么来的?
层级意志?
是的,只有这个可能。
……感谢您的发现。我们会先删除此文档,后续会妥善处理的!
谢谢你……我的朋友和妻子,为了这个傻逼层级不顾一切的进去了,现在仍然杳无音讯。
同情你的遭遇。
(另一名流浪者通过电子设备发来的日记。)
记录1
这里是一名流浪者的报告,我现在所处的层级是Level R-223。我听说“223意志”事件后,冒着生命危险携带电子设备来到了这里。至于我是怎么知道这个保密事件的,等我活着出来再说。事实证明这个层级意志在说谎,我将手机带进来之后没有发生任何的爆炸。现在天还很暗,手机一直开照明有点浪费电了,我先上石阶再说。
记录2
我去,好他妈累。
我怎么着也是个身强力壮的人,怎么走了200阶台阶就……哦,原来如此,台阶一直在变高。不过好消息是太阳出来了一条缝,总算不用摸黑走路了。如果前面太过艰险的话,我会尝试切出的。
话说回来,万一这个真的可以回前厅呢?嘿嘿。
记录3
走了快3个小时这样吧,我好像上了五六百阶了。现在这个台阶有我四分之一个身子这么高了,不过有什么关系呢?为了前厅,杀杀杀!!!
记录4
哈哈哈大家,我要到前厅了!我已经上950层了,太阳为我升起,前方是胜利的方向!冲!!!
记录5
什么情况?怎么又到山脚下了?不!我的前厅!那是我的!!!他妈的我再上一次!只是我的操作方式不对而已!我能回前厅,马上就能!!!
记录6
各位朋友,这是我最后一条记录了。
这个层级意志十分强大,他会让你在心中笃定“我可以回前厅”这个想法,从而让你不断登上台阶。
我本有机会切出,现在全身再无力气,我只能死在这里。
永别了,朋友。
何为旧景?
当你来过这里时,望见你曾被绊伤的路,做了一个永无破晓的梦,决定拾起被遗忘的温柔,传来你内心的自由,闪烁起心中的明亮,抓住追寻的自我,眺望着你未来的光明,踏上即将结束的路途,品尝着你赢得的荣耀。
何为旧景?此乃旧景。
停下。
這昰伱啲結局。
生存难度:生存難度:
等级等級 不适用
- 空间循环
- 未知稳定性
- 层级意志明显
Level R-223是后室R层群的第223层。
描述
此层级表现为一处高度无法被精准测量的山峰,外观目测仅有不到500m的高度。当流浪者进入本层级时,他们总是会出现在山脚下的一段公路旁,一段石质的阶梯将依托山势而向上延伸。此层级存在良好的WIFI,可以通过电子设备与外界进行联络。
如果流浪者不踏入阶梯,天空将一直保持黑暗。山体的表面被大量草本植物所覆盖,其由阶梯两端蔓延并几乎占据了山体的其他所有部分。报告指出,流浪者尝试自公路离开山下皆会重新来到切入点。因此,流浪者唯一有效行动为登上山路。
当流浪者攀爬阶梯时,四周的环境将开始发生变化,具体表现有天空变亮、阶梯相对高度变大、草本植物长高并且长出树木和花朵。随着流浪者的深入,这些表现会愈加明显。阶梯共有1000层,当流浪者达到最高一节阶梯时,其将会重新回到山脚处。除此之外,此层级的层级意志十分强大,其会对流浪者的内心产生影响,使其产生“当我登上1000层时,我可以回到前厅”的想法。在此,M.E.G.提醒各位流浪者该层级并不存在返回前厅的可能,那是层级意志的骗局。
基地、前哨和社区
此层级不存在任何基地、前哨和社区。
入口与出口
入口
- 在Level R-1坠落的时候会来到此层级。
- 在Level R-51眺望远方过长时间(具体时间长短未知)
出口
- 暂无任何已知出口。
