@supports(display: grid) { :root { --sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19); --body-width-on-desktop: 45.75rem; } @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; background: unset; opacity: 1; pointer-events: all; z-index: -1; } #side-bar .close-menu img { color: transparent; } #side-bar .close-menu::before, #side-bar .close-menu::after { content: ""; box-sizing: border-box; position: fixed; display: block; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E"); z-index: -1; background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: 50% 50%; mask-position: 50% 50%; -webkit-mask-size: 60%; mask-size: 60%; } #side-bar .close-menu::after { z-index: -2; background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important; border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu { pointer-events: none; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; pointer-events: none; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after { opacity: 0; pointer-events: none; } #side-bar { display: block; position: fixed; top: 0; left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); border-radius: 0; border-left-width: 0px; border-right-width: 0px; } #main-content::before { content: ""; display: block; position: fixed; top: 0; right: 0; z-index: -1; opacity: 0; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; margin-left: var(--sidebar-width-on-desktop); background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat; padding-right: 0; width: 100%; height: 100vh; pointer-events: none; z-index: 99; } #side-bar:focus-within ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } @supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar { padding: inherit; } } #content-wrap { display: flex; flex-direction: row; width: calc(100vw - (100vw - 100%)); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); flex-grow: 2; height: auto; position: relative; margin: 0 auto; max-width: inherit; } #main-content { width: 100%; position: initial; max-height: 100%; padding: 2rem 1rem; max-width: var(--body-width-on-desktop, 45.75rem); margin: 0 auto; } #page-content { max-width: min(90vw, var(--body-width-on-desktop, 45.75rem)); } @supports (-webkit-hyphens:none) { #side-bar { transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; padding-right: 0; background-color: rgb(0, 0, 0, 0); pointer-events: all; overflow-x: visible; overflow-y: visible; z-index: 999; } #side-bar::-webkit-scrollbar { opacity: 0; -webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before, #side-bar:hover .close-menu::after { opacity: 0; } #side-bar:hover { left: 0; background-color: rgba(var(--swatch-menubg-color), 1); padding-right: 0; } #side-bar:hover::-webkit-scrollbar { opacity: 1; } #side-bar:hover~#main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } }
@supports(display: grid) { :root { --sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19); --body-width-on-desktop: 45.75rem; } @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; background: unset; opacity: 1; pointer-events: all; z-index: -1; } #side-bar .close-menu img { color: transparent; } #side-bar .close-menu::before, #side-bar .close-menu::after { content: ""; box-sizing: border-box; position: fixed; display: block; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E"); z-index: -1; background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: 50% 50%; mask-position: 50% 50%; -webkit-mask-size: 60%; mask-size: 60%; } #side-bar .close-menu::after { z-index: -2; background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important; border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu { pointer-events: none; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; pointer-events: none; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after { opacity: 0; pointer-events: none; } #side-bar { display: block; position: fixed; top: 0; left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); border-radius: 0; border-left-width: 0px; border-right-width: 0px; } #main-content::before { content: ""; display: block; position: fixed; top: 0; right: 0; z-index: -1; opacity: 0; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; margin-left: var(--sidebar-width-on-desktop); background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat; padding-right: 0; width: 100%; height: 100vh; pointer-events: none; z-index: 99; } #side-bar:focus-within ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } @supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar { padding: inherit; } } #content-wrap { display: flex; flex-direction: row; width: calc(100vw - (100vw - 100%)); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); flex-grow: 2; height: auto; position: relative; margin: 0 auto; max-width: inherit; } #main-content { width: 100%; position: initial; max-height: 100%; padding: 2rem 1rem; max-width: var(--body-width-on-desktop, 45.75rem); margin: 0 auto; } #page-content { max-width: min(90vw, var(--body-width-on-desktop, 45.75rem)); } @supports (-webkit-hyphens:none) { #side-bar { transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; padding-right: 0; background-color: rgb(0, 0, 0, 0); pointer-events: all; overflow-x: visible; overflow-y: visible; z-index: 999; } #side-bar::-webkit-scrollbar { opacity: 0; -webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before, #side-bar:hover .close-menu::after { opacity: 0; } #side-bar:hover { left: 0; background-color: rgba(var(--swatch-menubg-color), 1); padding-right: 0; } #side-bar:hover::-webkit-scrollbar { opacity: 1; } #side-bar:hover~#main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } }
:root { /* header measurements */ --header-height-on-desktop: 10rem; --header-height-on-mobile: 10rem; --header-h1-font-size: clamp(2rem, 5vw, 2.8125rem); --header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem); --logo-image: url("https://nu-scptheme.github.io/Black-Highlighter/img/logo.svg"); } #header { --search-textbox-text-color: var(--swatch-secondary-color); background: none; } #header::before { content: " "; position: absolute; width: 100%; height: 100%; left: 0; top: 0.75rem; background-image: var(--logo-image); background-repeat: no-repeat; background-position: center 0; background-size: auto calc(var(--header-height-on-desktop) - 1.5rem); opacity: 0.8; pointer-events: none; } #header h1, #header h2 { margin: 0; padding: 0; width: 100%; height: var(--header-height-on-desktop); display: flex; align-items: center; justify-content: center; display: flex; align-items: center; justify-content: center; } #header h1 a, #header h1 a::before, #header h2 span, #header h2 span::before { margin: 0; padding: 0; z-index: 0; display: block; text-align: center; } #header h1 { z-index: 1; } #header h1 a::before, #header h1 a::after { content: var(--header-title); } #header h1 a::before { color: rgb(var(--swatch-text-tertiary-color)); z-index: -1; -webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark)); } #header h1 a::after { color: rgb(var(--swatch-headerh1-color)); z-index: 1; } #header h2 { z-index: 0; text-transform: uppercase; pointer-events: none; } #header h2 span { margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - 2em); } #header h2 span::before, #header h2 span::after { --wght: 600; content: var(--header-subtitle); position: absolute; left: 50%; transform: translateY(-50%) translateX(-50%); width: 100%; text-align: center; } #header h2 span::before { -webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark)); } #header h2 span::after { color: rgb(var(--swatch-headerh2-color)); z-index: 1; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { color: rgba(0, 0, 0, 0); } @media (min-width: 36rem) { #login-status { flex-grow: 1; left: 3%; right: initial; } #login-status::before { --mask-image: none; background-color: transparent; } #login-status:not(:focus-within) { color: rgb(var(--login-line-divider-color)); -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; user-select: initial; } #login-status #account-topbutton, #login-status:not(:focus-within) #account-topbutton { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgba(var(--login-arrow-color), 0); } #login-status #account-topbutton::before{ --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(var(--login-arrow-color), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton:hover::before { --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; } #login-status:not(:focus-within) #account-topbutton::after { display: none; } #login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); pointer-events: all; -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) { opacity: 1; } #login-status #my-account { --wght: 300; } #account-options { background: var(--gradient-header); } #search-top-box { top: 1.5em; right: 3%; background: rgba(var(--search-focus-textbox-bg-color), 0.4); } #search-top-box:focus-within ~ #login-status { opacity: 1; } #search-top-box::after { transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); } #search-top-box:not(:focus-within)::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0% 100% ); background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #search-top-box:not(:focus-within):hover::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgb(var(--search-icon-hover-bg-color)); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) { max-width: var(--search-width); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { max-width: var(--search-width); padding: 0 var(--search-height) 0 1em; outline-width: 0; background-color: rgb(var(--search-focus-textbox-bg-color), 0.35); color: rgba(var(--search-textbox-text-color), 0.4); cursor: pointer; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"], #search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] { pointer-events: all; border: none; } } #page-title::after, .meta-title::after, #page-title::before, .meta-title::before { content: ""; flex-grow: 1; height: 0.0625rem; background: rgb(var(--swatch-primary)); } #page-title::before, .meta-title::before { margin: auto 1.25rem auto auto; }
: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 }
: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 }
> EuclidnNap的报告 - “旧日之景” |
---|

