: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 }
Phenomenon C-97指“神坠事件”后,瓦伦丁市内流传的一种仪式。
一说,Phenomenon C-97仪式在“神坠事件”前已有流传并被举行成功过。但因为种种原因,导致Phenomenon C-97仪式及其相关事宜直到“神坠事件”后才被重视。
贯穿瓦伦丁市的大河;兰河。
描述:
Phenomenon C-97指一异常神性仪式。进行Phenomenon C-97仪式的方式的具体细节目前仍未归档完成,其各个部分分离为数段传说流传在瓦伦丁市的民间。
在数个版本中的Phenomenon C-97的仪式内容的共同性为其具有强烈的日常生活色彩。执行Penomenon C-97仪式所需的用具皆是可以轻松从市场中购买甚至自制的。但与其简单的用具形成对比的是其苛刻的执行方式。在数个版本中,执行仪式的过程都具有强烈的自残意味。
在被屡次试验成功的流传版本内,执行此仪式需要在月相轮回一次的时间内对一指定样式符文进行多次祭拜活动,同时在祭拜活动的间歇期需通过多次自残行为来增大仪式进行的成功率。似乎这些自残行为的节律并没有一定的要求,其仅仅是为了增大仪式成功率。
进行仪式者在仪式前通常表现为对自己的现状极度不满。包括:
- 对外貌、身高、体重等身体客观问题的自卑。
- 对常处的他人的厌恶。
- 对学习及劳动成绩的自卑。
- 对阶级及职位的不满。
- 对家庭环境的厌恶。
而他们无一不坚信,持续执行Phenomenon C-97仪式可以改变他们现今的状况。通过对曾根据仪式内容进行过多次自残行为的流浪者的访谈,了解到Phenomenon C-97仪式在他们的理想状态中对于他们的改变是一种心象化,潜意识化的概念。其中的大多数人似乎只具有盲目的信念,而非对自己“转变”后的状态具有清晰的认知。
仪式具体进行方式
[ 数据删除 | 敏感信息 ]
仪式结束后
在月相轮回一次的时间内若持续进行仪式,则在月相轮回一次后仪式便将结束。此时流浪者的精神将陷入不可扭转的歇斯底里,并带有对于“完成仪式”的执念。这种精神效应将推动流浪者无法阻止地向贯穿瓦伦丁市的那条大河——兰河1前去。
在跳入兰河后,流浪者的身体将在河中被逐渐腐蚀,尽管此时河水的成分并没有实际变化。这样的形态变换被推测是仪式的结束阶段。许多民间传说中,在结束阶段内,兰河的河水是滚烫的,如同热汤一样。但此时的流浪者却似乎可以忍受并一往无前地向前游泳。
直到身体在河中腐蚀至尽后,流浪者形状的白色灵性实体将在其原位出现。其似乎是无实体的。根据民间传说,完成此阶段,嬗变为如上的白色灵性实体即为仪式的结束。
此时流浪者被认为已扬升,灵体将在一段时间后消失。
附加内容:
晦明协议 - 第三附件
公开数据库编号:Phenomenon C-97
内部数据库编号:PRN-DI-1
分类:DI(Divinity)
出没时间段:N/A
采访 #077812
采访人:05(代号)
受访人:Clair Varella(化名)
<记录开始>
[ 记录在Varella的家中进行。05注意到,Varella的家十分整洁,但他本人却蹲坐在房间一角,身旁摆满药物,其中包括 [ ] 、 [ ] 与 [ ] 等多种精神亢奋剂。Varella此时的脸部布满疮痂,而他本人则控制不住地去试图撕伤自己的脸。而这样的行为带来的高度自我否定感及痛苦似乎被其以手边的化学性药物及多种运动饮料化解。其拒绝05对其拍摄照片。 ]
05:但是,这是公务必须……
Varella:不,我说过多少次了——你们真的不愿意让我隐去肖像吗?
05:我们可以不公开展示,但在内部需要留——
Varella:那我就拒绝。
05:唉。
[ 05趁机开始攀谈。]
05:这个……你真的这么讨厌这样做吗?
Varella:是啊……你没看到家里的镜子都被我挪走了嘛?
Varella:原因,就是因为我不想和任何能让我认识到在现实中,在瓦伦丁市中真正的丑陋的“我自己”的东西打交道。我宁愿把它们全都移走,就让自己脏乱着。
05:啊……那你是因为这原因参加——呃——PRN——就是那个仪式的吗?
Varella:是啊。
05:那……你认为参加这个仪式可以让你得到什么利益?
Varella:……我也不知道。
05: [ 记录 ] 那……你认为自己其实无法控制自己想要参与仪式的想法吗?
Varella:你怎么能这么说?我想要去这么做,因为我相信啊——虽然仅仅是从传说中耳闻,但那些参加的人们最后成功了。自我上次加入一个谈论这个仪式的聊天室以后,我就发现这世界上还是有很多和我一样的人的。但我还是没给他们发过照片。
05:嗯……这是为什么?
Varella:你是问为什么我没露过面吗?因为我长得丑。
[ 沉默。]
Varella:说实话,我很难直视你——我很怕我脸上丑陋的这些疮与脓包让你讨厌。唉。而如果我能在这一步过去之后彻底扬升,到天上去,那外貌甚至性别不是随便的事了?
Varella: [ 停顿。推走了身边的能量饮料罐。看着它慢慢滚动走。 ]
Varella:反正现在推动我继续活下去的也基本只剩下嫉妒了——我在工作单位向外面看时,总有很多漂亮的人们从街上走过,而我却连那些貌美的人都不敢对视,我怕他们厌恶我,敌视我。就像害怕正午明亮的阳光照出我丑陋的脸上的每一个疮一样。我其实也很想像别人一样有那么广的社交圈,被那么多人喜欢。但如果客观条件允许的话, [ Varella指了指自己的脸。 ] 我还会在这呆着,去尝试这种仪式吗?
[ 长时间的沉默。05在沉寂的气氛已无法忍受后设好下次的日程,道别并离开。 ]
[ 在10分钟内,05保持寂静。 ]
<记录结束>
批注:
我现在也终于明白那些看似迷信的人是怎么想了。现实无渡,长夜难眠,你能不把自己的未来寄托在这种虚无的东西上吗?
——05
录像 #077612
<记录开始>
<00:00> 一位未知身份的仪式进行者进入监控范围内。
<01:02> 对象缓慢拿出了身上的所有东西——它们分别是一串钥匙,一张口罩,一部手机,一只手表和一张废纸,一张未知的证件。他把它们摆在地上。
<01:10> 对象开始从羽绒服开始脱下衣服。
<02:50> 对象到最后直接开始对自己的衣着进行撕扯。尽管限制于其之力量,这样的尝试并未成功,但似乎消耗了其体力及其心态。
<03:16> 对象面朝地上的搜出来的物品蹲下。
<03:26> 突然,对象又捡起了衣服,同时站起,将刚刚搜出的一切物品投入兰河。在它们沉入河中前,可以看到它们也有被河水腐蚀的迹象。
<04:34> 在突然而起的行动后静止了一分钟,其随后再次坐下,将双脚放入河内。
<04:45> 其似乎被河流对其的异常效应所刺激,突然抬起了双脚。
<05:00> 对象再次将双腿没入河流。
<05:16> 对象开始逐渐向前俯身。暂不知这是其有意之行为或是在思维陷入无意识状态时以潜意识做推动做出的行为,而这样的行为间断持续了1分钟。
<06:20> 其坠河。
<12:37> 其浮起。此时街警已赶到。
<12:38> 其开始发狂一般地向前游泳。其动作毫无规律可言,比起游泳更可被称之为一种在人即将溺水是会做出的无意义行为,试图通过四肢不断摆动来保持漂浮并向前游动。
<12:45> 其双腿被腐蚀。其似乎并未表现出疼痛,而是向前游泳。
<12:51> 其右手被腐蚀。其似乎仍未表现出疼痛,继续向前。
<12:56> 其臀部被腐蚀。其似乎失去了平衡,开始胡乱地扑腾双臂,继续向前。
<13:01> 其背部被腐蚀。由于其已吞下了多次兰河水,其异常效应在腐蚀背部前已腐蚀其之内脏。通过被腐蚀的背部,可以看到其内部溃烂的胃,肺与肾脏。
<13:06> 然后是心脏。出乎意料的是,心脏似乎并没有直接被腐蚀,而是似乎被对象身体部位气化所产生的气体托上半空,并在半空中边搏动出最后的一部分血液边消逝。
<13:18> 此时其上半部分头颅已不可见,推测其已被腐蚀。
<13:30> 最后剩下的是肩膀及颈部附近的一部分身体。此时,上文提到过的白色灵性实体已在其被腐蚀的身体中渗透出。
<13:34> 随着其身体彻底消失,白色实体已完全成型。
<13:36> 其面对街警微笑,随后消失。
