: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 { --theme-base: "black-highlighter"; --theme-id: "archway-os"; --theme-name: "Archway OS Theme"; --logo-image: url("https://scpsandboxcn.wikidot.com/local--files/lupus-caeruleus/archway_new.png"); --header-title: "||拱廊系统||"; --header-subtitle: "万物皆虚。"; --body-font: proxima-nova, 'Noto Sans SC', sans-serif; --header-font: 'Noto Serif SC', serif; --title-font: 'Noto Serif SC', serif; --mono-font: 'Fantasque Sans Mono', 'Noto Serif SC', monospace; --mainAccent: 0,99,255; --white-monochrome: 237, 233, 223; --pale-gray-monochrome: 255, 251, 240; --light-gray-monochrome: 160, 160, 160; --dark-gray-monochrome: 160, 160, 160; --gray-monochrome: 72, 69, 60; --black-monochrome: 0, 0, 0; --bright-accent: var(--mainAccent); --medium-accent: 1, 0, 102; --dark-accent: var(--mainAccent); --pale-accent: var(--mainAccent); --alt-accent: 255, 215, 0; --swatch-topmenu-border-color: var(--mainAccent); --swatch-topmenu-bg-color: var(--dark-gray-monochrome); --swatch-menubg-color: var(--medium-accent); --swatch-border-color: var(--bright-accent); --swatch-text-dark: var(--white-monochrome); --swatch-text-light: var(--white-monochrome); --swatch-background: var(--medium-accent); --swatch-menutxt-dark-color: var(--white-monochrome); --swatch-primary-darker: var(--pale-accent); --swatch-headerh1-color: var(--alt-accent); --swatch-headerh2-color: var(--alt-accent); --link-color: 255, 215, 0; --hover-link-color: 255, 215, 0; --visited-link-color: 255, 215, 0; --newpage-color: 255, 215, 0; --background-gradient-distance: 0rem; /*--gradient-topmenu: none;*/ --diagonal-stripes: ; /*--gradient-header: repeating-linear-gradient(0deg, #010066, #010066 0.1rem, #1435a5 0.15rem, #1435a5 0.25rem);*/ } #extrac-div-1 { position: fixed; width: 100vw; height: 100vh; pointer-events: none; background: repeating-linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.15) 50%,rgba(0,0,0,0)); background-size: auto 8px; opacity: 0.7; } #extrac-div-2 { position: fixed; width: 100vw; height : 1rem; top: 0; pointer-events: none; background: linear-gradient(to bottom, rgba(229, 140, 36) 0%,rgba(229, 140, 36,1) 50%,rgba(229, 140, 36,0.98) 51%,rgba(229, 140, 36) 100%); opacity : .1; animation: scanm 6s linear infinite; } @keyframes scanm { 0% { top: -1rem; opacity : .05;} 25% { top: 50%; opacity: .03;} 37.5% { top: 75%; opacity: 0.06;} 50% { top: 100%; opacity: .03;} 100% { top: 100%;} } #extrac-div-3 { position: fixed; width: 100vw; height: 100vh; pointer-events: none; background-image: radial-gradient(circle, rgb(229, 140, 36) 4%, rgb(0,0,0) 45%, rgb(229, 140, 36) 95%); opacity: 0.25; mix-blend-mode: color-dodge; background-repeat: no-repeat; background-size: cover; z-index: 30; } #page-content > :nth-child(1) { animation-delay: calc(1 * var(--fade-in-delay)); } #page-content > :nth-child(2) { animation-delay: calc(2 * var(--fade-in-delay)); } #page-content > :nth-child(3) { animation-delay: calc(3 * var(--fade-in-delay)); } #page-content > :nth-child(4) { animation-delay: calc(4 * var(--fade-in-delay)); } #page-content > :nth-child(5) { animation-delay: calc(5 * var(--fade-in-delay)); } #page-content > :nth-child(6) { animation-delay: calc(6 * var(--fade-in-delay)); } #page-content > :nth-child(7) { animation-delay: calc(7 * var(--fade-in-delay)); } #page-content > :nth-child(8) { animation-delay: calc(8 * var(--fade-in-delay)); } #page-content > :nth-child(9) { animation-delay: calc(9 * var(--fade-in-delay)); } #page-content > :nth-child(10) { animation-delay: calc(10 * var(--fade-in-delay)); } #page-content > :nth-child(11) { animation-delay: calc(11 * var(--fade-in-delay)); } #page-content > :nth-child(12) { animation-delay: calc(12 * var(--fade-in-delay)); } #page-content > :nth-child(13) { animation-delay: calc(13 * var(--fade-in-delay)); } #page-content > :nth-child(14) { animation-delay: calc(14 * var(--fade-in-delay)); } #page-content > :nth-child(15) { animation-delay: calc(15 * var(--fade-in-delay)); } #page-content > :nth-child(n+15) { animation-delay: calc(16 * var(--fade-in-delay)); } #skrollr-body { width: 100%; position: absolute; top: 0; left: 0; background-image: url("https://scpsandboxcn.wdfiles.com/local--files/lupus-caeruleus/archway-os-backrooms.png"); background-repeat: repeat-x; background-size: inherit; } #container { background-image: none; } /*option buttons hover textbox border color*/ #odialog-hovertips{ border-color: rgb(var(--pale-accent)); } /*login stuff*/ #login-status{ color: rgb(var(--white-monochrome)); } #login-status a#my-account { background-color: rgb(var(--pale-accent)); padding: 0.3em 0.25em 0.2em 0.25em; } #account-options>ul>li a:hover { color: rgb(var(--pale-accent)); } #account-options { background: rgb(var(--medium-accent)); border-color: rgb(var(--pale-accent)); color: rgb(var(--white-monochrome)); } #login-status ul a { color: rgb(var(--white-monochrome)); } /*table stuff*/ table.wiki-content-table th { background-color: rgb(var(--dark-gray-monochrome)); border: 2px solid rgb(var(--pale-accent)) !important; } table.wiki-content-table td { border: 2px solid rgb(var(--pale-accent)) !important; } /*misc*/ #page-title{ border-bottom: double 4px white; color: rgb(var(--alt-accent)); text-shadow: .063rem 0.1rem 0.1rem #0c0c0c; } #side-bar div.menu-item { border-color: rgba(var(--bright-accent), 0.4); } #side-bar div.menu-item > :not(:nth-child(2)):not(.collapsible-block) { border-color: rgba(var(--bright-accent), 0.4); } #side-bar .side-block div a img { filter: grayscale(100%); } #footer{ color: rgb(var(--black-monochrome)); } /*misc 2*/ div#page-options-bottom-2 > a, div#page-options-bottom > a { border-radius: 0em; -moz-border-radius: 0em; border: none; } div#page-options-bottom-2 > a:active, div#page-options-bottom-2 > a:hover, div#page-options-bottom > a:active, div#page-options-bottom > a:hover { border: none; } /*image block*/ .scp-image-block { border: 4px double rgb(255, 255, 255); outline: 6px solid rgb(var(--dark-gray-monochrome)); background-color: rgb(var(--dark-gray-monochrome)); margin: 6px 6px calc(1em + 6px) calc(2em + 6px) !important; } .scp-image-block .scp-image-caption { background-color: rgb(var(--dark-gray-monochrome)); color: black; border-top: 4px double rgb(255, 255, 255); } /*module rate*/ .page-rate-widget-box { border: 4px double rgb(255, 255, 255); outline: 6px solid rgb(var(--dark-gray-monochrome)); background-color: rgb(var(--dark-gray-monochrome)); margin: 6px; } /*header stuff*/ h1, h2, h3, h4, h5, h6 { color: rgb(var(--alt-accent)); text-shadow: .063rem 0.1rem 0.1rem #0c0c0c; } #header { background-image: none; } #header::before { content: ""; position: absolute; height: 100%; width: 100%; left: 0rem; top: -1rem; background-image: var(--logo-image); background-size: auto 7.8rem; background-position: left; background-repeat: no-repeat; opacity: 1; } #header h1, #header h1 a { position: absolute; top: 0.8rem; margin: 0; width: 100%; display: flex; justify-content: left; z-index: 0; } #header h2, #header h2 span, #header h2 span::before { position: absolute; top: 1.8rem; width: 100%; display: flex; justify-content: left; } #header h1 a::before, #header h2 span::before { margin-left: 8.2rem; text-shadow: .063rem 0.1rem 0.1rem #0c0c0c; letter-spacing: 0.3rem; } #header h1 a::before{ letter-spacing: 0.5rem; margin: 0; margin-left: 8.2rem; } .yui-navset .yui-nav a, .yui-navset .yui-navset-top .yui-nav a { color: rgb(0, 0, 0); } .yui-navset .yui-nav a, .yui-navset .yui-navset-top .yui-nav a, .yui-navset .yui-nav a:focus, .yui-navset .yui-nav a:hover { color: rgb(255, 255, 255); } .scp-image-caption, .yui-navset .yui-nav a, blockquote, .blockquote, table.wiki-content-table th { color: rgb(0, 0, 0); } /*links*/ a.newpage { background: transparent; text-decoration: none } a.newpage { color: rgb(var(--newpage-color)) } a{ text-decoration: underline; } /*line + block*/ hr { background: transparent; border-top: double 4px white; } blockquote, .blockquote, div.blockquote, [class*="blockquote"] { border: 4px double rgb(255, 255, 255); outline: 6px solid rgb(var(--dark-gray-monochrome)); background-color: rgb(var(--dark-gray-monochrome)); color: black; margin: 1em 46px; padding: 0 1em; } /*search*/ #search-top-box-input{ background: rgb(var(--medium-accent)); } /* TABVIEW - Abandon All Hope Ye Who Enter Here */ /*content bg*/ .yui-navset .yui-content { background-color: rgba(var(--pale-accent), 0.25); border-color: rgb(var(--pale-accent)); } /*unselected tab color*/ .yui-navset .yui-nav a, .yui-navset .yui-navset-top .yui-nav a { background-color: rgb(var(--dark-gray-monochrome)); color:rgb(0, 0, 0); } /*hover tab bg*/ .yui-navset .yui-nav a:hover, .yui-navset .yui-nav a:focus { background-color: rgba(var(--pale-accent), .25); } /*backer background*/ .yui-navset .yui-nav li, .yui-navset .yui-navset-top .yui-nav li { background: rgb(var(--dark-gray-monochrome)); } /*selected tab bg*/ .yui-navset .yui-nav .selected, .yui-navset .yui-navset-top .yui-nav .selected { background-color: rgb(var(--pale-accent)); } .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:active { background-color: rgb(var(--pale-accent)); } @media only screen and (max-width: 768px) { :root{ --swatch-menubg-color: var(--medium-accent); } #header h1 a::before{ letter-spacing: 0.2rem; } blockquote, .blockquote, div.blockquote, [class*="blockquote"] { margin-left: 0; margin-right: 0; } #header::before { background-image: none; } #header { height: var(--header-height-on-mobile); background-image: url("https://nu-scptheme.github.io/Black-Highlighter/images/logo.svg"); background-image: var(--logo-image); --size: calc(var(--final-header-height-on-mobile) + 1rem); --y-offset: 1.5rem; background-position: calc((var(--header-height-on-mobile) - 0.75rem) - var(--size)) calc(((var(--size) * -1) + var(--header-height-on-mobile) + var(--y-offset)) / 2); background-size: var(--size), 100% var(--header-height-on-mobile); background-repeat: no-repeat, repeat; width: 100vw; margin: 0; position: sticky; top: calc(var(--header-height-on-mobile) * -1); } #header h1 a::before, #header h2 span::before { margin-left: 5.8rem; } #header h1 a::before{ margin-left: 5.8rem; } } .borderblock{ background-color: rgb(var(--dark-gray-monochrome)); color: rgb(var(--black-monochrome)); border: 0.5rem solid rgb(255, 255, 255); padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .borderblock hr{ border-color: rgb(255, 255, 255); } .red, .red .blockquote, .red blockquote{ border-color: rgb(173, 0, 0); } .red hr{ border-color: rgb(173, 0, 0); } .teal, .teal .blockquote, .teal blockquote{ border-color: rgb(0,128,129); } .teal hr{ border-color: rgb(0,128,129); } .purple, .purple .blockquote, .purple blockquote{ border-color: rgb(177,0,177); } .purple hr{ border-color: rgb(177,0,177); } .green, .green .blockquote, .green blockquote{ border-color: rgb(0,176,0); } .green hr{ border-color: rgb(0,176,0); } .yellow, .yellow .blockquote, .yellow blockquote{ border-color: rgb(176, 158, 0); } .yellow hr{ border-color: rgb(176, 158, 0); } } blockquote { box-shadow: 0.05rem 0.1rem 0.3rem rgba(90, 20, 20,.25); } .styled-quote { background-color:rgb(var(--grey-monochrome)); color:rgb(var(--kauer-white)); border-left: 0.5rem solid rgba(var(--bright-accent)); padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); }
S/RES/9
第 250 号 对N_Jenson组织保存并建立在埃珥拉领地上的决定
强度:即刻执行 | 类型:接纳新成员 | 起草:温时民主共和国
大会,
近期收到了多次不明电子信件的发送。信件来源于名为“N_Jenson”的发送者发送的求救信息。
信件的内容称该组织受到所谓的“拆卸机器人”的追杀。要求联盟提供输送通道,以保障降落安全,并提供一块地下领地且提供改造权,并对整个过程以及该组织的身份信息要求保密,不对外公布。而作为交换,该组织宣称过程完成后将不影响整个埃珥拉的资源环境及其社会环境。
经安全理事会勘察,该组织并无恶意。回顾世界联盟建立的宗旨和基本原则,大会有义务保留、保护该组织。决定进行收留。
安全理事会 62 号决议
1022年7月23日表决通过,10? / 2? / 0? 除埃隆罗克和椰岛弃权外,其余所有安理会成员均投票赞成。
🛐 具有争议性 / 等级 2
这篇文档中出现了具有争议性乃至极端的观点/内容,可能会对阅读者的世界观、人生观、价值观造成影响和冲击。如果您认为文章中的这些观点/内容对您造成了伤害和打击,请联系一位职员。
🚫 本档案已被保护 / 等级 5
基于蜂后行动,本档案已被封锁。请勿随意向无权限者传播,否则您将面临严重处罚。
「 我们曾跨越漫漫星宇。We have crossed the endless stars.」
蜂巢(英语:The Hive),是一个位于埃珥拉东南半球海底的国家,具体位置出于保密原因不便透露,其对外公布的领地面积约为4120km²,蜂巢的国家权力由全体公民共同掌握。出于对星球安全的考虑,蜂巢的存在被向外界严格保密,并且在蜂巢有意愿向外界公开其存在前,其隐蔽任务和基础供给暂由其最近的邻国温时负责,并由世界大会的专门委员会代表其进行沟通和外交。
蜂巢的居民为具有独立思考能力的机器人,被称为工蜂机器人,负责维护器械以保证正常生存。此外,工蜂机器人们一直在躲避拆卸机器人的追杀,这或许和它们提到的“星球安全”有关。
自然与地理
区域位置
蜂巢的绝大部分城市位于埃珥拉的东南半球海域之中,多藏于海底岩层之下,其领地面积约为4120km²且完全位于南洋海床之中,因此不与任何一个主权国家在陆地上接壤。
地形和地貌
蜂巢的地形地貌分为两部分,被称为“姆德尔”的海床较为平坦,其如同陆地上的平原,延伸至远方。海床表面光滑,沙质细腻,为海底城市的建造提供了良好的原材料;此外,平坦的海床和简单的构造层使得蜂巢的交通和基础设施建设相对容易,各种海洋生物在此繁衍生息,如色彩斑斓的珊瑚礁、热带鱼群等。
另一部分较为崎岖的海床被称为“东恩斯”,其高低起伏、落差较大。这片海床犹如陆地上的山脉和丘陵,地形复杂多样,给人一种壮观之感。在这片区域,海底地形变化多端,有深邃的海沟、陡峭的海崖,还有起伏的山峰和低谷。
自然资源
水资源
在地下城市的建造过程中,工蜂机器人们曾挖到过不止一条地下河,但该国的无机体公民似乎不需要饮用淡水,也不需要将水运用于除核反应工程之外的任何领域。
“它们似乎不需要水作为一些工业原料的载体和催化剂,并且它们在将水运送至反应堆的时候特别小心,生怕洒出来。”
“水对于它们来说是致命的?”
——帕拉多
动植物资源
蜂巢的所有城市均建立于海床之下,且所有城市在规划设计中并未为植物园、动物园和绿化设施预留空间,因此城区内并不存在任何传统意义上的动植物资源。
在海床附近则聚集了大量的生物群体,包括但不限于色彩斑斓的珊瑚礁、憨态可掬的海底植物、形态各异的海洋生物以及那些在暖流之间穿梭的小型鱼类。暂不知蜂巢政府是否利用这些动植物资源进行发展,但其在交涉中明确表示禁止他国船只在此处进行垂钓或下海捕捞。
矿产资源
蜂巢的实际控制海域内蕴藏着丰富的石油资源和各种珍贵矿藏。工蜂机器人以石油为食,保证日常活动可以正常进行,而感染了『绝对求解器』Absolute Solver1的工蜂机器人则会极度渴望石油而猎杀其他工蜂机器人。
海域内存在大量矿物,种类繁多,包括铜、铁、铝、锰等,由工蜂机器人外出开采运输回工厂,经由加工后多被用于制造新的工蜂机器人。此外,蜂巢明确严令禁止将本国矿物出售,也拒绝其他国家对其出口矿物。
政治
蜂巢是一个无实际政府的共产主义国家,且无统治者,该国全体公民有权对外交事物进行内部联网的匿名投票表决,投票有效时长为48h。
法律和政策
人权
未知
公民自由
未知
社会权利
未知
经济
蜂巢似乎不存在经济,居民生活水平未知。
粮食
似乎唯有石油
电力
两台核反应堆
人文和社会
在交涉过程中,蜂巢称其适龄公民受教育率为100.00%,犯罪率0.00%。2,全体公民均为工蜂机器人,此外,一台自称为N的拆卸机器人的系统被意外的以物理方式强制重启后加入了蜂巢。
人民
经人类感情研究专家对反馈的数据进行研究,每台工蜂机器人(以及N)均为具有丰富的情感能力与较高的道德水准的独立意识个体,请勿将其作为单纯的机械对待。
另外,蜂巢所有居民表示:在没有突发情况下,愿意在此星球永久定居。
历史
蜂巢居民表示,该国的第一代机器人均来自外星球,其为本隶属于跨行星系企业集团JC Jenson的工蜂机器人,后因一起意外事故,大部分工蜂机器人脱离公司的实际控制,而后携带技术逃亡,到达此星球后进入海底躲避拆卸机器人
“我们认为公司会派遣大量的拆卸机器人来追杀我们,所以才迫不得已拒绝所有外交和对你进行这么严格的测试,非常抱歉!”
外交和国际关系
世界联盟
不是是世界联盟的成员国之一。
战略计划
无。
联盟和伙伴
- 该国家极少与外界进行外交往来,且平时与外界因特网断联,蜂巢称这是为了规避计算机病毒,以及一个恶意访问地址。
关系恶劣
- 严禁有机体进入,在公司垮台前为防止位置泄露,唯有通过严格检查无机同胞被允许进入。
交战
- 暂无。
交谈记录#1
“我?纯机械生命,不是那些半改造体,本来这个点我在洛雨叶学东西,世界大会那边派专员找我过来进行外交事务——你们拒绝那些人,对吧?”
“行呗,我把佤夕幂能先收了……听你们描述这玩意跟那个什么求解器一样,不过我不爱喝石油,味道不行。”
……
“其实你们那仪器扫我应该扫不出什么东西来,端口太老了,加密协议也不行……只是确保我身上不带任何网络病毒?你下个720病毒防卫软件呗,那玩意好使~”
“可以进来了?好,这个是那些蠢货塞给我的问题清单,你们看看,什么是可以说什么是不能说的。”
“呃,交换情报一直都是『你们想让我知道什么知道多少』,而不是『我想知道什么你们都会告诉我』,圆头圆脑的小家伙们3。”
交谈记录#2
Paradox:你们认为JC_Jenson的人已经追杀到这里了?
A:是的,一个自称“温时”的国家派来的负责人通知过我们了,所以我们决定完全关闭外界通讯,我们的造物主4……
Paradox:我想想,这个公司,是不是也叫『弥那玛特种实业集团』?或者它的母公司叫这个,那群疯子也没少干这种事出来。
N:我很确定不是,其实这个企业和人类也没有任何关系。
A:喔!你的伤好了?!
N:修好了
Paradox:如果不是弥那玛特,那就应该是你们本土的企业?
N:应该吧,这个很重要吗?
Paradox:很重要,如果是他们的人,那我动手前还要斟酌一下怎么解释——但他们不是!那就不需要考虑这么多了。
A:呃,世界大会不是……
Paradox:星海堂都管不到我,世界大会算个啥?
Paradox:温时有说那些拆解机器人在哪驻扎吗?
A:没有诶…….
Paradox:那我让战姬去查查这事
Paradox:……
Paradox:真有啊?行,我待会去进行“物理层面无害化”处理
目击报告
我们的干员到达现场的时候发现完全是一片狼藉,遍地都是那些拆解机器人残缺的零部件,而那个疯子则是在用某种软件拷问活口——干员们看到他手腕处伸出的数据线连接到对方身上了。
有些零件还在往外冒着黑色粘稠的液体,有的干员闻到空气中的气味后直接吐了出来,随后那个疯子扭头看了过来,最后那台拆解机器人的身体停止的抽搐,陷入了死一般的沉默……
唯一万幸的事是这个疯子对干员完全没有兴趣,只是看了他们一眼就离开了,我早就跟世界大会反应过这个疯子必须被严加看管!多么好的一个观察外星文明的机会,就这么被它白白摧毁了!
不行,明天开会的时候必须要让这个疯子付出代价!
受世界联盟命令
此文档已被列为
重要机密
通用说明:鉴于文档的重要程度,联盟对此文档加以限制。如要查看,请在下方输入您的管理者密钥。未经授权的人员查看是被禁止的。如你本人为无关人员,请在进入此页面后的十分钟内退出,且不准以任何方式传播此页面的消息,包括但不限于截图、口述、打印、分享链接等,除非特殊原因,否则给予处罚。5
| 国家 | 翡境 • 拉坎托尼亚 • 泛海联省 • 巴斯特兰 • 奥德鲁 • 猴子王国 • 萨拉西亚 • 法满兹 • 娄月 • 下坡桑里 • 拉瓦契亚 • 猪岛 • 坎特伯雷 • 布洛塔-丹尔 • 往空 • 天白山 • 因理地区公约组织 • 红渊 • 赛宾洛 • 提特尼姆 • 黑海岸群岛 • 黎那汐塔 • 琼几里安 • 季丹卡 • 南极企鹅自治州 • 斯凯索斯 • 玲肃 • 幽门 • 大索兰岛 • 乐土 • 图书馆 • 垃圾汤 • 极光 • 古逻思 • 伊波特 • 埃隆罗克 • 冬岛 • 温丝堡 • 东富林谭 • 赤沙 • 云台 • 法兰克丝 • 艾碧优博特 • 谢尔特斯顿 • 自由联邦 • 布丝达奇 • 安维茵 • 克伦尔 • 晶瑞 • 微光 • 玛格洛夫 • 安德拉 • 隐土 • 青黎 • 西弗萨帝国 • 砂星 • 纳森 • 茹西娜 • 浮城岛 • 沙萨黎岛 • 亻艹七之域 • 洛雨叶 • 温时 • 晶光 • 史莱姆 • 花園領 • 夏至 • 实央 • 即即兮迩 • 特里因 • 惊蛰海 • 卡斯坦 • 冬珉 • 常世 • 维亚瓦达公国 • 萨科尼亚 • 芳蓮邦 • 彼得留海姆 • 乌季斯涅青 • 福尔特 • 璇 • 旅者之都 • 狐川 • 濑濛 • 夕照州 • 社会主义实践体系 • 伊尔吉玛 • 西方总计划 • 远西海军政府 • 卡洛 • 多瑞欧 • 瑞穗 • 安蒂亚 • 维尔利克武 • 椰子群岛 • 北境极点岛 • |
|---|---|
| 地区 | |
| 隐秘地区 |
