Level Cloud-1717
: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+x

生存难度:

等级 全息

  • 安全
  • 稳定
  • 实体绝迹

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

街道

来来往往的人太多了,一直将你往道路的边缘挤,路边小摊溢出的香味无疑勾起你的味蕾,但你一想起负数的存款,还是放弃了这个过于奢侈的幻想,你浑身都蒙着一层虚汗,衣裳也并不勤加更换,一阵骚味,并不比乞丐要好多少。

IMG_20251018_003222.jpg

你是谁?

路边一位光头在那里七扭八歪地躺着,你甚至无法确认他是睡着了还是死了,他脸上一点生气也没有,即便活着其实与死也没什么两样,你非常不喜欢这种感觉,就好像他的死亡要张开血盆大口一把将你也吞进去一样。

摩托车倒在他身边,一样的七扭八歪。长长的车身影响到了行人的通行,但没有一个人叫醒他,或者说已经没有叫醒他的必要。你迈过他伸得笔直的双腿,你的心剧烈地跳动,这确切证实了你与他本质并不相同,至少你还有头发。你带着侥幸与后怕,继续往前走去。

你感到特别的困,这是应该的,你已经两天两宿没睡觉了,为了应付那些难缠的债主,你不知耗费了多少精力,赔上了多少效率,但转过头来,你仍然做着与以前一样的事,抽烟,喝酒,赌博,被催债,抵债,然后依然被催债。但你仍然如此,不知悔改,你的妻女早就想离你而去,但离开了你更不知要去往何方,只好在那一栋违规建筑的平房里浑浑噩噩度日,她们土黄的脸色和你一样毫无生机,但你似乎没什么可指望的。

终于到了一片相对空旷的地带,投向你的目光也少了,走了也有了一段路程,于是你找了个舒服的地方舒服的躺下,并不在意沾在你满是污垢的衣服上的灰尘,在你的视野远眺之处,这个城市正在无数人的庸碌之中繁忙地建设以日新月异,但所谓日新月异的城市,对于你这样的人却是提高了维持生存的门槛,想到这里,你不禁勃然大怒,朝你旁边的方形下水道恶狠狠的吐了一口痰,但痰吐歪了,落在满是裂纹的水泥地上,使你能够清楚的看到他那黄绿的配色,你更为不耐烦了,索性站起身来,用脚底板娴熟的相对摩擦,使痰变为了一条长长的晶亮痕迹,此后你忘记了拍打身上的尘土,继续自顾自走着。

虽然说与你一样的混子并不在少数,但这座城市仍然有条不紊的进行,你曾经思考过这个问题,但直到脑仁发疼都毫无头绪,太阳明明在逐渐落下,但阳光却显得越来越刺眼,看到此时太阳的位置,你才意识到你应该加快脚步了,你有夜盲症,你可不想在晚上真像个瞎子一样。

但你被狗咬了,它是从你背后冲来的,轻捷如风,静谧如午夜,你很明显没有做好任何的准备,转眼间你就以仰卧的姿态倒在地上,你的头被狠狠的磕了一下,直撞的你满眼金星。腿的情况想都不用想,那一阵阵的刺痛与温暖无疑提醒着你血淋淋的伤口,但此刻你顾不上这个,因为那条狗回过身来,饶有兴趣的看着你,似乎仍然意犹未尽。

这条狗异常的庞大,乍一看它很像你养的那条大黄,但又能很明显看出其中的差异,耳朵竖着,眼神也更恶毒——这是一条狼狗。

狗咬狗

它迅速向你扑来,其速度之快远超你的想象,你不得不顾双腿受到压迫的剧痛,笨拙的翻滚以躲避它的攻击,有用,但不多,你的后背仍然被它的爪子撕破你的后背传来与你双腿一样的湿润感受,想都不用想那是什么。

你的心中升起了一种久违的羞耻感,这种东西放在你身上的确不常见,这种羞耻感又激起了比之前吐痰强数倍的愤怒,几乎转瞬之间你就已经站起身来,其敏捷程度令你也感到诧异,但是那条狼狗已经发动第二次攻击,满是腥臭的狗嘴距离你的身体已经不到半米,此时你来不及多想,用尽自己全身的力气朝着它的身子死命一踢,狗的身体虽然比你想象中坚硬,但柔软的腹部的确是它的一个弱点,狗发出一声凄惨的叫声,随后向后飞了半米左右,重重地倒在地上,而你也因重心失衡跌倒在地。

