Phenomenon C-29 - “失语”
: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 }

我从梦中醒来

又从现实睡去

恐惧的看着一切

但这似乎已不再重要

那堵墙将我与世界隔开

勒紧了我的咽喉

开始昏厥

似乎一切是不存在的

无力感

正在吃掉我

我在恍惚中坠落?

是的!




……




……




坠落




坠落




坠落




坠落




坠落



86LCq.jpeg

坠落

我渴望呼吸,尽管如此我会溺毙……






我无法呼吸




我即将溺毙




那个来的人是你吗?




……




……



8F2xX.jpeg

还记得我们年幼的时候吗?

“奥忒慕斯……”

“叫我干什么?”

“没有什么……只是……呃……今天的夕阳很美。”

嘴角微微上扬,一抹难以察觉的弧线,“你真的那么舍不得我吗?”

那时的你听到我这句问题,选择一言不发,但我分明的看见有几滴泪落在大海上,你好像哭了,“也许,这就是为何大海是咸的吧……?”

你抬起头,擦了擦眼泪,“你真的见过大海吗?”

“眼前不就是吗?”我疑惑不解。

“不,我与你不同,我见过真正的大海。”他盯着眼前的这篇海域。

“你说的……是前厅喽……”我莫名觉得他现在的这幅严肃认真的样子很好笑。“与这里的海有什么不同吗?”

“那里有鱼。”

“鱼,那是什么?”

“海里的小精灵,我爸爸妈妈就是这么告诉我的,他们五颜六色的,很美。”

“海里还有水草!”

“是岸上的青草吗?”

“不,它们很高很高,能找到好几米呢,可以用它来炖汤。”

“海里还有亚特兰蒂斯。”

“让我猜猜,一座城市对吧?”

“没错,你真聪明……”

……

那年离别时,你跟我说了好多好多,让我这个从小生活在这片层级海域附近的孩子充满了对真正的大海无穷的遐想。

我在我无数的梦里观光过那片大海,有鱼、有水草、还有城,却总被一切的消失打断,我真的无法想象到那篇大海究竟是什么样?鱼究竟有没有腿?水草是不是白色的?城到底是不是一座如Level C-11的高楼大厦……

那年与你分别后,我再也没有了你的消息,不知何时,才能与你在大海见面了,你曾经答应过我回到家乡后带我去看海……于是一个荒诞的念头诞生在我的脑海——“我要回前厅!那个陌生的却又备受追捧的地方……看海!”

……

……

“奥忒慕斯?”

“嘿,又怎么了?”

“你会记住我吗?”他大大的眼睛渴望的看着我,“也许这次分别,我们可能再也见不到了。”

“你是我最好的朋友,我怎么可能忘记你呢。”我暗笑他杞人忧天。

“这是你说的哦!不许反悔!无论发生什么!”

“嗯,不反悔,无论发生什么……”

“我要请你看海,等我回去找到爸爸妈妈后,我要让他们带着我们一起把整片大海逛一逛。”

“嗯,我一定要看看真正的大海。”

……

那天,我们定下了“生死协议”,但我却丝毫不曾注意,你写在沙滩的名字,被大海的一阵浪涛……拍打的粉碎。






多少个日夜




我透过墙看着你




与明媚的骄阳




碎影打在你的面孔上




一切似乎模糊了



8L3dy.jpeg

你的那张侧脸,像是坠入了无数的时空

“奥忒慕斯,你怎么了,你怎么了,我找你找了十年,你怎么成这幅样子了。”他痛哭着一把将我抱住……

是他,他终于来了,我很意外,很诧异,很快乐,但我难以置信,为什么我的肢体不受控制了,我将他一把推开,“你是谁,离我远点,我不认识你。”

这句话使我内心炸裂,不不不,不是的,我认识你,小徐,你是我最好的朋友,不,……不是这样,该死的,我不是这么说的,这绝对不是我说的……

一切似乎无法挽回了……

“秋秋,你明明答应我不会忘记我的……”他叫着我的小名,但眸子显然黯淡了下来,就如同留下了黑色的泪……

是的,你是小徐,我没有忘记你,我要让你带我去看海。

“很抱歉,我从来不曾记起我有一个如此傻帽的朋友。”冷冷的机械男声从我喉咙中产生,不带一丝感情色彩的吐出去。

我绝望了,他也绝望了……我看着他蹲在地上,把头埋进怀里……一言不发

许久,他转身准备离去,仅迈出半步后却又回到床前,“不管如何,我曾经答应你要去看海的……这么多年的流浪,我找到了一个特别像大海的层级,很抱歉我现在仍然无法带着你回家,但那已经是我尽全力了,一起去看看……”

“没有兴趣。”

我看清他的眼睛不再有泪水,一股冷意取而代之,似乎想要杀了我……

5分钟后,世界又重回了沉寂……






你上次明明说过你会来的




无聊




就先再写一篇文章吧

描述

我究竟该怎么称呼它呢,这个魔鬼……他掐断了我的咽喉……叫它失语症吧……

失语症是后室发生概率极小的现象。其发作前期,通常会导致包括但不限于情绪低落,失去与任何人交谈的欲望,下意识避开所遇到的陌生流浪者甚至是熟悉的朋友等行为,当流浪者身边的朋友处于失语症发作前期,请不要贸然与其交谈,因为任何试图交谈的行为均会遭到交谈对象的暴力攻击。

很抱歉……很抱歉……洛斯克……我不应该这么对你,我不应该这么对你……我们还能是朋友吗……(哭泣)

失语症爆发中期,情况将会进一步的恶化,流浪者通常会表现以下几种情况:陷入深深的自我怀疑,自我否定,以及对他人充满深深的不信任感,无论深处多么危险的境地均会拒绝任何形式的帮助。除此之外流浪者将同时伴有抑郁症、孤僻症、迫害妄想症等多重心理疾病。

失语症爆发后期,被其影响者将彻底失去语言表达能力、情感表达能力、常规信息接受能力、新事物认知能力,进一步陷入无法挽救的自我封闭状态。






好吧……




这个时候了,欺骗自己还有什么用呢?




面对现实的宰割吧……




痛楚……



描述二

失语症爆发后期并非最糟糕的状态,当其经历进一步发展后将处于失语症完全期,此时的失语症俨然已成了最痛苦的绝症,患者无法向外界传递任何信息,仅能在脑海里产生相应思想,甚至无法通过特殊手段就行信息传递,譬如通过特定频率的眨眼向外界发送信息,或通过视线的聚焦表达含义等等。每当患者经历信息传输的关键时期必然出现难以控制精神混乱,而一切混乱行为将会在信息传达失败后中止。

上文的特殊表现衍生出有关失语症的初步假设:“失语症”是活的,他具有自己的独特思考方式与干预能力,它的客观表现为一种特殊的意识能量混合体,受染流浪者会在不知觉的情况下被其封锁信息表达能力,陷入长达一生的“寂静死亡状态”。






你还是不敢面对现实……




他是你自己,他被你所控制




这是你的选择。




那你还有什么必要去找这么荒缪的借口?




活的……




不!




是死的……







你又来了吗?




你来了吗?




好黑




欸?




那里怎么有光?



8LspN.jpeg

是因为我足够老迈了吗?

不是的

“因为我说过,无论你变成什么样,我都要带你来看海。”

那就是海,尽管这里不是前厅的海……

老头子……你说不出来话,我知道到的……

但那就是海,跨越了59年的大海。

8LMuz.jpeg


评分: +27+x

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