边境之旅
: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 }

就不该在Level 4到处乱搞的,我暗自吐槽道。但当我从那个楼梯上摔下来,掉到这个看起来只有一面墙的地下室的时候,就已经为时已晚了。

我扶着自己的头缓了一下,似乎是摔晕了,但晕了多长时间我自己也不知道。周围相当昏暗,我环顾四周,除开这一面似乎无限延伸的墙壁,其他地方都无法确定有什么。

我的第一反应是,赶紧回去。

可我在这一瞬间茫然了……

我无法形容此时的感受,就感觉自己似乎忘掉了什么,但又不知道自己忘掉了什么。我很清楚的记得这里是哪,很清楚的知道应该沿着墙走,很清楚的记得要寻找那些碎石瓦砾多的地方,那里很可能是出口,可是,为什么?

我不知道,此地不宜久留的想法像徘徊的防空警报般的盘旋在大脑里。但我看向了来时的楼梯,直觉告诉我绝不能走这楼梯,至少通向黑暗的地方某种意义上绝不是什么好的选择。

我努力的回忆着自己看过的档案,脑海中闪过了曾经的记忆,沿着墙走,这似乎没什么问题,毕竟除了这堵破败的墙壁,也没有其他更好的选择了。通向黑暗的地方某种意义上绝不是什么好的选择。

我沿着墙走,寻找着那些类似于出口的位置,那种堆砌着大量杂物的地方,虽说没有定论,但至少有希望,对,总比那些黑漆漆的位置,通向黑暗的地方某种意义上绝不是什么好的选择。

我愣了一下,为什么?为什么我的脑子里一直在重复着这些奇怪有毫无意义的话语?等一下,毫无意义?我为什么会这么想?通向黑暗的地方某种意义上真的不是什么好的选择。

我恍惚了,我意识到自己的精神事实上已经出现了问题,我到这里多久了……

那名为“求生欲”的本能支配着我向前走。这里居然有光,算了,不去想那么多了,就当是,层级照顾我们这些来到这里的倒霉蛋吧。

光照一直围绕在我周围,让我能辨别周围的环境,我继续走着,那些破败的脚手架、碎石、瓦砾似乎在增多,不是增多,似乎是这附近开始堆积了起来,我开始兴奋了起来,为什么?该死,又是这种感觉,不过我也不想在意这种,毕竟我来到这种堆砌着大量碎石瓦砾的地方就是为了来找出口的……


哈哈,我笑了出来,操他妈的我居然在笑!在我忘记了自己要干什么的时候!

本来我来到这就纯属意外,按理来说应该与外界保持联系,我现在算是明白了,来到这会忘东西,有个人在你耳边起码能提醒着你你在干什么,对就是这样的。……

可我一直沿着墙走是在干什么?

找到离开这的方法。

难道我把这么重要的事给忘了?我摇了摇头,一定是紧张导致的,正常情况下遇到事很容易忘记一些事,一定是这样的,一定是这样的!

我得走下去,我得想起自己来到这里的目的!我……

怎么来到这的?


也不知道是恍惚还是什么,我的眼前似乎有什么在飞。

飞蚊症?也不是不可能。

但是当我脸上有触感的时候,我才意识到,这些小飞虫似乎是真实存在的。

这些是实体?

也许我并不孤单。

我不想理会这些,它们并不会影响我,只是随着我的行走越来越多,难道越往深处越……

这时,我注意到,在远离墙壁的位置,有个人?

他本不应该出现在那里的。

他发出着一些难以理解的声音,我试图靠近他,而映入眼帘的,

是一具残破不堪的躯体。

我想询问他一些事,但他似乎已经不会有所反应了,只留下向着墙壁爬行的姿势。

但这些飞虫,似乎在发出“呼救声”?

它们并没有朝我飞来,而是飞往了深处……


发现跟自己作伴除了流浪者还有其他实体的时候,我也说不上高兴还是害怕。

我一直在沿着墙走,沿路除了那些瓦砾碎屑,破碎的脚手架,还有窃皮者

我不清楚,看着它那的躯体,只有那标志性的身高和外观,毕竟这黑白色的世界里可没有颜色特征。

它似乎也在沿墙行进,但每一步都会有尘土从它的身上抖落。

它在消失?

它似乎听到了我,转过身来。

我看到了一个像是被无情蹂躏过玩偶一般的正面,若不是那外观特征,我不敢相信这个没有眼睛、脸消失了一半、躯体有着各种破损的东西是窃皮者,或者说,现在我也不敢相信。

我绕开了它,它并没有追上来,当它渐渐的消失在我的视野中时,我意识到了一个问题,它的周围没有那些小飞虫。