未曾谋面者:你好,也许你并非是看到的这篇档案撰写者的时代的人了。但,希望你能够在看完这篇档案后,认真决定你的下一步。死亡已在过去发生了成百上千回,但愿你能够走出这循环,开辟一个全新的未来。
。
。
。
。
。
。
生存难度:生存難度:
等级等級 pending
- 安全性波动
- 稳定性波动
- 无实体存在
Level C-1是后室C层群的第1层,本文所述地点乃其相似叠加层。
描述
Level C-1是由多个性质相似的互相独立的空间组成的层级群。本层级各空间形态通常呈现出过去的、或者说是今人所不了解的后室层级的景象1,例如看上去鲜有人居住的Level 11、仍然保持原城市样貌的Level C-4902,以及一些已经在现存档案中已经遗失记录的层级3。最初曾被当作与其关系紧密的源层级或子层级,但根据Object 2的检测,已确凿它们都是作为Level C-1的空间存在的。
Level C-1完全地复制了历史某时间点上其他层级的样貌,在空间拓扑结构、精神影响这类固有特性上几乎是均与其源层级一致,但并不存在任何生物,包括实体,尽管层级内存在生命生活过的痕迹。Level C-1其中也保存着其源层级那一时刻的物品、数据等,它们均可以被查看/带走/使用,其中有相当一部分记录了过去某层级的状况、人类生存情况、科技程度、层级内的生物等方面的内容。因此,该层级也成为了关于后室基础理论、历史学等相关研究的重要考察对象,对生存具有重大意义和价值。目前后室中部分组织已展开对层级的调查工作。
由于本层级的空间拥有各异的源层级,因此不同空间的安全性和稳定性是不同的。但在某种意义上来讲,它们实质上都是「异常地稳定」的,例如:若源层级属于一个空间处于无规律变化的状态,那么自然地,对应的C-1空间便也会延续其不断变化的特性,但并非是无规律的,而是处于一个循环重复之中4;即使这一变化会影响源层级内的景象,但这一特性并不会导致空间中可观测景象的改变。而类似于幻的环境因人而异的源层级,空间则只会呈现其所复制的形态,并不会因进入者的不同而改变。
思想感知等与探索者相关的特性在本层级中影响会被淡化,甚至于消失。以目前看来,每个空间的形态都是绝对不会发生改变的,任何尝试改变其固有环境的行为都会失败5,包括层级本身特性造成的改变。故这也是其少数几个与源层级不同之处。
有关Level C-1的档案及报告
此部分收录了Level C-1目前已被发现空间的信息6。这些空间并非毫无关联,经过对层级的研究,我们惊讶地发现,那些空间疑似形成在相近的历史时期——这也是为什么它们都从属于同一个Level C-1。
整合档案 vol.1
空间#0-00-001-EX

