坟墓
: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 }

花海中,一位少女急切的寻找着他的身影,忽然,一道熟悉的声音传来。













“你,你好,我感觉我是不是在哪里见过你?好熟悉,但又记不起…来了呢,啊喂,你干什么啊?”少年由疑惑的询问变成惊讶的语气。













少女带着哭腔,紧紧拥抱着少年,她露出笑脸,可泪却无法停止,一直不停的说道:“找到你了…”













命运的指针从未停下,生命亘古,记忆亘古,始于烈火般炽热,终于花海般无言







评分: +4+x

我是谁?

他静静的问着自己,摄像机的红色镜头中倒映着的脸庞,显得迷惑。

他放下了摄像机,默默翻开了一本发黄的本子,手颤颤巍巍,他慢慢的翻过一张又一张的黄页纸,找到了那最后,醒目的红字。

上头是这样写的:

32!32!32!

这份红字上方还有一串小的黑字:

C-717—木栅栏门

他环顾了四周,这是一篇和曾经遇见过的黄色房间相似的环境,只不过记忆中的地毯似乎变成了草地,顶上的灯随时亮着,也不会翁鸣了,他翻开了C-717的页面,确认自己到达的地方是正确的。

他打开背包,检查自己所剩的物资,三瓶杏仁水,一小块吃了管饱的东西,一根两毫升的绿色液体试管,还有一张…照片,他轻轻的掏出照片对着光线,看着,之后慢慢的放在本子的夹层中,将本子放回了背包里。

他看了看自己的腰封,里面还有一把携带了两个弹夹的格洛克17,纯黑的漆面却被无情的刮痕过,刻成莱安娜的字样,他贴近刻字的喃喃道:“莱安娜…莱安娜…”他默默品味着这名字的含义,最终叹了一口气,继续向前。

他准备好了,现在他需要去找找能正确的道路,找到木栅栏门,只要切出它,就可以来到那个叫32的地方了。

这是一个迷宫,一个充满草地的迷宫,四周的岩石上还生长着一些五颜六色的蘑菇,不过其中一个倒是太吸引注意力了,那鲜红的伞盖向四周张开,伞柄突破其他蘑菇的重围犹如鹤立鸡群,他似乎被它吸引了,他慢慢的踩扫地,一步一步向它前进,他到它旁边了,他为它而惊讶,纯红的伞盖未留其他颜色,轻轻抚摸着。

急促的脚步声打断了他的抚摸,他急忙回头,一只猎犬已经突进他的身边,现在面前的是它那巨大,血腥,且恶臭的巨口,他利用岩石向侧面闪躲,右手从腰封中掏出格洛克,连续三下对准猎犬射击,两颗九毫米被铜弹,轻松的穿透了猎犬的皮肉,深入其内部,还有一颗打歪在岩石上,流弹卡入了墙壁,但很显然,猎犬并未失去行动能力,痛苦的嘶吼着,紧接着向他扑来,锋利的猎爪对准他的喉咙,想要让这愚蠢的人类付出代价,但很显然,要它失望了。

碰!碰!

猎犬毫无防御的将正面裸露给他,随着连点两枪击中脑部,猎犬无力倒地抽搐,他起身,巨大的枪声响彻在整个迷宫中,他需要换位置了,不然会吸引更多实体到来,当然,他来不及了,两只饥饿的窃皮者从旁边的迷宫中冲来,它们渴望着他的皮肉,格洛克无力打败他们,“逃还是打?”他这样问着自己。

但结果明显的摆在他面前,跑是根本跑不过的,他叹息着,掏出了自己的照相机,红黑配色的照相机显得如此妖艳,他将其对准自己,按下快门,直径照相机咔嚓一声随机转变为一把血红色的诡异长剑,周身刻着花纹,如同一把染红的骑士剑刃。

两只窃皮者袭至近前,它们都举起了自己的作呕吸盘,想要来一场愉快的剥皮盛宴,吸盘在他的前方翻涌,他俯身轻挑,将镜前的两根吸盘切下,一只窃皮者愤怒的冲向他,张开身体,他顺势向前刺去血红色的剑刃如视无物般穿过窃皮者的身体,随后快速对它冲去,跳跃起身,双脚对着窃皮者用力一蹬,如弧线飞过,使他躲过了另一只窃皮者的攻击,掉向地面,利用腿部陀螺式旋转血刃狠狠的“划”过窃皮者粗壮的大腿,窃皮者失去重心倒地,紧接着他对准窃皮者的身体,将它切成两半,透明的血液充斥整片草地。

刀刃重新变回相机,他感觉有些口渴了,掏出背包里的瓶子,正准备喝下,他不知道这是这是什么液体,看向另外的胶体物质,他迟疑着最终还是喝下了液体,熟悉的味道,传入他的口中,他放松了对这液体的警惕,大口大口的补充能量。

他再度翻看自己的本子,确定是木栅栏门后继续前行,棕黄色的眼瞳显得坚毅而又疲惫,血丝遍布眼眶中,他挤了挤眼睛,轻轻的叹了口气。

“这次又失去了什么呢?”

他看向倒下的三个尸体,却觉得有些陌生,这只能重新在本子上找到这些怪物哦不是,是实体的知识,对着上面的画像,一个个对应。

他继续行走着…


















他看着前方的木栅栏门,确认了出口,赶紧背上背包向前方跑去,他不知道自己为何去那,不过去那就对了。