还是说,只有流浪者才会?

我不清楚,报告中并没有,还是说……

我没想那么多,只是继续走着……


好冷

什么情况,难道连我的感知都……

我无心去想这些,毕竟……我要做什么?

耳边缓缓地响起来了声音,这是什么?

我在努力的回忆这是什么声音,但我的大脑在告诉我,这是风声、雨声、海浪声……

为什么会是这些?我在辨别这些声音的来源,它们不来自于任何位置,似乎是在我的脑子里发出的……

我听到了礼堂的钟声,婚礼?不应该啊,我掉进后室的时候可没结婚,不过说来也讽刺,刚跟交往许久的女朋友确定了心意,就掉进了这该死的地方,她应该……

等等,我为什么在想这些?在后室这鬼地方,生存的压力都把我这些美好的回忆消磨光了……

走马灯?

我自嘲的笑了一下,是啊,在这么走下去我就是死路一条。

那声音不合时宜的,或者说十分精准的再次响起,我眼前是我表白的那一刻……真好啊,她还是那般的美丽,那般的温柔,真想……

慢着,为什么会有声音?!

我记得当时我们因为什么事躲了起来,周围的环境是寂静的,为什么会有这么明显的声音?

那声音回响着,我的脑海中开始播放着曾经那些温馨幸福的时刻,可是,在某些时刻是没有声音的,这股声响就是那些时刻的杂音……

我试图分析发生了什么,显然这些声音并不是那些时刻的,它只是恰如其分在此时响起,让我觉得它就是那时候的……

可我为什么会想起那时候的事?明明已经被消磨掉了……还是说那些美好的回忆只是被新的记忆覆盖掉了,这么说的话……

我意识到了一个严重的问题,我已经忘记自己为什么会在这了……

这让我有些慌乱,毕竟在这种恶劣的环境下,忘记档案无异于死路一条,我努力回忆着有关这个虚空地下室的相关信息,

我还记得多少?

这可真冷


我继续沿着墙壁在走,那些回响,现在已经可以称的上是杂音了,就像蜂鸣声在我脑子里回荡着……

那股刺耳的声音一直在,我被脚手架绊倒了,这的碎石瓦砾可真多。

我忍不住吐槽,自己的心底似乎产生了一股没来由的希望……

我不知道为什么会有这种感觉,只是这里让我……

算了,继续走吧……

这时,我注意到自己的手指已经开始消失了,慢慢的像尘埃一般飘散在空中……

那不是尘埃,是种小飞虫?

我感到了一丝熟悉,我说不上来为什么会熟悉,只是看着它们在飞舞着。

没有一丝一毫的感觉,我也好奇自己居然能不害怕,或许此刻的我已经是一个死人了,只是拖着这具注定消失的躯体往前行走着,走向那注定的结局。

为什么是我?

恍惚间,我似乎看到了那些小飞虫前往的地方,在那灰暗的深处,它们似乎正在聚集成一个有着巨大翅膀的什么……


现​̸̙̇̆̐实​̯̮̂ͨ̄似​̷̜͑̒͞乎​̬͑͐̃͞在​̨̭͔̟ͧ折​̩̼̻ͯ͛叠​̳͔̖̌ͥ…​͓̖̦̒̀…​̤͓̓̕͝



我​̷̶̱̤̋恐​̷̪̓̏͡怕​̛͎̺ͩͅ已​̸̬͂ͭ̿经​̸͔̠̰̉被​̻͉̑̌̿抛​̧̤̦͈̕弃​̛̳̉̑͟在​̶̭̓͘͜了​̞̉ͫ͞͠这​̫̟̍́ͯ荒​̷̪́ͪͮ凉​̹̮̠͋̕的​̛̈́̃̆̒边​̤͓̝̞͝境​͏͉̤͑͛



正​̴̗̳͖̣̩̎̂̑̎如​̸̛̳͇̔̆́͘̚͝此​̸͉͖̄̾̍̌͟͡͠地​̵͔̝͑̃͗͑̅̚͠一​̢̛̜̻̄̍̏̈́ͤ̇般​̴͙͋̾̉͏͖̈́̓̐



漫​̶̖̙͇̞̽̏̉̑ͅ无​̫̖͊ͫ͜͏̑͑̂͞目​̦̱̰ͥͤ̓̋̏́͢的​͔͙ͮ̈́̆̉̃̀̾̊地​̛̝̂ͭ͊͒̔̍͡͝走​̵̷̟̙̹͑̔ͪ͗ͤ下​̷̻̹̬͆͗ͦ̈̈ͅ去​̡̡̛̩̱͓ͨ̋͒̕