Level 1的图像,可用作参考
源层级:Level 1
档案等级:Keter7
描述:空间#0-00-001-EX在空间结构以及大部分原本就具有的特性上皆与Level 1相同,因此判定该空间源层级即为Level 1。相比于目前驻扎了大量团体基地的Level 1,空间#0-00-001-EX显得更为冷清和有序。
该空间大部分区域均处于空置状态,没有任何人类在此居住的痕迹,空间本身的景观几乎没有遭到改造和破坏,仍旧呈现出最原始的样貌,其中大部分的房间和设施都未被使用过。走廊也极为空旷,鲜有放置在此处的物品,偶尔会发现一些遗失的私人物品或是早已积上灰尘的物品,它们显得从未被注意到过,这大概是很少有人经过的缘故。
此空间中的灯并没有如Level 1的灯一般具有容易出现闪烁或随机故障的特点,它们都保持恒定地为空间提供着光。空间内部弥漫着雾气,相比于L1,这里的雾气更加的浓,能见度也极低。由于Level C-1本身所具有的「环境难以改变」的特性,雾气并不会飘散开或是冷凝形成积水。因此,整个空间都不会自然地发生任何变化,这也使空间内显得更加沉静而空寂。
目前在空间中唯一发现的人类聚居地是一处以「M.E.G. Alpha基地」为中心的大型基地群,该区域不同于其他大部分区域,此范围内搭有许多帐篷,且房间都住有人。根据探索人员对这些基地的搜查和探索,发现此处存放有大量正在处理的重要资料和文件,推测这里聚集了当时大量的核心工作人员正在为某重大事件而工作。从空间中收集到的重要资料和文件已列在下一页,可自行查看。
出入口:首次进入空间者是在切入Level 1时偶然进入的,这也是唯一一次切入此空间的实例。从空间中切出后会回到Level 1。
探险者总署(The M.E.G.)
我们是一线希望。我们是M.E.G.。我们承诺尽可能保护所有人,探索从未有人见过的非凡地方。我们会保证你的安全。
M.E.G.(Major Explorer Group)目前是后室中最大的派系,其成立的目的是寻找一条逃生之路。它分为小团队,专注于各种任务,如探索、划定区域和阻止敌对实体。该小组由“监督者”管理,这是一个由三人组成的团队,负责监督各个团队,掌握最多的知识。M.E.G.创建了一个可公开访问的数据库,告知后室居民如何识别和处理后室的各种异常情况,每天都有新的发现。他们并不完美,但没有人是完美的。他们会找到出路的。
form M.E.G.团体列表
所有信息都表明,M.E.G.是过去后室中最大的组织。据我们推测,由于后室不同层级之间交流难度大,必定会造成组织林立的状况——而根据M.E.G.的团体档案,过去后室的确存在着许多较为大型的由人类组成的正常组织。
并且Level 1作为后室的一个重要层级,必然会有许多友好开放的团体驻扎。但根据我们的探索,空间内的基地大部分都被贴上了M.E.G.的标识。不过,显而易见地,它们都是一个临时的标识。联系到基地内的紧急状态,我们几乎可以断定——那些被贴上临时标识的基地,原本并不属于M.E.G.,而是其他的后室团体的——因此,我们认为,当时的M.E.G.已经因为当时后室中威胁人类的重大变故而成为了一个后室人类联合体组织,其他各组织都隶属于它。
#001-01回收地点
入档序列号:#001-01
档案类型:单页日记
回收地点:文件被发现于空间内一处工作人员卧室内的床上。房间内被罩上了遮光帘,隔绝了光,整体显得十分黑暗,仅有床头灯的暖光照在枕边,而灯光下便是未被完成的日记,一旁摆放着笔。被子显得很久都没有人使用过,贴合着床垫。被子似乎并没有在使用者上一次离开时被认真整理,有着很多褶皱。屋内看上去有许久未被打扫过,地板上已经积着薄薄的一层灰尘。
978/1/12 |
---|
M.E.G.繁重的工作已经持续了将近三周了,这些天我一直没有机会回我的屋子里好好休息,然后记点日记。在Level 1的层级环境异化真是令人难以忍受了,空气湿得太厉害了。几个房间之间的路还好我已经能闭着眼睛都能来往了,不然我准得迷路然后溺死。真不知道那些在外面搭帐篷办公的是怎么撑下来的。
那些纸上的字可真令人…比起Level 1的改变,其他层级更加令人惊愕。看到说永昼的Level 11已经变成永夜了,有些本来就不太稳定的层级的结构被更大化的扭曲,几乎没有人能活着回来,很多人都莫名其妙地切进虚空了,就像随时会掉进隐蔽的陷阱一样,无论怎样的准备都在后室面前变得无比脆弱。这还是我生活过的后室吗?还是说,我本来就不应该生活在这呢?
只能希望M.E.G.和我们的努力能有用…或许只是我的一种悲观的猜疑,但我仍然感到恐惧。
#001-06回收地点
入档序列号:#001-06
档案类型:电子邮件(报告)
回收地点:档案#001-06被发现于一位M.E.G.高层居所中的笔记本电脑上。桌面上摆放着许多资料和文件,笔记本旁放着一杯未被喝完的咖啡。
主题:报告/层级现状
发送者:Blast Pit | 时间:BTC 978/1/13 21:01 |
---|
● 通信情况:后室万维网出现大范围失效,除Level 48以外的大型住人层级均处于难以联系/失联的情况。其中Level 4的空间结构开始崩坏,目前L4已失联,层级内人员现状危急。
● 可切行情况:层级间常规切入/出十分困难,勘察队以及派出的救援队仅能通过诺克立普贴来达到快速切出的目的。
● 人员情况:由于通信困难,各层级普通居民伤亡的报告无法及时获取。原各组织核心成员均已达到Level 1,除B.F.P.F.派出的房间改造队伍以及后室研究团队外,大部分人员都集中在L1。
● 物资补给情况:Level 1内物资充足,其他宜居层级无准确信息。
● 其他情况:收到汇报,某人在逃离一层级时在地上发现了一打明显不属于我们的通告,但同样是有关后室发生异常的,现准备递交给异常研究团队作为参考。另外,也有员工汇报称他们的卧室里出现了一些奇怪的文件,怀疑与上述事件有关,考虑以任何方式发通告至其他层级以尝试为研究收集资料。
▷ 其他次要档案可点击此阅读 ◁ |
整合档案 vol.2
空间#0-00-011-UK