但狗的身体毕竟是狗的身体,或者里面也掺杂着一些狼的基因,或许是你低估了狗的强大,抑或是你高估了自己的力量,此前已经精疲力尽的你,可能的确没什么太大的力气。那条狗躺在地上半分钟之后,竟又慢慢的站起来的嘴角溢出一滴一滴的鲜血,这说明这不是你的血而是它的,此时它的眼神比之前恶毒百倍,看来你已经成功激起它的杀心,原先的羞耻感所带来的愤怒如潮水般退去,使你原本软弱与窝囊的本质的沙滩重新显露,你意识到麻烦大了,说不好就要交代在这里了,但不知道为什么,你始终不愿意张开喉咙寻求帮助,这或许也是窝囊废莫名其妙的愚顽之处。

你浑身颤抖,想要爬起来,但腿已经软糯,犹如你今早刚吃过的面条。但甚至还不如面条筋道,更像是一条被打烂七寸的烂草蛇,它慢慢的向你逼近,似乎知道你没有了还手之力,它微张着嘴,你能看见那嘴中的红腥,包括它的与你的。它慢慢弓起身子,看来想把你一击毙命,你当然不想死,但你身上以及身体周围什么武器都没有,而你的双拳估摸也只能成为他下午茶的一部分。

真的要就此结束了吗?

你尝试模仿狼的嚎叫吼了一声,声音如此的嘶哑,比鬼哭狼嚎也好不了多少。你不知道你为什么要这样做,或许只是一个没有办法的办法,尝试模仿他的半个同类,以博取一线生机,你自己都觉得非常好笑。

但这种幼稚的伎俩真的把他唬住了,他的脚步停了下来,明显镇住了,连你也不敢相信这种傻子的手段真能起作用,你受到了莫大的鼓舞,用你干哑的嗓子又拼命吼了几声,更令你震惊的事情发生了,那条狼狗竟然也开始与你一起嚎叫,一开始只是断断续续的屋檐,其中还夹杂着部分狗的扭捏身影但很快叫声变得越来越响亮,越来越清晰,越来越欢快,越生气勃勃起来。

“嗷呜——”

此时已是下午,月亮正从地平线浅浅的露出头来,只显露出它一半的焯灼身姿,狼狗对着月亮升起的方向疯狂的嚎叫,似乎是因觉醒的野性而感到由衷的欣喜从而几乎忘记了你的存在,你犹豫万分,悄悄地远离,在不远处的一处废弃建筑的废墟中找到了一根锐利的钢纤。

你拖着死狗的尸体,慢慢的往家中走去。此时天空中的群星逐渐从白天的余晖中浮现,像从龌龊中睁开的无数只眼睛,毕竟它之下的一切都是在龌龊的发生。此时你忽然想到了《老人与海》中的圣地亚哥,在这时刻居然与你的佝偻的身躯有所重合,这使你的身体前所未有的膨胀,但使你充盈的东西终将如流沙般流走。在逐渐昏暗的光线下,你打量着这只颈部被贯穿的狗的尸体,它的眼中充满着呆滞,但其中还有着一些赤红的眼色,以及扭曲的面部。它嘴中红色的涎液还在分泌,一滴一滴。同样作为一条在城市挣扎的流浪的狗,你心中猛的一沉,你大概知道这是什么狗了。

这不仅是一条狼狗。

还是一条疯了的、感染狂犬病的狗。

它曾经试图杀死另一条狗。

于是,它现在成了一条死狗。

而那只狗呢?

同样不见得就活着。

家庭

你在天色完全漆黑后好长一段才回到家。将狗的尸体随意扔在院中一角,并引起院中苍蝇的共同狂欢,现在站在门口原本可能只是想淡淡的扫你一眼,你确认你没缺胳膊少腿的回来了,而女儿则根本不敢见他的父亲。