身​̬̝̤̊͌̃̎̊̚ͅ形​̦͖̤ͨ̅̏́̚̕͞随​̶̪̱̜̯ͪ̄͋̿̒着​̴̢̡̥͍̺̯ͧͫͫ时​̧̝̥ͭ̈́͋͌̂ͧͦ间​̸̨̡̛͇̼̓̄̀͢逐​̛̛̜͐͒̾ͬͦͥ͠渐​͓̪͙̎ͥ̀͂ͦͫ͜消​̩̔ͬͥ͟͡͏̌́ͯ散​̶̸̢̪̻̖̬̽ͩ̑



有​̢͙͈̊̈́̿͂͒͝͝谁​̹̖̘̀͊ͨ͒ͬ͘͢在​̺͔͙̗̹̇̏ͬͤ͜看​͍̖̪̇̋̋͂̂͞͠吗​͓̣̍ͧ̐͋̽͢͠͝?​̸̭̫̹͓̔̽͌ͤ̐



哪​̶̢̛̝͉͉̲͑̈̓ͤ̿ͧ̃̚怕​̨̤̙͍̳̰̼̤̐́͐ͧͧ̅̈́只​̨̢̛̫͇̱̮̰̮ͫ̿ͧ̑̋̑有​̷̧͓̬̬́̌̋̽ͬ͆̓̚̕͝一​͖̼͚͙̱̰̏́ͫ̄̿ͧ̕͟ͅ眼​̡̡͙͇̀͐̃͛ͫ̂͛͑̉ͬ͟也​̲͇͙͖͕ͧ̎̽̈́̆̓ͩ̀̚͡好​̶̡̨̳̫̳͆̈́̇͋͊ͭ̏̚͜…​̯͓ͬ͒͐͏̻͕̼̟ͪ͛͒͜͠…​͑̆̆͏̴̡͉̰͗̏͐̌̀̄ͦ



回​̗ͭ͒ͪ͏̫̖̻̱͒̐̒ͭ̔͗望​̴̹̤̲̯͕̫̄ͤͩ̿̑̇ͫ̿那​̴͍̞̰͖͔̩̮͐ͧͣ̓ͤ͘͟也​̨̖̬̦͔̻ͩ̈̄͊ͬ̑ͬ͡͞许​̢̢̦̲̫̠͛͗ͦ̇͋ͮ̀͟ͅ存​̢̭̥̤̼͕̘͕͙́̉͊̕͟͟在​̷̷͔̩̥̳̹̯̂̏̿̏ͫͭ̀过​̸̧̖̻ͮ̇̈ͨ̈͋͗͒̊͘͟的​̰͉͕̃̆ͩͯͨ͛͡͏̤̳̋͢美​̢̝͕̬ͤ͗̓̐̓͗̀̈́̕͜͞好​̛͕͍̤̺̯̘̞̼̣͊͂̈́͌ͥ



那​̵̛̭̱̳͈͓̈͆ͪ́́̂͡͠曾​̧͔̫̹̙̬̆̽ͬ̂̍̏ͦ͝͞经​̸̡̨͕̰̺͉͂ͤͨ̄ͨ̽͢͞的​̨̬͚̹̹͇̫ͧ͆̊̈ͦ̎̐̃辉​̞̘̥̻̯̈́̈́ͣ͋͒͂̐̓͑͞煌​̸͖̩͇͓͌͐ͭͯͩ͑ͨ͘̚͠



就​̶̶̷͕̆ͣ̾̾̊͏̢̣̰̹̇ͥ̑͐̅͡像​̵̨̻̠̞̩̳̭̩̺̫̜̃̀ͣ͐ͨ̚͡ͅ那​̨̦̓͘͢͏̧̢̺̫̗̦̬́ͤ̑ͯ͋͌͢回​̦̘̲͉̲͈͎͍̣̳̓ͫͤ͒̓ͬ͂ͭ͐͞声​̷̷̨̣̼͍͎̲̙͊ͧͯͧ̉͑ͦ̇̃͞ͅ想​̧͉̜̝̖͉̲͍ͦ̂̂͂͒̀̔̄̚̕͞͞传​̣̘̳͗͏̸̛̲͈͕̮̙̲̝̈́̈͊ͨ͠͞达​̧͙͇̥̉̀̄́ͫ̉̑̾͆ͦ̓ͩ̂͘͡͠的​͚̹͈̫̖̞̯͖̠͉ͭ̇́ͭ̾ͦ̉ͦ̕͟