空间#0-00-011-UK街景
源层级:Level 11
档案等级:Safe
描述:空间#0-00-011-UK与L11的构造相同,其中大部分建筑物都已经投入使用。空间内处于夜晚状态8,被薄雾笼罩着。路边的街灯为空间仅有的明亮光源,但空间中的水蒸气使光散射至各处,致使街道并没有特别黑暗。路边的店铺以及居民楼都亮着暗淡的灯光,但一如既往地空无一人。道路上除了路牌、灯等公共设施外全无他物,仅偶尔可见一棵树木立于路口中央,显得极为空荡。
空间内有许多空置的组织基地,只有少数商业性团体仍留在此地。居民楼为资料的主要获取地,大多数都为居民的日记之类,以及监控摄像头的存档。出于尊重,在此仅提供少量不涉及隐私的内容作为公共档案供查看。
出入口:所有进入过本空间的人员都是离开Level 11的建筑物时意外进入的,据一位亲身经历者描述,他在推开居所大门时,大门外并非白昼,而是黑夜,走出去后便来到了空间#0-00-011-UK。
资料&文件:
通告
1.请所有发现自己居所发生异常(如:墙壁出现规整的裂痕、物体之间发生错位、卫生间莫名其妙灌满了水),请立刻上报并要求附近居民撤离。
2.如遇生活物资短缺的情况,请不要慌张、抢夺物资,可前往各区域的M.E.G. Beta基地领取物资、吃饭或住宿。我们正在尝试与L1的Alpha基地进行联系。
3.为了减少切出的可能,请不要随意上街游荡,目前层级极不稳定,有可能某处连接着虚空。
4.希望您不要为了某些原因使用任何方式强制切出本层级,尽管我们知道可能您的家人正身处危险,但请相信我们。
我曾认为人类能在后室恒久地居住下去
但后室并非一个我们能完全理解的事物,那来自过去的笔迹便向我展示了这一点——过去也没能做到
UNKNOWN LEVELS人外有人,天外有天
空间#N/A-144

