: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 { --accent-color: 52, 180, 88; --background-image: url("https://images.unsplash.com/photo-1518173946687-a4c8892bbd9f"); --background-color: 246, 246, 246; --text-color: 51, 51, 51; --light-color-1: 252, 252, 252; --light-color-2: var(--light-color-1); --dark-color-1: var(--accent-color); --dark-color-2: var(--accent-color); --dark-color-3: var(--accent-color); --dark-color-4: var(--accent-color); --link-color: var(--accent-color); --hover-link-color: var(--link-color), 0.7; --visited-link-color: var(--link-color); --selected-background-color: var(--accent-color), 0.2; --selected-text-color: ; --general-blur: 0; --general-button-text-color: var(--general-light-text-color); --general-button-background-color: var(--general-light-background-color); --general-hover-button-text-color: var(--accent-color); --general-hover-button-background-color: var(--general-button-background-color); --main-header-height: 8.5rem; --main-header-height-on-mobile: 8.5rem; --header-width: 66rem; --header-margin: max(calc((100% - var(--header-width)) / 2), 1rem); --logo-image: none; --header-title-font-size: 3.5rem; --header-title-font-size-on-mobile: 2.15rem; --header-subtitle-font-size: 1.35rem; --header-subtitle-font-size-on-mobile: 0.8rem; --search-icon-width-on-mobile: 1rem; --header-background-image: none; --header-extra-background-image: none; --topbar-height-on-mobile: var(--topbar-height); --topbar-font-size-on-mobile: var(--topbar-font-size); --topbar-text-color: var(--general-light-text-color); --topbar-hover-text-color: var(--accent-color); --topbar-background-color: var(--general-light-background-color); --topbar-hover-background-color: 0, 0, 0, 0; --topbar-hover-border-color: 0, 0, 0, 0; --topbar-drop-text-color: var(--topbar-text-color); --topbar-drop-hover-text-color: var(--topbar-hover-text-color); --topbar-drop-background-color: var(--topbar-background-color); --topbar-drop-hover-background-color: 0, 0, 0, 0; --topbar-drop-shadow-color: var(--general-shadow-color), 0.06; --header-username-color: var(--header-text-color); --account-button-text-color: var(--header-text-color); --account-button-hover-text-color: var(--accent-color); --account-button-background-color: 0, 0, 0, 0; --account-button-hover-background-color: 0, 0, 0, 0; --account-drop-hover-text-color: var(--accent-color); --account-drop-hover-background-color: 0, 0, 0, 0; --body-width: 66rem; --page-tag-border-color: var(--general-strong-border-color); --page-tag-title-color: var(--text-color); --page-tag-text-color: var(--text-color); --page-tag-hover-text-color: var(--accent-color); --page-tag-background-color: 0, 0, 0, 0; --page-tag-hover-background-color: 0, 0, 0, 0; --footer-background-color: 0, 0, 0, 0; --license-background-color: 0, 0, 0, 0; --footer-text-color: var(--text-color), 0.5; --license-text-color: var(--footer-text-color); --sidebar-media-background-color: 0, 0, 0, 0; --sidebar-title-background-color: var(--general-dark-background-color); --sidebar-hover-background-color: var(--general-medium-border-color); --edit-area-background-color: var(--general-light-background-color); --hovertip-border-color: var(--general-strong-border-color); --imageblock-border-color: var(--general-strong-border-color); --hr-color: var(--general-strong-border-color); --tabview-border-width: 0.15rem; --tabview-horizon-color: 0, 0, 0, 0; --tabview-content-background-color: var(--general-light-background-color); --table-background-color: var(--general-light-background-color); --table-text-color: var(--general-light-text-color); --note-background-color: 255, 255, 136; --note-text-color: var(--text-color); --popup-fader-color: 0, 0, 0, 0.2; --popup-tip-color: var(--text-color); --white-monochrome: var(--light-color-1); --thread-accent-color: var(--general-light-background-color); } body, html { -webkit-tap-highlight-color: transparent; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scrollbar-width: thin; } ::-webkit-scrollbar { width: 0.5rem; height: 0.5rem; } ::-webkit-scrollbar-track { background: rgba(var(--scrollbar-background-color)); } ::-webkit-scrollbar-thumb { background: rgba(var(--scrollbar-color)); } a:is(:hover, :active, :focus, :focus-within) { -webkit-text-decoration: underline 0.1em; } #side-bar .menu-item a { transition: background var(--general-transition-time-fast); } #file-comments { padding: 0.2em 0.5em; } table.page-files .highlight { background: rgba(var(--action-area-border-color)) } .pager a, .pager .current, .pager .dots { transition: background var(--general-transition-time-slow), color var(--general-transition-time-slow); } #action-area h1 + p + h2 ~ div[style="padding-left:3em;"] > div { align-items: center; } #edit-meta-newtag-form > table { display: flex; align-items: center; } #edit-meta-newtag-form > table :is(tbody, tr) { display: contents; } #edit-meta-newtag-form > table td { display: block; } #edit-meta-newtag-form > table td:nth-child(2n) { flex: 1; } #edit-meta-newtag-form > table td input { width: 100%; box-sizing: border-box; border: none; background: rgba(var(--edit-area-textarea-background-color)); color: rgba(var(--edit-area-textarea-text-color)); padding: 0.2em 0.5em; margin: 0; outline: none; transition: box-shadow var(--general-transition-time-slow); font-weight: 500; } #edit-meta-newtag-form > table td input:focus-visible { box-shadow: 2px 2px 0 rgba(var(--edit-area-textarea-border-color)), -2px 2px 0 rgba(var(--edit-area-textarea-border-color)), -2px -2px 0 rgba(var(--edit-area-textarea-border-color)), 2px -2px 0 rgba(var(--edit-area-textarea-border-color)); } #edit-meta-newtag-form > div { margin: 1rem 0; padding: 0 !important; display: flex; grid-gap: 1rem; } hr { background: transparent; } [class|=colmod-link] { margin: 1rem 0; } .yui-navset .yui-nav li a, .yui-navset .yui-nav li.selected a { transition: color var(--general-transition-time-slow); } .hl-default, .hl-code, .hl-brackets, .hl-identifier { color: inherit; } #toc #toc-action-bar { top: 0.25rem; } :where(ol ul, ul ul) { list-style-type: circle; } .join-box a { color: rgba(var(--general-button-text-color)); background: rgba(var(--general-button-background-color)); } .join-box a:is(:hover, :active, :focus, :focus-within) { color: rgba(var(--general-hover-button-text-color)); background: rgba(var(--general-hover-button-background-color)); } .forum-thread-box .description-block { padding: 0.5em 1em; } .thread-container .post .long { padding: 0.5em; } #page-content > div.forum-thread-box > div.options, .post-container > .post > div.long > div.options { display: flex; justify-content: flex-end; } .signature { display: none; } .notepaper { max-width: 100%; } .bettercollap .collapsible-block-unfolded-link, .bettercollap .collapsible-block-folded { margin: 0; } @media (pointer: coarse) { #login-status #account-options:hover, #login-status #account-topbutton:hover + #account-options { opacity: 1; pointer-events: all; } } @keyframes fresh-fade-in { from { opacity: 0; } to { opacity: 1; } } a { text-decoration: underline; text-decoration-thickness: 0.1em; text-decoration-color: transparent; transition: color 0.15s, text-decoration-color 0.15s; } a:is(:hover, :active, :focus, :focus-within) { text-decoration-color: currentColor; } #extra-div-1 { position: absolute; top: 0; left: 0; width: 100%; height: 100vh; -webkit-mask-image: linear-gradient(to top, transparent, black 80%); mask-image: linear-gradient(to top, transparent, black 80%); } #extra-div-1 span { display: block; width: 100%; height: 100%; -webkit-mask-image: linear-gradient(to right, transparent, black); mask-image: linear-gradient(to right, transparent, black); background: var(--background-image); background-size: cover; background-repeat: no-repeat; } #container-wrap { position: relative; z-index: 1; } #header { grid-template-areas: "h1" "h1"; position: relative; top: 0; } #header h1 a span { padding-top: 3rem; color: rgba(var(--text-color)); align-items: flex-start; text-shadow: none; grid-gap: 0; } #top-bar { position: absolute; bottom: 0; right: var(--header-margin); width: min(calc(var(--header-width) * 0.45), 45%); height: var(--topbar-height); padding: 0; background: transparent; pointer-events: none; } #top-bar div[class*=top-bar] > ul { grid-gap: 0.5rem; justify-content: flex-end; } #top-bar div[class*=top-bar] > ul > li { pointer-events: auto; flex: 0 1 7.5rem; position: relative; } #top-bar div[class*=top-bar] > ul > li > a, #top-bar .mobile-top-bar .open-menu a { background: rgba(var(--topbar-background-color)); border-radius: 1rem; box-shadow: 0 0.15rem 0.4rem rgba(var(--general-shadow-color), 0.06); font-weight: 400; transition: color var(--general-transition-time-slow); } #top-bar div[class*=top-bar] > ul > li > ul, #top-bar div[class*=top-bar] > ul > li > ul > li > ul { top: 100%; border-radius: 1rem; box-shadow: 0 0.15rem 0.4rem rgba(var(--topbar-drop-shadow-color)); border: none; flex-direction: column; flex-wrap: nowrap; } #top-bar div[class*=top-bar] > ul > li > ul > li, #top-bar div[class*=top-bar] > ul > li > ul > li > ul > li { border-radius: 1rem; border: none; flex-basis: auto; } #top-bar div[class*=top-bar] > ul > li > ul > li:nth-child(2n):nth-last-child(2) { box-shadow: none; } #top-bar div[class*=top-bar] > ul > li > ul > li > a, #top-bar div[class*=top-bar] > ul > li > ul > li > ul > li > a { border-radius: 1rem; transition: color var(--general-transition-time-slow); } #top-bar div[class*=top-bar] > ul > li > ul > li > ul { top: 0; } #top-bar .mobile-top-bar { padding-bottom: 0.15rem; } #top-bar .mobile-top-bar .open-menu { display: contents; } #top-bar .mobile-top-bar .open-menu a { pointer-events: auto; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; border: 0.15rem solid rgba(var(--general-medium-border-color)); border-radius: 50%; box-sizing: border-box; transition: border-color var(--general-transition-time-slow); } #top-bar .mobile-top-bar .open-menu a::before { transition: background var(--general-transition-time-slow); } #top-bar .mobile-top-bar .open-menu a:is(:hover, :active, :focus, :focus-within) { background: rgba(var(--topbar-background-color)); border-color: rgba(var(--general-dark-border-color)); } #login-status, #search-top-box { right: var(--header-margin); font-weight: 400; } #login-status { top: 1rem; } a#account-topbutton, #search-top-box-form .button { transition: color var(--general-transition-time-slow); } #account-options { font-size: 0.8rem; border: none; border-radius: 0.8rem; box-shadow: 0 0.15rem 0.4rem rgba(var(--topbar-drop-shadow-color)); transition: opacity var(--general-transition-time-fast) ease-in-out; } #account-options li a { height: 1.6rem; border-radius: 0.8rem; transition: color var(--general-transition-time-slow); } #main-content { background: rgba(var(--general-light-background-color), 0.8); color: rgba(var(--general-light-text-color)); margin: 2.5rem var(--body-margin); padding: 1rem 3rem; border-radius: 1.25rem; box-shadow: 0 0.15rem 1rem rgba(var(--general-shadow-color), 0.05); box-sizing: border-box; } #page-title { margin-top: 1rem; } .page-tags::before { display: none; } .page-tags span { align-items: center; padding: 0.4rem; box-sizing: border-box; } .page-tags span::before { content: "标签:"; } .page-tags span a { border: calc(1rem / 15) solid rgba(var(--general-medium-border-color)); border-radius: 1em; padding: 0.1rem 0.6rem; transition: color var(--general-transition-time-fast), border-color var(--general-transition-time-fast); } .page-tags span a:is(:hover, :active, :focus, :focus-within) { border-color: rgba(var(--general-dark-border-color)); } #page-options-container { margin: 0; } .page-watch-options { padding-bottom: 0.5rem; } div[id*=page-options-bottom] { grid-gap: 0; margin: 0; } div[id*=page-options-bottom] > a { height: 2.25rem; padding: 0 0.7rem; } #footer { padding: 0 1rem; text-align: center; } #license-area { padding: 0.5em 1rem 2.5rem; font-size: 0.8rem; } #side-bar { border: none; } #side-bar .heading, #side-bar .collapsible-block-unfolded-link a, #side-bar .collapsible-block-folded a { text-shadow: none; } div[id*=page-options-bottom] > a, .edit-help-34 a, .change-textarea-size a, div.buttons input, input.button, button, file, a.button, #edit-page-form div.buttons input, a.action-area-close, #view-diff-div > p > a, #upload-userfile[type=file]::file-selector-button, table.page-history tr td:nth-child(4) a, .page-options-bottom a, .owindow .button-bar > a:not([onclick*=cleanAll]), .owindow div[style*=margin-top] a { border-bottom: 0.15rem solid rgba(var(--general-medium-border-color)); transition: color var(--general-transition-time-fast); } #side-bar, .preview-message, .page-source, .scp-image-block, .yui-navset, table.wiki-content-table, blockquote, .blockquote, .code, #toc, .footnotes-footer, .bibitems, .owindow, div.modalbox, div.infobox, div.rate-box-with-credit-button, div.page-rate-widget-box, div.creditButtonStandalone, .lightblock, .darkblock, .styled-quote, .dark-styled-quote { box-shadow: 0 0.15rem 0.8rem rgba(var(--general-shadow-color), 0.06); } .page-source, .hovertip, .scp-image-block, blockquote, .blockquote, .code, #toc, .footnotes-footer, .bibitems, .owindow, div.modalbox, div.infobox, .lightblock, .darkblock, .styled-quote, .dark-styled-quote { border-radius: 0.25rem; } #upload-userfile[type=file]::file-selector-button, .scp-image-block, div.wiki-note, .owindow, div.modalbox, div.infobox { border: none; } #action-area, #view-diff-div:not(:empty), .preview-message, #who-rated-page-area:not(:empty), #history-subarea, #file-action-area:not(:empty), #st-action-area:not(:empty), #edit-meta-newtag, #rename-backlinks-box { animation: fresh-fade-in var(--general-transition-time-fast) ease-in-out; } input.text, textarea, #upload-userfile[type=file] { box-shadow: 0 0 0 calc(1rem / 15) rgba(var(--general-medium-border-color)); } #edit-page-form, #new-post-form { padding: 0; } :is(#wd-editor-toolbar-panel, #np-editor-panel) a::before { transition: background var(--general-transition-time-fast); } :is(#wd-editor-toolbar-panel, #np-editor-panel) div > ul > li > ul { left: auto; opacity: 0; pointer-events: none; transition: opacity var(--general-transition-time-fast) ease-in-out; } :is(#wd-editor-toolbar-panel, #np-editor-panel) div > ul > li:hover > ul { border: none; opacity: 1; pointer-events: auto; } :is(#wd-editor-toolbar-panel, #np-editor-panel) div > ul > li > ul > li > a { border-bottom: calc(1rem / 15) solid rgba(var(--general-strong-border-color)); } #upload-userfile[type=file]::file-selector-button { border-right: calc(1rem / 15) solid rgba(var(--general-medium-border-color)); } .pager { border-bottom: var(--tabview-border-width) solid rgba(var(--tabview-border-color)); } .pager a, .pager .current, .pager .dots { color: rgba(var(--tabview-button-text-color)); background: rgba(var(--tabview-button-background-color)); } .pager a:is(:hover, :active, :focus, :focus-within) { color: rgba(var(--tabview-hover-button-text-color)); background: rgba(var(--tabview-hover-button-background-color)); } .pager .current { color: rgba(var(--tabview-selected-button-text-color)); background: rgba(var(--tabview-selected-button-background-color)); } #st-action-area > a { color: rgba(var(--link-color)); text-decoration: none; } #action-area h1 + p + h2 ~ div[style="padding-left:3em;"] > div a { transition: color var(--general-transition-time-fast); } .hovertip { animation: fresh-fade-in var(--general-transition-time-fast) ease-in-out; font-weight: 400; border-width: 0 0 0.15rem 0 !important; } .scp-image-block img { border-radius: 0.25rem 0.25rem 0 0; } .scp-image-caption { border-bottom: var(--imageblock-border-width) solid rgba(var(--imageblock-border-color)); border-radius: 0 0 0.25rem 0.25rem; } .yui-navset { width: auto; margin: 1rem 0; } .yui-navset .yui-nav li, .yui-navset .yui-nav li.selected { box-shadow: none; border-bottom: var(--tabview-border-width) solid rgba(var(--tabview-border-color)); } .yui-navset .yui-nav li a em, .yui-navset .yui-nav li.selected a em { padding: 0.4em 0.6em; } .yui-navset .yui-content { box-shadow: none; border-bottom: var(--tabview-border-width) solid rgba(var(--general-medium-border-color)); } div.wiki-note { padding: 0.5rem 1rem; font-weight: inherit; box-shadow: 0 0.5rem 1rem rgba(var(--general-shadow-color), 0.06); background-image: linear-gradient(transparent, rgba(255, 255, 255, 0.2)); } #odialog-container, .owindow.osuccess { animation: fresh-fade-in var(--general-transition-time-fast) ease-in-out; } .owindow.owait .content, .owindow.owait .content:before, .owindow.owait .content:after { border-radius: 0.1rem; } .owindow .title, div.modalbox > div:first-child, div.infobox-title { border-radius: 0.25rem 0.25rem 0 0; } .owindow .button-bar > a[onclick*=cleanAll], div.modalbox::after, div.infobox::after { font-weight: 500; } .owindow .content > img + h1 + table, .owindow .content > img + h1 + table td, div.creditBottomRate { border-color: rgba(var(--general-medium-border-color)); } div.creditBottomRate div.page-rate-widget-box { box-shadow: none; } .bblock:is(:hover, :focus-within) { color: rgb(var(--general-light-background-color)); } .keycap { box-shadow: 0 0.15em rgba(var(--general-strong-border-color)); } .licensebox a.collapsible-block-link { opacity: 1; color: rgba(var(--link-color)); transition: color 0.15s; } .licensebox a.collapsible-block-link:is(:hover, :active, :focus, :focus-within) { color: rgba(var(--hover-link-color)); } .sd-container { --sd-border: var(--text-color); --sd-symbol: var(--general-dark-text-color); --sd-bullets: var(--text-color); } #page-content .radius { border-radius: 1rem; } .hovertip, #page-content .shadow { box-shadow: 0 0.15rem 1rem rgba(var(--general-shadow-color), 0.12); } .three-line table.wiki-content-table { --table-border-color: var(--general-dark-border-color); --table-header-background-color: var(--table-background-color); --table-header-text-color: var(--table-text-color); border: rgba(var(--table-border-color)) 0.2rem solid; border-left: none; border-right: none; } .three-line table.wiki-content-table :is(th, td) { padding: 0.5em 0.75em; border-left: none; border-right: none; } @media only screen and (max-width: 1024px) { #login-status { right: calc(var(--header-margin) + 0.5rem + var(--search-icon-width-on-mobile)); } #search-top-box { right: var(--header-margin); top: 1.1rem; height: var(--search-icon-width-on-mobile); } #search-top-box-form .button.btn { background: currentColor; -webkit-mask-size: 100%; mask-size: 100%; -webkit-mask-position: 0 0; mask-position: 0 0; } #main-content { padding: 0.5rem 2rem; } } @media only screen and (max-width: 540px) { #header { grid-template-areas: "h1" "topbar"; } #top-bar { position: relative; right: 0; width: 100%; padding: 0 var(--header-margin); } #top-bar div[class*=top-bar] > ul > li { position: static; flex: auto; padding-bottom: 0.15rem; } #top-bar div[class*=top-bar] > ul > li > ul { flex-direction: row; flex-wrap: wrap; } #top-bar div[class*=top-bar] > ul > li > ul > li { flex-basis: 40%; } #main-content { padding: 0.01rem 1rem; } }
:root { --accent-color: 52, 180, 88; --background-image: url("https://images.unsplash.com/photo-1518173946687-a4c8892bbd9f"); --background-color: 246, 246, 246; --text-color: 51, 51, 51; --light-color-1: 252, 252, 252; --light-color-2: var(--light-color-1); --dark-color-1: var(--accent-color); --dark-color-2: var(--accent-color); --dark-color-3: var(--accent-color); --dark-color-4: var(--accent-color); --link-color: var(--accent-color); --hover-link-color: var(--link-color), 0.7; --visited-link-color: var(--link-color); --selected-background-color: var(--accent-color), 0.2; --selected-text-color: ; --general-blur: 0; --general-button-text-color: var(--general-light-text-color); --general-button-background-color: var(--general-light-background-color); --general-hover-button-text-color: var(--accent-color); --general-hover-button-background-color: var(--general-button-background-color); --main-header-height: 8.5rem; --main-header-height-on-mobile: 8.5rem; --header-width: 66rem; --header-margin: max(calc((100% - var(--header-width)) / 2), 1rem); --logo-image: none; --header-title-font-size: 3.5rem; --header-title-font-size-on-mobile: 2.15rem; --header-subtitle-font-size: 1.35rem; --header-subtitle-font-size-on-mobile: 0.8rem; --search-icon-width-on-mobile: 1rem; --header-background-image: none; --header-extra-background-image: none; --topbar-height-on-mobile: var(--topbar-height); --topbar-font-size-on-mobile: var(--topbar-font-size); --topbar-text-color: var(--general-light-text-color); --topbar-hover-text-color: var(--accent-color); --topbar-background-color: var(--general-light-background-color); --topbar-hover-background-color: 0, 0, 0, 0; --topbar-hover-border-color: 0, 0, 0, 0; --topbar-drop-text-color: var(--topbar-text-color); --topbar-drop-hover-text-color: var(--topbar-hover-text-color); --topbar-drop-background-color: var(--topbar-background-color); --topbar-drop-hover-background-color: 0, 0, 0, 0; --topbar-drop-shadow-color: var(--general-shadow-color), 0.06; --header-username-color: var(--header-text-color); --account-button-text-color: var(--header-text-color); --account-button-hover-text-color: var(--accent-color); --account-button-background-color: 0, 0, 0, 0; --account-button-hover-background-color: 0, 0, 0, 0; --account-drop-hover-text-color: var(--accent-color); --account-drop-hover-background-color: 0, 0, 0, 0; --body-width: 66rem; --page-tag-border-color: var(--general-strong-border-color); --page-tag-title-color: var(--text-color); --page-tag-text-color: var(--text-color); --page-tag-hover-text-color: var(--accent-color); --page-tag-background-color: 0, 0, 0, 0; --page-tag-hover-background-color: 0, 0, 0, 0; --footer-background-color: 0, 0, 0, 0; --license-background-color: 0, 0, 0, 0; --footer-text-color: var(--text-color), 0.5; --license-text-color: var(--footer-text-color); --sidebar-media-background-color: 0, 0, 0, 0; --sidebar-title-background-color: var(--general-dark-background-color); --sidebar-hover-background-color: var(--general-medium-border-color); --edit-area-background-color: var(--general-light-background-color); --hovertip-border-color: var(--general-strong-border-color); --imageblock-border-color: var(--general-strong-border-color); --hr-color: var(--general-strong-border-color); --tabview-border-width: 0.15rem; --tabview-horizon-color: 0, 0, 0, 0; --tabview-content-background-color: var(--general-light-background-color); --table-background-color: var(--general-light-background-color); --table-text-color: var(--general-light-text-color); --note-background-color: 255, 255, 136; --note-text-color: var(--text-color); --popup-fader-color: 0, 0, 0, 0.2; --popup-tip-color: var(--text-color); --white-monochrome: var(--light-color-1); --thread-accent-color: var(--general-light-background-color); } body, html { -webkit-tap-highlight-color: transparent; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scrollbar-width: thin; } ::-webkit-scrollbar { width: 0.5rem; height: 0.5rem; } ::-webkit-scrollbar-track { background: rgba(var(--scrollbar-background-color)); } ::-webkit-scrollbar-thumb { background: rgba(var(--scrollbar-color)); } a:is(:hover, :active, :focus, :focus-within) { -webkit-text-decoration: underline 0.1em; } #side-bar .menu-item a { transition: background var(--general-transition-time-fast); } #file-comments { padding: 0.2em 0.5em; } table.page-files .highlight { background: rgba(var(--action-area-border-color)) } .pager a, .pager .current, .pager .dots { transition: background var(--general-transition-time-slow), color var(--general-transition-time-slow); } #action-area h1 + p + h2 ~ div[style="padding-left:3em;"] > div { align-items: center; } #edit-meta-newtag-form > table { display: flex; align-items: center; } #edit-meta-newtag-form > table :is(tbody, tr) { display: contents; } #edit-meta-newtag-form > table td { display: block; } #edit-meta-newtag-form > table td:nth-child(2n) { flex: 1; } #edit-meta-newtag-form > table td input { width: 100%; box-sizing: border-box; border: none; background: rgba(var(--edit-area-textarea-background-color)); color: rgba(var(--edit-area-textarea-text-color)); padding: 0.2em 0.5em; margin: 0; outline: none; transition: box-shadow var(--general-transition-time-slow); font-weight: 500; } #edit-meta-newtag-form > table td input:focus-visible { box-shadow: 2px 2px 0 rgba(var(--edit-area-textarea-border-color)), -2px 2px 0 rgba(var(--edit-area-textarea-border-color)), -2px -2px 0 rgba(var(--edit-area-textarea-border-color)), 2px -2px 0 rgba(var(--edit-area-textarea-border-color)); } #edit-meta-newtag-form > div { margin: 1rem 0; padding: 0 !important; display: flex; grid-gap: 1rem; } hr { background: transparent; } [class|=colmod-link] { margin: 1rem 0; } .yui-navset .yui-nav li a, .yui-navset .yui-nav li.selected a { transition: color var(--general-transition-time-slow); } .hl-default, .hl-code, .hl-brackets, .hl-identifier { color: inherit; } #toc #toc-action-bar { top: 0.25rem; } :where(ol ul, ul ul) { list-style-type: circle; } .join-box a { color: rgba(var(--general-button-text-color)); background: rgba(var(--general-button-background-color)); } .join-box a:is(:hover, :active, :focus, :focus-within) { color: rgba(var(--general-hover-button-text-color)); background: rgba(var(--general-hover-button-background-color)); } .forum-thread-box .description-block { padding: 0.5em 1em; } .thread-container .post .long { padding: 0.5em; } #page-content > div.forum-thread-box > div.options, .post-container > .post > div.long > div.options { display: flex; justify-content: flex-end; } .signature { display: none; } .notepaper { max-width: 100%; } .bettercollap .collapsible-block-unfolded-link, .bettercollap .collapsible-block-folded { margin: 0; } @media (pointer: coarse) { #login-status #account-options:hover, #login-status #account-topbutton:hover + #account-options { opacity: 1; pointer-events: all; } } @keyframes fresh-fade-in { from { opacity: 0; } to { opacity: 1; } } a { text-decoration: underline; text-decoration-thickness: 0.1em; text-decoration-color: transparent; transition: color 0.15s, text-decoration-color 0.15s; } a:is(:hover, :active, :focus, :focus-within) { text-decoration-color: currentColor; } #extra-div-1 { position: absolute; top: 0; left: 0; width: 100%; height: 100vh; -webkit-mask-image: linear-gradient(to top, transparent, black 80%); mask-image: linear-gradient(to top, transparent, black 80%); } #extra-div-1 span { display: block; width: 100%; height: 100%; -webkit-mask-image: linear-gradient(to right, transparent, black); mask-image: linear-gradient(to right, transparent, black); background: var(--background-image); background-size: cover; background-repeat: no-repeat; } #container-wrap { position: relative; z-index: 1; } #header { grid-template-areas: "h1" "h1"; position: relative; top: 0; } #header h1 a span { padding-top: 3rem; color: rgba(var(--text-color)); align-items: flex-start; text-shadow: none; grid-gap: 0; } #top-bar { position: absolute; bottom: 0; right: var(--header-margin); width: min(calc(var(--header-width) * 0.45), 45%); height: var(--topbar-height); padding: 0; background: transparent; pointer-events: none; } #top-bar div[class*=top-bar] > ul { grid-gap: 0.5rem; justify-content: flex-end; } #top-bar div[class*=top-bar] > ul > li { pointer-events: auto; flex: 0 1 7.5rem; position: relative; } #top-bar div[class*=top-bar] > ul > li > a, #top-bar .mobile-top-bar .open-menu a { background: rgba(var(--topbar-background-color)); border-radius: 1rem; box-shadow: 0 0.15rem 0.4rem rgba(var(--general-shadow-color), 0.06); font-weight: 400; transition: color var(--general-transition-time-slow); } #top-bar div[class*=top-bar] > ul > li > ul, #top-bar div[class*=top-bar] > ul > li > ul > li > ul { top: 100%; border-radius: 1rem; box-shadow: 0 0.15rem 0.4rem rgba(var(--topbar-drop-shadow-color)); border: none; flex-direction: column; flex-wrap: nowrap; } #top-bar div[class*=top-bar] > ul > li > ul > li, #top-bar div[class*=top-bar] > ul > li > ul > li > ul > li { border-radius: 1rem; border: none; flex-basis: auto; } #top-bar div[class*=top-bar] > ul > li > ul > li:nth-child(2n):nth-last-child(2) { box-shadow: none; } #top-bar div[class*=top-bar] > ul > li > ul > li > a, #top-bar div[class*=top-bar] > ul > li > ul > li > ul > li > a { border-radius: 1rem; transition: color var(--general-transition-time-slow); } #top-bar div[class*=top-bar] > ul > li > ul > li > ul { top: 0; } #top-bar .mobile-top-bar { padding-bottom: 0.15rem; } #top-bar .mobile-top-bar .open-menu { display: contents; } #top-bar .mobile-top-bar .open-menu a { pointer-events: auto; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; border: 0.15rem solid rgba(var(--general-medium-border-color)); border-radius: 50%; box-sizing: border-box; transition: border-color var(--general-transition-time-slow); } #top-bar .mobile-top-bar .open-menu a::before { transition: background var(--general-transition-time-slow); } #top-bar .mobile-top-bar .open-menu a:is(:hover, :active, :focus, :focus-within) { background: rgba(var(--topbar-background-color)); border-color: rgba(var(--general-dark-border-color)); } #login-status, #search-top-box { right: var(--header-margin); font-weight: 400; } #login-status { top: 1rem; } a#account-topbutton, #search-top-box-form .button { transition: color var(--general-transition-time-slow); } #account-options { font-size: 0.8rem; border: none; border-radius: 0.8rem; box-shadow: 0 0.15rem 0.4rem rgba(var(--topbar-drop-shadow-color)); transition: opacity var(--general-transition-time-fast) ease-in-out; } #account-options li a { height: 1.6rem; border-radius: 0.8rem; transition: color var(--general-transition-time-slow); } #main-content { background: rgba(var(--general-light-background-color), 0.8); color: rgba(var(--general-light-text-color)); margin: 2.5rem var(--body-margin); padding: 1rem 3rem; border-radius: 1.25rem; box-shadow: 0 0.15rem 1rem rgba(var(--general-shadow-color), 0.05); box-sizing: border-box; } #page-title { margin-top: 1rem; } .page-tags::before { display: none; } .page-tags span { align-items: center; padding: 0.4rem; box-sizing: border-box; } .page-tags span::before { content: "标签:"; } .page-tags span a { border: calc(1rem / 15) solid rgba(var(--general-medium-border-color)); border-radius: 1em; padding: 0.1rem 0.6rem; transition: color var(--general-transition-time-fast), border-color var(--general-transition-time-fast); } .page-tags span a:is(:hover, :active, :focus, :focus-within) { border-color: rgba(var(--general-dark-border-color)); } #page-options-container { margin: 0; } .page-watch-options { padding-bottom: 0.5rem; } div[id*=page-options-bottom] { grid-gap: 0; margin: 0; } div[id*=page-options-bottom] > a { height: 2.25rem; padding: 0 0.7rem; } #footer { padding: 0 1rem; text-align: center; } #license-area { padding: 0.5em 1rem 2.5rem; font-size: 0.8rem; } #side-bar { border: none; } #side-bar .heading, #side-bar .collapsible-block-unfolded-link a, #side-bar .collapsible-block-folded a { text-shadow: none; } div[id*=page-options-bottom] > a, .edit-help-34 a, .change-textarea-size a, div.buttons input, input.button, button, file, a.button, #edit-page-form div.buttons input, a.action-area-close, #view-diff-div > p > a, #upload-userfile[type=file]::file-selector-button, table.page-history tr td:nth-child(4) a, .page-options-bottom a, .owindow .button-bar > a:not([onclick*=cleanAll]), .owindow div[style*=margin-top] a { border-bottom: 0.15rem solid rgba(var(--general-medium-border-color)); transition: color var(--general-transition-time-fast); } #side-bar, .preview-message, .page-source, .scp-image-block, .yui-navset, table.wiki-content-table, blockquote, .blockquote, .code, #toc, .footnotes-footer, .bibitems, .owindow, div.modalbox, div.infobox, div.rate-box-with-credit-button, div.page-rate-widget-box, div.creditButtonStandalone, .lightblock, .darkblock, .styled-quote, .dark-styled-quote { box-shadow: 0 0.15rem 0.8rem rgba(var(--general-shadow-color), 0.06); } .page-source, .hovertip, .scp-image-block, blockquote, .blockquote, .code, #toc, .footnotes-footer, .bibitems, .owindow, div.modalbox, div.infobox, .lightblock, .darkblock, .styled-quote, .dark-styled-quote { border-radius: 0.25rem; } #upload-userfile[type=file]::file-selector-button, .scp-image-block, div.wiki-note, .owindow, div.modalbox, div.infobox { border: none; } #action-area, #view-diff-div:not(:empty), .preview-message, #who-rated-page-area:not(:empty), #history-subarea, #file-action-area:not(:empty), #st-action-area:not(:empty), #edit-meta-newtag, #rename-backlinks-box { animation: fresh-fade-in var(--general-transition-time-fast) ease-in-out; } input.text, textarea, #upload-userfile[type=file] { box-shadow: 0 0 0 calc(1rem / 15) rgba(var(--general-medium-border-color)); } #edit-page-form, #new-post-form { padding: 0; } :is(#wd-editor-toolbar-panel, #np-editor-panel) a::before { transition: background var(--general-transition-time-fast); } :is(#wd-editor-toolbar-panel, #np-editor-panel) div > ul > li > ul { left: auto; opacity: 0; pointer-events: none; transition: opacity var(--general-transition-time-fast) ease-in-out; } :is(#wd-editor-toolbar-panel, #np-editor-panel) div > ul > li:hover > ul { border: none; opacity: 1; pointer-events: auto; } :is(#wd-editor-toolbar-panel, #np-editor-panel) div > ul > li > ul > li > a { border-bottom: calc(1rem / 15) solid rgba(var(--general-strong-border-color)); } #upload-userfile[type=file]::file-selector-button { border-right: calc(1rem / 15) solid rgba(var(--general-medium-border-color)); } .pager { border-bottom: var(--tabview-border-width) solid rgba(var(--tabview-border-color)); } .pager a, .pager .current, .pager .dots { color: rgba(var(--tabview-button-text-color)); background: rgba(var(--tabview-button-background-color)); } .pager a:is(:hover, :active, :focus, :focus-within) { color: rgba(var(--tabview-hover-button-text-color)); background: rgba(var(--tabview-hover-button-background-color)); } .pager .current { color: rgba(var(--tabview-selected-button-text-color)); background: rgba(var(--tabview-selected-button-background-color)); } #st-action-area > a { color: rgba(var(--link-color)); text-decoration: none; } #action-area h1 + p + h2 ~ div[style="padding-left:3em;"] > div a { transition: color var(--general-transition-time-fast); } .hovertip { animation: fresh-fade-in var(--general-transition-time-fast) ease-in-out; font-weight: 400; border-width: 0 0 0.15rem 0 !important; } .scp-image-block img { border-radius: 0.25rem 0.25rem 0 0; } .scp-image-caption { border-bottom: var(--imageblock-border-width) solid rgba(var(--imageblock-border-color)); border-radius: 0 0 0.25rem 0.25rem; } .yui-navset { width: auto; margin: 1rem 0; } .yui-navset .yui-nav li, .yui-navset .yui-nav li.selected { box-shadow: none; border-bottom: var(--tabview-border-width) solid rgba(var(--tabview-border-color)); } .yui-navset .yui-nav li a em, .yui-navset .yui-nav li.selected a em { padding: 0.4em 0.6em; } .yui-navset .yui-content { box-shadow: none; border-bottom: var(--tabview-border-width) solid rgba(var(--general-medium-border-color)); } div.wiki-note { padding: 0.5rem 1rem; font-weight: inherit; box-shadow: 0 0.5rem 1rem rgba(var(--general-shadow-color), 0.06); background-image: linear-gradient(transparent, rgba(255, 255, 255, 0.2)); } #odialog-container, .owindow.osuccess { animation: fresh-fade-in var(--general-transition-time-fast) ease-in-out; } .owindow.owait .content, .owindow.owait .content:before, .owindow.owait .content:after { border-radius: 0.1rem; } .owindow .title, div.modalbox > div:first-child, div.infobox-title { border-radius: 0.25rem 0.25rem 0 0; } .owindow .button-bar > a[onclick*=cleanAll], div.modalbox::after, div.infobox::after { font-weight: 500; } .owindow .content > img + h1 + table, .owindow .content > img + h1 + table td, div.creditBottomRate { border-color: rgba(var(--general-medium-border-color)); } div.creditBottomRate div.page-rate-widget-box { box-shadow: none; } .bblock:is(:hover, :focus-within) { color: rgb(var(--general-light-background-color)); } .keycap { box-shadow: 0 0.15em rgba(var(--general-strong-border-color)); } .licensebox a.collapsible-block-link { opacity: 1; color: rgba(var(--link-color)); transition: color 0.15s; } .licensebox a.collapsible-block-link:is(:hover, :active, :focus, :focus-within) { color: rgba(var(--hover-link-color)); } .sd-container { --sd-border: var(--text-color); --sd-symbol: var(--general-dark-text-color); --sd-bullets: var(--text-color); } #page-content .radius { border-radius: 1rem; } .hovertip, #page-content .shadow { box-shadow: 0 0.15rem 1rem rgba(var(--general-shadow-color), 0.12); } .three-line table.wiki-content-table { --table-border-color: var(--general-dark-border-color); --table-header-background-color: var(--table-background-color); --table-header-text-color: var(--table-text-color); border: rgba(var(--table-border-color)) 0.2rem solid; border-left: none; border-right: none; } .three-line table.wiki-content-table :is(th, td) { padding: 0.5em 0.75em; border-left: none; border-right: none; } @media only screen and (max-width: 1024px) { #login-status { right: calc(var(--header-margin) + 0.5rem + var(--search-icon-width-on-mobile)); } #search-top-box { right: var(--header-margin); top: 1.1rem; height: var(--search-icon-width-on-mobile); } #search-top-box-form .button.btn { background: currentColor; -webkit-mask-size: 100%; mask-size: 100%; -webkit-mask-position: 0 0; mask-position: 0 0; } #main-content { padding: 0.5rem 2rem; } } @media only screen and (max-width: 540px) { #header { grid-template-areas: "h1" "topbar"; } #top-bar { position: relative; right: 0; width: 100%; padding: 0 var(--header-margin); } #top-bar div[class*=top-bar] > ul > li { position: static; flex: auto; padding-bottom: 0.15rem; } #top-bar div[class*=top-bar] > ul > li > ul { flex-direction: row; flex-wrap: wrap; } #top-bar div[class*=top-bar] > ul > li > ul > li { flex-basis: 40%; } #main-content { padding: 0.01rem 1rem; } }
Level M-1- “无常货栈”
注意
本层级的危险性无法被简单归类。威胁并非恒定存在,而是以完全随机、不可预测的方式显现与消失。经验、装备甚至运气都无法完全保证安全。上一秒的安全区,下一秒即可能成为绝地。在此,生存与死亡常系于一念之间,或纯粹的概率。
M.E.G. 监督者
描述
Level M-1 表现为一座无限延伸的、年代模糊的巨型仓储式建筑综合体。其内部结构高度一致且非线性,主要由以下要素构成:
- 无尽货架: 高耸至不可见天花板的金属货架网格,排列成近乎无限的狭窄通道。货架上堆放着尺寸、材质各异的板条箱、纸箱与木桶,其上标签的内容通常是无意义的字符、褪色的商品编码,或令人不安的模糊图案。
- 装卸区: 散布于货架迷宫之间,是相对开阔的区域。地面画有黄色标识线,偶尔可见闲置的叉车、托盘和集装箱。此区域光线稍好,但空旷感也更强。
- 管理区: 零星分布的办公室、配电房和工具间。门可能锁闭,也可能虚掩。内部可能有基本家具、老旧电脑或工具,同时也是“库存清点”事件的高发区。
- 环境: 空气弥漫着灰尘、陈旧纸板和微弱臭氧的混合气味。主要光源来自高处间隔遥远的荧光灯管,发出稳定但令人不快的嗡嗡声,并伴有频闪。背景中持续存在着低沉的、仿佛来自远方的机器轰鸣与管道通风声,其音源无法定位。
本层级的核心特性并非其静态环境,而在于其极端且不可预测的动态危险性——即“概率重构”现象。
“概率重构”现象
这是 Level M-1 的根本法则。整个层级的物理状态、实体存在、甚至物理定律的局部表现,都会以完全随机的方式在特定区域(范围从数平方米到整个区域)瞬间改变。变化无预警、无周期、无规律可循。其表现形式包括但不限于:
1. 环境剧变:
- 安全通道突变为绝路: 一条原本通畅的走廊,可能在踏入的瞬间被凭空出现的货架墙或深坑封死。
- 地面失稳: 坚固的水泥地可能突然化为流沙、粘稠的油污或炽热的金属网格。
- 大气异常: 某个区域空气被瞬间抽干、充满无毒但令人窒息的惰性气体、或温度在几秒内骤降至冰点或升至滚烫。
2. 实体概率性显现:
- 任何阴影、角落或集装箱内部,都可能毫无征兆地生成后室实体,包括但不限于笑魇、猎犬、窃皮者、悲尸,甚至更罕见或独有的形态。它们可能即刻攻击,也可能无视流浪者,或在几秒后自行消散。
- 实体也可能从原本无害的物品中“孵化”,例如板条箱突然爆开冲出实体,或墙上的污渍活化。
3. 物品与补给的不确定性:
- 一个标注“杏仁水”的纸箱,打开后可能是真正的杏仁水、污水、蜘蛛群、虚空,或是能短暂扭曲周围概率的奇珍异宝。
- 工具间的消防斧可能坚固可用,也可能在第一次挥动时像玻璃一样碎裂。
4. 局部物理定律扭曲:
- 小范围内重力方向突然改变。
- 声音传播失效或产生致命共鸣。
- 短暂的时间流速错乱。
关键点在于: 这些变化毫无规律。一个刚刚发生致命重构的区域,可能在下一秒恢复常态且长期稳定;而一个徘徊数小时都安全无恙的角落,也可能在你最放松的时刻变成陷阱。生存完全取决于你踏入特定坐标时,层级“掷”出的那枚“概率骰子”。
基地、前哨与社区
由于极端的不稳定性,在本层级建立长期据点被普遍认为是不可能的。仅有少数极度幸运或持有特殊物品的流浪者组成的小型、高度机动的“拾荒队”短暂存在,他们从不在一处停留超过一小时,目标通常是搜寻那些随重构现象偶然出现的珍贵物品。
发现与日志
- 初始发现: 最早关于 Level M-1 的记录来自一批从 Level 1 通过非标准门切入的流浪者。生还者仅有一人,其记录中反复提及“无法信任任何眼前的事物”。
- 流浪者日志片段:
“…货架上的编号自己在我眼前重组…我身后的通道不见了,变成了一堵贴满旧票据的墙。刚松了口气,就看见前面叉车的阴影里有什么在蠕动…我没看清,直接跑进了旁边的办公室。桌子上有半瓶水,我渴极了,但我不敢喝。谁知道喝下去的是水,还是液态的恐惧?”
入口与出口
入口
- 在 Level M-128 的墙壁上寻找一道生锈的金属卷帘门,有小概率切入此处。
- 在 Level M-37 的档案库中,偶然打开一个标有“库存总览(异常)”的文件夹可能将你带来。
- 在 Level M-167 的田野边缘,有时会出现一个孤立的仓库式建筑,进入即到达本层。
- 更多后室层级的非标准出口有小概率通向此处,通常与“仓储”、“物资”概念相关。
出口
- 不稳定性穿越: 遭遇某些特定类型的“概率重构”时,可能被抛入其他层级。例如,踏入一片突然变得像水面一样波动的地板,可能坠入 Level M-133;被一股凭空出现的强风卷入通风管道,可能最终掉落在 Level M-140。
- “安全区”门扉: 极罕见的情况下,在长时间(超过 12 小时)未发生任何重构的“稳定点”,可能会出现一扇标有“出口”的普通门。打开它可能通向 Level M-0、Level M-135 或 Level M-2,但也可能只是一个诱饵。
- 意识逃逸: 有未经证实的报告称,在面临极度恐惧和生死一线的重构事件时,少数流浪者通过强烈地“想象”一个安全层级,实现了“概率性切出”,但目标层级完全随机,且风险极高。
最后记录更新建议:
“如果你不幸踏入 M-1,记住:不要相信常态,不要依赖经验,不要留恋任何资源。移动,保持谨慎的移动,但不要以为移动就能避开厄运。在这里,生存不是技巧,而是一场……概率游戏。祝你好运,因为你最需要它。”
原作者:灌汤包(小梅花不是梅花)
一次重写:qwmike1145
二次重写:Casual Critic!
Cite this page as:
"Level M-1- “无常货栈”" by dl-duck, from the Backrooms Wiki. Source: https://backrooms-wiki.wikidot.com/collab:level-m-1. Licensed under CC-BY-SA-3.0.
-
- _
"<a href="https://backrooms-wiki.wikidot.com/collab:level-m-1">Level M-1- “无常货栈”</a>" by dl-duck, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/collab:level-m-1">https://backrooms-wiki.wikidot.com/collab:level-m-1</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.
FileName:/
Author: dl-duck
License: CC-BY-2.0
更多授权相关信息,请查阅授权指导。
Offsets



