Level C-715
: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 }

人类的造物总会给人类带来麻烦。
我不知道那个天上掉下来的庞然大物是什么,广告牌?还是钢筋?
我不知道过程是什么,我只知道结果是
我现在躺在令人作呕的黄色地毯

我总是会想起那一天,我的妻子、我的魔方、我的狗、我祖父留下来的房子都离我而去的那一天,我甚至开始怀疑我并不拥有关与那里的记忆……
在这里的5年的时间真切而令人厌恶,我不得不强行承认这里存在着那样恶心的生物以及种种匪夷所思的地方和事情。后室麻痹了我的认知,我恍惚间就相信了这样那样在原本世界里不可能的事情,但除了这一点……
后室真的是无期徒刑犯的牢房吗?
这里的一切都在迫使着我忘记从前的一切,我甚至在不知不觉间几乎忘记了除了她以外的所有,但我无论如何也忘不了我的她,我的凯特……

“你还好吗?”
“如果我告诉你,你有办法回去找你的妻子呢?”

在这里的日子迷茫而麻木,以至于看着他那真切而又渴望的眼神,我会认为那个叫斯科特的男人是我真正的救世主。而现在看来,他虽不是救世主,也不至于是撒旦。
……
Level 6.1的吧台到那个恶心的掉漆的房间,似乎只有一瞬间而又似恍如隔世。

“戴上这个手表,回之后用它联系我。”
“相信我,你会再次见到你的妻子的。”

我实在不觉得这个到处脏污、窗户全部用腐朽木板封上的房间会带我离开后室,但那时的我,满脑子想着马上就能回家见到我的妻子的我,觉得这里简直是天堂

“准备好了吗?”
“要启程了喔。”

我闭上双眼,却又不得不因为掉在头上的墙皮睁开双眼。
四周的墙壁开始碎裂,随即一块块地剥落,露出藏在后面的漆黑的、密密麻麻的电路和机器。
地板、房顶和墙扭曲、崩坏着向我靠拢,再过一秒,我便会被墙壁撕碎。
绝望在我眼中决堤。
但此刻我的眼前却流淌着过去家园中一个个逝去的夏日,以及缓缓浮现的妻子的甜美笑脸……
然而记忆中本该出现在后院花园中的妻子的脸,此时我眼前的印象中却出现在Level 6.1梦幻般的吧台灯中间。
不对!怎么可能!
一定……一定是哪里出错了!
我想起来了!
我握着妻子的手,呼吸着麦田新鲜的空气;
我和妻子并排坐在城郊的长凳上醉着酒高谈阔论……
我都想起来了!
包括她和我最后的对话……

“我要去level-■■■探查一趟,M.E.G安排的活。”
“可……”
“放心啦,生存难度0,顶多就去一周,回来我就带你去度假,好吗?”


可一周后我等到的却是一份讣告……
直到我的意识随着塌缩的房间消散那一刻,我的大脑还在飞速运转着。

“我……死了?”
“不知道哦”


凯特隧穿灵魂般的嗓音在我背后响起,这时我才意识到脚下不知何时已是芳草覆盖的原野,被淡粉色的天空无言地笼罩着。
我回过头,看向那个我朝思暮想的凯特,她肩上金色的发丝熠熠生辉,夕阳像耳坠一般挂在她的耳。我本该怀疑此时她为何会出现,可是此时我一点也不感觉到奇怪,似乎我们本该于此相见。

“如果我活着,那你呢”
“都说了,不知道哦”
“那……”
“这么说吧,你的身体发生了逆转,现在和那个魔方是一个性质,我也不知道你现在是否还属于生命。”
“啊……”
“看来斯科特什么也没给你说。”
“那这里是……”
“或许是生与死之间的领域吧”
“那我和你还有机会回到生的领域吗?”
“我有一个想法”
“什……”


狂风骤然吹过我与她的面颊,她的手突然出现在我的肩上,然后猛地将我推向地面,她凌乱的发梢离我远去,我穿入了柔软的草与泥,她的眼闪着晶莹的泪,露出她与我在酒吧初见时展露的醉人微笑……
而这次的微笑却是无言而深沉的告别……
我在湛蓝色的虚空中穿行着,泪水模糊了她逐渐缩小的轮廓……

当我再次醒来时发现自己躺在熟悉而又陌生的黄色地毯上,然后我便一路回到Level 11中的家,又发现我家隔壁就是斯科特的住所1
有所收获的是,我找回了真正的记忆,以及这一系列事件的真相——我从斯科特的笔记中得知的真相。

我从来不是一个饱含希望之人,但是今天那两个失落一族的蠢蛋的“秘密谈话”以及Level C-715资料的归档让我不得不重新拾起早就烂在地上的希望。
我想起我的妻、我的狗、我祖父留下来的房子。
我想起切入后室时我手上的魔方,以及那个我做过很多遍的梦。
我早该想到的——
后室的封闭空间居多,而前厅则相反。
后室很有可能是前厅的逆转
要验证这一猜想,我需要一些准备,第一步便是验证Level C-715符合我的猜想。
此后这个本子会作为我的研究记录册兼日记本(虽然可能并不是“日”记)。



一切的真相便是如此,对于某许未知的事情,比如Level C-715为何会发生不稳定状态,我的推测是Level C-715的空间撞上其他层级时会打开通向其他层级的单向通道,而当其他层级的空间撞上Level C-715会打开通向Level C-715的单向通道;
至于我和我妻子是在何处见面的?我又是如何恢复肉体又安然无恙地归来的呢?我猜测那个地方是某个尚未发现的隐秘层级,而我被妻子推出时我的身体再次发生了逆转
无论如何,我现在唯一的目标是:

去找那个地方



评分: +15+x

评分: +15+x

生存难度:

等级 压缩

  • 空间极不稳定
  • 不宜生命存在
  • 性质尚未探明

Level C-715是后室C层群的第715层。

7TEPFI%29FUWRQ%7BV3TQI%257N%28G.jpg

研究者绘制的Level C-715的结构草图

描述

Level C-715为一个5.5cm×5.5cm×5.5cm的立方体空间,其内部通常情况下不存在任何物质并且不存在重力,也不存在任何光源。其墙壁呈现纯白色、构成未知且被验证为无法通过任何手段破坏或是发生形变,这意味着任何切入的物体将被强行压缩至5.5cm×5.5cm×5.5cm的立方体大小4

Level C-715会间歇性地进入不稳定状态。该现象的发生为完全随机事件,目前有记录的两次该现象的最短和最长时间间隔分别为27秒和1年零3个月。该现象发生时,Level C-715的表面会由实质物质瞬间过渡到不以实质物质存在的形态,这会将其中存在的一切物质从随机的出口强行切出至该出口指向的层级。

Level C-715的特殊性质使得对其展开研究极其困难,该层级部分现有的资料来自于流浪者何良于2023年2月28日提供,以下是对该流浪者的访谈记录。

基地、前哨和社区

鉴于该层级的特殊性质,无法建立任何基地、前哨和社区。

入口与出口5

入口

  • 在任意层级都会有极其罕见情况发现光滑平整的、边长约约0.5m到1.3m的纯白色方块,触碰它你将会切入level C-715,但这样做无疑会导致你的死亡6

出口

  • 该层级的随机空间不稳定事件发生时,会将层级内一切物质强行切出至随机层级。

















……
















关于这个层级,M.E.G那群人果真是一无所知
















……















这是“我”的故事,以及你们口中的Level C-715的故事



除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License