空间#N/A-144一角
源层级:未知
档案等级:Safe
描述:空间#N/A-144为一处高速公路上的服务区。内部处于黑夜,服务区设施完备,灯火通明,推测其源层级曾被用作大量后室人类的临时的避难所。其中的一座大型建筑物内的大厅中搭满了帐篷,帐篷之间也有睡袋铺在此处,整个大厅显得十分拥挤。帐篷以及睡袋上大都散落着诸如毛巾、被子等各种生活用品,也有许多是小孩子的玩具,它们被随意地摆放着。被子和睡袋有明显人使用过的痕迹,都是凌乱且布满褶皱的。商店的货架上显然已经被扫荡一空,仅留下少量有破损的变质罐头留在货架上,仓库内也只剩下几个将近空无一物的纸箱子。
公路上仅靠近服务区处安装有几盏暗黄色的路灯,只有灯下的道路能够被看清,无光处则是彻底地浸没在黑暗之中。当在公路上时,手电筒等工具的光只能照亮很小的范围,以至于想要延公路行走的人只可摸黑行走。由于没有光照,公路旁两侧尚未探明究竟是何物,疑似是无边的黑暗虚空。公路是笔直向前延伸的,其终点仍是未知。
出入口:可以通过枢纽里的一扇标有断桥符号的门进入此空间。切出需要跳入公路旁的虚空中,随后会来到Level 0.
资料&文件:
记录开始时间:BTC 979/7/21 19:34 长度:5min56s 甲:你们都哪里来的?
乙:Level 48。
丙:我也是。
(沉默)
甲:我没去过L48。那里也待不了了?
丙:也?(停顿)是啊,那里开始地震、翻起巨浪,然后地面出现了裂痕。M.E.G.的在它彻底裂开之前用了一种非常高级的方法,让我们切到了枢纽那里。对了,你应该是先我们到这的吧?你不知道,他妈的我们到那里之后想找到Level 1入口,结果那个门完全打不开了!即便他没有上锁!
乙:是啊。打开唯一一扇可以不用层级秘钥打开的门之后就到这里了。对了,你是咋来的啊?
甲:Level 11,原本通向Level 1的固定出口,切出之后,就来这了。
…………
甲:你说这地方怎么出去呢,再不出去我们都得饿死在这。
丙:问过了,都还不清楚。但我估计,那条路走走应该就能切出了。虽然还不知道会去哪,但总比在这堆尸强。
甲:听,那边。(手指了指另一边)他们好像在打算一起走那条路。
乙:还是少冒这风险吧,到时候切到个虚空里面……还是待这吧,好歹安全点,没有暴死的风险。
记录开始时间:BTC 979/7/22 01:01 长度:5min (两个人靠近站在公路上,望向前方的黑暗)
甲:那个人已经走了很久了,不知道切出了没有。
丙:他不是说发现可能可以切出后就引爆一个会发出巨大声响的炸弹吗?这不还没有声音,说明还没找到呗。
(沉默)
…………
(远处奔来一个身影)
甲:坏了!
(两人靠上前去)
丙:发生什么事了?!
丁:我摸黑到了一个很远的地方,然后前面的路突然间就断开了。我不敢行动,赶紧跑了回来……
甲:不好,不会是这边也要……
丙:操……快叫这里的人赶紧跑吧,往反方向跑!
空间#0-00-004-UK
空间#0-00-004-UK一处完整的空间
源层级:Level 4
档案等级:Safe?
描述:结合整合档案 vol.1中的“电子邮件”内容,可知L4的大致状况——事实也正是如此。
空间#0-00-004-UK处内无灯光中,而天气恰好是暴风雨,因此环境会显得很是阴暗。L4临外的墙壁上安装有窗户,但并不存在实体窗户,实体原所处位置则会留下一个矩形的洞。雨珠打在窗户或是经过洞打在地面上——有趣的是,它们都打在同一个位置上,因此无论是地板还是窗户,雨的痕迹都是不会改变的。
空间最为特殊的景观应当是异常所造成的支离破碎的空间。在空间中行走,时常能够看见破损的墙壁、像是被程序删除而形成的只剩一半的房间、渗水的痕迹或是错位的摆设9,天花板摇摇欲坠,墙角处有散落的石块。倘若进入一间办公室,或许还能看见办公桌半陷进地板里。原先存放有杏仁水的喷水池或是冷水机,现都已干涸,留下的只有不慎灌入雨水。
空间中还的墙壁上经常可以看见涂鸦,涂鸦的内容多是对逃离L4的绝望。部分涂鸦内容可见下:
我想写些什么来缓解,但没有纸,于是只能靠这个了,看来的确也有很多人和我一样啊
墙在倾斜!在倒塌!!
好饿啊,我都产生幻觉了,墙壁上突然出现了好多字,就像我正在写的这些一样
我感受到了几倍的痛苦,就像好多人都像我一样正淋着雨畏缩在墙角,而他们的感受都汇聚到了我身上
空间中存在一定的精神影响,包括但不限于产生如上第二则所说的“层级倒塌”的幻觉。这些精神影响并不算大,但可以推测当时身处于L4中会经历极为严重的精神影响。
恰好手上有只录音笔,我希望在我死前能留下点有用的东西。
首先,我本来是跟着一群人的,但是奇怪的是,在转角处,我转过弯之后发现,他们在一瞬间全都消失不见了。这很奇怪,我知道我并没有切出到别的层级——因为我的处境没有改变,一样地糟糕。难道他们切出了?但在消失处并没有可以切出的地方,总不能出口在一瞬间内转移吧?更何况我们已经找了很久出口了都没有找到,这时候突然出现一个——我没赶上那真是太倒霉了。
然后是那些墙壁上的涂鸦,我敢肯定这不是什么幻觉,因为看到之后我喝掉了半瓶杏仁水来保证自己状态较好,而它们依旧存在。这些字都是慢慢出现的,并不是因为雨水然后显形了什么的,很多都是凭空出现的,并且也不是慢慢写上去的,就是莫名其妙地出现。我不知道为什么,我看了一下,有些受到咒骂的组织是我完全没听说过的,而提到的人名也不像是和我一同的人。我曾想过这可能是层级自己出现的,但是那些话语里透露出的疯狂和绝望正是我正在体会到的,我敢肯定,他们,那些写下这些话的人,是真实存在过的。
但他们和我并不处在一个世界里。他们和我的经历和感受是如此相似,以至于我觉得,他们就是过去的我。就像Level 4的崩坏重复发生过一样……
也许我们的后室正在毁灭,尽管我一直没能与外界取得联系,但毕竟就连Level 4也正在毁灭……
就͇这̡样̵̬̏͂了͚̣ͫͯ,我ͯ̿͗̀̑ͯͅ的̶̻͔ͣ̅͒͘录̨̯͙͊͑̀͘音̯̎́ͮ̽̓ͅ笔̸̞̹ͩ̈́̋͏要̛͇͕̣̦ͨͧ͟没̛͍̲͊̾̒̆͟电̴̧̲̦͇̦ͨ̋了̺ͭ͑͋ͩ̓ͦ̕。10
据上面所提到的「人在一瞬间内消失」,我们猜测Level 4是突然出现了「孤立效应」。如果这一事实存在,那么空间#0-00-004-UK自然也会存在孤立效应,但由于除档案提供者外无人进入过空间,故仅仅只是作为一个猜想存在。
而根据整合档案 vol.1中的“电子邮件”,以及「像是来自不同世界的涂鸦」,还产生了另一个猜想:这些发生在旧日的「M.E.G.时代」的事件,事实上早已在过去的过去发生过一次(又一次)——而我们,或许也正处于这一不断重复的轮回之中。
出入口:报告此空间的人并未给出切入/出方式。他给出了所对空间的详细描述和里面的资料信息等内容,我们只能选择相信。
层级之外
记录开始
Euc.N:最近有件事传得沸沸扬扬的,我觉得它证实了我们在档案里写的猜想。
Wapri.:啊?你是说……Level 4基地的日常报告的缺失?的确很巧合,就像那些M.E.G.的人所经历的一样。说实话,这不禁令人脊背发凉。
Euc.N:是的,我觉得L4基地大概率不是因为记录员偷懒什么的,也许是孤立效应呢?
Wapri.:这……万一不是呢?
Euc.N:不可能,我觉得L4的空间告诉我们的已经够多了——后室的崩坏会一次次上演,我们也在劫难逃。
Wapri.:其实我还有一个疑问,就是你为什么会断定“他们”是我们的“故人”?
Euc.N:我不好说。既然旧日之景呈现在了我们所处的后室之中,我想故事也应当发生在这里,只不过是在过去。
Wapri.:那假如你说的是真的,我们有什么办法能获得生存?
Euc.N:能否生存下来,我不敢肯定。但如果这真是个循环,我们仍然需要像他们一样,想办法活下来。但我们对后室了解的并不多,面对后室本身的崩坏,我们肯定是难以应对的——而M.E.G.的他们也得到了过去的信息,他们大概也会像我们一样去尝试解析崩坏背后的真相,不妨再找找有无其他空间——在他们的研究基础上继续探究后室。唉,这本是我们过去该做的。
Wapri.:话又说回来了,过去的事物为何会出现在现在呢?
Euc.N:这也许是后室结构变化导致的。崩坏会造成很多通向虚空的出口,那过去的事物切进了虚空之后就停留在了那里;而如今后室再一次崩坏,虚空又再次连接到了后室,过去的事物经过入口又回来了——这是个抽象的比方,但我认为无论是那些通告还是涂鸦,抑或是这个Level C-1,都是如此。
记录结束
整合档案 vol.3
空间#N/A-0913