但​̴̶̹̰̟̱̲̗͑ͧ̆̇ͭ̒̀ͭ̚̚̕ͅ我​̨̦͚̖̭͇͈̹ͮ̂̉͒̊̀ͪͫ͌ͯ̃́们​̥͈̟̱͙̝͖͛ͤͨͭ̋̃̓ͫ̄͘̚͝ͅ的​̵̞̼̼̰͙̖̼͈̪̫̦̪̻ͮ͋͛̎ͭ͟结​̶̵̛̛̖͎̻̰̮̖͋̓́̆ͩ́̒̈͡ͅ局​͎͎̜͍͍̩͚̞͇̿͗ͯ͌̌̋̄̇̀͆͛依​͕͏̨͔̦̻̘̻͈̣̆̓̆̅̔͂͘̚̚͞旧​̷̵̫͕͖͇̫̘͚ͥ̿͑͑̉͆̔̕͟͢͢是​̛̠͒ͥͧ̇̕͡͏͇̺̹͕̑̊̀ͫ̎͂͗



迷​͏̷̰͖̺͍͇̱͇͔̋̔̏ͤ̑̒͒̂͑̀͂̚̕͢͡失​̴̦͙͉̹̞͍͙̙̹̘̼̳̙̰̊̉̋̆̾̚͟͝͝͠于​͓̮̫͚̘̪̥̙̥̗̖͉͖ͯ̒͛ͧ̆̍͂ͥ̔̋̕͠边​̷̶̴̧͚̟̻̻̗̩̞̙͓́̌ͯ̄̃̓͒̌̌̿͢͠境​̶̡̛̤̩͉̰̣͇͔̠̌͑̋̌̎̅̀̆ͭ̒̐̚͠͡



消​̴̢͍͈̲̗̐̿̎͐̉͐͏̴̨͇͖̙͈͋͆̽̑̑̅泯​͟͏̧̟͈̫̦̪̲̠̣͍͇͍͕̀ͣ͑̽ͧ̆̈́͝͡͡于​̳͏̶̵̢̛̛̟̗͖͎͆ͬͫ͗̈̅̄͒ͯ̔̓̉͊͡逝​̷̡̦̩̭̤̲̮͓̘̬͉̘̖̅ͩ̊͗̂͂ͫ͢͢͜͠年​͓̭̹͙̮̖͔͙͚̈́̔̀̅̍̓ͭ͐ͤ̂̓͊͑͟͟͞



在​̛̙̖̝̭̯̩̟̆ͭ̄̍̆̽̀͆̓ͩ̔͑ͬͩͪ̈̔ͪ̈́̊̚͢那​̷̢̧̞̬̟͉͍͔͚͎̬͓͓̈ͣͮ̎̄ͥ̐̓͆ͫ̋͑̽̓̚͟鲸​̶̸̛͓͍̟̝͖͉͇̤́͊̈́̓ͯͨ̓͂̓ͧ̽̌̿̏̔ͨ͜͝͞吞​̷̷̙̫̙͖̰̣̣͇̪̣̬͓̯̗̍̂͑̈́̉̅̏ͧ̿ͩ͋̽ͤ͛光​̷̵̵̷̱̯̣̥͙͍̹͗̏̏̉ͤ͂ͦ̊̎͋̋̀͂ͤ͗̿ͩ͞͞芒​̵̧̧̛̘̦̳̬̪̙̠̮̯̙̗̘̼͚͈̪͈͍ͩͣͤ̃̈̆ͤ̈́的​̘̖̔̿ͬ̉͝͏̨̢̟̤̌̒̓̎̇͌ͯ͘͜͡͠͏͈͖̊ͧͩͧ灰​̸̵̧̛̠̭̠̭͙̜̝̤̖̟̤̈́͛̇͆̄̐ͥͯͣ͆ͩ͋͜͡͡中​̸̨̨͍̬̪̭͕̼̮̾͋ͤ̂ͦ̒̍ͥ̈́ͨ͒̉ͦͣͨ̊̍̾̃͝



……





.



化作消逝在阴影中的一抹暗灰黯洃……



迷失域

想要解开心中的悬念?来看看我们队伍的其他作品!


Level 71 · 迷失域

我是那消逝在阴影中的一抹暗灰。

我梦将死

美梦将死,然后灰色的世界醒来。

Level 71.1-C - “負壹层”

暗灰边界的更深处,崩溃边缘的大地。

迷失往事:天使之墓

文字记下他们的生,却永远忘却了他们的死,失落的传说和濒临崩塌的绝对之点,始终在重现着它们的宿命——消逝。

Augustus DEGENERATE

一切终将被遗忘,但请握住我的手。

尘骸

天不赋力,草芥泯于逝川。




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