: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 }
/* BHL Style Search Top Box And User Account */ /* By Mercuresphere */ /* Based on BHL Theme */ :root, :root:lang(cn) { --merc-light-color: var(--swatch-menutxt-light-color); --merc-dark-color: var(--swatch-menubg-dark-color); --user-account-mask: url("https://fastly.jsdelivr.net/gh/Crimone/crimson-anemone@main/files/user-circle.svg"); --search-top-box-mask: url("https://fastly.jsdelivr.net/gh/Crimone/crimson-anemone@main/files/search-top-box-mask.svg"); } /* ===用户和搜索栏=== */ @media only screen and (max-width: 768px) { #login-status { right: unset; font-size: unset; } #navi-bar, #navi-bar-shadow, #search-top-box-input { display: unset; } #search-top-box-input { min-width: unset; } #search-top-box { top: unset; right: unset; height: unset; } #search-top-box:focus-within { box-shadow: unset; background: unset; padding: unset; } #search-top-box:not(:focus-within):before { -webkit-mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2); -webkit-mask-position: center center; -webkit-mask-repeat: no-repeat; -webkit-mask-image: var(--search-top-box-mask); z-index: 14; background-color: rgb(var(--merc-light-color)); color: rgb(var(--merc-dark-color)); text-align: center; cursor: pointer; mask-image: var(--search-top-box-mask); mask-position: center center; mask-repeat: no-repeat; mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2); pointer-events: none; position: absolute; top: 0; right: 0; width: calc(0.9375rem * 1.8); height: 100%; content: " "; } #search-top-box form[id=search-top-box-form] { visibility: unset; height: unset; } #search-top-box form[id=search-top-box-form]:focus-within { visibility: unset; } #search-top-box form[id=search-top-box-form] input { -webkit-appearance: unset; -moz-appearance: unset; position: unset; top: unset; transform: unset; appearance: unset; height: unset; } #search-top-box form[id=search-top-box-form] input[type=text] { visibility: unset; transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), font-variation-settings .2s cubic-bezier(.4, 0, .2, 1), font-weight .2s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1), right .2s cubic-bezier(.4, 0, .2, 1), width .6s cubic-bezier(.4, 0, .2, 1), padding .6s cubic-bezier(.4, 0, .2, 1), max-width .6s cubic-bezier(.4, 0, .2, 1); } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text] { position: unset; right: unset; transform: unset; cursor: unset; border-width: unset; width: unset; height: unset; color: unset; } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text]:hover { background-color: unset; } #search-top-box form[id=search-top-box-form] input[type=submit] { background: none; transition: unset; } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=submit] { opacity: unset; margin: unset; padding: unset; width: unset; } #header h1 a { z-index: unset; } } @media only screen and (max-width: 56.25rem) { #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { background-color: rgba(0, 0, 0, 0); } } @media (min-width: 36rem) { #login-status { flex-grow: unset; left: unset; right: unset; } #login-status:not(:hover):not(:focus-within) { visibility: hidden; } #login-status::before { visibility: visible; } } #search-top-box-input { min-width: unset; display: inline-block; } #search-top-box-form input[type=submit], #search-top-box-form input[type=submit]:focus, #search-top-box-form input[type=submit]:hover { color: transparent; } #search-top-box-form input[type=submit]:focus, #search-top-box-form input[type=submit]:hover { border: none; text-shadow: none; } #search-top-box-form input[type=submit], #search-top-box-input:focus, #search-top-box-input:hover { border: none; } #search-top-box { display: flex; z-index: 12; position: absolute; top: 1.5em; right: calc(3% - .25em); align-items: center; justify-content: center; width: auto; height: calc(0.9375rem * 1.8); transform: translateY(-50%); font-size: calc(0.9375rem * .86667); } #search-top-box, #search-top-box * { box-sizing: border-box; margin: 0; padding: 0; border: none; transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), font-variation-settings .2s cubic-bezier(.4, 0, .2, 1), font-weight .2s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1), right .2s cubic-bezier(.4, 0, .2, 1), width .6s cubic-bezier(.4, 0, .2, 1), padding .6s cubic-bezier(.4, 0, .2, 1), max-width .6s cubic-bezier(.4, 0, .2, 1); will-change: box-shadow, font-variation-settings, font-weight, background-color, color, right, width, padding, max-width; } #search-top-box:focus-within, #search-top-box:focus-within *, #search-top-box:focus-within :after, #search-top-box:focus-within :before { margin: 0; padding: 0; transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), font-variation-settings .2s cubic-bezier(.4, 0, .2, 1), font-weight .2s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1), right .2s cubic-bezier(.4, 0, .2, 1), width .3s cubic-bezier(.4, 0, .2, 1), padding .3s cubic-bezier(.4, 0, .2, 1), max-width .3s cubic-bezier(.4, 0, .2, 1); will-change: box-shadow, font-variation-settings, font-weight, background-color, color, right, width, padding, max-width; } #search-top-box:focus-within { background: rgba(var(--merc-dark-color), .7); box-shadow: calc(calc(0.9375rem * 1.8) / 2 * -1) 0 calc(calc(0.9375rem * 1.8) / 2) rgba(var(--merc-dark-color)); } #search-top-box:after, #search-top-box:before { position: absolute; top: 0; right: 0; width: calc(0.9375rem * 1.8); height: 100%; content: " "; } #search-top-box:before { -webkit-mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2); -webkit-mask-position: center center; -webkit-mask-repeat: no-repeat; -webkit-mask-image: var(--search-top-box-mask); z-index: 14; background-color: rgb(var(--merc-light-color)); color: rgb(var(--merc-dark-color)); text-align: center; cursor: pointer; mask-image: var(--search-top-box-mask); mask-position: center center; mask-repeat: no-repeat; mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2); pointer-events: none; } #search-top-box:not(:focus-within):hover:before { background-color: rgb(var(--merc-light-color)); } #search-top-box:after { --clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: var(--clip-path); z-index: 13; clip-path: var(--clip-path); pointer-events: none; background-color: transparent; } #search-top-box:not(:focus-within):after { --clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); background-color: rgb(var(--merc-light-color), 0); } #search-top-box form[id=search-top-box-form] { display: flex; visibility: visible; position: relative; right: 0; max-width: 100%; height: calc(0.9375rem * 1.8); } #search-top-box form[id=search-top-box-form]:not(:focus-within) { max-width: calc(0.9375rem * 15); } #search-top-box form[id=search-top-box-form] input { -webkit-appearance: none; -moz-appearance: none; appearance: none; position: relative; top: 0; } #search-top-box form[id=search-top-box-form] input[type=text] { z-index: 13; position: absolute; right: 0; width: calc(0.9375rem * 15); max-width: calc(0.9375rem * 15); height: 100%; padding: 0 calc(0.9375rem * 1.8) 0 1em; outline: 0 solid rgb(var(--merc-light-color)); background-color: rgb(var(--merc-dark-color), .7); box-shadow: 0 0 0 .125rem rgb(var(--merc-light-color)); color: rgba(var(--merc-light-color)); } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text] { max-width: calc(0.9375rem * 1.8); padding: 0; outline-width: 0; background-color: rgba(var(--merc-dark-color), 0); box-shadow: 0 0 0 0 rgb(var(--merc-light-color)); color: rgba(0, 0, 0, 0); cursor: pointer; } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text]:hover { background-color: rgba(var(--merc-dark-color), 1); } #search-top-box form[id=search-top-box-form] input[type=submit] { visibility: visible; z-index: 14; position: absolute; right: 0; width: calc(0.9375rem * 1.8); height: calc(0.9375rem * 1.8); outline: 0 solid rgb(var(--merc-light-color)); background-color: transparent; box-shadow: 0 0 0 .125rem rgb(var(--merc-light-color)); color: t; font-size: calc(0.9375rem * .86667); cursor: pointer; pointer-events: all; } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=submit] { box-shadow: 0 0 0 0 rgb(var(--merc-light-color)); pointer-events: none; } #login-status { --wght: var(--ui-wght); display: flex; z-index: 11; position: absolute; top: 1.5em; right: calc(3% + calc(0.9375rem * 1.8) - .25em); align-items: center; justify-content: center; height: 2em; margin: 0 0 0 .5em; transform: translateY(-50%); color: rgb(var(--merc-light-color)); font-weight: var(--wght); font-size: 1em; font-family: var(--UI-font); white-space: nowrap; transition: opacity .2s cubic-bezier(.4, 0, .2, 1); } #search-top-box:focus-within ~ #login-status { opacity: 0; } #login-status span.printuser a:first-of-type { width: 1.75em; } #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in { margin: 0 1em; background-color: rgb(var(--pale-gray-monochrome)); color: rgb(var(--merc-dark-color)); padding: 0.1em 1em; text-decoration: none; } #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account:active, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account:hover, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in:active, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in:hover, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account:focus-within, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in:focus-within { background-color: rgba(var(--merc-light-color), 1); color: rgb(var(--merc-dark-color)); text-decoration: none; } #login-status span.printuser { --wght: var(--ui-wght); margin-right: .5em; color: rgb(var(--merc-light-color)); font-weight: var(--wght); } #login-status a#my-account, #login-status a[href*="account/messages"] { color: rgb(var(--merc-light-color)); } #login-status a#my-account { --wght: var(--ui-wght); -webkit-text-decoration: underline rgb(var(--merc-dark-color)) .125em; display: flex; align-items: center; padding: 0 .5em; background-color: initial; box-shadow: inset 0 0 0 0 rgb(var(--merc-dark-color)); font-weight: var(--wght); text-decoration: underline rgb(var(--merc-dark-color)) .125em; transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), text-decoration .2s cubic-bezier(.4, 0, .2, 1), -webkit-text-decoration .2s cubic-bezier(.4, 0, .2, 1); } #login-status a#my-account:active, #login-status a#my-account:hover { --wght: var(--ui-hvr-wght); -webkit-text-decoration: underline rgb(var(--merc-dark-color)) 0; box-shadow: inset 0 -2em 0 0 rgb(var(--merc-dark-color)); color: rgb(var(--merc-light-color)); font-weight: var(--wght); text-decoration: underline rgb(var(--merc-dark-color)) 0; } #login-status a#my-account:focus-within { --wght: var(--ui-hvr-wght); -webkit-text-decoration: underline rgb(var(--merc-dark-color)) 0; box-shadow: inset 0 -2em 0 0 rgb(var(--merc-dark-color)); color: rgb(var(--merc-light-color)); font-weight: var(--wght); text-decoration: underline rgb(var(--merc-dark-color)) 0; } #login-status #account-topbutton { --clip-path: polygon(30% 35%, 70% 35%, 50% 60%, 50% 60%); -webkit-clip-path: var(--clip-path); position: relative; width: var(--account-height); height: var(--account-height); margin: 0; padding: 0; background-color: rgb(var(--merc-light-color)); color: transparent; clip-path: var(--clip-path); transition: -webkit-clip-path .1s cubic-bezier(.4, 0, .2, 1); transition: clip-path .1s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .1s cubic-bezier(.4, 0, .2, 1); } #login-status #account-options { display: block !important; z-index: 12; position: absolute; top: 1.5rem; right: 0; width: 10em; margin: .25em 0 0; padding: 0; overflow: hidden; background-image: var(--gradient-header); background-color: rgb(var(--merc-dark-color)); opacity: 0; pointer-events: none; transition: opacity .15s cubic-bezier(.4, 0, .2, 1); } #login-status #account-options:focus-within, #login-status #account-topbutton:active + #account-options, #login-status #account-topbutton:focus + #account-options { opacity: 1; pointer-events: all; } @media (pointer: coarse) { #login-status #account-options:hover, #login-status #account-topbutton:hover + #account-options { opacity: 1; pointer-events: all; } } #login-status #account-options * { margin: 0; padding: 0; } #login-status #account-options ul { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 2em; flex-grow: 1; align-items: center; justify-content: center; font-size: .85em; } #login-status #account-options ul li { position: relative; } #login-status #account-options ul li, #login-status #account-options ul li a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; } #login-status #account-options a { --box-shadow: rgba(var(--merc-dark-color)); --wght: var(--ui-wght); position: relative; flex-grow: 1; height: 100%; max-height: 2em; padding: 0 .25em; box-shadow: inset 0 0 0 .0625rem var(--merc-dark-color); font-weight: var(--wght); transition: color .15s cubic-bezier(.4, 0, .2, 1), font-weight .15s cubic-bezier(.4, 0, .2, 1), font-variation-settings .15s cubic-bezier(.4, 0, .2, 1); } #login-status #account-options li > a, #login-status #account-options li > a:visited { color: rgb(var(--merc-light-color)); } #login-status #account-options li > a:active, #login-status #account-options li > a:hover { --wght: var(--ui-hvr-wght); color: rgb(var(--merc-dark-color)); font-weight: var(--wght); text-decoration: none; } #login-status #account-options li > a:focus-within { --wght: var(--ui-hvr-wght); color: rgb(var(--merc-dark-color)); font-weight: var(--wght); text-decoration: none; } #login-status #account-options li > a[href*="/messages"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; min-height: 100%; font-size: 0; } #login-status #account-options li > a[href*="/messages"]:after { position: absolute; left: 50%; transform: translateX(-50%); content: "信息"; font-size: calc(0.9375rem * .765); pointer-events: none; } #login-status #account-options li > a:before { --clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); -webkit-clip-path: var(--clip-path); z-index: -1; position: absolute; top: 0; width: 100%; height: 100%; background-color: rgb(var(--merc-light-color)); content: " "; clip-path: var(--clip-path); pointer-events: none; transition: -webkit-clip-path .2s cubic-bezier(.4, 0, .2, 1); transition: clip-path .2s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .2s cubic-bezier(.4, 0, .2, 1); } #login-status #account-options li > a:active:before, #login-status #account-options li > a:hover:before { --clip-path: polygon(-15% 0, 115% 0, 100% 100%, 0 100%); } #login-status #account-options li > a:focus-within:before { --clip-path: polygon(-15% 0, 115% 0, 100% 100%, 0 100%); } /* ===默认收起用户信息栏和搜索栏=== */ #search-top-box { top: 23px; right: calc(3%); } #login-status { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; top: 24px; right: calc(3% + calc(0.9375rem * 1.8) + .25em); color: transparent; pointer-events: none; transition: color .2s cubic-bezier(.4, 0, .2, 1); user-select: none; } @media only screen and (min-width: 980px) { #search-top-box { right: calc(3% + (-100vw + var(--header-width-on-desktop, 61.25rem)) / 2); } #login-status { right: calc(3% + calc(0.9375rem * 1.8) + .25em + (-100vw + var(--header-width-on-desktop, 61.25rem)) / 2); } } #login-status:active, #login-status:hover { -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; color: rgb(var(--merc-light-color)); pointer-events: all; user-select: auto; } #login-status:focus-within { -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; color: rgb(var(--merc-light-color)); pointer-events: all; user-select: auto; } #login-status:active #account-options, #login-status:hover #account-options { pointer-events: all; } #login-status:focus-within #account-options { pointer-events: all; } #login-status > :not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); opacity: 0; transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), text-decoration .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1), clip-path .2s cubic-bezier(.4, 0, .2, 1), opacity .2s cubic-bezier(.4, 0, .2, 1), -webkit-text-decoration .2s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .2s cubic-bezier(.4, 0, .2, 1); } #login-status:active > :not(#account-topbutton):not([href*="account/messages"]), #login-status:hover > :not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); opacity: 1; } #login-status:focus-within > :not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); opacity: 1; } #login-status #account-topbutton { margin-left: 0; background-color: initial; pointer-events: all; transition: clip-path .15s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .15s cubic-bezier(.4, 0, .2, 1); } #login-status:hover #account-topbutton { background-color: rgb(var(--merc-light-color)); } #login-status:before { -webkit-mask-image: var(--user-account-mask); -webkit-mask-size: calc(calc(0.9375rem * 1.8) - .5em); -webkit-mask-position: center right; -webkit-mask-repeat: no-repeat; z-index: 2; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(var(--merc-light-color), 1); content: ""; cursor: pointer; mask-image: var(--user-account-mask); mask-position: center right; mask-repeat: no-repeat; mask-size: calc(calc(0.9375rem * 1.8) - .5em); pointer-events: all; transition: background-color .15s cubic-bezier(.4, 0, .2, 1); } #login-status:hover:before { background-color: rgba(var(--search-icon-hover-color), 1); } #login-status:active:after, #login-status:active:before, #login-status:hover:after, #login-status:hover:before { background-color: rgba(var(--search-icon-hover-bg-color), 0); cursor: auto; pointer-events: none; } #login-status:focus-within:after, #login-status:focus-within:before { background-color: rgba(var(--search-icon-hover-bg-color), 0); cursor: auto; pointer-events: none; } #login-status #account-topbutton { --clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: var(--clip-path); background-color: rgba(var(--merc-light-color), 0); clip-path: var(--clip-path); } #login-status:active #account-topbutton, #login-status:hover #account-topbutton { --clip-path: polygon(30% 35%, 70% 35%, 50% 60%, 50% 60%); -webkit-clip-path: var(--clip-path); background-color: rgb(var(--merc-light-color)); clip-path: var(--clip-path); } #login-status:focus-within #account-topbutton { --clip-path: polygon(30% 35%, 70% 35%, 50% 60%, 50% 60%); -webkit-clip-path: var(--clip-path); background-color: rgb(var(--merc-light-color)); clip-path: var(--clip-path); } #login-status #account-options { margin: 0; } #login-status a[href*="account/messages"] { color: rgb(var(--merc-light-color)); pointer-events: all; } #account-topbutton { border: none; } #account-options { border: none; }
Retrieval Record: ▒▒▒▒▒ 974
[ ↺ ] Retrieving information…
You have (1) new email!
Archivist ▩▩▩ ▩▩▩▩▩:
I'm sure you have also heard about the unusual activities surrounding [▒▒▒▒▒ 974] recently. As the chief archivist of levels 900-999, I think that if you need to sort through this material, you will require these important documents we have gathered from various sources.
I believe the documents you need have been attached below, along with a new archive prepared by our interns.
Archive: 974
SURVIVAL DIFFICULTY:
Class 2
- Safe
- Secure
- Minimal Entity Count
?
▒▒▒▒▒ 974 is the 975st level of the Backrooms.
Description:
This level consists of dozens of rooms connected by pink concrete corridors. The arrangement of these rooms may not conform to the principles of topology—that is to say, in this level, it is highly possible to encounter the phenomena of discovering when measuring distances that two rooms "should overlp" while in fact their interiors are not same. However, due to the lack of external observation, such a theory has not yet been verified.
Wanderers are extremely prone to losing their sense of direction within this level—because step measurement of the distances between rooms by counting may be confused by the phenomena, and throughout the entire level, interiors of all rooms are very similar.
These rooms all have a similar aesthetic style—a large accumulation of ribbons, pink wallpaper, dot pattern disigns and bows, wardrobes—as well as pink clothing with anime cartoon designs inside them and various accessories.
However in fact, if 仔细观察层级中上述的一切,会发现其具有严重的错乱现象——丝带可能在没有外力的情况下被凭空悬吊在天花板,墙纸点阵中不均匀的排布,以及似乎胡乱打出的绳结。在每个房间中都有着微小的错误,而它们都是不同的。
如果试图破坏层级的内饰,会引来此层级内部的特殊实体——▒▒▒▒▒——在此略过,而目前可以发现的是,各个房间的粉红色的缀饰之下的是与其基本风格完全不一致的事物。
如果掀去床铺粉红色的床单与被子、枕头等床上用品,流浪者将可以看到似乎有着明显虫蛀痕迹的海绵基底。如果细心观察,则可以发现房间中的木质家具底座全部有着斑驳的痕迹。抬头注视天花板上的日光灯,会发现其中的蚊虫尸体。地毯上也可以发现脱落的女人头发一类的事物。
有时,层级中会在一片寂静之后突然开始播放一些日本1990-2010年代的女声Vocal/Vocaloid乐曲。这些乐曲中有的曲目为十分经典的歌曲,而另外一些则被形容为“乐理混乱”,甚至人声的读音也“无法辨认”。
一首乐曲通常持续3-4分钟。在音乐播放时,▒▒▒▒▒会保持平静而不会行动或搜寻流浪者的痕迹。
层级中的物资包括杏仁水、皇家口粮(略少)、油腻棉花糖等。而据去过此层级的流浪者声称,这些食物全部十分油腻且味道枯燥,此层级内的Wi-Fi信号也十分不良。然而,不建议流浪者去触碰层级内的冰箱或储物罐等设施。储物罐的危险因素在前文已经提及,而冰箱在此层级内会有很大的可能性出现故障。多个流浪者声称,这些冰箱的最上层会流下不明的浑浊液体,引来地毯之下的虫蚁——进食时请额外注意它们。
需要注意的是,目前有记录声称,该层级的面积正在逐渐扩张——这一点可以由自一个房间走到底线需要的时间正在逐渐变长证明。这或许说明该层级中的房间具有自我复制并根据复制的次数不断劣化的性质。
Entities:
?
上文已经提到,层级中存在一种独特的实体——▒▒▒▒▒。对于它的调查暂未开始,且搜集的信息也难以组成完整的信息。目前只已知以下内容:
- 其为一约3.2米高的人形实体,具有长到不自然而又缺失手脚的细瘦肢体。
- 其通体漆黑,纹理未知。
- 其会被层级内破坏内饰的行为吸引——并借此找到被破坏的房间位置。其或许可以像大部分流浪者一样看、听、闻,但目前没有其与流浪者进行或许善意或恶意的互动的记录。
- 其似乎可以平滑且迅速地行动。未知其在没有流浪者破坏层级时呆在何处。
- 该实体名叫▒▒▒▒▒。
虽然此实体的行为似乎对流浪者显示出敌意,但事实上这一点无从考证——目前仅有的少数目击该实体的案例的主人公都被其恐吓并离开了其所在的房间。但好在,似乎该实体追踪破坏行为之后,仅会在破坏行为发生的房间进行活动——有流浪者称其似乎在进行一种维修行为。
Bases, Communities, and Outposts:
目前该层级仅有少数流浪者路过,暂无可用的基地、前哨或社区,可见的将来内也没有建立基地或社区的可能性以及必要性。
Entrances and Exits:
Entrances:
目前有关进入此层级的报告中并没有总结出一个稳定的入口——似乎曾进入过此层级的流浪者皆为在试图通向另一层级的入口处因为某种方式而错误切入了此层级。
Exits:
- 在此层级内陷入睡眠,有可能会在Level C-635的床上醒来。
- 此层级可能通向中地。
以下内容为文档附带的附加文件。共有(6)份,请顺序打开。
或许我的言辞将要略有偏颇。974不应该被称作一个层级。Level 974事实上应当是Cancer 974。
当我们知道它事实上正在不断扩大时这一点额外令人慌张——Level 0、Level 1也不过是面积巨大或无限大而已。房间的数量最开始是32间,现在已经到了50多间。它就是像癌症的扩张(Metastasis)那样的顽疾。
你有在想“巨构”Level 11吗?
人人都知道它正在不断扩张。974事实上是无数个不断重复的赝品——那些重复的元素组合、交融,试图用薄得令人发指的粉红色被窝盖住那满是疮痍的被单。我们不断重复着越来越糟的人生,就像这里一样任由选择用可爱的事物掩盖过去——尽管我们早已配不上它。把一串错误的代码重复执行数万数亿次,它也不会顺利运行。
错误的集合体也没有办法了。
那是所谓美好的过去在如今不断回响的样子。当你在这粉红色的世界伴着失真的“可爱”音乐抱起一个看起来和你童年的款式类似但是尤其破破烂烂的玩偶时,这点会在你的心中额外强烈。
Perhaps my words will carry a certain bias. Level 974 should not be termed a "Level"; in truth, Level 974 ought to be called Cancer 974.
It is particularly unsettling when we realize that it is, in fact, perpetually expanding—Level 0 and Level 1, by contrast, are merely vast or infinite in scale. The room count began at thirty-two; now, it has metastasized to over fifty. It is a chronic affliction, much like the Metastasis of a malignancy.
Are you thinking of the "Megastructure", Level 11?
这句我没有很看懂,不知道“巨构”是“L11”的谓语还是作为并列的宾语。
Everyone knows it is constantly expanding. Level 974 is, in essence, a multitude of repeating counterfeits—recurrent elements that converge and meld, attempting to shroud ravaged bedsheets beneath a layer of pink bedding so thin it is appalling. We endlessly repeat lives that only grow worse, much like this place, choosing to mask the past with "cute" things—though we have long since ceased to be worthy of them. Executing a string of bugged code tens of billions of times will never make it run smoothly.
A mere collection of errors is beyond saving.
That is how the so-called "beautiful past" echoes in the present. This realization strikes with particular force when, amidst this pink world and its distorted "cute" melodies, you pick up a plush toy—one that resembles a relic from your own childhood, yet is singularly tattered and decayed.
我打开冰箱的中层后,里面似乎有一些腐烂的水果。我能辨认出的有苹果、梅子等。底层打不开,似乎被什么东西封死了;我打开顶层后,从最顶层的一个倾倒的罐子中流出了某种奇怪的液体。
它闻起来像是草莓味。很不幸,不只有我一个人能闻到。这间屋子里有一些白蚁一类的小生物,它们很快就从地毯之下爬了出来。
千万千万不要吃这里的东西。
也许有时摆在桌子上的糖是可以吃的,但需要小心里面可能有针。并且,如果你还想吃东西的话,不要好奇掀开地毯。而且这样有可能吸引来某个实体。注意,越往后走,这样的东西就出现越多。我大概是在一个配色偏白的房间里切入这里的。随着我每向外走一间屋子,屋子就越肮脏。因此,尽量在最短的探索时间内离开这里,或者使用诺克立普贴是个很好的方法。
I opened the middle compartment of the fridge; it seemed to contain some rotting fruit—I could identify apples, plums, and the like. The bottom drawer is stuck, seemingly sealed shut by something. When I opened the top section, a strange liquid began leaking from a tipped jar on the uppermost shelf.
It smells like strawberry. Unfortunately, I’m not the only one who can smell it. There are small, termite-like creatures in this room; they crawled out from beneath the carpet almost immediately.
Do not—under any circumstances—eat the food here.
Perhaps the candies left on the table are occasionally edible, but be wary: there may be needles hidden inside. Also, if you still have an appetite, do not give in to curiosity and lift the carpet. Doing so may attract a certain entity. Note that the further you progress, the more frequent these occurrences become. I believe I clipped into this place through a room with a predominantly white color scheme; with every room I move outward, the environment grows filthier. Therefore, try to leave as quickly as possible—minimizing your exploration time is essential, or using No-clip Sticker1 is an excellent alternative.
我觉得至少每个人,心里都或多或少有过一些所谓“可爱”的念头吧。
我是出生在后室的人。Level 11曾经种过一颗樱花树,我站在那棵树之下看着头顶樱花飘落像吹雪一样拂过脸庞,在那时,我第一次萌生了想要回到前厅的念头——那是一种不甘,是一种对自己本来可以拥有的生活的恼怒和渴望。
于是我终于理解了那些粉红的,少女时代粉饰的梦境。
我的父母在后室认识,父亲在来之前是单身,母亲在来之前有过一场未完成的婚礼。我听他们讲前厅有多少美好的生活,青春的时光——如今,我的青春却是在这样无限的折叠空间里流逝过的。
974是没能完成的现实的整合。在现实腐烂的躯壳之上,用一层一层鲜艳的滤镜试图将其粉饰为梦境真正的样子,最终哭着笑着看着自己丑陋的作品,看着闪闪发光的梦中的衣橱沉浸在了思考中。
I suppose everyone, to some degree, has harbored those so-called "cute" thoughts in their hearts.
I am a child of the Backrooms. There was once a cherry blossom tree planted in Level 11; I stood beneath it, watching the petals drift overhead like swirling snow, brushing against my face. It was then that the urge to return to the Frontrooms first took root—a sense of indignation, a mixture of resentment and longing for the life that should have been mine.
And so, I finally came to understand those pink, sugar-coated dreams of girlhood.
My parents met in the Backrooms. Before arriving here, my father was single; my mother had left behind an unfinished wedding. I grew up listening to them describe how beautiful life was in the Frontrooms, their tales of youth—meanwhile, my own youth has withered away within these infinite, folded spaces.
974 is the integration of an unfulfilled reality. Upon the decaying husk of the real world, layer after layer of vibrant filters are applied in a desperate attempt to paint it into the true likeness of a dream. In the end, one stands there—crying, laughing—gazing at their own hideous creation, lost in thought before the glistening closet of their dreams.
——位阈限艺术学会成员
From a member of the Liminal Art Society
那是真的。我敢肯定我在974不断繁生的房间网格中看到了至少一到二间,和我儿时待过的那些粉粉的房间非常像,衣橱和那床铺——当我还可以称作一位少女的时候。
我需要提醒的是,974所创造的世界只是由某种无脑的模仿而创造的。你们接触过AI绘图吗?在以前,很多AI程序生成的图片中,人的头发丝和手指的细节满是瑕疵。
因为它并不知道那是什么。它只知道它要把它们画出来。它不理解什么是头发,只是照猫画虎地去形成粘连的结构与杂乱的线条。就像每个刚刚接触绘画的初学者那样。
974,这里也一摸一样。
手提包的拉链被装到提带上,裙撑的构架一长一短,贴纸上的卡通人物面部模糊,身体结构错乱,蝴蝶结的系法扭曲,缎带随机连接,它拙劣地复刻着我们每个人的梦。
It's true. I am certain that within the proliferating grid of rooms in 974, I saw at least one or two that were hauntingly similar to the pink rooms of my childhood—the closets, the beds—back when I could still be called a young girl.
I must remind you: the world created by 974 is born of nothing but mindless mimicry. Have you ever encountered AI-generated art? In the past, many images produced by AI programs were riddled with flaws in the finer details, like strands of hair or the joints of fingers.
Because it doesn't know what they are. It only knows it must render them. It has no concept of "hair"; it merely imitates the form, resulting in fused textures and chaotic lines—just like a novice picking up a brush for the first time.
Level 974 is exactly the same.
Zippers on handbags are attached to the straps; the frames of petticoats are uneven; the faces of cartoon characters on stickers are blurred, their anatomy distorted. Bows are tied into twisted shapes, and ribbons connect at random. It clumsily replicates the dreams of every one of us.
- 物资
- 重要?清点自己身上的杏仁水 十分难喝 不知道有没有其它物资
- 特产? 我不想带走这些粉红色的东西
- 入口
- 从Level 370?似乎能联系上Wi-Fi 记得看这里的文档
- 这是什么音乐? 有女人的说话声
- 似乎是隔壁的房间
- 也许是两到三个少女
- 是那东西
- 也许是两到三个少女
- 似乎是隔壁的房间
- 结构
进入后向前走三个房间,左转走五个房间,右转走四个房间 非欧几里得空间不,它事实上是结构的。有些头晕,很乱
向回走四个房间
右转
5
为什么前面又出现了一条路?这是当初的那间吗?
- Resources
- Important? Checking Almond Water Tastes foul Don't know if there are other supplies
- Specialties? I don't want to take any of this pink stuff
- Entrances
- From Level 370? Seems to connect to Wi-Fi Remember to check the docs here
- What is this music? Sounds like women talking
- Seems to be the room next door
- Maybe two or three girls
- It's that thing
- Maybe two or three girls
- Seems to be the room next door
- Structure
Enter, go forward three rooms, turn left for five rooms, turn right for four rooms Non-Euclidean space No, it's actually structured. Feeling dizzy, everything's a mess
Head back four rooms
Turn right
5
Why is there another path up ahead? Is this the same room I started in?
“追忆时代的证明人,染病偏执的建筑师,视线二重交合的血循环,就像‘我们每个人’那样。”
The witness of an era of reminiscence. The plagued and obsessive architect.
The bloody cycle of dual-converging sights, just like 'every one of us'.
“罗经点”小队 A女士:
感谢您给予我的重要资料。近期这样的变化现象越加让人琢磨不透,我们需要继续努力了。以下是我对这篇初出茅庐的文档的文书建议,也麻烦您转达。
尽管配图主题并不明确,也不建议不配文,可以注明配图不明;
将附加文件的内容整理后加入文档;
增加一到两张对于实体的其它配图;
整理其他出入口;
最后注意修复文档中的SPaG问题。
[ ↺ ] 检测到您挂机了(30)分钟,您需要的信息已经检索完毕,是否打开?
Y / N
检索结果:Level 974
探险者总署——主要数据库
采访人:E▩▩▩▩▩▩▩▩▩▩
受访人:Janine Brown
<记录开始>
B:以前我也在采访里说过的……我也曾经确实像这里一样有个少女的梦。
E:我知道你的过去,非常遗憾听到那些。
B:这个层级……就是这样的感觉。年龄一段段增长,掉下的头发越来越多,老旧屋子里的虫蛀痕迹也满目疮痍,粉色的墙纸也已经掉色完了。但是看到这些时——我还没有多么感到不安。或许在后室的这几年已经让我养成了对这样的情绪输出的免疫力。
E:嗯哼。
B:我打开了一罐糖罐,看到里面似乎趴着一只蟑螂尸体。真……恶心。随后我吓了一跳,手没有拿稳,就把它摔到了粉色的地毯上,黑色的汁液渗透了一地。
E:这算做破坏了这里的内饰吗?
B:我听到了一种沉重的脚步声。我……我一下子就心慌了。
E:那是那只实体的声音吧。
B:没错,当时离我非常近。
Janine Brown用手托着脑袋,似乎在思考什么。
E:随后呢?
B:你知道的,它实在是太高了——我当时甚至以为我要死掉了。
B:我不小心破坏内饰的那个房间是个死角。我几乎无处可逃,它站在门框外面,身子几乎比门框还要高,就那么直挺挺的……
B:它向我伸出那只黝黑光滑的手臂。我……我真的害怕极了,我非常害怕这样子的实体。我几乎整个躺在了吱呀作响的床上,随后才意识到这样是让我在对决中处于劣势。
E:那之后呢?它有对您做出什么伤害吗?
B:它……似乎想卷住我的手腕。我几乎要窒息了,随后它拿起了我手腕上的一串手链。
E:嗯?
B:(笑了笑)你知道吧?当时我也是这样迷惑的表现。
她的表情逐渐放松了下来。
B:那是我进入后室之后在Level 11的小商铺买到的,是一些塑料做的珍珠和粉红色的绳结——老实说,我并不在意那东西的,就算死前被实体拿走也无所谓。
B:它把那手链套在了那黝黑的长肢体上,随后它滑了下来……掉到了地上。它再次捡起了它,再一次试图将它套在“手”上。随后我微微缓过来了,站起了身。
E:……它最后套上了吗?
B:我摸了摸它皮革质感的皮肤,随后它似乎示意我帮它把手链套上。我摸了摸,不可置信地看了看它没有五官的脸,它就点了点头。我给它套在了脖子上。
E:(微笑)它变成了颈链?
B:是吧。
E:随后呢?它停下了敌意行为吗?
Janine Brown沉默了一会,随后开口。
B:它似乎很开心。
B:……也许它就是这些不断增生的房间的建筑师。它在不断重复着这样的错误,不断在泥泞一般的脸庞上试图抹上越来越厚的粉来还原一个美好的梦。不断令这些房间增生也是,带上我的饰品也是,它只是想让自己变得可爱一点,以此来抚平内心安慰吧。
二人沉默了。Janine Brown最后似乎露出了微笑的表情。
B:最后它送我去了Level 48。你知道一次宜居的海滩一日游有多令人开心吗?
E:……我们了解了。谢谢你。最后,我想再问你一个问题。
B:啊,什么?
E:你有听到它的名字吗?这对我们的归档工作很有用。
B:唔……也许?在那些少女声音的幻听之中,有那么一些像是名字的音节出现……
她似乎转了转眼珠。
B:它是——
她面无表情地念出了一串难以分辨,发音不符合任意已知语言的文字。目前只能分辨出其中只有两个音节。
E:……(微微张口又闭上)……Kawaii。
<记录结束>
M.E.G.——为了人类的明天
近日,由于收到多个Level 974变化的报告,故作此公告提示各位流浪者掌握最新信息。
首先,层级已停止不断扩张。其内部的面积是有限的,因此在其中找到一条稳定的出入口路线是可能的。另外,我们发现了另一种离开此层级的方式。
Level 974内部的实体,似乎并没有对人类的敌意。其偏好收集在它眼中“可爱”的物件并以此来点缀自身。并会带领赠予其“可爱”物件的流浪者去到安全的层级。可以通过它作为一种“取巧”的方式穿越后室,或在危险时自保,只需带上可满足它需求的物件即可。
目前其已收集了约55件不同的物件,其中大部分被它通过各种方式穿戴在了身体上面。
最后,我们通过交流得到了内部实体的名字。我们将以此命名此层级。
/ Log out of the system
[ ↺ ] Logging in information processing…
Cite this page as:
"Disease: Metastasis 974 - "▒▒▒▒▒'s House"" by Be the worthy, translated by calf-0, from the Backrooms Wikidot CN. Source: https://backrooms-wiki-cn.wikidot.com/disease-metastasis-974-home-of-kitty. Licensed under CC-BY-SA-3.0.
-
- _
"<a href="https://backrooms-wiki.wikidot.com/collab:disease-metastasis-974-home-of-kitty">Disease: Metastasis 974 - "▒▒▒▒▒'s House"</a>" by Be the worthy, translated by calf-0, from the <a href="https://backrooms-wiki-cn.wikidot.com/">Backrooms Wikidot CN</a>. Source: <a href="https://backrooms-wiki-cn.wikidot.com/disease-metastasis-974-home-of-kitty">https://backrooms-wiki-cn.wikidot.com/disease-metastasis-974-home-of-kitty</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.
Image resource: machimai.nx, modified
For more information about on-wiki content, visit the Licensing Master List.


