Level UF-490
: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 }

关于发现新层级的初步报告

时间:后室协调时2020年9月1日 20:37
上传者:Alex Carlson
这里是M.E.G.UF特工Alex Carlson,我认为我发现了一个新层级。我十分钟前还在Level C-1216中的木船上,仰望着星空,闭上眼想放松一下,结果睁开眼时就发现自己来到了一片树林,我初步判断这是一个新的层级。

这里的天空与Level C-1216很像——同样是一片星空,而且似乎更加壮观不好意思说远了。

目前这里看起来似乎没有危险,甚至气温还挺舒适的,植被也很茂盛。唯一感觉有些不对的是,我还没有发现离开这里的方式,诺贴试过了,根本没效果。回忆童年暂时没成功,喊bHZsMzUy也没效果,其他能想到的也都试了,情况一点也没变。我想我可能需要帮助。

好了先这样,稍后上报进一步情况。



Alex Carlson在上传以上报告后再未向外界发出过任何信息,在尝试查找其终端信息时未发现其终端信息,这通常意味着其终端由于某种原因无法正常工作。为探明原因及探索其发现的新层级,M.E.G.UF决定派出特工小组尝试探索该新层级。

+调查报告

对新层级的首次正式探索-实时记录

<记录开始>

Jane Michael:队员们,都进来了吗?我没有看见你们。

Southern Tina:我想我到了,大概是因为有孤立效应吧,我现在已经在一片树林中了,天上也是一片星空。

West Pietri & McAlister Penny:我也是。

Jane Michael:那就好,先原地观察周边环境,不要随意走动,稍后等我指令。

(录音沉默了两分钟)

Southern Tina:话说,这里好像没有什么特别的,貌似也的确没有什么危险。

Jane Michael:但那个特工最后不是失联了吗,我认为这里一定有些什么……

West Pietri :话说,初步报告里不是说诺贴之类的特殊逃离方式无效吗,那我们怎么出去?

Jane Michael:终究会有办法的,即使没有出口我们也只能接受。先做好我们的任务——收集信息。现在你们可以自由走动了,但要保持警惕,注意保持联系。

Southern Tina & West Pietri & McAlister Penny:收到。

(录音沉默了五分钟)

Jane Michael:等下,McAlister Penny,你还在吗,怎么不说话?

McAlister Penny:我在,队长,我只是在观赏星空。

Jane Michael:严肃一点,我们现在在探索一个未知的层级,我们随时可能面临未知的危险。

McAlister Penny:我知道,但这星空实在太灿烂了,我还从来没有一次见过这么多星星。况且我实在没发现什么危险。

McAlister Penny:而且我觉得我们的任务差不多完成了,我见到的事物的照片拍了不少,都传回去了。我看这只是个星星比较多的树林层级。

Southern Tina :我也觉得我们没有必要再待下去了。

Jane Michael:那好吧,现在开始我们试着离开这里。

(录音沉默了五分钟)

Southern Tina :不行啊,背包里的物品都试过了,没一个能用的。

(通讯突然受到严重影响)

Jane Michael喂@*&……*&%怎*锟?>?^

(十五秒后通讯恢复)

Jane Michael:发生什么了?立即检查自身情况。

Southern Tina :这里是Southern Tina ,我没事。

West Pietri :我是West Pietri,没事。
(录音沉默了十秒)

Jane Michael:喂,McAlister Penny,你在吗?收到请立即回复。

(录音沉默了十秒)

Southern Tina :说不定那家伙只是在做些什么事情。

Jane Michael:不对,我查不到他的终端位置信息,他与我们失联了!

Jane Michael:总部,这里是Jane Michael队长,我们遭遇队员失联,请立即增援。

总部:原地确保自身安全,我们会尝试采取行动。


(通讯再次受到严重影响,一分钟后恢复)

(通讯恢复后,录音中再无声音传出,录像画面中只剩下层级中的星空,同时观察到天空中有四颗星星的亮度异常地高)

<记录结束>


在那以后,四名特工同Alex Carlson一样与外界永远失联,且无法查找到其终端信息。M.E.G.UF已将以上人员标记为死亡。

根据以上信息,以及后续无人机探索结果,M.E.G.UF拼凑出了该层级的文档,并将其编号为Level UF-490

+点此查看层级文档

Level UF-490“夏夜星空”

生存难度:

