: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 { --header-title: "B.N.T.G."; --header-subtitle: "不结盟贸易集团"; --logo-img: url(''); --page-font-size: 0.832rem; --accent: 86, 108, 90; --pale-font: 220,221,215; --pale-accent: 232, 231, 213; --font: 102, 102, 102; --white-monochrome: rbg(var(--pale-accent)); --black-monochrome: rbg(var(--font)); --dark-gray-monochrome: 64, 61, 60; --link-color: 68, 117, 77; --class-1: 182, 181, 163; --header-txt-color: #dcddd7; --body-bg-color: 220, 221, 215; --header-bg-img: url('https://www.imagebed.pro/images/Romand0/6wn59wTEMg.png'); --box-border: rgb(var(--accent)); --box-shadow: rgb(var(--accent)); --ui-font: 'Noto Serif SC', PT Serif, serif; --head-font: 'ChillGSans' , 'Staatliches', sans-serif; --page-font: 'Noto Serif SC', PT Serif, serif; --link-txt-color: rgba(var(--link-color)) ; } @media screen and (min-width: 768px) { :root { --page-font-size: 1rem; } } body { background-image: none; background-color: rgb(var(--body-bg-color)); font-family: var(--ui-font); color: rgb(var(--font)); } /* 版头 */ div#header { height: 170px; } #extra-div-6 { /* 版头图片 */ position: absolute; top: 0; left: 0; right: 0; background-image: var(--header-bg-img); background-repeat: no-repeat; background-size: cover; background-position: center; z-index: -1; height: 200px; } /* 副标题 👇 */ #header h2::before { content: var(--header-subtitle); font-weight: 700; font-size: 1.7em; font-family: var(--head-font); color: rgba(var(--pale-font)); line-height: 26px; margin-top: 1rem; display: block; text-transform: uppercase; } /* 副标题 👆 */ /* 顶栏 */ #header #top-bar a { color: rgb(var(--pale-font)); background: transparent; font-size: 110% } #header #top-bar .open-menu a { font-size: 30px; padding: 0.25rem; background: rgba(var(--accent), 0.65); box-shadow: 0 0 0.1rem rgba(0,0,0,0.2); color: rgba(var(--pale-font)); } #login-status { border: 2px solid rgba(var(--accent)); background-color: rgba(var(--pale-accent)); padding: 0.35rem 0.5rem; border-radius: 2px; color: rgba(var(--font)); } #search-top-box-form { margin-top: 1rem; } #search-top-box-input:hover, #search-top-box-input:focus, #search-top-box-form input[type=submit], #search-top-box-form input[type=submit]:hover, #search-top-box-form input[type=submit]:focus { color: rgba(var(--pale-font)); } /* 侧栏 */ #side-bar { background: rgb(var(--pale-accent)); } #side-bar .side-block { border: #dcddd7; background: transparent } @media screen and (max-width: 767px) { #side-bar:target .close-menu { background: unset; } } /* 页面标题 */ #page-title { color: rgb(var(--font)); width: auto; position: relative; font-family: var(--head-font); font-size: 220% } #page-title::after { content: ''; position: absolute; bottom: -0.5rem; left: calc(50% - 4rem); height: 5px; width: 8rem; } #page-content h1 { position: relative; width: fit-content } #page-content h1:not(.reportblock h1)::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0.5em; width: 100%; } h1, h2, h3, h4, h5, h6 { color: rgba(var(--font)); } /* 排版工具组 */ :root { --lh-white-bg: 245,245,245; --lh-dark-bg: var(--accent); --lh-highlighter: var(--accent); --lh-border-color: var(--accent); --lh-wiki-note-color: var(--accent); } div.wiki-note::before { color: #eee } .reportblock h1:first-child, .reportblock-dark h1:first-child { color: rgba(var(--pale-accent)); top: -1rem; left: 0 } .reportblock, .reportblock-dark { background-color: rgba(var(--pale-accent)); padding: 0.4rem 1.5rem; padding-top: 0 } .bettercollap .collapsible-block { border-radius: 3px } #page-content .bettercollap .collapsible-block-link:hover, #page-content .bettercollap .collapsible-block-link:hover a, #page-content .bettercollap .collapsible-block-link a:hover, #page-content .bettercollap .collapsible-block-link:hover a:hover { color: none; text-decoration: none } .bettercollap .collapsible-block-link { color: rgb(var(--lh-border-color)); background: none; transition: .3s; display: block; } .bettercollap .collapsible-block-link:hover, .bettercollap .collapsible-block-unfolded .collapsible-block-link { color: #dcddd7; background: rgb(var(--lh-border-color))!important; text-decoration: none } .styledcollap.bettercollap .collapsible-block-link { color: rgb(var(--pale-font)); background: rgb(var(--lh-border-color))!important; text-decoration: none } .styledcollap.bettercollap .collapsible-block-content { background-color: rgb(var(--pale-accent)); border-width: 3px } /* 页内标题(Headings) */ a.newpage { color: rgb(255, 140, 0) } a.newpage:hover{ background-color: rgb(255, 140, 0) } /* 分割线 */ hr { border-color: rgb(var(--accent)); background-color: rgb(var(--accent)); } /* Div 样式 */ .lightblock, .darkblock, .styled-quote, .dark-styled-quote ,.styled-quote-d, .border-block { padding: 0 1em; margin: 1.2em 0.1em; border: 1px solid transparent ; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.10); } /* 亮色 Div 👇 */ /* 亮色 Div 通用 👇 */ .lightblock, .styled-quote, .styled-quote-d, .border-block, .titleblock, .bntg-block, .bntg-border-block { background-color: rgb(var(--pale-accent)); border-color: rgb(var(--accent)); color: rgb(var(--font)) !important; } /* 亮色 Div 通用 👆 */ /* 亮色 Div 个性设置 👇 */ div.blockquote, blockquote { background-color: rgb(var(--pale-accent)); border: solid rgb(var(--accent)) 2px; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .lightblock { border-color: rgb(var(--pale-accent)); } .styled-quote { border-left: .6rem solid rgb(var(--accent)); } .styled-quote-d { border-left: .5rem solid rgb(var(--accent)); border-right: .5rem solid rgb(var(--accent)); } .border-block { border: rgb(var(--accent)) solid 4px; } .titleblock { border: rgb(var(--accent)) solid 2px; 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); } .bntg-block { padding: 0.1rem 1rem; border-radius: 1rem; } .bntg-border-block { border: rgb(var(--accent)) solid 4px; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; border-radius: 1rem; } /* 亮色 Div 个性设置 👆 */ /* 亮色 Div 👆 */ .darkblock, .dark-styled-quote { background-color: rgba(var(--accent)); color: #e8e7d5 ; } .darkblock hr { border-color: rgb(var(--pale-accent)); background-color: rgb(var(--pale-accent)); } .darkblock h1, .darkblock h2, .darkblock h3, .darkblock h4, .darkblock h5, .darkblock h6 { color: rgba(var(--pale-accent)); } .dark-bntg-block h1, .dark-bntg-block h2, .dark-bntg-block h3, .dark-bntg-block h4, .dark-bntg-block h5, .dark-bntg-block h6 { color: rgba(var(--pale-font)); } .jotting { padding: 0 1em; margin: 1em 2em } .titlebox { position: relative; top: -1.6rem; background-color: rgb(var(--accent)); color: rgb(var(--pale-accent)); padding: 0.25rem 1rem; line-height: 0.1rem; } .title-font { font-family: 'ChillGSans', 'Staatliches', sans-serif !important; } .dark-bntg-block { background-color: rgb(var(--accent)); box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); color: rgb(var(--pale-font)); border-radius: 1rem; padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; } .code { background-color: 235,234,224; border-width: 3px 3px 3px .5rem; border-style: dashed dashed dashed solid; border-color: rgb(var(--accent)); box-shadow: none; } /* 表格 */ table.wiki-content-table td, table.wiki-content-table th { border-color: rgb(var(--accent)) font-family: var(--head-font); } table.wiki-content-table th { background-color: rgb(var(--accent)); color: rgb(var(--pale-font)); } table.wiki-content-table td { background-color: rgb(var(--pale-font)); } /* 分页设置 */ .yui-navset .yui-nav li, .yui-navset .yui-navset-top .yui-nav li { -webkit-box-shadow: 0 0 0 0.0625rem rgb(var(--accent)); box-shadow: 0 0 0 0.0625rem rgb(var(--accent)); } .yui-navset .yui-nav a, .yui-navset .yui-navset-top .yui-nav a { background-color: rgb(var(--pale-accent)); } .yui-navset .yui-nav a, .yui-navset .yui-navset-top .yui-nav a { color: rgb(var(--font)); } .yui-navset .yui-content { background-color: rgb(var(--pale-accent)); } .yui-navset .yui-nav .selected a, .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:hover { color: rgb(var(--pale-accent)); background: rgb(var(--accent)); border-color: rgba(var(--font)); } .yui-navset .yui-nav, .yui-navset .yui-navset-top .yui-nav { border-color: rgba(var(--accent)); } .yui-navset .yui-content, .yui-navset .yui-navset-top .yui-content { border-color: rgb(var(--accent)); } /* 芝加哥鬼灵分页效果 */ .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(232,231,213); 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: rgb(var(--accent)); } .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(--font)) !important; } .filetabs .yui-navset .yui-nav a:focus, .filetabs .yui-navset .yui-nav a:hover { color: rgb(var(--font)); } .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(--back)); } .filetabs .yui-navset .yui-nav li.selected, .filetabs .yui-navset .yui-navset-top .yui-nav li.selected { border-bottom: none; z-index: 1; } /* 折叠块 */ #page-content a.collapsible-block-link:not(.licensebox a.collapsible-block-link, .info-container a.collapsible-block-link, .default-col a.collapsible-block-link) { color: rgb(var(--pale-font)); } /* 底部工具栏 */ .page-options-bottom a { margin: 3px; color: rgb(var(--pale-font)); background: rgb(var(--accent)); padding: 5px 13px 5px 13px; text-decoration: none; font-size: 90%; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } #page-options-bottom { border-top: solid 1px rgba(var(--pale-font)); margin-top: 0; } #page-options-bottom a { margin-top: 0 } #edit-cancel-button, #edit-diff-button, #edit-preview-button, #edit-save-draft-button, #edit-save-continue-button, #edit-save-button { background: rgb(var(--pale-accent)); border: solid 2px rgb(var(--accent)); color: rgb(var(--font)); font-size: 100%; } #edit-cancel-button:hover, #edit-diff-button:hover, #edit-preview-button:hover, #edit-save-draft-button:hover, #edit-save-continue-button:hover, #edit-save-button:hover { background-color: rgb(var(--pale-accent)); } #edit-save-continue-button, #edit-save-button { background: rgb(var(--pale-accent)); transition-duration: 0.3s; color: rgb(var(--font)); } #edit-save-continue-button:hover, #edit-save-button:hover { color: rgb(var(--font)); background: rgb(var(--pale-accent)); } #edit-cancel-button { color: rgb(var(--font)); background: rgb(var(--pale-accent)); } #edit-cancel-button:hover { color: rgb(var(--font)); background: rgb(var(--pale-accent)); } /* 标签 */ #main-content .page-tags a { color: rgb(var(--pale-font)); } #main-content .page-tags a::after { background-color: rgb(var(--pale-font)); } /* 页脚 */ #license-area { background-image: linear-gradient(to bottom, rgb(var(--body-bg-color)), rgb(236, 238, 232)); border-top: 0; margin-top: -1rem; padding: 1rem 0 } /* 插入图片 */ .scp-image-block .scp-image-caption { background-color: rgb(var(--pale-accent)); color: rgb(var(--font)); } .scp-image-block img { border: solid 3px rgba(var(--accent)); box-sizing: border-box; } .scp-image-block img[style*="width:"] { width: 300px; } .scp-image-block { min-width: 0; } /* 评分模块 */ #main-content div.page-rate-widget-box, #page-content .rate-box-with-credit-button { color: rgb(var(--font)); border-top: solid 2px rgb(var(--accent), 0.5); border-left: solid 2px rgb(var(--accent), 0.5); border-right: solid 2px rgb(var(--accent), 0.5); border-bottom: solid 3px rgb(var(--accent)); font-size: 0.95rem; background: rgb(var(--pale-accent)); padding: 0; } #main-content span.rate-points, #main-content span.btn { background: transparent!important; } #main-content .creditButtonStandalone p a { background-color: rgb(var(--accent)); font-size: 1rem; padding: 0.25rem; } /*SD模块*/ #page-content .sd-container { --sd-border: 64,61,60; --sd-bullets: 80,80,80; --sd-image: 80,80,80; --sd-symbol:255,255,255; --sd-text:255,255,255; } .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 { background: rgb(var(--pale-accent)) !important; } .top-box.class-1 { background: rgb(var(--class-1)) } .header-diamond .diamond-color.class-0 { background: rgb(var(--pale-accent)) !important; } .header-diamond .diamond-color.class-1 { background: rgb(var(--class-1)) } .top-box.class-2, .top-box.class-3 { background: rgb(var(--font)) !important; } .header-diamond .diamond-color.class-2, .header-diamond .diamond-color.class-3 { background: rgb(var(--font)) !important; } .top-box.class-4, .top-box.class-5 { background: rgb(var(--accent)) !important; } .header-diamond .diamond-color.class-4, .header-diamond .diamond-color.class-5 { background: rgb(var(--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; } /* IETS */ .box { margin: 0; padding: 0 0.5rem; background: rgb(var(--pale-accent)); } .box { position: relative; width: max-content; min-width: 11rem; display: flex; flex-direction: column; height: 2.25rem; box-sizing: border-box; border-left: 0.5rem solid rgba(var(--box-border), 0.5); box-shadow: inset 0 0 0 0.0625rem rgba(var(--box-shadow), 0.5), inset 0.0625rem 0 0 0 rgba(var(--box-shadow), 0.5), inset 0 -0.0625rem 0 0 rgba(var(--box-shadow), 0.75); transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1); font-family: 'Noto Serif SC', PT Serif, serif; cursor: default; overflow: hidden; } /* CECS COCS */ .wrapper { --cocs-dark: var(--accent); --cocs-light: var(--pale-accent); --cecs-dark: var(--accent); --cecs-light: var(--pale-accent); } /* 脚注 */ .hovertip { background: rgb(var(--pale-font)); border: 2px solid rgb(var(--accent)); min-width: 8rem } .hovertip .footnote .f-footer { display: none } .hovertip .footnote .f-heading { font-size: 80% } .hovertip .footnote .f-content { font-size: 110% } div.footnotes-footer { background-color: rgba(var(--pale-accent)); border: 2px solid rgb(var(--accent)); border-bottom: 5px solid rgb(var(--accent)); padding: 0.5rem 1rem; padding-bottom: 1rem; margin: 1rem 0 }
The tolling of the iron bell,
铁制的钟低缓的鸣响,
Calls the faithful to their knees,
呼唤着忠诚者使他们屈服,
To hear the softly spoken magic spell.
听到细语倾诉奇妙的咒语。
业钟
分类 普通资产
标签 特殊装置 非生产设备 高价值 维护中 EL3A 月球
基本信息
立项时间:2022 年 12 月
编号:049
名称:业钟
状态:故障,维护中
简介:业钟是一台能收集、处理并反馈特定类型信息的异常机器,因能准确预测特定从业人员的工作时长而得名,但种种迹象表明业钟可触及的信息范围不止于此。背后原理尚未解明。目前,业钟的测算结果基本可靠,正帮助 B.N.T.G. 排查安全隐患,对无法预料的危险事故作出预警。
业钟的造型为木壳立式大钟,卸下外壳后可见内部砝码,通过上链驱动机器,这种方式在 EL3A 的机器中较为少见。表盘嵌有金属制怀表。怀表有时针、分针,而大钟只有一根时针,都不具有报时功能,各自功能不同,需要分工配合,无法独立运行。
2022 年,在 EL3A 的某次扩张后,工作人员执行勘探并在负二层某个首次记录的房间中发现了业钟,状态良好,约九成新。在转移到 Level 24 前,业钟被保存在仓库中并接受一系列测试。在塑料矿场,业钟服务于“新月”项目,后因操作不当等原因意外故障,当前处于维护状态。
业钟,转移到 EL3A 仓库时
编号为 049 的机器(机器 【049】)是一台通过超自然手段收集、处理并反馈特定类型信息的机器,由大钟和怀表两个功能部分组成。其最基础也最常用的功能是计算从业人员的工作时长,又具有钟表外形,因而命名为“业钟”。
功能
因为业钟的运作机制相当复杂,凭借当前的有限信息,我们未能确定业钟的本质功能。有关于业钟的功能,研究团队提出了多种猜想,这里展示的是其中最能自圆其说的一种:业钟能测量人在未来从事某项工作的剩余时间,直到某种变故迫使其脱离工作。
这种猜想认为,业钟类似于计算机,接收指令后获取某种信息,经过整合处理后以钟面所示时刻作出反馈。业钟的工作过程可以简化为输入、运算、输出:
- 用怀表反光照射测量对象,完成输入。
- 怀表嵌入大钟,使测量对象的某项信息被业钟读取并处理,完成运算。
- 表盘显示的时刻和月相盈亏反馈运算结果,完成输出。
基于实用默认1,研究者推测这些信息有实际意义,而不是随机生成的乱码,后续研究证实了这一点。通过联想分析2推断,信息内容应当与时间有关,有可能是某种行为或某类事件的持续时间。业钟可以选择对象,输出结果也因人而异,推测信息内容应当与个人有关,指向人从事某项活动的时间。
经过大量测试,研究者将输出结果与各类数据进行比对,最终确认,业钟显示的时间与受试者未来从事某项工作的剩余时间基本吻合,且处于倒计时状态。倒计时结束之日,某种变故可能发生,迫使受试者脱离当前工作。
下方列举一些真实案例,包括受试者的测量结果和后续经历,以便于读者理解业钟的功能。雇员 A、B、C 均为化名。
- 雇员 A:第一次测试,雇员 A 的测量结果为 45 天。45 个工作日后,A 劳务合同到期离开集团。一段时间后,A 与集团重新签订劳务合同,为期 3 年。在这之后,研究员邀请 A 参与第二次测试,测量结果为 900 天左右。
- 雇员 B:雇员 B 的测量结果为 32 天,32 个工作日后,B 在 Level 4 运输货物途中与通讯员失联,自此杳无音讯,被认定为身亡,死因可能是遭遇钝人袭击。
- 雇员 C:雇员 C 的测量结果为 20 天。基于以往经验,研究者推测:20 个工作日后,某种变故可能降临在 C 身上,使其被迫脱离工作。当天,C 就职的提取站的仓库内发生火油泄露引起火灾,致四人受伤。C 事前经批准请假一天,因此未受波及。此次事件后,C 的测量结果恢复正常。
自 2022 至 2025 年,研究者收集的类似案例已经达到可观的数目,从中总结出基本普遍适用的规律,并做出进一步推测:
(注:下列理论更深入地探讨了业钟的性质和功能,有助于读者理解业钟的应用价值。但也可以点击“收起”,略过不读。)
保留变数:可能有人认为,业钟如“死亡倒计时”,测量结果归零后,受试者从此与岗位无缘。
事实证明,业钟所预言的“变故”即使发生,也不一定造成受试者永久脱离工作。例如,雇员 A 在在“离职”变故后,只是暂时离开集团。可见,所谓“变故”只是一类可能影响倒计时长短的不确定事件,更为严谨的说法是“变数”。推测,业钟将运算结果保留到变数事件,意义在于保证预言结果尽可能准确。
人为因素:业钟的预言并不代表受试者的既定命运。一方面,人在“变故”中的应变能力可以决定自身命运;另一方面,业钟预测的“变故”可以被人为干预。因此,对于业钟而言,人为因素是最主要的变数。
换句话说,变数事件之所以成为“变数”,不是因为必然使受试者脱离工作,而是因为:在变数事件中,人为因素对结果的影响至关重要,而对于充满偶然性的具体情景,业钟恰恰难以预知人为因素的影响,
人为因素分为两种:自身因素和外界因素。在雇员 A 的案例中,面对即将到期的劳务合同,A 是否续期、多少时间后续期都由自身决定,A 的自身因素导致“离职”成为了变数事件。
而在雇员 C 的案例中,B.N.T.G. 借助业钟预知了 20 天后的火灾风险,C 的命数取决于研究员是否理解业钟的功能,又是否会采取措施保护 C,研究员的外界因素导致“火灾”成为了变数事件。
契约效力:可以看出,业钟倾向于给出最为严谨的预测,但人为因素在生活中比比皆是。因此,业钟在测量时,似乎会考虑契约的效力,默认契约对人的感性行为具有约束力。业钟认可的契约都是合同等正式、书面的契约,如果它们规定了受试者的义务工作时间(如 B.N.T.G. 的单休+八小时工作制),业钟就默认受试者会按照日程工作。
在雇员 A 的案例中,业钟默认 A 不会违背契约无故旷工,而是会按照日程安排工作,直到最近的“离职”变数,所以给出了 45 天的测量结果。在 A 离职后,没有契约的约束,业钟无法预测 A 是否会继续为 B.N.T.G. 工作,这种情况下的测量结果必然为零。
业钟对契约效力的判断并非一成不变。在实验过程中,研究者发现,如果一份契约被频繁地签订又作废,业钟将不再认可它的效力,很快,业钟的测量结果会直接归零,无法反馈任何有效信息。
业钟所预测的“变故”,大部分最终导致安全事故的发生,造成人员伤亡。因此,通过解读业钟的测量结果,集团可以对事故风险发出预警,并针对性地排查工作环境中的安全隐患,实现对安全事故的人为干预。
外形与结构
业钟外形为典型的复古款式落地钟(也叫长壳钟或祖父钟),钟体长约 55 厘米,宽约 45 厘米,全高约 2.3 米,净高(不含外壳)约 1.9 米,全重约 135 千克,净重(不含外壳)约 95 千克。
大钟表盘由不锈钢等材料制成,标有刻度和 “I” 至 “XII” 十二个罗马数字,只有一根时针,虽然表盘上看似没有发光物,在工作时却能发出荧光形成不同月相。表盘上有一圆形凹槽,一枚带翻盖的怀表镶嵌其内,可以取下。怀表表盘有时针和分针,标有刻度,没有数字。值得注意的是,怀表表盘非常光滑,在光源照射下,反光在其他物体上形成清晰可见的光斑。
根据纹理和颜色鉴定,其外壳由胡桃木制成,表面抛光。外壳可以通过常规手段卸下,露出内部机械结构,也就是业钟的核心部分。机械的各部分坚硬无比,彼此紧密连接,无法凭现有技术进行拆解。从可见的机械结构中,可以辨认出铸铁砝码、可调节的钟摆、撞击发声的音锤和钟管,推测这些部件保持着前厅时的功能。在钟体中部的机芯只有少量齿轮外露,大部分都受到金属框架、冗余零件的严密保护,因此无法观察其内部。推测机芯的内部除齿轮传动机构外,还安装着业钟最重要的核心部件——业钟绝大部分异常能力的起源。
使用方法
本段展示了操作业钟的标准化流程。使用业钟时,应遵循以下步骤:
I. 上链:业钟只有处于待机状态下才能被激活。如果能听见齿轮转动的嘀嗒声,说明业钟正在待机,否则应打开钟体下部的木门,捏住链条末端缓慢下拉 25 次左右,直到砝码升至顶部,关闭木门。待听到齿轮声后再进行下一步操作。
II. 准备工作:与业钟相关的测试应安排在封闭房间(不宜过大)中进行,将业钟安放在远离门的一侧,确保灯光昏暗或配备可控制开关的电灯。测试之前,关闭所有光源,将房间内的杂物清空,不允许人员随意进出。工作人员应准备好手电筒或类似的便携光源。
工作人员处在业钟一旁,对业钟的全部指针进行调零。进入房间后,受试者应面对业钟和工作人员。此时可以开始测试。
III. 输入:取出怀表,使用手电筒照射表盘(可感觉到怀表轻微振动),同时调整角度,直到反光在墙壁上形成清晰可见的光斑。小心调整角度,使光斑投射在受试者的裸露皮肤上,持续照射,直到怀表内传出清脆的“咔嚓”声,说明受试者被成功标记。
采用以下方法可提高成功率和准确率:投射在受试者面部,并告知其尽可能睁眼直视。持续照射,直到“咔嚓”声响,受试者观察到“满月”幻象,说明已被成功标记。
IV. 输出:合上表盖,将怀表放回凹槽后,业钟开始处理信息并输出结果。
一段时间后,大钟明显振动,表盘全部亮起,发出明亮白光并快速闪烁,最终熄灭。这代表业钟被成功激活。
若无异常,此时大钟的时针将开始顺时针旋转,表盘随着时针的行进而依次呈现以蛾眉月为初、以朔月为末的 8 种月相,显示某种月相时,表盘上对应形状的区域被白光照亮。由于月相连续变化,8 种月相可细分为 30 种盈亏状态。从 0 点起,时针每次转过约 0.2 小时(6。),便进入下一次盈亏状态,直到再次回到朔月,如此往复。直到时针和月相定格,完成输出。
期间,每出现一次满月状态,业钟就鸣响一次,发出低沉的钟声。
操作者须注意记录朔月(不包含一开始的空白状态)的出现次数和最终的盈亏状态(若难以辨认可观察指针时刻)。盈亏次数即为受试者的测量结果。打开怀表,可得到精确到分钟的余数。若测量结果较大,余数会存在一定误差,不建议参考。
测试结束后,为大钟调零,怀表保持原样即可。
发现
业钟是第 34 件发现于 EL3A 的特殊装置。
2022 年 12 月,办公区 EL3A 发生了一次局部扩张,使得负一、负二层都在无人目击的情况下出现了未经记录的走廊和房间。基于以往应对扩张的经验,B.N.T.G. 在 EL3A 的主要工作站点——EL3A 货物转运站快速响应,组织勘探、测绘和统计工作。
期间,业钟在负二层的新房间中被发现,注意到大钟两根指针缺失、剩余指针全部停走,不具有报时功能。通过对大钟和怀表的检查,发现业钟在特定条件下展现出异于普通钟表之处。12 月 24 日,初步判定业钟为特殊装置,赋予编号 049,并立项研究。
实验阶段
自 2023 年起,研究团队按照常规流程,着手进行一系列实验,旨在解明业钟的性质和功能。下方展示其中的一些经典案例:
- 2023-1-22:“朔月”实验,实验地点为仓库实验室,初步探究怀表功能,发现怀表在光线照射下轻微振动的现象,推测业钟的触发机制与光有关。期间,研究员在调零时意外被怀表反光照射面部,首次观察到满月幻象。
- 2023-1-25:“蛾眉月”实验,实验地点同上,对大钟进行上链、调零,将怀表放回原处后,首次观测到业钟激活现象。研究员注意到时针转动、表盘发出荧光、大钟鸣响,并记录下输出结果,但不清楚含义。事后推测,这次激活与“朔月”实验中使用怀表的研究员有关。
- 2023-10-30:“望月“实验,实验地点为 EL3A 负一层专用房间,使用业钟测量雇员 D(化名),并在测试后持续追踪 D 的状态。D 的测量结果为 12 天,在 12 个工作日后,D 在 Level 283 穿越管道的途中失联,只有鞋子被找回,至今未发现遗体。“望月”实验有力验证了研究团队对业钟功能的猜想。
- 2024-4-2:“下弦月”实验,实验地点同上,使用业钟测量雇员 C(化名,与“功能”部分为同一人),测量结果为 20 天。测试之后,研究团队向 C 的上级说明情况,为其申请在 20 个工作日后放假一天,得到批准,并持续追踪 C 的状态。倒计时结束当天,C 任职的工作站点因仓库人员疏忽导致火油泄露,引发火灾,造成 4 人受伤,而 C 未受波及。事件之后,C 再次接受测试,结果正常。“下弦月”实验充分说明,业钟的预言可以被人为干预,实用价值高,有投入应用的可能。
投入使用
经过近两年的测试,业钟预警机制的可行性得到充分验证,受到集团高层重视。同一时间,在 Level 24 建设塑料矿场的“月球”工程正受到油漆、沙暴和毒雾的困扰,矿场深处各种无法预料的安全事故频频造成人员伤亡。
2024 年 7 月,旨在使用业钟为“月球”工程提供预警、保障雇员安全的“新月”项目得到批准。9 月,业钟被成功转移到 Level 24,安放在矿场的一间专门房间中,随后立即投入使用。
投入使用后,业钟的表现超出预期,完美达成了“新月”项目的预设目标。截止到 2025 年 6 月,业钟发出的事故预警,准确率分别达到 75%(精确到小时)和 100%(精确到天),矿场借助业钟排除安全隐患的成功率达到 80%,当月伤亡数同比减少超 95%,实现全矿场连续 42 小时无人员伤亡记录。
故障
2025 年 7 月,由泊伏德引发的月震再次袭来,破坏了原先用于业钟测试的房间。在转移到新房间前,业钟暂时停止使用。
24 日,当业钟被重新启用时,在输入环节,研究员发现怀表无法正常运行,且明显发热。一般来说,这种现象(不含发热)出现就意味着上次输入的信息未得到处理,只需将怀表归位,激活业钟处理即可恢复正常。然而,激活业钟后,研究员发现业钟的振动幅度比以往更为剧烈,内部传出轰鸣声,且迟迟没有移动指针、显示月相。卸下外壳,发现机械表面快速升温,在机芯处温度最高(可能超过 90℃)、噪音最响。一切迹象都表明,业钟正在过载运行。
研究团队想尽办法终止业钟的异常运算进程。强制关闭业钟失败后,决定使其自然耗尽能量停止工作。然而,重新激活后,业钟仍会延续之前的异常进程。研究员只能做出判断:在业钟结束当前进程前,将不能发挥其预警作用。
反思故障的成因,我们认为,业钟很可能被无意间输入了巨量信息,而陷入了漫长的处理过程。无法知晓这些信息的来源,但可以确认的是,如此体量的信息不可能来自人类,且在 7 月 24 日后,塑料矿场再未观测到泊伏德的身影。业钟的损坏与泊伏德的失踪必然存在关联,但主要还是归咎于研究员的不规范操作。
业钟目前仍未恢复正常,研究团队将尽力维护业钟的安全,直到异常进程结束。
请按如下方式引用此页:
“业钟”,作者 Slime4399 & Romand0,来自后室中文维基。原文链接:http://backrooms-wiki-cn.wikidot.com/karma-clock。遵循 CC BY-SA 3.0 协议。
图像名:业钟
图像作者:Romand0
授权协议:CC BY-SA 3.0
衍生自:
- Clock, longcase (AM 2375-1).jpg,作者 John Simpson,遵循 CC BY-SA 4.0 协议。
- File:Storage room after sorting.jpg,作者 Andries L Steenkamp,遵循 CC BY-SA 4.0 协议。
更多授权相关信息,请查阅授权指导。
1. Speak to Me (in My Hometown) - pingd,
only a tree
2. I Am Not (2.5) Now
2.5. On the Breathe and Run - motina
3. I Am (2.5) Now
【正在播放】4. Time - Slime4399,
Romand0
5. The Great Gig in the Sky (and Ground) - pingd
6.Money - only a tree
7.Us and Them - only a tree
8.Any Colour You Like (Through the Triangular Prism) - Slime4399,
pingd,
only a tree
9.Brain Damage(已损坏)
10.Our Own Eclipse - Romand0,
motina,
Slime4399,
pingd,
only a tree