但此刻你的模样明显远远超出了妻子的预期:最显眼的莫过于灰色衬衫上大片的黑色血渍,你只胡乱洗了把脸,以清洗脸上的血迹,而脖子根本没有纳入到你的考虑范围内,以及在你背后与右腿因衣裤撕裂而直接暴露于她视线中的大片伤口。

妻子发出一声凄厉的尖叫,比那条已死的狼狗还要尖锐十倍,这在你的意料之中,任何妻子看到丈夫这样大概都会觉得丈夫疯了,更何况是像你这样混吃等死,碌碌无为的废物与混蛋,门迅速被关上,紧接着是锁门的声音,然后你听到了金属撞击的声响大概是妻子将那把生锈的菜刀拿了出来,毕竟家中除了这个没有别的金属制品了。

你没有愤怒的力气,更明白你没有愤怒的资格。你慢慢的走向房门,妻子明显听到了屋外的响动,迅速奔向门口,双手持刀,浑身颤抖,这一切都可以从屋内昏暗的灯光所照下来的黑影以看出。

你深深叹了口气。“开门,”你缓缓开口,“我只是杀了一条狗。”

屋内没有任何动静,黑影中所呈现的身体颤抖加剧。原本你其实已经疲倦至极了,只不过靠着什么所谓的意志力才得以勉强支撑,你感到头晃了两晃,然后你就什么也不知道了。

重新睁开眼,熟悉又陌生的天花板映入你眼里,其实也不算什么天花板用水泥胡乱砌成的漏雨的屏障罢了,既不隔炎热,也不御寒冷。你躺在地上,毕竟以你的这身着装,可不能让你污染了家中唯一算作整洁的小床,妻子坐在床上,冷冷的看着你,手中仍然紧握着菜刀,女儿则躲在他身后,用双手紧紧的抱住他妈妈的腰。

你望向窗外,已经是第二天的下午了,看来你真的很累,女儿还不到上学的年纪,而妻子更没什么独自谋生的能力,可想而知她们在这十几个小时间经历了什么样的煎熬与心理斗争才使得她们没有离开这里,她们的眼睛都挂着黑眼圈,看来都一宿没睡。你尝试起身,却发现自己的腿被绑住了,捆的毫无章法但异常的坚固,而后背与腿部的伤口已经开始腐烂,有不少黑色,黄色,绿色甚至无头的苍蝇对此表达兴趣,你再次将目光投向妻子,她麻木的表情仍然没有丝毫变化,但你仍然听到她说出的每一个字,字字清晰可辨:

“离开这里。”

“我们不需要你。”

你对此持反对意见,在你的设想中,你是一个废物,你的妻女理应更加废物才行,你想起了你此生最为骄傲的事情,就在昨天,你智勇双全,杀掉了一条狼狗,仅凭这一点,你就比她们要强到九霄云外。

昨天那种对阵狼狗的羞辱感恰到好处的袭来,你大吼一声,原本坚固的绳索捆绑瞬间被你不死不休的踢蹬而变得松散,虚弱的犹如你昨日的双腿,妻子的面容瞬间诡异的扭曲面露恐怖之色,一个箭步向你拔刀而起,尽管菜刀并没有刀鞘。她这熟练的动作再一次让你想到了昨天的那只狼狗,如今它已经被五彩缤纷的苍蝇紧密包围。如同昨天所做的那样,你顺势一个翻滚,腿部受挤压的疼痛已经远不如昨天剧烈,这使你翻滚的更为迅捷与丝滑。

妻子一刀砍空,迷茫的看向你,眼神中带着一丝犹豫,毕竟你是她的丈夫,尽管如此的废物,但是你们也有着一个共同的孩子。而你趁此刻她犹豫的短暂时刻,你已经将其中一条腿解开了绳子的束缚,这种壮举再次巩固了你在你心中的伟大形象,使你发现你并非一无所能,这种骄傲感使你燃起心中的熊熊战意,而正在你洋洋得意之时,妻子发现你已将一条腿解开束缚,于是二话不说将手中的刀掷出,后迅速转身逃跑,她已经顾不上你们的女儿。这种漠不关心的态度,再次激怒了你,她扔出的菜刀如此绵软无力,在如今充满生机的你面前根本不值一提,你轻松闪开,随后猛地向前一扑,对院外的疯狗致以崇高的敬意。