空间#N/A-0913
源层级:无档案记录
档案等级:Thaumiel
描述:空间#N/A-0913内由两栋研究所组成。空间被深邃的黑所包裹着,环绕在研究所外围的道路上安装的路灯整齐地排成一列,照亮着户外空间。
研究所内主要分为生活区域和研究区域,而研究区域用作研究后室理论,其中只有办公室和用作「空间模拟实验」的房间,它们使用的仪器设备尚无法获取,但房间外留有实验报告,这些报告已经展现出后室的某些本质,剩余所需的便是我们对其的理解。
空间是封闭的,结构较为稳定。黑暗中看似是路灯的光点实际上是屏障将灯光反射形成的,而屏障和环境相融,只有当触碰到时才能意识到身处于封闭空间之中。经过勘测,空间边缘光滑而平整,类似于一个正方体,棱角分明。结合这些特征,可以断定,此空间的源层级(房间)便是隶属于M.E.G.的B.F.P.F.房间改造团队所建造的用作后室研究的房间。
出入口:可从空间#0-00-001-EX一处标有立方体的门进入研究所内,亦可通过此门返回。
研究课题:
- 后室自然演化规律——在无其他事物影响下,后室是否会陷入逐渐崩坏,而之后又重新稳定的循环中
模拟环境描述:空间处于一座无限大的现代大楼内,大楼中存在无限多个房间。楼内的过道交错纵横,有时在交叉处会出现一条通往楼上/楼下的楼梯,偶尔也会发现一台电梯。通常地,楼梯或电梯旁都会有一个立体标识来标注所在楼层,这些标识大多数为字母和数字,如“C”、“0”,也有些是毫无意义的图案,它们的作用仅仅是区分楼层,而无任何顺序。这些设施并不能帮助人达到所有楼层,楼梯通常只会连接上下两层,而电梯内也只有寥寥几个按钮,按钮的图案则是上文提到的“标识”。
整座大楼是中心区域是空的。中心区域贯通了整座楼,无论是向下或是向上望,都只能看见其他楼层消失在视野里。在任意楼层中行走都可以来到楼层的中心看到其他楼层的情况,边缘处会有护栏环绕,可以避免失足落入虚空之中。此处的过道会连接通往其他方向的主干道,而这些道路又会不断延伸开,通向楼层各处。
参数设置:在本次模拟实验中加入了目前已知所有的后室基础信息以最大限度还原后室,但剔除了生物的影响。此实验仅观察后室的自然演化。
街道一处,与虚构的人
研究课题:
- 当人类存在于后室中后,后室是否会陷入逐渐崩坏,而之后又重新稳定的循环中
模拟环境描述:空间是一条沿海岸线无限延伸的街道,街道上有着许多城镇正常会拥有的设施。街道一侧是海滩和无限大的海洋,而另一侧则是各种类型的建筑,有独栋洋房,也有商店、教堂之类的,建筑物内部都装潢完全,完全可以使用或入住。这些建筑物后方是一堵围墙,这些围墙是用砖头砌成的,但都不可以任何方式翻越。如果从高层建筑物向围墙外望,只能望见一片仿佛没有尽头的森林。此空间存在昼夜更替和气象变化。
参数设置:在本次实验中加入了虚构的人类12,供其在空间内生活、发展,同时也将整个街道部分设置成一个后室层级,而围墙外则类比为整个后室。另外的,我们要求人类无法得知如何逃离此处,将其完全框定在这个空间之中
演化过程:在前期环境并没有出现异常,偶尔会发生诸如潮汐异常、海啸、地震的情况。但随着时间的流逝,到了模拟后期便开始出现了结构崩坏,到最后整个空间都成为一片混沌。但随着人类的全部灭亡后,空间又开始逐渐开始超乎常理地回复原貌,而之后重又变为了最初定义的形态——更令人惊讶的是,人类又再一次出现在了空间之中13,而之后重复着这套流程,陷入了循环之中。
结论:对于上述的问题,答案为是。当人类介入后,后室便会出现这种情况,也的确会存在循环和「其他人类」。但仍无法知晓其中缘故。只能解释之所以会有「其他人类」,是因为存在无数个平行的前厅,而其中的几个依次与同一个平行后室所连接,导致会有一批又一批的看上去相差无几的人来到此处。
而如果我们不知道如何离开后室,也最终会因为后室的崩坏而灭亡。
发现:在对混沌空间的报告中,我们发现仍有几处地点保持着原有的样貌,而它们在几轮循环中都未改变——这意味着在我们的后室里可能也会有一个封闭的安全的地点。
后室崩坏的真相,与破局之法
Level C-1的空间的出现自N/A-0913后便结束了,但M.E.G.留下了数个问题供后人解决:
- 为什么后室在人类进入后会让崩坏?
- "Eden"实验中的人类所做目的究竟是什么?
- 避免在崩坏中灭亡的方法是什么?
- 在崩坏中稳固的安全地点在哪?
对于上面的问题,现已有了较为合理的答案。
首先,需要引入一个理论:相由心生。此说法认为后室客观面貌与人类的主观思维直接关联——那么当人类来到后室,那人类的故乡所赋予人类自身具备的客观的定律,会不会也会被带来后室呢?
而在数据库记载的「前厅理论」中,有这么一条定律,认为:
在一个孤立系统内,如果没有外力做功,其总混乱度会不断增大。14
尽管,这是一条客观的法则,但人类的生存与这条定律息息相关。因此,后室有极大可能也因人类的出现,使这条定律在后室中也生效了。于是,后室在时间的流逝中,其结构也开始崩坏,逐渐变得混沌。但人类也在混沌中消亡,而当人类消亡后,定律也不再生效,后室重归其旧貌,保持着稳定的结构——直到下一批人类的到来,不断重复着这些事件,这解释了"Kopnik"和"Darwen"实验中无法解释的现象。
而究竟如何避免灭亡,也明了了——说到底,便是离开后室。崩坏,因人类的出现而发生;后室人类因崩坏而灭亡;为了不灭亡,唯一的出路便是不让崩坏发生,而想要做到这一点,便需要人类离开后室。而如果我们重新审视旧日的我们和当下的我们,便会发现我们始终都是在考虑如何在后室中定居,在后室中获得一个舒适圈,于是大量获取物资,大量建造基地,而没有想过像"Eden"实验中的人一样,去不断探索出口,想着离开后室。
而我们该何去何从?漫无目的自然也无法达到目的。但事实上,我们都忘记了一点——我们的祖先曾走过一条不在循环上的道路。眼前,离开后室,除了落入虚空,还有一处落脚点:
前厅The Reality
也许是因为这个目标近乎不可能,而我们放弃了它,但我们却没有思考过,归乡途中,我们所能获得的仅仅是归乡本身吗?"Eden"实验中的人,也许他们回到了前厅,也许并非如此,而是来到另一个“室”,但他们还是避免了死于后室的灾难之中——尽管我们并不知道那另一个“室”究竟是更安全还是更危险。但经过历史的见证,停滞不前、安于现状所带来的,是灭亡;因此,我们想要获得生存所须要做的,是不断探索、向前,无论这是否是一条艰难而无尽地路途。
行动记录——「马尼拉房间」

