: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 }
> Welcome to The Cloudrooms General Database ver DOS. Please enter code.
> visit "pcl82"
> Are you refer to it as Phenomenon Cloud-82? (Y / N)
> Y
> Find 2 (two) document.
> You can refer to the No. as the Name to choose document what you want to visit.
| No. | Name | Editor | Created Date |
|---|---|---|---|
| (1 / one) | Phenomenon Cloud-82 | M.E.G.-Cr | 2036-4-11 |
| (2 / two) | Phenomenon Cloud-82 (Placeholder) | UNC4 | 2036-4-12 |
> 1
现象编号:Cloud-82
现象等级:4 (危险)
[0 (公开) / 5 (全域 - 无规律) / 3 (危急影响 - 易缓解)]
描述:
Phenomenon Cloud-82 表现为发生在全域的超忆症症状。受影响者将失去遗忘的能力,进而导致反应迟钝、拒绝社交等症状。
Phenomenon Cloud-82 一旦发生,便无法停止,直到受影响者彻底失去遗忘能力。目前未发现包括但不限于发生层级、受影响者、持续时间的任何规律。推测其可以在全域发生。受影响者可以前往任意 M.E.G.-Cr 或 UNC4后室分部的基地获取短期记忆清除药剂以缓解超忆症。
经医学鉴定,受影响者海马体 (Hippocampus)、大脑皮层 (Cerebral Cortex) 受到一定损伤。推测此现象通过破坏海马体特定部分与大脑皮层特定部分以使人失去遗忘能力。对受影响者的水、食物与空气的化验分析显示,此症状无法通过水、食物或空气传播。因此,推测其为一现象。
UNC4后室分部不承认此现象,认为其只是一种疾病,但仍会提供对此疾病研究与治疗的帮助。
应对方式:
缓解:
- 使用记忆清除药剂。
加剧:
- 无。
« Phenomenon Cloud-81 | Phenomenon Cloud-82 | Phenomenon Cloud-83 »
> Loaded.
> visit "pcl82" "unc4"
> Are you refer to it as Phenomenon Cloud-82 (Placeholder), which is written by UNC4? (Y / N)
> Y
现象编号:Cloud-82
现象等级:不适用
描述:
UNC4 认为,Phenomenon Cloud-82 不适用现象模板。另请参见 M.E.G.-Cr 版本。
« Phenomenon Cloud-81 | Phenomenon Cloud-82 | Phenomenon Cloud-83 »
> Loaded.
> login "eys-eol" "d2ks1d3"
> You are try to log in the accounts "eys-eol". It is in possession of island/sixth-level authority staff. If you are not the owner of the accounts, you will be located and killed.
> Please enter the second password.
> login "eys-eol" "d2ks1d3","arengt22o3l"
> Recognizing…Pass!
> Welcome, eys-eol.
> visit "pcl82-unc4" "6" "tooukriglold"
> Recognizing…Pass!
> Loading…
> Switch to version Graph. Enter the document.
作者:simon laau
主题:神性剥离 - 悬赏(12分) / 直到一切归零(3分) / 牺牲/救赎 - 悬赏(4分) / 余烬追忆(5分)= 24分
今年的写作额度满了,再写要升天了
| 分类 | 作品 |
|---|---|
| 层级 | Simon Lau的报告“光路” Level Cloud-550 Level Cloud-405 捌玖玖层 Level Cloud-124 |
| 实体 | |
| 物品 | The Cloudrooms 离线维基 |
| 现象 | Phenomenon Cloud-2 再别遗忘 |
| 故事 | 短篇故事合集 |
| 组件 | 组件:更适合云分的殿印优化 |
| 版式 | |
| 隐秘层级 | 古道长亭 |
| 隐秘实体 | |
| 推销作者页 以及孤岛设定 |
|
文件名:red-unc4.svg
图像名:unc4红
图像作者:simon laau
授权协议:CC BY-SA 3.0
来源链接:https://brsandbox-mini.wdfiles.com/local--files/simon-laau-sandbox/red-unc4.svg
衍生自:图像名:nexus
图像作者:chrono72
授权协议:CC BY-SA 3.0
来源链接:http://backrooms-wiki.wdfiles.com/local--files/theme%3Arepository/nexus.svg
文件名:meeting.jpg
图像名:台, 表, 木, 椅子, 地板, 家, 属性, 客厅, 家具, 房间, 工作空间, 办公空间, 会议室, 室内设计, 设计, 硬木, 饭厅, 地板, 木地板, 层压地板
图像作者:未知
授权协议:CC0
来源链接:https://pxhere.com/zh/photo/3260
文件名:database.jpg
图像名:技术, 机, 产品, 服务器, 电脑, 服务器, 个人电脑, 电子设备, 个人计算机硬件, 计算机集群, 数据中心
图像作者:未知
授权协议:CC0
来源链接:https://pxhere.com/zh/photo/1241325
文件名:synthesize.jpg
图像名:covid 19, coronavirus, covid, 细胞, pandemic, corona virus, 产品, 实验室, 化学家, 服务, 科学, 研究, 实验室设备, 化学, 药店
图像作者:Tmaximumge
授权协议:CC0
来源链接:https://pxhere.com/zh/photo/1608807
文件名:variable-star.jpg
图像名:V838 Mon HST
图像作者:NASA 和 ESA
授权协议:公有领域
来源链接:https://commons.wikimedia.org/wiki/File:V838_Mon_HST.jpg?uselang=zh-cn
文件名:cloud-shape.jpg
图像名:云的形状
图像作者:simon laau
授权协议:CC BY-SA 3.0
来源链接:https://brsandbox-mini.wdfiles.com/local--files/simon-laau-sandbox/cloud-shape.jpg
文件名:life-is-still-here-no-change.jpg
图像名:生活还在继续
图像作者:simon laau
授权协议:CC BY-SA 3.0
来源链接:https://brsandbox-mini.wdfiles.com/local--files/simon-laau-sandbox/life-is-still-here-no-change.jpg
« Phenomenon Cloud-81 | Phenomenon Cloud-82 | Phenomenon Cloud-83 »
你找到了。
看来,还有人记得。也好,多一个人陪我了。
二十年后。
再次回到 Level Cloud-0 时,景象与二十年前只有少许的差异。斜阳在天边照耀着仍在变化的结构,晕日光辉依旧。曾经名为“研究站”的建筑如今只剩断壁残垣,或许是万年前的人类所兴建的吧。
他掏出手中的照片,那是二十年前在 Level Cloud-0 拍的,似乎在尝试找出眼前与照片所不同的地方。青苔爬上废墟,曾经他居住的房屋早已坍塌。漂浮在天上的弑神武器业已生锈,之中甚至有草丛正在尝试破土发芽。风吹过,一片叶子打到他身上,他正要丢掉,却又深思熟虑般,放进了口袋。
房屋前立了一块碑,通体漆黑,几乎被青苔与杂草埋没,不仔细看很难找到。
碑下还有一个盒子,里面装了几张纸。上面各种不同的笔迹写了快半面。
当年他亲手在研究站种了一棵树,一盆花草。如今研究站已经被绿茵遮蔽。
碑上写着:
‘弑神’计划遗址纪念碑(2036年)
UNC4后室分部
2037年1月1日
说是在纪念,更像是忘却。
他向层级外望去,一切都是虚无。再望去,是 Level Cloud-801,是 Level Cloud-899,是后室,是前厅,是一切的开始。
祂输了,我们也输了。赢家只有时间。
世界在向前。时间在向前。
时间带走了痛楚,带走了棱角,带走了希望,带走了生命曾搏动的激烈,带走了我们曾热烈地活着,留下虚无。
祂抚平伤疤。以一种永恒的、空旷的沉寂,将一切深深埋葬。
人类在此经历的所有悲离、所有抗争、所有努力、所有坚持、所有牺牲、所有辛酸,最终都不过是时间长河中的一粒微尘,被冲刷、被覆盖,归于这片疮痍的土地之中。
他提笔,在纸上写下几个字:
荏苒荒凉。
风突然卷起盒中最上层的纸页。那张写着"荏苒荒凉"的纸飘向远方,卡在裂缝的草丛间。新生的草叶透过发黄的纸面,将誓言与残垣融合在一起。
上方的钢铁残躯反射落日的光,结构中未了的新雨又折射着,那是逝去的虹光。


© The Cloudrooms云室维基 (2022-2026) - 本站不遵循CC协议。