你的妻子明显不具备应对这种突发状况的能力,也并没有与狗或者像狗一样的你战斗的经验,当他回头的那一刻,你便已经掐住了他的脖子,随后与你一起重重的倒在地上,你的手指深深的嵌入他的脖子,食指也向其中的一切血管示意问候,而血管也礼貌的回馈你一跳一跳的触觉,但你的妻子此刻并没有享受这份闲情雅致的耐心,她胡乱踢蹬着腿,但无法给你带来实质性的伤害,她抓挠你的脸,在你脸上划出了一道道血痕,但随后她的食指就被你依次扭断,扭曲的手指看起来像朵朵白萝卜,清甜忧郁而惹人怜爱。少了手指的干扰,你便能将更多注意力放在她的脖子上,但随后你又觉得不够,应该让头也参与这场饕餮盛宴。她的头发出声声的闷响,似乎在为这场交响乐捶打定音鼓,她的头渗出点点血迹,就像是乐器所显现出的金属光泽,光彩夺目,在地面上簌簌滴落,就像在夜空中点缀的点点星光,她的鼻子也冒出了鲜血,就像夜空中闪耀的银河,为原本略显暗淡的夜空,增添了过目难忘的组成。

一下。

两下。

三下。

……

n下。

n+1下。

???下。

αδ?λ€Ψᐇ#@π■

?>n

𝄫𝄫𝄢𝄴 ┌─?!
■̣P□𝅝■𝅘𝅥»□𝄳■↙𝅘𝅥𝅝│■𝄳│
│■𝅘𝅥𝄻□𝅗𝅥│■̣𝅙□𝅘𝅥𝅯𝄳■𝅊│□𝅘𝅥𝅮𝅝
𝅘𝅥■𝅗𝅥𝅯𝅙𝄻│■̣𝅘𝅥𝅮□𝅊≡■𝅘𝅥𝅯𝄳$𝅗■̣𝅝

ȸϟӾ҂૱௹௯೯′L๏໘໒༒༻࿓࿖𝕽𝖗𝟘𝟡𝟛𝟳⋜⋝⋞⋟

╡É℡

Y≡:NNNNNNNNNNNNNNNNNNNNNNNNNN

她的眼睛已经如血液般清澈明亮,战斗的双手也缓缓垂下,不再热衷于血管与头与你的双手的蓬荜生辉,她的面色由土黄转为苍白,是天上的一行白鹭,她的面色紫红,像硕果累累的葡萄,双腿不再踢蹬,在度日如年的一无所获中暂时停止了思考。

你拖着他的尸体感到发自内心的喜悦,也再次战胜了人生的一个敌手,进一步彰显了你的价值,为你的航船又落下了一个坚实的锚。你感到她的身体远比那条狗轻盈,这么说来她还不如一条狗。你忍受着种种苍蝇的扑面而来,小心翼翼地,郑重地,煞有其事地,用力地,精准地将妻子的喉咙正对着穿过死狗尸体的铁纤。

You dance with wolves, hounds and the stars.

你此生从未见过那么壮观的冰糖葫芦,四溅的汁液再次于你身上飞溅,溶解朵朵红花,你热爱这一切,阳光照常,白天升起,满是热闹,你的家外是一片原野,只有这样才能使这套房子避免被定为违规,你再次深深地陷入与慨叹你独一无二的智慧。

但随后你的后脑遭受了重重一击,脑袋里好像有什么东西要把你的头盖骨撑碎而冲出体外,你再度,如昨天般失去了对双腿的掌控,你望见了天空急速的飞转如穿针引线,而在这短暂的旋转中,你看到了你许久未见的女儿,她的手中捏着一根铁锤,这个东西在此前你的家中从未出现过,不知它的来由,更不知以女儿那样的身躯是如何举起这样的重物的,但你没有时间多想,很快便再次陷入了晕厥,而在晕厥前的最后一刻,你发现她的手臂,变为了一片降水的雨林。

雨林

昨日

入口

出口


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