「另一个马尼拉房间」
Euc.N:到了,我想,就是这。
Wapri.:这就是你说的,「另一个马尼拉房间」?
Euc.N:嗯。
Wapri.:你……哪里知道的?
Euc.N:感谢M.E.G.,他们的资料库里不是有来自过去的物件吗?我翻了一下,就发现有几张照片上面是Level 0,但照片上的Level 0的墙壁上有独特的标记,然后这些标记指向了一个小房间;而照片背面画着图画,我不太会描述,就是在描绘里面那里有很多来自不同时间的物品。所以,我觉得故人们也知道Level 0有这么一处稳定不变的地方,然后找到了它,往里面放了很多东西——可能就和我们带的东西差不多吧,都是他们文明的记忆。
Wapri.:我真想亲眼见见那些故人们的记忆,他们和我们一样……(哽咽)
(沉默)
Wapri.:(清出一小片空位)那么,就放在这吧。我希望看到这个的人能明白我们做的,然后沿着正确的方向。
Euc.N:这正是我们所作所为和历史的意义所在。
Wapri.:不知道,下一群人类能不能逃过这一劫。也许还要等待几十个千年……我希望,逃出后室不会仅仅是一个虚幻的梦想。
Euc.N:可惜这个梦想被发掘的太晚了,不然这也不再是“虚幻的梦想”了。
Wapri.:希望下一个人能早点看到我们留下来的资料吧。那么,接下来呢?
Euc.N:(望向身后的Level 0)静候下一位流浪者的到来。
。
。
。
。
。
。
“假如你不小心在错误的地方从现实中切出,你最终将坠入后室,这里只有腐臭的潮湿地毯,令人发狂的单调黄色,荧光灯全力运作发出的永无止境的嗡鸣,还有令人深陷其中的大约六亿平方英里随机分割的空荡房间。倘若你听见有什么东西在附近徘徊,愿上帝保佑你吧,因为它一定也听见了你的声音……”