破空的声音传来,一只巨大的箭射在前方的土里,他急忙转身,在后面是一个拿着巨大弓弩身高约两米,浑身是毛的类人型怪物,他的头上还有一个巨大的牛骨,向他怒吼着,怪物掏出背后的巨大木头,用力向他挥舞。

他急忙向侧面跑去,一个翻滚躲开巨木的重砸,砸中的地方形成了一个碗口状的坑,四周的泥土被震荡飞起,他快速掏出相机,对准自己按住快门,随即持握血红长剑,那怪物似乎感觉到了威胁,重新掏出弓弩上箭对他一发射去,他来不及躲闪侧身,用长剑挡住射来的弓箭将其歪斜到侧面。

他大口呼吸着,手臂因剧烈震荡发麻发颤,巨大的声音从他耳边呼啸而过,他的左侧脸加上剧烈疼痛,血液从他的脸上流下。

这他阻挡弓箭时,怪物已经趁机而上,用木头狠狠的砸向他的侧面,他只能竖剑挡住左侧,木头先打击到他的剑上,连同他的身体一起飞向一边,他的左腰腹剧烈疼痛,感觉胃里一阵翻涌,他用手撑着剑,不让自己倒下,铁锈味充斥着他的口腔,嘴角溢出鲜血—如果是用剑挡住一下,这一击便足以要了他的命。

他似乎已经失去抵抗能力了,怪物如嘲笑一般的声音涌进他的耳朵,扛着木头慢慢向他走去,最后竖起想要重力一砸。

“该谢幕了。”

他突然暴起,横冲向怪物的正门,用剑斜着对它的身体一砍,剑身划过有些阻力,当然,也只有一些。怪物被他横切两半,最终纷纷倒在地上,没有一丝生机。

恶臭的鲜血洒满了他的身体,他不顾臭味用剑撑着地面,颤颤巍巍的起了身,对着那尸体笑了笑,在剑的支撑下,缓慢地走向了木栅栏门。

“当然,你该先谢幕,我的朋友,我还没到谢幕的时候。”

他推开了木栅栏门,眼前的景象不断变化,最终变成一片阴暗的挂满枯萎的森林,他用身体擦了擦手上的血迹,打开本子确认了这里就是32,重新了解了这里的信息。

他慢慢的摇起一捧深灰色的泥土,闻着其苦涩的味道,他放下土,支撑着就这样一步一步的在这阴暗的森林中走着,这片森林里好像就剩下他踩碎枯枝的声音。

渐渐的,他感受到了风,风中似有人谈论,不过他却无法听清,他看到橘黄色的身影了,他紧紧跟上,但最终却已不见其身影,他默默的站在那里,等待着祂的到来。

随着声音的不断靠近,一具穿着深黑裙子的骷髅走向他前面,他微微弯腰低头,但因身体受重伤却无法控制重心,倒在地上,最后,他艰难的起身,显得如此滑稽可笑。

“我能感受到你急切的心态,告诉我,殉道者,你的目的是什么?”骷髅空洞的口腔中发出了低沉的女音。

他重新拿出自己的本子,默默的念:“莱…莱安娜,没错,是她,我,咳咳…愿用我的生命和灵魂奉献于您,服侍于您,只愿换她归来。”

“哈哈哈,孩子,这是我第三次听到这样的话,爱总是能冲昏我们的头脑,做这种交换生命的傻事,不过很可惜呢,你的生命已经无法足以支撑你换取她了。”

“不,不!我还有东西,求求您了,您看看这有没有什么东西。”他焦急地倒出背包里的东西,向祂恳求道。

祂看到那根绿色的试管,轻浮的声音说:“你倒是吸引了我的注意,这是我第二次见到这个东西,从WE来的?用这个倒是可以抵消,哈哈哈,有意思啊,有意思。”

“那…” “不过我告诉你,用这个只能给她30年生命,倒不如让你自己服用,你还能活。”

他摇了摇头,眼睛对向那空洞的眼眶,坚定的说道:“不,给她吧。”

“你居然敢用祂的东西,这让你失去了很多,不是吗?”

“是,我失去了很多记忆,我甚至已经不记得关于她的故事了,可我的心不会欺骗我。”

“按下的是永恒吧,你的记忆会不断的消散,最后你的身体也一样。”

“是…亘古,有什么不同吗?”

祂似乎愣了愣,最后却一直笑着,泥土中一个棺材慢慢突出上来,棺材打开,露出其中的人,他感觉陌生,心一直在激烈的跳动着,莫名的激动带动了他,泪水在眼眶里打转,默默的说着:“莱安娜,我来了……”
















一个人从棺材中睁开眼睛,祂点燃了一支已熄灭的蜡烛




他感觉身体不断消散,他终于记忆起那曾经的美好




她是救他于黑暗中的明星




她是为他带来“爱”的使者




他似乎感觉到了风的起舞,草木芳香




他的视觉仿佛又感受到了那炎炎的夏日



炙热而甜美







她自墓中醒,他在墓外笑1























































































































和他对视的时候,祂看到那充满血污的脸庞中浑浊的眼珠散发微弱的亮光,那坚毅的眼神祂不会忘记的。





“有意思,哈哈哈,真没想到祂居然也会派行使者,预祝你们幸福咯!哈哈哈哈哈哈…”






笑声响彻森林,而祂的身影渐渐潜入阴影之中,消失不见










—————————————————————

微距了,是FNFzzz