: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 }
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap'); @import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC&display=swap'); @font-face { font-family: 'ChillGSans'; src: url('https://cdn.jsdelivr.net/gh/LupusCaeruleus/Fonts@main/ChillGSans.woff') format('woff'); font-weight: normal; font-style: normal; font-display: swap; } @import url("http://vivarium.wdfiles.com/local--files/backrooms%3Avivtheme/stylesheet.css"); :root { --theme-base: "black-highlighter"; --theme-id: "bntg"; --theme-name: "B.N.T.G. Theme"; --logo-image: none; --header-title: "B.N.T.G."; --header-subtitle: "得贸易者得天下。"; --header-font: 'ChillGSans' , 'Staatliches', sans-serif; --title-font: 'ChillGSans' , 'Staatliches', sans-serif; --body-font: 'Noto Serif SC', PT Serif, serif; --white-monochrome: 220, 221, 215; --pale-gray-monochrome: var(--white-monochrome); --light-pale-gray-monochrome: var(--pale-gray-monochrome); --light-gray-monochrome: var(--pale-gray-monochrome); --gray-monochrome: var(--dark-accent); --dark-gray-monochrome: 64, 61, 60; --black-monochrome: var(--medium-accent); --pale-accent: 232, 231, 213; --bright-accent: 86, 108, 90; --medium-accent: 102, 102, 102; --dark-accent: var(--bright-accent); --sd-border: var(--dark-gray-monochrome); --cecs-accent: var(--medium-accent) !important; --header-gradient-color-bottom: var(--dark-gray-monochrome); --header-gradient-color-middle: var(--dark-gray-monochrome); --header-gradient-color-top: var(--dark-gray-monochrome); --swatch-menubg-color: var(--pale-gray-monochrome); --swatch-topmenu-border-color: var(--dark-accent); --link-color: 68, 117, 77; --hover-link-color: var(--link-color); --visited-link-color: var(--link-color); --rating-module-button-plus-color: var(--dark-accent); --rating-module-button-negative-color: var(--dark-accent); --rating-module-button-cancel-color: var(--dark-accent); --rating-module-button-credit-color: var(--dark-accent); --gradient-header: repeating-linear-gradient( -30deg, rgba(var(--dark-gray-monochrome), 0.8), rgba(var(--dark-gray-monochrome), 1) 50px ); } #container { background-image: none; } #header::before { left: -16.5rem; background-size: auto 14rem; } #skrollr-body { background-image: var(--gradient-header), var(--gradient-topmenu), var(--gradient-background)!important; background-size: var(--header-background-image-size), 100% var(--final-header-height-on-desktop), 100% var(--background-gradient-distance); } .page-rate-widget-box, .page-rate-widget-box .rate-points, .page-rate-widget-box .rateup, .page-rate-widget-box .ratedown, .page-rate-widget-box .cancel { background: rgb(var(--pale-accent)) !important; } .yui-navset .yui-nav li, .yui-navset .yui-navset-top .yui-nav li { -webkit-box-shadow: 0 0 0 0.0625rem rgb(var(--dark-accent)); box-shadow: 0 0 0 0.0625rem rgb(var(--dark-accent)); } .yui-navset .yui-nav a, .yui-navset .yui-navset-top .yui-nav a { background-color: rgb(var(--pale-accent)); } .yui-navset .yui-content { background-color: rgb(var(--pale-accent)); } .yui-navset .yui-content, .yui-navset .yui-navset-top .yui-content { border-color: rgb(var(--dark-accent)); } div.blockquote, blockquote { background-color: rgb(var(--pale-accent)); border-color: rgb(var(--dark-accent)); border-style: solid; } table.wiki-content-table th { background-color: rgb(var(--dark-accent)); color: rgb(var(--pale-gray-monochrome)); } .footnotes-footer { border-color: rgb(var(--dark-accent)); } #side-bar .side-block { color: rgb(var(--swatch-text-general)); } #side-bar:hover { background: rgb(var(--pale-accent)); } .scp-image-block { border: none; } .yui-navset .yui-nav .selected, .yui-navset .yui-navset-top .yui-nav .selected, .yui-navset .yui-nav .selected a:active, .yui-navset .yui-nav .selected a:focus { background-color: rgb(var(--dark-accent)); } .styled-quote, .lightblock { background-color: rgb(var(--pale-accent)); } .titleblock { background-color: rgb(var(--pale-accent)); padding: 0.5rem 1rem 0.10rem; margin: 1.5rem 0rem 0.5rem 0rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid rgb(var(--dark-accent)) 2px; } .titlebox{ position: relative; top: -1.6rem; background-color: rgb(var(--dark-accent)); color: rgb(var(--pale-gray-monochrome)); padding: 0.25rem 1rem; line-height: 0.1rem; } .footnotes-footer { background-color: rgb(var(--pale-accent)); } table.wiki-content-table td, table.wiki-content-table th { border-color: rgb(var(--dark-accent)) !important; } #account-topbutton { border-color: rgb(var(--pale-gray-monochrome)); } #login-status a { color: rgb(var(--pale-gray-monochrome)); } hr { border-color: rgb(var(--dark-accent)); background-color: rgb(var(--dark-accent)); } html, #lock-info, div.note, input.checkbox, input.text, textarea { scrollbar-color: rgba(var(--medium-accent), 0.7) rgba(var(--swatch-tertiary-color), .1); } body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb, input.text::-webkit-scrollbar-thumb, textarea::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb { background: rgba(var(--medium-accent), 0.7) } .top-box { border-color: rgb(var(--sd-border)) !important; } .bottom-box ul li { color: rgb(var(--sd-border)) !important; } .bottom-box ul li:before { background: rgb(var(--sd-border)) !important; } .top-box .gradient-box { background: linear-gradient(90deg, rgba(var(--sd-border),1) 0%, rgba(var(--sd-border),0) 36%) !important; } .header-diamond { background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 300.9 284.5' style='enable-background:new 0 0 300.9 284.5;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23403d3c;%7D .st1%7Bfill:%23403d3c;%7D%0A%3C/style%3E%3Cg%3E%3Cpolygon class='st1' points='73.4,32.6 0,105.4 13.6,105.4 86.4,32.6 '/%3E%3Cpolygon class='st1' points='26.5,105.4 40.1,105.4 112.9,32.6 99.3,32.6 '/%3E%3C/g%3E%3Cpolyline class='st1' points='287.3,105.4 214.5,32.6 227.5,32.6 287.3,91.9 '/%3E%3Cpolygon class='st1' points='274.4,105.4 260.8,105.4 188,32.6 201.6,32.6 '/%3E%3C/svg%3E") !important; } .top-box.class-unknown .header-diamond { filter: none !important; } .top-box.class-unknown:before, .top-box.class-unknown .header-diamond .diamond-pattern{ opacity: 0.15 !important; } .top-box .header-diamond .diamond-image { filter: brightness(0%) invert(100%); } .top-box.class-0, .top-box.class-1 { background: rgb(var(--pale-accent)) !important; } .header-diamond .diamond-color.class-0, .header-diamond .diamond-color.class-1 { background: rgb(var(--pale-accent)) !important; } .top-box.class-2, .top-box.class-3 { background: rgb(var(--medium-accent)) !important; } .header-diamond .diamond-color.class-2, .header-diamond .diamond-color.class-3 { background: rgb(var(--medium-accent)) !important; } .top-box.class-4, .top-box.class-5 { background: rgb(var(--bright-accent)) !important; } .header-diamond .diamond-color.class-4, .header-diamond .diamond-color.class-5 { background: rgb(var(--bright-accent)) !important; } .top-box.class-unknown { background: rgb(var(--dark-gray-monochrome)) !important; } .header-diamond .diamond-color.class-unknown { background: rgb(var(--dark-gray-monochrome)) !important; } .darkblock a, .dark-styled-quote a { color: rgb(var(--pale-accent)); } ::selection { background: rgba(var(--dark-gray-monochrome), .25); } .darkblock h1, .dark-styled-quote h1, .darkblock h2, .dark-styled-quote h2, .darkblock h3, .dark-styled-quote h3, .darkblock h4, .dark-styled-quote h4, .darkblock h5, .dark-styled-quote h5 { color: rgb(var(--white-monochrome)); } .darkblock hr, .dark-styled-quote hr { border-color: rgb(var(--pale-gray-monochrome)); background-color: rgb(var(--pale-gray-monochrome)); } .darkblock a.newpage, .dark-styled-quote a.newpage { color: rgb(var(--newpage-color)); } .dark-styled-quote { border-color: rgb(var(--pale-accent)); } #header h1, #header h1 a { top: 0.5rem; } #header h2, #header h2 span, #header h2 span::before { top: 1.75rem; } .filetabs .yui-navset .yui-nav li, .yui-navset .yui-navset-top .yui-nav li { display: inline-block; } .filetabs .yui-navset .yui-nav, .yui-navset .yui-navset-top .yui-nav { display: block; } .filetabs .yui-navset .yui-content { border-top-width: 15px; } .filetabs .yui-navset .yui-nav a, .filetabs .yui-navset .yui-navset-top .yui-nav a, .filetabs .yui-navset .yui-nav .selected a, .filetabs .yui-navset .yui-nav a:focus, .filetabs .yui-navset .yui-navset-top .yui-nav a:focus, .filetabs .yui-navset .yui-nav a:hover, .filetabs .yui-navset .yui-navset-top .yui-nav a:hover { background-color: transparent; background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no' %3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' preserveAspectRatio='none' viewBox='0 0 150 45' xml:space='preserve'%3E%3Cdesc%3ECreated with Fabric.js 4.6.0%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg transform='matrix(1 0 0 1 74.95 22.39)' id='bC-LIzxo7Tu37zCdkDrqS' %3E%3Cpath style='stroke: rgb(0,0,0); stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(86,108,90); fill-rule: nonzero; opacity: 1;' vector-effect='non-scaling-stroke' transform=' translate(0, 0)' d='M -74.94856 22.50703 L -60.0064 -12.520110000000003 C -60.0064 -12.520110000000003 -55.89385 -21.849030000000003 -47.235839999999996 -22.281930000000003 C -38.57782999999999 -22.714830000000003 46.87608 -22.39016 46.87608 -22.39016 C 46.87608 -22.39016 56.05659 -23.219710000000003 61.40639 -12.520120000000002 C 66.75618 -1.8205300000000015 74.94856 22.506959999999996 74.94856 22.506959999999996 z' stroke-linecap='round' /%3E%3C/g%3E%3Cg transform='matrix(1 0 0 1 75.18 17.97)' id='E8ePkHu_UUyvFWDAIzFyP' %3E%3Cpath style='stroke: rgb(0,0,0); stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(232,231,213); fill-rule: nonzero; opacity: 1;' vector-effect='non-scaling-stroke' transform=' translate(0, 0)' d='M -46.15385 12.0108 L -46.15385 -12.01079 L 46.153839999999995 -12.01079 L 46.153839999999995 12.0108 z' stroke-linecap='round' /%3E%3C/g%3E%3C/svg%3E"); background-size: 100% 2.7rem; background-repeat: no-repeat; border-width: 0px; border-top: none; background-position: top; } .filetabs .yui-navset .yui-nav a, .filetabs .yui-navset .yui-navset-top .yui-nav a { padding: 4px 20px 0px 20px; } .filetabs .yui-navset .yui-nav .selected a, .filetabs .yui-navset .yui-nav a:focus, .filetabs .yui-navset .yui-navset-top .yui-nav a:focus, .filetabs .yui-navset .yui-nav .selected a:hover, .filetabs .yui-navset .yui-navset-top .yui-nav .selected a:hover { padding: 8px 20px 0px 20px; } .filetabs .yui-navset .yui-nav a:hover, .filetabs .yui-navset .yui-navset-top .yui-nav a:hover { padding: 6px 20px 0px 20px; } .filetabs .yui-navset .yui-nav, .filetabs .yui-navset .yui-navset-top .yui-nav { border-color: transparent; } .filetabs .yui-navset .yui-nav .selected, .filetabs .yui-navset .yui-navset-top .yui-nav .selected, .filetabs .yui-navset .yui-nav .selected a:active, .filetabs .yui-navset .yui-nav .selected a:focus, .filetabs .yui-navset .yui-nav li, .filetabs .yui-navset .yui-navset-top .yui-nav li { background-color: transparent; } .filetabs .yui-navset .yui-nav li, .filetabs .yui-navset .yui-navset-top .yui-nav li { box-shadow: none; } .filetabs .yui-navset .yui-nav li { margin-right: 36px; } .filetabs .yui-navset .yui-nav .selected a { color: rgb(var(--swatch-text-general)) !important; } .filetabs .yui-navset .yui-nav a:focus, .filetabs .yui-navset .yui-nav a:hover { color: rgb(var(--swatch-text-general)); } .filetabs .yui-navset .yui-nav .selected a em, .filetabs .yui-navset .yui-nav .selected a:hover em { position: relative; top: -4px; } .filetabs .yui-navset .yui-nav a:hover em { position: relative; top: -2px; } .filetabs .yui-navset .yui-nav li, .filetabs .yui-navset .yui-navset-top .yui-nav li { border-bottom: solid 1px rgb(var(--white-monochrome)); } .filetabs .yui-navset .yui-nav li.selected, .filetabs .yui-navset .yui-navset-top .yui-nav li.selected { border-bottom: none; z-index: 1; } code, .code { background-color: rgb(var(--pale-accent)); } #search-top-box-input, #search-top-box-form input[type=submit], #search-top-box-input:focus, #search-top-box-input:hover { border-color: rgb(var(--dark-gray-monochrome)); } .scp-image-block .scp-image-caption { background-color: rgb(var(--pale-accent)); } #search-top-box-input:focus, #search-top-box-input:hover { color: rgb(var(--swatch-text-general)); } /* sd banner colours */ .sd-container { --sd-border:64,61,60; --sd-symbol:255,255,255; --sd-text:255,255,255; }
生存难度:生存難度:
等级等級 3
- {$one}
- {$two}
- 结构性危害
如何使用:
[[include :backrooms-wiki-cn:component:level-class
|class=等级
]]
class 处的可用参数包括以下内容,支持简繁体及英文输入。
| English | 简体中文 | 繁體中文 | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 1 | 2 | 3 | 4 | 5 | 0 | 1 | 2 | 3 | 4 | 5 | 0 | 1 | 2 | 3 | 4 | 5 |
| unknown | 未知 | 未知 | |||||||||||||||
| habitable | 宜居 | 宜居 | |||||||||||||||
| deadzone | 死区 | 死區 | |||||||||||||||
| pending | 等待分级 | 等待分級 | |||||||||||||||
| n/a | 不适用 | 不適用 | |||||||||||||||
| amended | 修正 | 修正 | |||||||||||||||
| omega | 终结 | 終結 | |||||||||||||||
该组件支持简繁切换,如下方代码所示:
[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级
]]
在 lang 处选择语言,cn 表示简体中文,tr 表示繁体中文,不填默认选择简体中文。
自定义等级
[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级名字
|color=#000000(带有井号的十六进制色号代码。)
|image=链接(至图片的链接。)
|one=在这
|two=随便
|three=放文字
]]
使用 CSS 进行自定义:
你可以使用 CSS 进行额外的自定义,将代码放入到 [[module css]] 中或者是放入到页面的版式内都可以。在这一组件中,不要把 [[module css]] 放在 [[include]] 里面,把它放在那个的下面或者是页面的顶部或底部。
将这些代码放入到你的页面/版式中以编辑所有的颜色,因为组件的 |color= 部分仅能控制背景:
[[module css]]
.sd-container {
/* 字体 */
--sd-font: Poppins, Noto Sans SC, Noto Serif SC;
/* 边框 */
--sd-border: var(--gray-monochrome); /* 大多数等级 */
--sd-border-secondary: 0, 0, 0; /* 不适用 */
--sd-border-deadzone: 20, 0, 0; /* 死区 */
/* 标志 */
--sd-symbol: var(--sd-border) !important; /* 大多数标志 */
--sd-symbol-secondary: 255, 255, 255; /* 4 级以上的是白色 */
/* 文本 */
--sd-bullets: var(--sd-border) !important; /* 点句符文本颜色 */
--sd-text: var(--swatch-text-secondary-color); /* 顶部框文本颜色 */
/* 等级颜色 */
--class-0: 247, 227, 117;
--class-1: 247, 227, 117;
--class-1: 255, 201, 14;
--class-2: 245, 156, 0;
--class-3: 249, 90, 0;
--class-4: 254, 23, 1;
--class-5: 175, 6, 6;
--class-unknown: 38, 38, 38;
--class-habitable: 26, 128, 111;
--class-deadzone: 44, 13, 12;
--class-pending: 182, 182, 182;
--class-n-a: 38, 38, 38;
--class-amended: 185, 135, 212;
--class-omega: 25, 46, 255;
}
[[/module]]
旧版颜色:
如果你不喜欢新版的样式,想要用回旧版的红色边框色,只需要在你的页面中与组件一同引入下方的代码:
[[module css]]
.sd-container {
--sd-border: 90, 29, 27;
--sd-image: 90, 29, 27;
--sd-symbol: 90, 29, 27;
}
[[/module]]
入口处。
Level IF-283是后室IF层群的第283层。
描述
Level IF-283为一条延伸数千公里的地下矿道,其错综复杂的结构组成了内部的采矿网络。矿道主干道较为宽阔,可至5~8米,顶部每隔5米便悬挂有一工业钠灯,作为层级内的主要照明。
组成层级岩壁的岩石并非普通岩石,而为特质材料“隧移岩”,“隧移岩”为一呈现为深灰色的不规则矿物,触感冰冷,材质较光滑。
常态下,“隧移岩”的硬度超过目前已知的大多数物质,大多切割方式均无法对其表面留下任何痕迹。
然而,若其遭受到紫外线1的照射,其便会完全激发,变为如同水银质感般的流体物质,在此期间,任何物体均可轻而易举地穿过其,包括人类,状态持续15~40秒,该状态结束后,岩壁会迅速便会常态时的固态,不可穿透。
另一节路口。
据悉,层级内存在天然紫外线辐射,岩层深处均遭其影响,因此,层级结构极其不稳定,随时处于变动之中,巷道有时会突然出现、消失或是改变其走向,因为整个层级均在激发时产生了位移。
由于其不稳定性,该层级起初并未得到重视,然而,由于其内部矿石极大的价值,因此于目前,B.N.T.G.在此地建立了稳定的矿场,并为其员工提供实用的工具。
在此地开采的“隧移岩”最终将运输至其他层级,并成为建造建筑、日用品的重要材料。
B.N.T.G.隧移岩矿场
要口
B.N.T.G.于层级稳定处建立的大型矿场,B.N.T.G.主要项目之一,负责于层级内开采这类令人着迷的矿物。该矿场中心区域周遭分布着大量的紫外线灯,以使该区域常年保持稳定。若有意愿,流浪者随时可加入该矿场,B.N.T.G.随时欢迎新鲜血液的补充,并在工作中始终贯彻创新精神。
紫外线手电是该矿场内常见的配备物资,由B.N.T.G.人员Eli Carter所研制,所有加入该矿场的员工均可随时取用这些无偿提供的手电。这些手电可使流浪者前方的空间短暂变得软化,使其可轻松通过。
入口与出口
入口
- 欲访问其出口,请查询B.N.T.G.掌控层名单,这些入口均处于稳定状态。
出口
- 原路返回即可。
日期:2026年8月24日
地址:Level IF-104住宅区2号,一楼广场。
人物:Sulfur,Silicon
Sulfur:大的要来了。
[Sulfur顺着手机上的位置共享成功来到了Silicon平时所居住的地方,并事先商量好了碰面地点。广场内人数繁多,有一批人群被墙上的广告牌所吸引,内容为“Level IF-283最新讯息”。]
Silicon:啥啊,我希望你能说点有价值的东西,为了和你碰面,我刚刚赶着才从Level IF-283里灰头土脸地回来,B.O.P.在合作的时候给我派到了B.N.T.G.的项目部,导致我每天都得去那个鬼地方。
Sulfur:巧了,我说的就是这层,B.N.T.G.那边刚刚传来消息,说有个矿洞炸了。
Silicon:当我是不会看广告牌吗,说点大家不知道的,让我赶回来就为了跟我说这?
[Silicon表露出些许厌烦,但Sulfur仍无停下来的意思。]
Sulfur:当然不了,你难道就不好奇为什么有紫外线灯稳着的情况下那里还能炸吗?
Silicon:那你倒是说啊…
[看到Silicon似乎对其表现出兴趣后,Sulfur立即滔滔不绝地用极快的语速讲了起来。]
Sulfur:据说有个矿工拿手电照到其中一块路口的时候,那地方突然软的过头了,然后你猜怎么着?
Silicon:少卖关子。
Sulfur:在这个口子后面,出现了和Level IF-307记录里面一模一样的教堂,凭空出现。
Silicon:什么。
Sulfur:教堂,没错就是教堂,里面特别黑,从门径处的铁门中透出些许暗色的光。
Silicon:那的人进去看了没有?
Sulfur:出现这种情况,B.N.T.G.的人当然会第一时间去查看了,指不定还有什么值钱的东西呢,你在那呆了这么久,理应明白他们的性格如何的。
[听到B.N.T.G.的名字,联想起B.N.T.G.此前做过的种种事情,Silicon的厌恶之情简直要从脸上溢出来了,但他还是选择忍着不说。]
Silicon:我都没咋理会他们,懒得理。那里情况具体如何。
Sulfur:有几个矿工走进去了,里面具体情况不得而知。
Silicon:那些人情况咋样。
Sulfur:四个人进去,回来三个,还有一个不知道去哪了,就是研发手电那人。
Silicon:里面情况相较于Level IF-307有什么变化没。
Sulfur:没啥变化,只不过少了点什么。
Silicon:话说明白点,你这理解成本太高了。
Sulfur:不卖关子了,那具石棺离奇消失,墙上也没有了图案与文字,啥也不剩。
Silicon:那个“神”死了?
Sulfur:都没证实存在过的东西咋死,我们到目前还搞不明白“神”到底是真的还只是层级本身产生的幻觉,不过现在可以确定的是,教堂是一个单独的层级。
Silicon:我愈发看不明白了。
Sulfur:Level IF-283到现在目前位置可能并不只是一个矿洞了,他成为了一个通往教堂层级的核心入口。
Silicon:我得赶紧跟B.N.T.G.那边的人联系一下,让他们立刻停止对于那片地方的开采,毕竟我们还不知道,持续开采的后果是什么。
Sulfur:你觉得他们肯这个时候停手吗?“隧移岩”可是难得的东西,虽然我们还没搞明白这到底是什么物质,但总之它很有用。
Silicon:他们最好听句劝,要是不停开采,后果难以预料,我们可能得不停地见到那座教堂了。
Sulfur:其实…我想…如果我们进教堂里一探究竟,或许能搞明白这是怎么回事。
Silicon:你想玩命吗。
Sulfur:你还不明白吗,机会难得欸。
Silicon:那还是你自己去吧,我可不想再去那该死的矿洞了。
« Level IF-282 | Level IF-283 | Level IF-284 »