等级 死区-繁星

  • 灿烂星空
  • 繁星闪耀
  • 星芒永存

Level UF-490是后室UF层群的第491层。介于对于该层级信息的获取较为困难,本文档内容较为简短。

描述:

Level UF-490表现为一片大小未知且天空遍布繁星的茂密树林,该层级始终处于黑夜状态。
层级内的植被生长情况茂盛,且似乎始终定格在一个时刻。本层级内的土壤极为坚硬,目前认为其不存在可供任何植物扎根、生长、开花的条件,尚未知层级内部是如何出现如此茂盛的树林景象。根据层级内植被生长情况,推测本层级永远处于夏季1层级内气温基本恒定在26℃,空气中相对湿度维持在75%以上。层级内不存在任何天气现象。
由于切入本层级的流浪者均不具备能力对Level UF-490进行完全探索,无法得知本层级大小。在无人机传回的画面中,于层级内的天空中观测到一颗外形与前厅所在地球高度相似的行星。目前尚未确定其是否与前厅有所关联。

“星辉转化”

尽管本层级存在诸多宜居条件,但“星辉转化”效应的存在使得本层级不适合人类生存。由于该效应发生期间会对无线电造成严重干扰,其强度足以使电子设备暂时性完全无法工作甚至造成损坏,目前对该效应的具体过程了解十分匮乏,对其的了解也仅仅停留在表面,因此有关此效应的信息仅供参考。

目前无法确定该效应具体开始作用于流浪者的时间,根据流浪者上传的报告,认为其发生前存在一些“预兆”现象,如:

  • 不自觉望向天空。
  • 感到高度的放松感。

然而这些“预兆”常常难以被察觉,以致流浪者通常无法及时察觉。

目前无法得知此现象的原理及详细过程,根据各报告终断前的最后部分,我们得到了下面的猜测:
星辉转化作用于一名流浪者时,其会在某种影响下抬头望向天空,无意识地看着天空中的繁星。经过一段时间后,流浪者将被某种未知力量“托起”而上升,2最终,流浪者将被转化为一颗层级内天空中的星星3

目前尚且未知流浪者被转化后是否仍具有意识,但根据常理,推测那些由流浪者转化而成将如同前厅中的一颗恒星一般,在燃烧很长一段时间后,终有一刻,将发生坍缩,最终消亡于茫茫的宇宙中……

实体

本层级未发现任何实体,或者说,层级内唯一的实体就是那些由无数流浪者转化而来的繁星。

基地,前哨站与社区

本层级没有已知的基地,前哨站与社区。

入口和出口

入口
  • Level C-1216中望向繁星并长期沉浸于星空带来的放松感时,有较大可能于不知觉间切入Level UF-490
  • Level UF-102中少数情况下可能会出现亮度足以照亮层级中目视范围内所有部分的光线4,此时任何切出行为都将使流浪者来到Level UF-490
出口
  • 目前不存在任何方式可以离开Level UF-490










他们并未离开


他们一直在那里看着你


就像你在你的家中看着他们一样……









你处于Level C-1216的星空下,


望着那深蓝色的星空,


内心无比放松,


你想要好好享受一下


那种无需为一切担忧的闲适,


你沉浸在了星空之中……
































突然,你注意到天上似乎有几颗星星移动了,


你以为是自己眼花了,


想要站起来仔细看看,


却猛然发现周围的环境不知何时改变了——


你正处于一片茂密的树林,


陌生的环境使你感到惊慌,立即决定切出。


你迅速取出诺克立普贴,熟练地贴在地上,


等到十秒后,你闭上了眼,躺在了上面。


但随着一阵痛感——你的头撞在了层级内坚硬的地面上——


你并没有切出。


你从地上爬起来,


再一次尝试,


眼前仍然是那片树林。


你开始着急,同时内心闪过一丝不安。


此时,你抬起头,


望向天空——


那是一片比刚才更加璀璨的星空,


你感到深深地震撼,


渐渐地放下顾虑,


如刚才一样沉浸于天上的繁星之中……
















那种闲适感比刚才更加深厚,


使你沉醉其中。


你愈发觉得,


你与天空中的繁星间的距离渐渐地缩短了,


同时放松的感觉被进一步放大,


你不受控制张开双臂


拥抱繁星……
















不知过去了多久,


你发现那片茂密的树林消失了,


此时你的眼前,


只剩下了一片






无尽的星海……



星海





评分: +6+x

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