请按如下方式引用此页:
“EuclidnNap的报告”,作者 NobodyCaresOblivion,来自后室中文维基。原文链接http://backrooms-wiki-cn.wikidot.com/c1-litteras-replica-of-the-past。遵循 CC BY-SA 3.0 协议。
图像名:role-logo.gif
图像作者:chengbing
授权协议:CC BY-SA 3.0
来源链接: http://backroomssandboxcn.wikidot.com/local--files/chengbing-backrooms/role-logo.gif
图像名:artistlivesinme.jpg
图像作者:unknown
授权协议:CC BY-SA 2.0
来源链接: http://backrooms-wiki.wdfiles.com/local--files/level-1/artistlivesinme.jpg
图像名:DE9MM2voqKc.jpg
图像作者:Jp Valery
授权协议:Unsplash 协议
来源链接: https://unsplash.dogedoge.com/photos/DE9MM2voqKc
图像名:DESK
图像作者:Nathalie Payares
授权协议:Pexels 协议
来源链接: https://www.pexels.com/zh-cn/photo/4929994/
图像名:1c1576c7c0fe25bc.jpg
图像作者:Lupus Caeruleus的同学
授权协议:CC0
来源链接: http://brsandbox-pro.wikidot.com/local--files/etpsq/1c1576c7c0fe25bc.jpg
图像名:WIFI0s0-844691784IMG20221103201408.jpg
图像作者:Lowmoo
授权协议:CC BY-SA 4.0
来源链接: http://brsandbox-pro.wikidot.com/local--files/etpsq/WIFI0s0-844691784IMG20221103201408.jpg
图像名:WIFI0s01497587816IMG20221103201039.jpg
图像作者:Lowmoo
授权协议:CC BY-SA 4.0
来源链接: http://brsandbox-pro.wikidot.com/local--files/etpsq/WIFI0s01497587816IMG20221103201039.jpg
图像名:Mxqvo8hhY1s
图像作者:Jack Finnigan
授权协议:Unsplash 协议
来源链接: https://unsplash.dogedoge.com/photos/Mxqvo8hhY1s
图像名:ManilaRoom.jpg
图像作者:Oleg Bor
授权协议:CC BY-SA 4.0
来源链接: https://commons.wikimedia.org/wiki/File:Wallpaper_on_the_wall_of_the_apartment.jpg
更多授权相关信息,请查阅授权指导。