:root {
--lh-red: #c0392b;
--lh-blue: #2980b9;
--lh-green: #27ae60;
--lh-dark-green: #16a085;
--lh-purple: #8e44ad;
--lh-orange: #e67e22;
--lh-yellow: #f1c40f;
--lh-paper-bg: 255, 251, 240;
--lh-string-color: 192, 57, 43;
--lh-book-color: var(--gray-monochrome);
--lh-tape-color: 90,90,90,0.3;
--lh-white-bg: 249,249,249;
--lh-dark-bg: 50, 50, 50;
--lh-highlighter: var(--bright-accent);
--lh-border-color: var(--gray-monochrome);
--lh-wiki-note-color: var(--bright-accent)
}
/**
* 旧代码合集
* 为了向下兼容而保留
*/
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
/**
* 便签纸
* notepaper
*/
.notepaper {
background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
line-height: 2em;
background-size: 100% 2em;
background-attachment: local;
border: 2em solid rgb(var(--lh-paper-bg));
box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
padding: 0;
margin: 1em auto;
box-sizing: border-box;
position: relative
}
.notepaper p {
margin: 0;
font-size: 1.05rem;
letter-spacing: 0.1rem;
line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
width: 90%
}
@media screen and (min-width:768px){
.notepaper.narrow {
width: 50%
}
.notepaper.wide {
width: 75%
}
}
.notepaper.tight {
border-width: 1rem;
border-left-width: 1.2rem;
border-right-width: 1.2rem;
line-height: 1.8em;
background-size: 100% 1.8em;
font-size: 13px
}
.notepaper.with-string::before {
content: '';
width: 0.5em;
height: 6rem;
background: rgb(var(--lh-string-color));
top: -2rem; right: -1rem;
display: block;
position: absolute;
box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
content: '';
border: 1px solid #ddd;
background: rgba(var(--lh-tape-color));
width: 1.5em;
height: 4em;
transform: rotate(45deg);
display: block;
position: absolute;
top: -3em;
left: -1.8em
}
.notepaper.tight.with-string::before {
top: -1rem;
right: -0.25rem;
}
.notepaper.tight.with-tape::before {
top: -2.5em;
left: -1.3em
}
.notepaper.page {
min-height: 36em;
counter-increment: page;
display: flex;
flex-direction: column;
justify-content: space-between
}
@media screen and (min-width:768px){
.notepaper.page {
width: 70%
}
}
.notepaper.page:after {
content: counter(page);
display: block;
text-align: center
}
.notepaper-group {
counter-reset: page;
}
.book-pattern {
display: flex;
flex-wrap: wrap;
flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
width: 100%
}
@media screen and (min-width: 768px) {
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
width: 50%
}
}
.book-wrapper {
background: rgb(var(--lh-book-color));
padding: 0.5rem;
box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
border-radius: 5px;
margin: 1rem auto
}
@media screen and (min-width: 768px) {
.book-wrapper .notepaper {
margin: 0
}
}
/**
* 文字修饰
*/
.text-highlighted {
position: relative
}
.text-highlighted::before {
content: "";
position: absolute;
height: 0.9em;
bottom: 2px;
left: -2px;
width: 105%;
z-index: -1;
background-color: rgb(var(--lh-highlighter));
opacity: .6;
transform: skew(-15deg);
transition: opacity .2s ease;
border-radius: 3px 8px 10px 6px;
transition: 0.1s ease background-color;
}
.text-underlined {
text-decoration: underline;
text-underline-offset: 4px;
text-decoration-thickness: 2px;
text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
text-decoration: underline wavy;
text-underline-offset: 4px;
text-decoration-color: rgb(var(--lh-highlighter))
}
.text-circled,
.text-squared {
display: inline-block;
border: 2px solid rgb(var(--lh-highlighter));
border-radius: 100%;
box-sizing: border-box
}
.text-squared { border-radius: 0 }
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
/* 隐藏文字 */
.text-blank { color: rgba(0,0,0,0) }
.text-block {
background: rgb(var(--black-monochrome));
color: rgb(var(--black-monochrome));
}
.text-blur {
filter: blur(0.3em);
-webkit-filter: blur(0.3em)
}
.text-hoverback,
.text-selectback {
transition-duration: 0.3s;
transition-property: background, transform, color
}
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
/**
* 附加项
*/
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
.with-narrow-width {
width: 90%!important;
margin-left: auto;
margin-right: auto
}
@media screen and (min-width: 768px) {
.with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
/**
* 删除类
*/
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
.offwith-width-limit {
width: auto!important;
margin-left: auto!important;
margin-right: auto!important
}
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
/**
* 网格布局
*/
/* Gridder 容器 */
div[class*="gridder"] {
display: grid;
box-sizing: border-box;
grid-gap: 1rem;
padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
.gridder, .gridder-col-2 {
grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
grid-template-columns: repeat(4, 1fr);
}
@media screen and (min-width: 768px) {
.pc-gridder, .pc-gridder-col-2 {
grid-template-columns: 1fr 1fr;
}
.pc-gridder-col-3 {
grid-template-columns: repeat(3, 1fr);
}
.pc-gridder-col-4 {
grid-template-columns: repeat(4, 1fr);
}
}
.spanner, .spanner-2 {
grid-column-start: span 2;
}
.spanner-3 {
grid-column-start: span 3;
}
/**
* 告示组件
*/
.signblock,
.signblock-dark,
.signblock-warn {
margin: 1rem auto;
box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
background: rgb(var(--lh-white-bg));
font-size: 1.05rem;
padding: 2rem
}
@media screen and (min-width: 768px) {
.signblock,
.signblock-dark,
.signblock-warn {
width: 75%
}
}
.signblock-dark,
.signblock-dark h1 {
background: rgb(var(--lh-dark-bg));
color: #fff
}
.signblock-warn,
.signblock-warn h1 {
background: var(--lh-red);
color: #fff
}
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
text-align: center;
font-size: 2rem;
margin: 0;
font-weight: 700
}
.signblock-img {
display: flex;
flex-direction: row;
justify-content: center
}
.signblock-img img {
width: 8em
}
.signblock-footer {
font-size: 0.9em;
text-align: center;
margin: 0.5rem 0;
font-weight: bolder;
display: block
}
/**
* 报告
*/
.reportblock,
.reportblock-dark {
border: 2px solid rgb(var(--lh-border-color));
box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
background: rgb(var(--white-monochrome));
padding: 0.8rem 1.5rem;
padding-bottom: 0.4rem;
margin: 1.5rem auto;
margin-bottom: 1rem;
position: relative
}
.reportblock hr,
.reportblock-dark hr {
background-color: rgb(var(--lh-border-color));
margin-left: -1.5rem;
margin-right: -1.5rem
}
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
position: absolute;
top: -1rem;
left: 1.5rem;
font-size: 110%;
font-weight: 600;
background: rgb(var(--lh-border-color));
color: #fff;
padding: 0.2rem 0.5rem;
margin: 0;
}
.reportblock-dark,
.reportblock-dark h1 {
border-color: rgb(var(--lh-white-bg));
background: rgb(var(--lh-dark-bg));
color: #fff
}
.reportblock-dark hr {
background-color: rgb(var(--lh-white-bg));
}
/* 更好的折叠框 */
.bettercollap {
margin: 1em 0;
}
.bettercollap .collapsible-block {
width: auto;
overflow: hidden;
border: 1px solid rgb(var(--lh-border-color))
}
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
background: rgb(var(--white-monochrome));
padding: 0.5em
}
.bettercollap .collapsible-block-content {
padding-left: 1em;
padding-right: 1em
}
.bettercollap .collapsible-block-link {
color: rgb(var(--lh-border-color));
background: rgb(var(--white-monochrome));
transition: .3s;
display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
color: rgb(var(--white-monochrome));
background: rgb(var(--lh-border-color))!important;
text-decoration: none
}
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
.bettercollap .collapsible-block-link::before {
content: "\25BC";
display: inline-block;
margin-right: 0.5em;
transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
transform: rotate(0) scale(0.9)
}
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
.styledcollap.bettercollap .collapsible-block {
border-radius: 2px;
box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
.styledcollap.bettercollap .collapsible-block-content {
background-color: rgb(var(--pale-gray-monochrome));
border-width: 3px
}
.styledcollap.bettercollap .collapsible-block-link:hover {
background: rgba(var(--lh-border-color),0.95)!important;
}
/**
* 提示框
*/
.infoblock {
color: #f1f1f1;
font-weight: bold;
background: #424242;
padding: 5px 5px 5px 5px;
border-radius: 4px;
margin: -0.5rem 0 1rem 0;
display: block;
width: fit-content;
padding-right: 25px;
}
.infoblock::before {
content: "ⓘ "
}
/**
* 单页迭代
*/
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }
/* BHL Style Search Top Box And User Account */
/* By Mercuresphere */
/* Based on BHL Theme */
:root, :root:lang(cn) {
--merc-light-color: var(--swatch-menutxt-light-color);
--merc-dark-color: var(--swatch-menubg-dark-color);
--user-account-mask: url("https://fastly.jsdelivr.net/gh/Crimone/crimson-anemone@main/files/user-circle.svg");
--search-top-box-mask: url("https://fastly.jsdelivr.net/gh/Crimone/crimson-anemone@main/files/search-top-box-mask.svg");
}
/* ===用户和搜索栏=== */
@media only screen and (max-width: 768px) {
#login-status {
right: unset;
font-size: unset;
}
#navi-bar, #navi-bar-shadow, #search-top-box-input {
display: unset;
}
#search-top-box-input {
min-width: unset;
}
#search-top-box {
top: unset;
right: unset;
height: unset;
}
#search-top-box:focus-within {
box-shadow: unset;
background: unset;
padding: unset;
}
#search-top-box:not(:focus-within):before {
-webkit-mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2);
-webkit-mask-position: center center;
-webkit-mask-repeat: no-repeat;
-webkit-mask-image: var(--search-top-box-mask);
; z-index: 14;
background-color: rgb(var(--merc-light-color));
color: rgb(var(--merc-dark-color));
text-align: center;
cursor: pointer;
mask-image: var(--search-top-box-mask);
; mask-position: center center;
mask-repeat: no-repeat;
mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2);
pointer-events: none;
position: absolute;
top: 0;
right: 0;
width: calc(0.9375rem * 1.8);
height: 100%;
content: " ";
}
#search-top-box form[id=search-top-box-form] {
visibility: unset;
height: unset;
}
#search-top-box form[id=search-top-box-form]:focus-within {
visibility: unset;
}
#search-top-box form[id=search-top-box-form] input {
-webkit-appearance: unset;
-moz-appearance: unset;
position: unset;
top: unset;
transform: unset;
appearance: unset;
height: unset;
}
#search-top-box form[id=search-top-box-form] input[type=text] {
visibility: unset;
transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), font-variation-settings .2s cubic-bezier(.4, 0, .2, 1), font-weight .2s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1), right .2s cubic-bezier(.4, 0, .2, 1), width .6s cubic-bezier(.4, 0, .2, 1), padding .6s cubic-bezier(.4, 0, .2, 1), max-width .6s cubic-bezier(.4, 0, .2, 1);
}
#search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text] {
position: unset;
right: unset;
transform: unset;
cursor: unset;
border-width: unset;
width: unset;
height: unset;
color: unset;
}
#search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text]:hover {
background-color: unset;
}
#search-top-box form[id=search-top-box-form] input[type=submit] {
background: none;
transition: unset;
}
#search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=submit] {
opacity: unset;
margin: unset;
padding: unset;
width: unset;
}
#header h1 a {
z-index: unset;
}
}
@media only screen and (max-width: 56.25rem) {
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] {
background-color: rgba(0, 0, 0, 0);
}
}
@media (min-width: 36rem) {
#login-status {
flex-grow: unset;
left: unset;
right: unset;
}
#login-status:not(:hover):not(:focus-within) {
visibility: hidden;
}
#login-status::before {
visibility: visible;
}
}
#search-top-box-input {
min-width: unset;
display: inline-block;
}
#search-top-box-form input[type=submit], #search-top-box-form input[type=submit]:focus, #search-top-box-form input[type=submit]:hover {
color: transparent;
}
#search-top-box-form input[type=submit]:focus, #search-top-box-form input[type=submit]:hover {
border: none;
text-shadow: none;
}
#search-top-box-form input[type=submit], #search-top-box-input:focus, #search-top-box-input:hover {
border: none;
}
#search-top-box {
display: flex;
z-index: 12;
position: absolute;
top: 1.5em;
right: calc(3% - .25em);
align-items: center;
justify-content: center;
width: auto;
height: calc(0.9375rem * 1.8);
transform: translateY(-50%);
font-size: calc(0.9375rem * .86667);
}
#search-top-box, #search-top-box * {
box-sizing: border-box;
margin: 0;
padding: 0;
border: none;
transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), font-variation-settings .2s cubic-bezier(.4, 0, .2, 1), font-weight .2s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1), right .2s cubic-bezier(.4, 0, .2, 1), width .6s cubic-bezier(.4, 0, .2, 1), padding .6s cubic-bezier(.4, 0, .2, 1), max-width .6s cubic-bezier(.4, 0, .2, 1);
will-change: box-shadow, font-variation-settings, font-weight, background-color, color, right, width, padding, max-width;
}
#search-top-box:focus-within, #search-top-box:focus-within *, #search-top-box:focus-within :after, #search-top-box:focus-within :before {
margin: 0;
padding: 0;
transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), font-variation-settings .2s cubic-bezier(.4, 0, .2, 1), font-weight .2s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1), right .2s cubic-bezier(.4, 0, .2, 1), width .3s cubic-bezier(.4, 0, .2, 1), padding .3s cubic-bezier(.4, 0, .2, 1), max-width .3s cubic-bezier(.4, 0, .2, 1);
will-change: box-shadow, font-variation-settings, font-weight, background-color, color, right, width, padding, max-width;
}
#search-top-box:focus-within {
background: rgba(var(--merc-dark-color), .7);
box-shadow: calc(calc(0.9375rem * 1.8) / 2 * -1) 0 calc(calc(0.9375rem * 1.8) / 2) rgba(var(--merc-dark-color));
}
#search-top-box:after, #search-top-box:before {
position: absolute;
top: 0;
right: 0;
width: calc(0.9375rem * 1.8);
height: 100%;
content: " ";
}
#search-top-box:before {
-webkit-mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2);
-webkit-mask-position: center center;
-webkit-mask-repeat: no-repeat;
-webkit-mask-image: var(--search-top-box-mask);
; z-index: 14;
background-color: rgb(var(--merc-light-color));
color: rgb(var(--merc-dark-color));
text-align: center;
cursor: pointer;
mask-image: var(--search-top-box-mask);
; mask-position: center center;
mask-repeat: no-repeat;
mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2);
pointer-events: none;
}
#search-top-box:not(:focus-within):hover:before {
background-color: rgb(var(--merc-light-color));
}
#search-top-box:after {
--clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: var(--clip-path);
z-index: 13;
clip-path: var(--clip-path);
pointer-events: none;
background-color: transparent;
}
#search-top-box:not(:focus-within):after {
--clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
background-color: rgb(var(--merc-light-color), 0);
}
#search-top-box form[id=search-top-box-form] {
display: flex;
visibility: visible;
position: relative;
right: 0;
max-width: 100%;
height: calc(0.9375rem * 1.8);
}
#search-top-box form[id=search-top-box-form]:not(:focus-within) {
max-width: calc(0.9375rem * 15);
}
#search-top-box form[id=search-top-box-form] input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
position: relative;
top: 0;
}
#search-top-box form[id=search-top-box-form] input[type=text] {
z-index: 13;
position: absolute;
right: 0;
width: calc(0.9375rem * 15);
max-width: calc(0.9375rem * 15);
height: 100%;
padding: 0 calc(0.9375rem * 1.8) 0 1em;
outline: 0 solid rgb(var(--merc-light-color));
background-color: rgb(var(--merc-dark-color), .7);
box-shadow: 0 0 0 .125rem rgb(var(--merc-light-color));
color: rgba(var(--merc-light-color));
}
#search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text] {
max-width: calc(0.9375rem * 1.8);
padding: 0;
outline-width: 0;
background-color: rgba(var(--merc-dark-color), 0);
box-shadow: 0 0 0 0 rgb(var(--merc-light-color));
color: rgba(0, 0, 0, 0);
cursor: pointer;
}
#search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text]:hover {
background-color: rgba(var(--merc-dark-color), 1);
}
#search-top-box form[id=search-top-box-form] input[type=submit] {
visibility: visible;
z-index: 14;
position: absolute;
right: 0;
width: calc(0.9375rem * 1.8);
height: calc(0.9375rem * 1.8);
outline: 0 solid rgb(var(--merc-light-color));
background-color: transparent;
box-shadow: 0 0 0 .125rem rgb(var(--merc-light-color));
color: t;
font-size: calc(0.9375rem * .86667);
cursor: pointer;
pointer-events: all;
}
#search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=submit] {
box-shadow: 0 0 0 0 rgb(var(--merc-light-color));
pointer-events: none;
}
#login-status {
--wght: var(--ui-wght);
display: flex;
z-index: 11;
position: absolute;
top: 1.5em;
right: calc(3% + calc(0.9375rem * 1.8) - .25em);
align-items: center;
justify-content: center;
height: 2em;
margin: 0 0 0 .5em;
transform: translateY(-50%);
color: rgb(var(--merc-light-color));
font-weight: var(--wght);
font-size: 1em;
font-family: var(--UI-font);
white-space: nowrap;
transition: opacity .2s cubic-bezier(.4, 0, .2, 1);
}
#search-top-box:focus-within ~ #login-status {
opacity: 0;
}
#login-status span.printuser a:first-of-type {
width: 1.75em;
}
#login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in {
margin: 0 1em;
background-color: rgb(var(--pale-gray-monochrome));
color: rgb(var(--merc-dark-color));
padding: 0.1em 1em;
text-decoration: none;
}
#login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account:active, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account:hover, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in:active, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in:hover, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account:focus-within, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in:focus-within {
background-color: rgba(var(--merc-light-color), 1);
color: rgb(var(--merc-dark-color));
text-decoration: none;
}
#login-status span.printuser {
--wght: var(--ui-wght);
margin-right: .5em;
color: rgb(var(--merc-light-color));
font-weight: var(--wght);
}
#login-status a#my-account, #login-status a[href*="account/messages"] {
color: rgb(var(--merc-light-color));
}
#login-status a#my-account {
--wght: var(--ui-wght);
-webkit-text-decoration: underline rgb(var(--merc-dark-color)) .125em;
display: flex;
align-items: center;
padding: 0 .5em;
background-color: initial;
box-shadow: inset 0 0 0 0 rgb(var(--merc-dark-color));
font-weight: var(--wght);
text-decoration: underline rgb(var(--merc-dark-color)) .125em;
transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), text-decoration .2s cubic-bezier(.4, 0, .2, 1), -webkit-text-decoration .2s cubic-bezier(.4, 0, .2, 1);
}
#login-status a#my-account:active, #login-status a#my-account:hover {
--wght: var(--ui-hvr-wght);
-webkit-text-decoration: underline rgb(var(--merc-dark-color)) 0;
box-shadow: inset 0 -2em 0 0 rgb(var(--merc-dark-color));
color: rgb(var(--merc-light-color));
font-weight: var(--wght);
text-decoration: underline rgb(var(--merc-dark-color)) 0;
}
#login-status a#my-account:focus-within {
--wght: var(--ui-hvr-wght);
-webkit-text-decoration: underline rgb(var(--merc-dark-color)) 0;
box-shadow: inset 0 -2em 0 0 rgb(var(--merc-dark-color));
color: rgb(var(--merc-light-color));
font-weight: var(--wght);
text-decoration: underline rgb(var(--merc-dark-color)) 0;
}
#login-status #account-topbutton {
--clip-path: polygon(30% 35%, 70% 35%, 50% 60%, 50% 60%);
-webkit-clip-path: var(--clip-path);
position: relative;
width: var(--account-height);
height: var(--account-height);
margin: 0;
padding: 0;
background-color: rgb(var(--merc-light-color));
color: transparent;
clip-path: var(--clip-path);
transition: -webkit-clip-path .1s cubic-bezier(.4, 0, .2, 1);
transition: clip-path .1s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .1s cubic-bezier(.4, 0, .2, 1);
}
#login-status #account-options {
display: block !important;
z-index: 12;
position: absolute;
top: 1.5rem;
right: 0;
width: 10em;
margin: .25em 0 0;
padding: 0;
overflow: hidden;
background-image: var(--gradient-header);
background-color: rgb(var(--merc-dark-color));
opacity: 0;
pointer-events: none;
transition: opacity .15s cubic-bezier(.4, 0, .2, 1);
}
#login-status #account-options:focus-within, #login-status #account-topbutton:active + #account-options, #login-status #account-topbutton:focus + #account-options {
opacity: 1;
pointer-events: all;
}
@media (pointer: coarse) {
#login-status #account-options:hover, #login-status #account-topbutton:hover + #account-options {
opacity: 1;
pointer-events: all;
}
}
#login-status #account-options * {
margin: 0;
padding: 0;
}
#login-status #account-options ul {
display: grid;
grid-template-columns: 1fr 1fr;
grid-auto-rows: 2em;
flex-grow: 1;
align-items: center;
justify-content: center;
font-size: .85em;
}
#login-status #account-options ul li {
position: relative;
}
#login-status #account-options ul li, #login-status #account-options ul li a {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
#login-status #account-options a {
--box-shadow: rgba(var(--merc-dark-color));
--wght: var(--ui-wght);
position: relative;
flex-grow: 1;
height: 100%;
max-height: 2em;
padding: 0 .25em;
box-shadow: inset 0 0 0 .0625rem var(--merc-dark-color);
font-weight: var(--wght);
transition: color .15s cubic-bezier(.4, 0, .2, 1), font-weight .15s cubic-bezier(.4, 0, .2, 1), font-variation-settings .15s cubic-bezier(.4, 0, .2, 1);
}
#login-status #account-options li > a, #login-status #account-options li > a:visited {
color: rgb(var(--merc-light-color));
}
#login-status #account-options li > a:active, #login-status #account-options li > a:hover {
--wght: var(--ui-hvr-wght);
color: rgb(var(--merc-dark-color));
font-weight: var(--wght);
text-decoration: none;
}
#login-status #account-options li > a:focus-within {
--wght: var(--ui-hvr-wght);
color: rgb(var(--merc-dark-color));
font-weight: var(--wght);
text-decoration: none;
}
#login-status #account-options li > a[href*="/messages"] {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
min-height: 100%;
font-size: 0;
}
#login-status #account-options li > a[href*="/messages"]:after {
position: absolute;
left: 50%;
transform: translateX(-50%);
content: "信息";
font-size: calc(0.9375rem * .765);
pointer-events: none;
}
#login-status #account-options li > a:before {
--clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
-webkit-clip-path: var(--clip-path);
z-index: -1;
position: absolute;
top: 0;
width: 100%;
height: 100%;
background-color: rgb(var(--merc-light-color));
content: " ";
clip-path: var(--clip-path);
pointer-events: none;
transition: -webkit-clip-path .2s cubic-bezier(.4, 0, .2, 1);
transition: clip-path .2s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .2s cubic-bezier(.4, 0, .2, 1);
}
#login-status #account-options li > a:active:before, #login-status #account-options li > a:hover:before {
--clip-path: polygon(-15% 0, 115% 0, 100% 100%, 0 100%);
}
#login-status #account-options li > a:focus-within:before {
--clip-path: polygon(-15% 0, 115% 0, 100% 100%, 0 100%);
}
/* ===默认收起用户信息栏和搜索栏=== */
#search-top-box {
top: 23px;
right: calc(3%);
}
#login-status {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
top: 24px;
right: calc(3% + calc(0.9375rem * 1.8) + .25em);
color: transparent;
pointer-events: none;
transition: color .2s cubic-bezier(.4, 0, .2, 1);
user-select: none;
}
@media only screen and (min-width: 980px) {
#search-top-box {
right: calc(3% + (-100vw + var(--header-width-on-desktop, 61.25rem)) / 2);
}
#login-status {
right: calc(3% + calc(0.9375rem * 1.8) + .25em + (-100vw + var(--header-width-on-desktop, 61.25rem)) / 2);
}
}
#login-status:active, #login-status:hover {
-webkit-user-select: initial;
-moz-user-select: initial;
-ms-user-select: initial;
color: rgb(var(--merc-light-color));
pointer-events: all;
user-select: auto;
}
#login-status:focus-within {
-webkit-user-select: initial;
-moz-user-select: initial;
-ms-user-select: initial;
color: rgb(var(--merc-light-color));
pointer-events: all;
user-select: auto;
}
#login-status:active #account-options, #login-status:hover #account-options {
pointer-events: all;
}
#login-status:focus-within #account-options {
pointer-events: all;
}
#login-status > :not(#account-topbutton):not([href*="account/messages"]) {
--clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
opacity: 0;
transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), text-decoration .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1), clip-path .2s cubic-bezier(.4, 0, .2, 1), opacity .2s cubic-bezier(.4, 0, .2, 1), -webkit-text-decoration .2s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .2s cubic-bezier(.4, 0, .2, 1);
}
#login-status:active > :not(#account-topbutton):not([href*="account/messages"]), #login-status:hover > :not(#account-topbutton):not([href*="account/messages"]) {
--clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
opacity: 1;
}
#login-status:focus-within > :not(#account-topbutton):not([href*="account/messages"]) {
--clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
opacity: 1;
}
#login-status #account-topbutton {
margin-left: 0;
background-color: initial;
pointer-events: all;
transition: clip-path .15s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .15s cubic-bezier(.4, 0, .2, 1);
}
#login-status:hover #account-topbutton {
background-color: rgb(var(--merc-light-color));
}
#login-status:before {
-webkit-mask-image: var(--user-account-mask);
-webkit-mask-size: calc(calc(0.9375rem * 1.8) - .5em);
-webkit-mask-position: center right;
-webkit-mask-repeat: no-repeat;
z-index: 2;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(var(--merc-light-color), 1);
content: "";
cursor: pointer;
mask-image: var(--user-account-mask);
mask-position: center right;
mask-repeat: no-repeat;
mask-size: calc(calc(0.9375rem * 1.8) - .5em);
pointer-events: all;
transition: background-color .15s cubic-bezier(.4, 0, .2, 1);
}
#login-status:hover:before {
background-color: rgba(var(--search-icon-hover-color), 1);
}
#login-status:active:after, #login-status:active:before, #login-status:hover:after, #login-status:hover:before {
background-color: rgba(var(--search-icon-hover-bg-color), 0);
cursor: auto;
pointer-events: none;
}
#login-status:focus-within:after, #login-status:focus-within:before {
background-color: rgba(var(--search-icon-hover-bg-color), 0);
cursor: auto;
pointer-events: none;
}
#login-status #account-topbutton {
--clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: var(--clip-path);
background-color: rgba(var(--merc-light-color), 0);
clip-path: var(--clip-path);
}
#login-status:active #account-topbutton, #login-status:hover #account-topbutton {
--clip-path: polygon(30% 35%, 70% 35%, 50% 60%, 50% 60%);
-webkit-clip-path: var(--clip-path);
background-color: rgb(var(--merc-light-color));
clip-path: var(--clip-path);
}
#login-status:focus-within #account-topbutton {
--clip-path: polygon(30% 35%, 70% 35%, 50% 60%, 50% 60%);
-webkit-clip-path: var(--clip-path);
background-color: rgb(var(--merc-light-color));
clip-path: var(--clip-path);
}
#login-status #account-options {
margin: 0;
}
#login-status a[href*="account/messages"] {
color: rgb(var(--merc-light-color));
pointer-events: all;
}
#account-topbutton {
border: none;
}
#account-options {
border: none;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@900&display=swap');
@import url('https://backrooms-wiki-cn.wikidot.com/local--files/theme:golden-age/back.css');
:root {
--logo-image: url("");
--header-title: "The Backrooms";
--header-subtitle: "你曾经来过这里";
--body-font: 'Noto Sans', sans-serif;
--header-font: 'Noto Sans SC';
--title-font: 'Noto Sans SC';
--mono-font: 'Noto Serif SC';
--white-monochrome: 0,0,0;
--pale-gray-monochrome: 0,0,0;
--light-gray-monochrome: 252,232,2;
--gray-monochrome:252,232,2;
--black-monochrome:255,255,255;
--bright-accent: 252,232,2;
--medium-accent: 214,206,2;
--dark-accent: 252,232,2;
--pale-accent: 252,232,2;
--link-color: 252,232,2;
--visited-link-color: 252,232,2;
--hover-link-color: 252,232,2;
--newpage-color: 214,206,2;
--background-gradient-distance: 30rem;
--background-gradient-color: 200,200,200;
--sd-border: 252,232,2;
--sd-fill: 20, 22, 24;
}
#header, #top-bar {
color:#ffffff;
}
hr {
width: auto;
margin: auto;
position: relative;
height: 2.5px;
background-color: none;
pointer-events: none;
overflow: hidden;
border: initial;
-webkit-clip-path: polygon(50% 10%, 100% 50%, 50% 90%, 0% 50%);
clip-path: polygon(50% 10%, 100% 50%, 50% 90%, 0% 50%);
}
hr:before {
content: " ";
width: 100%;
height: 100%;
position: absolute;
background-attachment: fixed;
background-color: #fce703;
background-repeat: repeat;
background-position: center;
background-size: auto;
}
#header h1 a::before {
color: #ffffff;
}
#header h2 span:before {
color: #ffffff;
background-clip: text;
-webkit-background-clip: text;
width: 100%;
height: 100%;
background-attachment: fixed;
}
#header h2 span {
font-size: 1.5em;
top: 1em;
font-family: "Noto Sans SC";
}
#container {
background: none;
}
.yui-navset .yui-nav a,
.yui-navset .yui-navset-top .yui-nav a {
color:rgb(255,255,255);
}
th {
background-color: rgb(var(--medium-accent)) !important;
}
.top-box:before {
background: url("") !important;
}
.header-diamond .diamond-pattern {
background: url("") !important;
}
.scp-image-block {
border: 0.2rem solid rgba(var(--pale-accent));
}
.scp-image-block .scp-image-caption {
color: rgb(255,255,255);
background-color: rgb(0,0,0);
border-top: 0.2rem solid rgba(var(--pale-accent));
margin-top: 0.3rem;
}
.page-rate-widget-box {
background: none;
border: 0.2rem solid rgba(var(--pale-accent));
background-color: rgb(0,0,0);
}
table.wiki-content-table th,
table.wiki-content-table td {
border: solid 1px rgb(var(--pale-accent));
}
.code{
background-color: white;
border: solid 2px rgb(var(--pale-accent));
}
.lightblock {
background-color:rgb(0,0,0);
border: solid 2px rgb(var(--pale-accent));
}
.styled-quote {
background-color:rgb(0,0,0);
border: solid 2px rgb(var(--pale-accent));
border-left: 0.5rem solid rgba(var(--pale-accent));
}
.dark-styled-quote {
border-left: 0.5rem solid rgba(40,40,40);
}
.titleblock {
background-color: rgb(var(--pale-gray-monochrome));
padding: 0.5rem 1rem 0.10rem;
margin: 1.5rem 0rem 0.5rem 0rem;
box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.5);
border: solid rgb(var(--medium-accent)) 0.1rem;
}
.titlebox {
color: rgb(var(--white-monochrome));
position: relative;
top: -1.6rem;
background-color: rgb(var(--medium-accent));
padding: 0.25rem 1rem;
line-height: 0.1rem;
}
.dark-titleblock {
background-color: rgb(var(--gray-monochrome));
color:rgb(var(--white-monochrome));
padding: 0.5rem 1rem 0.10rem;
margin: 1.5rem 0rem 0.5rem 0rem;
box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.5);
border: solid rgb(var(--medium-accent)) 0.1rem;
}
.dark-titlebox {
color: rgb(0,0,0);
position: relative;
top: -1.6rem;
background-color: rgb(var(--medium-accent));
padding: 0.25rem 1rem;
line-height: 0.1rem;
}
blockquote{
color: white !important;
}
.blockquote{
color: white !important;
}
.dark-styled-quote a, .dark-titleblock a, .darkblock a, .titlebox a, .dark-titlebox a{
color: rgb(70,70,70);
}
.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:%23fce802;%7D .st1%7Bfill:%23fce802;%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(--sd-fill)) !important;
}
.header-diamond .diamond-color.class-0 {
background: rgb(var(--sd-fill)) !important;
}
.top-box.class-1, .top-box.class-2 {
background: rgb(var(--sd-fill)) !important;
}
.header-diamond .diamond-color.class-1,
.header-diamond .diamond-color.class-2 {
background: rgb(var(--sd-fill)) !important;
}
.top-box.class-3, .top-box.class-4 {
background: rgb(var(--sd-fill)) !important;
}
.header-diamond .diamond-color.class-3,
.header-diamond .diamond-color.class-4 {
background: rgb(var(--sd-fill)) !important;
}
.top-box.class-5, .top-box.class-unknown {
background: rgb(var(--sd-fill)) !important;
}
.header-diamond .diamond-color.class-5,
.header-diamond .diamond-color.class-unknown {
background: rgb(var(--sd-fill)) !important;
}
#top-bar div.top-bar > ul > li > a,
#top-bar div.mobile-top-bar > ul > li > a {
color: rgb(225, 225, 225);
}
#top-bar div.top-bar > ul > li:hover > a,
#top-bar div.mobile-top-bar > ul > li:hover > a {
color: rgb(225, 225, 225);
}
#top-bar div.top-bar > ul > li > ul > li:hover > a,
#top-bar div.mobile-top-bar > ul > li > ul > li:hover > a {
color: black;
}
#top-bar div.top-bar > ul > li > ul > li > a,
#top-bar div.mobile-top-bar > ul > li > ul > li > a {
color: rgb(225, 225, 225);
}
#account-options > ul > li > a {
color: black;
}
@media only screen and (max-width: 510px) {
#top-bar div.top-bar > ul > li > a,
#top-bar div.mobile-top-bar > ul > li > a {
color: black;
}
#top-bar div.top-bar > ul > li:hover > a,
#top-bar div.mobile-top-bar > ul > li:hover > a {
color: white;
}
#top-bar div.top-bar > ul > li > ul > li:hover > a,
#top-bar div.mobile-top-bar > ul > li > ul > li:hover > a {
color: white;
}
#top-bar div.top-bar > ul > li > ul > li > a,
#top-bar div.mobile-top-bar > ul > li > ul > li > a {
color: rgb(225, 225, 225);
}
}
@media only screen and (max-width: 768px) {
#top-bar div.top-bar > ul > li > a,
#top-bar div.mobile-top-bar > ul > li > a {
color: #000;
}
#top-bar div.top-bar > ul > li:hover > a,
#top-bar div.mobile-top-bar > ul > li:hover > a {
color: #000;
}
#top-bar div.top-bar > ul > li > ul > li:hover > a,
#top-bar div.mobile-top-bar > ul > li > ul > li:hover > a {
color: #000;
}
}
.license-area{
color: #fff!important;
}
.license-area a{
color: #fff;
}
.license-area a:hover{
color: rgb(252,232,2);
}
: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 }
没有阅读过前文请见评论区或下方作品信息跳转。

01
嘭!嘭嘭!嘭!
无云的夜空之上,一连串沉闷的爆炸响起,整片整片绽开的细微粉末团反射着银白色的闪光点点,构建出铺天盖地的星空。
在这片下沉的星空之中,一道黑影穿行其间,带动气流浅浅搅动着,留下一道不太明显的划痕。那是只身披黑羽的巨鹰,鸟喙被特制的滤罩覆盖,奇特的机械目镜挂于眼部,搭载的摄像头旋转着,向下方闪烁着火光的烟尘滚滚探去。
“后室援助小队支援组已重新与[EN-511]建立信号连接,画面成功传回,完毕。”
远在无垠城的Beta基地会议室内,随着联络员的话音落下,一众高管纷纷向传回前线画面的屏幕投去视线。
原本还在播放着外围支援单位维持秩序的画面全被推向一角,自[EN-511]传回的影像占据了几乎全部的屏幕。
在屏幕显示的画面中,一个巨大的深坑赫然刻印于仓库一区,周边残破的铁皮与其中的货品伴随着尸体熊熊燃烧,大量的碎片与混凝土块漂浮于空中,诡谲的可视扭曲在空无一物的高处显现,俨然一副怪异的废墟景象。
漫天的惰粉与干涉现实的作用力在形而上学之境激烈对抗着,将传回的画面撞得抽搐,尽管模糊,却还是可以看到目标仓库仍然完好无损的矗立于深坑之中,被神秘的力量保护着。
在仓库的上空,一道道比深夜的漆黑更为至暗的闪光尤为显眼,如同撕裂空间的裂缝向着四面八方延伸而后又被拉回,围绕着代表2-PA19个体的小点。
“不是吧,这是在操控……黑色闪电?”帕拉斯研究所代表满脸的不可置信,显然没有料到对方的能力已经到如此程度。
“连这股能量都能够操控吗?有点意思。”斯威夫特的语气有些玩味。
“事到如今,你们打算怎么办?”在第一钢铁集团的强烈要求下,一名与监督委员G一起加入会议了解情况的董事会成员问道。
“请您放心,事情仍然在掌控之中,在一切结束后我们会找时间洽谈补偿事宜的。”监督委员G在一旁回答了董事会成员的疑问。
“监督者!连投入MJOLNIR B-2的导火索小队都不怕,这已经不是一般的威胁了,必须出重拳!”在看到屏幕中的惨状后,作为生命线兵团长的年轻男性再也忍不住心中的怒火,拍桌向着监督者-C喊道,“请下令让狂野战士出手吧。”
监督者-C对此缓缓摇了摇头说道:“做不到,我现在联系不上A,更何况让狂野战士进入闹市区可是违反协约的,我们现在的动静过不了多久就会惊动驻扎东京一区的UCWD,狂野战士过来只会让情况更加麻烦,不要着急……”
“可是……”
“陈,你够了,事情可还没结束!”从刚才就一直在一旁与小队沟通的里德打断了年轻男性的话语,“顾好自己吧,多调两个现实对策班过来,还有支援阵地,把运过去的惰粉扩散弹都用起来,全部打过去,全部!”
“这是要做什么?”
“要他碎尸万段!”
02
不安城的夜,没有一丝杂色与云雾,自其中溢出的静谧深蓝与席卷深坑的赤红火光相互吞噬着,令人炫目。漂浮的巨大碎块之间,黑色高能闪光跃动着,所到之处尽遗留下深邃的焦痕,形成不容接近的囚笼。
“破阵,搭把手拉我出来!”在一处残骸堆积而成的掩体后,被巨石掐在夹缝中的尖锥一边伸手一边用扬声器向着外边吼道。
一旁被称为破阵的黑人大汉见状将外骨骼机械臂猛地插进夹缝中,抓住对方只是一用力便将其拉出。
“还能打的喊一声!”不等尖锥站稳,公频里便传来了队长猎犬贝拉的声音,背景中时不时传来鬼哭狼嚎的粗糙风声。
“破阵。”
“信使。”
“精灵。”
“尖,尖锥!”缓过神的尖锥大声喊道,随后张望四周确认状况,刚刚由于黑色闪电的突然席卷,大量的碎石混凝土被抛洒出去,地面动荡不安,把集合的数人又给砸得分散开来。
“这里的欧里几得数值已经可以说是群魔乱舞了。”看着跃动不停的空间仪表盘指针,另一边的信使警惕道,“最多四十分钟,我们不能再待更久了。”
“副队呢?”队长问道。
信使闻言看向战场的中心,在层层环绕的碎片包围之间,还能够隐隐看到被电光围绕的2-PA19个体,其另一侧则是被控制住的属于副队的MJOLNIR B-2。信使见状还想要尝试进一步放大画面,但由于空间扭曲导致的光线异位而无法成功。
“真可怕啊,十分钟,副队的现实清新剂在几分钟前就下线了,现在完全是靠大量的惰粉和原液装甲硬撑吊着一口气。”
“是吗?我倒是有个计划。”队长说道,“消音什么的也无所谓了吧,所有人把你们身上的消音模块都退出来,记得把回路里的粉末也一并退出来。”
“然后呢?”
轰鸣自废墟之外骤响,矫健的身影踏着冲上残骸的悍马引擎盖出现于众人视线内,车灯映射下的漆黑剪影目光如炬,将双手狠攥成拳碰在一起,直视着电光中的罪魁祸首对小队下达了作战命令。
“大干一场!”
03
副队此刻的心情已经糟糕到了极点,尽管第一次与现实扭曲者过招缺乏经验,可当付出如此惨痛的代价后,该死的家伙却依旧在自己面前跳脸输出,平静的心态也禁不住开始沸腾。
在医疗的突击下,原本已经精神失常的吴子森意外的平静了下来,将周围原本落下的碎块重新拉起,配合着黑色闪电在自身周边建起防线。此刻副队的MJOLNIR B-2正被钳制在距离吴子森身前不远的空中,被后者平静地注视着。
“怎么?你又有什么点子了吗?”副队被盯得难受,忍不住找话道,虽然全身上下都不能移动分毫,可嘴巴与视线却依然自由,不知是否为对方刻意为之。
对面浮于半空的吴子森的情况比副队还要糟糕,甚至可以说是濒死,破损的衣物基本无法蔽体,全身的皮肤因为博罗利亚虹石的热浪与瓶装闪电的能量而大面积烧伤,耷拉着的左臂的大块烂肉已经将此处的神经回路完全切断,眼球因为先前的强光和暴怒充斥着可怖的血丝。
“唉,我只是想,反正我们两个也活不了多久了,不如来聊一聊吧。”看着副队突然惊愕的神情,吴子森忍不住轻笑道,“哈哈,我现在的态度让你很意外吗?”
“操你妈的,你他妈别乱咒我死。”副队从惊愕中回过神来回敬道。
“你知道,我们为什么要将红色的宝石恩惠于流浪者吗?”吴子森没有在意副队的回敬,自顾自地继续说道。
“还恩惠上了,这话讲得好听啊,不就是走私违禁物品可劲敛财吗?你他妈知道这八十多吨莫名其妙出现的火盐给社会带来多大的冲击吗?!”
“嘁,在后室里建立可笑的,不堪一击的经济体系也就你们联盟做得出来了。”吴子森语气不屑,右手的力道又大了些。
MJOLNIR B-2立刻做出了反馈,原液-钛/铍青铜合金装甲板拼命向外膨胀着,全力对抗着这突如其来却又毫无道理的,如同一辆辆高速行驶的车兽持续撞击着装甲每一寸的绝对力量,令内部的副队感到压力倍增。
“你脑子里是只有钱吗?这他妈不是重点,重点是你们这些火盐已经威胁了许多社区的治安!”
“你知道吗?某个团体曾经进行过一项实验,他们在无意中窥见了后室的真相,属于人类未来的真相。赤红的宝石于人类的劣根性中浮现,出生于后室的每一个角落,祂期待着我们之间的厮杀,毁灭,直到人类抵达那个不可反抗的,早已决定好的未来。”吴子森的话语流露着不可抑制的骄傲,像一个失去理智的狂热传教士般,“我,不,我们,不过是在加快这个过程罢了。”
“说的什么鬼玩意?你被洗脑得太严重了吧。”
如一盘冷水浇下,吴子森眼中的火焰顿时消失不见,仿佛放弃了说教般叹了口气:“唉,真可惜啊先生,看来我们在生命的最后也没法达成共识呢。”
话音刚落,MJOLNIR B-2的左脚猛地扭曲到不可能的角度,副队一瞬间面部表情扭曲,吃痛地张嘴哀嚎着。
“放心,我会让你尽可能痛苦地死去的。”
“额啊啊啊啊,狗娘养欠骂的玩意,你现在才打算杀我也太晚了吧!”副队虽然表情扭曲,但眼神中还是闪过了得逞的神色,眼睛直勾勾地看向吴子森后方。
副队话音刚落,一连串划破长空的呼啸声再次突兀响起,比之前任何一次都更为猛烈,更为不计成本,构成了磅礴的无意义合唱。
吴子森转身望去,瞳孔在一瞬间因惊恐而剧烈微缩。空中的曳光弹喷射着绽出光芒,随着一片又一片燃烧的星辰自对岸袭来,在数秒的飞跃旅程中跨过了倒映夜色的宽阔运河,于先前下沉的惰粉中击穿了空间内浓郁的混沌和扭曲,片刻间便已侵袭至跟前。
没有更多反应的时间,巨量的银白光点已经交织形成了毫无疏漏的火力覆盖网,誓要将所及之处的一切异常灭杀殆尽。
可公开情报:
城市索引(节选)
瓦特级一号工业区

黄昏降临,瓦特级一号工业区的庞然大物们开始逐渐平静。
迁走运河居民的计划执行至今日,两岸仍然存在着许多不愿离去的流浪者乃至小型社区,但要论最特殊的还数瓦特级一号工业区这个占地达到约八平方公里,横跨运河两岸的超级巨无霸。
作为计划开展以来运河工业污水的最主要来源地之一,瓦特级一号工业区一直被相关人员视为眼中钉肉中刺,但由于其独特的人文和经济价值,第一钢铁集团与其背后的缜械内教无论如何也不愿意放手,直到2027年在Level C-441得到一块划分地作为补偿的条件后,集团才同意了撤走大部分轻重工业分区的要求。
直到如今,瓦特级一号工业区只剩下星云运输,煤化工业,大宗货物寄存和维持运河下游港运行的功能,更多的区域则是在能拆的全部拆走后尽数荒废。不过靠着这些剩余分区提供的岗位,瓦特级一号工业区仍然养活了周边的数个小型社区,迁出计划执行后与运河距离最近的大型聚集地东京一区也与此区域来往密切。
……
04
一个个罢工已久的路灯在电流激发下不稳定地闪烁着,照亮了工业区某个大门前的一处空地,此处大门已经许久未曾使用,外面所连接的区域也是不安城早已荒废的地段。空地按照计划以隔离带和生命线成员划为数个区域,安置着撤离的大量人员。
在拼尽全力吼叫的引导员指挥下,撤离的人们爬上了生命线兵团和集团组织部紧急调遣的运输车,一辆接着一辆驶出了高墙间那扇略显破旧的大门。
“兄弟,你知道些什么吗?”某辆运输车被帆布裹罩得严实的后车厢内,一个有些灰头土脸的中年男人讪笑着向身旁白静的金发眼镜男搭着话,本来手肘想要顶过去,但或许是因为觉得自己身上太脏,他还是止住了动作。
“额,不太清楚……不过我猜大概是因为煤化工分区的哪个危险品车间泄露了吧。”蹩脚的英语让眼镜男理解了好一会才回答道。
“诶,我就是那边的工人啊?”
“这我不清楚了,也可能星云管道大规模泄露了吧,反正总署的生命线都来了那肯定是大事。”
“也是啊,这玩意跟天然气似的老危险了。”
眼镜男没有回话,他很清楚自己说的这些情况都不足以让生命线兵团也跟着出手,这次的事件一定牵扯到了多方利益。还不等其细究,一次剧烈颠簸将他拉出了思绪。回过神的眼镜男发现此时中年男人已经将脸凑向身后的帆布,那里不知何时出现了一个不小的破洞,碎布在狂风吹拂下疯狂摇荡,若有若无的展露着外界。见此情形眼镜男也凑了过去,向着车厢外的黑暗探出视线。
此时的运输车已经离开工业区近五分钟,现在正位于一处空旷而廖无人烟的别墅区,借助灯光辨识,他发现连绵的工业区高墙现在正好能勉强装进自己的视线中。
“结果这不还是什么都看不到吗?”中年男人泄气地说道。
刹那间,工业区亮起大片光芒,那片掠过天空的银白色光芒被窥见一角,吸引了眼镜男的目光。十数秒后,连续不断的沉闷炸响悠悠传来,引得周边几辆车内传来一片惊呼。
“这,这是什么?星云爆炸了?”
爆炸之后的异动并没有结束,自夜色中,眼镜男惊讶地分辨出了大量抽搐的巨大黑线,如鬼魅般一遍遍抚过那角白光,诡异至极。
“好了好了,不要乱看了。”一边的两名生命线成员本来不打算阻止,奈何中年男人实在不老实,把周围流浪者的好奇心都拉了起来,一个个跃跃欲试,再继续下去运输车说不定会侧翻。
眼镜男悻悻地收回目光,最后一眼看到的是运输车旁对向驶过的三辆装甲车,上面有着六角床头柜的标志与四字母涂装。
“唉,这都什么事啊?”
05
突破,引爆,前赴后继。
闪电以无法反应的速度一次又一次划过漫天的弹幕,庞大的能量贯入光点,令激发的战斗部原地炸裂开来,倾泻出如狂风骤雨般刺下的杀伤破片和惰粉。持续不断的爆炸强光刺激着副队越发收缩的瞳孔,曝光不足正将眼前吴子森的身影逐渐映得模糊不清。
吴子森好像对背后的弹幕毫不在意,只是一瞥就将视线重新放回副队的身上。
在他的身后,构成防线的混凝土块在与弹片的冲撞下炸裂开来,而后更多的碎块与弹片又被未知的力量卷起,朝着密集的弹幕冲去。本应通过爆炸扩散开来的惰粉被无处不在的静电场压制着,效力受到了相当的削弱。
好像刚刚的平静不存在一般,此刻吴子森的脸上再次满绽癫狂的笑容,嘴角强硬地咧到了不可能的程度大喊着:“这招对我已经没有用处了,说到底你们也不过是往外套个铁壳,垃圾,无论来多少都不可能是我的对手!”
还没说完,数千弹片的一道就在不经意间冲过了至暗电光的雷击,掠过不断卷起的碎片幕墙,突破静电场与形而上之力,猛地擦过吴子森的额头,狠狠撞上了副队的防弹面罩。爆炸动能下一千八百米每秒的瞬间速度让一切在片刻间就已结束,直到弹片稳稳镶嵌于其中,清晰可见的裂痕才如蛛网般慢慢扩散开来,惊得副队满脸冷汗。反观吴子森,血水同样顺着额头的擦痕淌下,将他的嚣张发言无情打断。
“喂喂喂,你倒是继续游刃有余啊,我还不想死。”副队有些失真的声音自扬声器传出,语气里充满了嘲笑的意味。
吴子森没有回话,如同人格分裂发作一般,擦伤的弹片又将他拉回了平静的状态。直到一缕鼻血留下,此刻他才已然意识到自己的身体正在止不住地颤抖,对死亡的恐惧和全力自救的肾上腺素正在压榨他的潜力,超负荷的现实扭曲发动在无意识中已经对大脑造成了损伤,大感不妙的瞬间止不住的冷汗自体内涌出,一切都无时无刻不在告诉自己已经濒临绝境的事实。
不知怎的,失神的吴子森颤颤巍巍地向副队伸出了右手,恐怖的冲击立刻按着MJOLNIR B-2的防弹面罩向内陷去,勉强保持粘合的碎片在瞬间就贴上了副队的鼻梁,裂痕中混合着汗珠与血液,只要再往下几分便会毫不费力地刺入副队的头颅。
但是吴子森做不到,因为刚刚伸出的右手与小臂已经消失不见。
轰!
下一刻强大的气流才包裹着巨响闯入耳道,将副队的意识震得迷离。一颗不知何处而来的大口径子弹带走了面前中年男人最后一条可用的手臂,没有叫喊和表情变化,吴子森甚至连头也没扭一下,只是在瞬间就调动雷电向着气流而来的方向扫过,片刻便留下了绵延数百米的恐怖切口与焦黑裂痕。
与此同时,施加于MJOLNIR B-2身上的压力骤然消失,笨重的机身直直向着地面坠去。机载智能意识到这是脱困的最佳机会,立刻调动机甲的后备能源向喷射系统全力灌输,橘红色光芒自所有喷口涌出,带着机甲倒飞出数十米,将吴子森的身影远远甩到身后。由于缺失自稳陀螺仪的引导,机甲很快便砸向了地面,但为了避免被再次控制,喷口仍在不停歇地运作,直到拖着MJOLNIR B-2又滑出了数十米后能源耗尽才罢休。
一旁恭候多时的信使见状立刻自掩体中冲出,一把拉出副队机甲后颈的拖绳向战场外撤离。
“很高兴见到你还活着,副队,精灵枪法不错吧。”知道副队通信系统已经损坏的信使用扬声器喊道,“接下来的战斗就看队长他们了。”
“嘶啊啊啊,慢点啊操你妈,再这样就快死了啊!”本来就断腿的副队此刻正在颠簸中不停地龇牙咧嘴,“这就是你们所谓的救援?为什么不直接给他头爆了啊?!”
06
“抱歉,射偏了,计划A失败,正在转移。”
借着脚下滑轮飞驰的精灵有些忌惮地看着身后自己刚刚待着的地方,留在那里的狙击步枪已经与掩体一起在电光中消失不见。
尽管精灵在开枪后的第一时间就起身逃离,但还是被闪电摸到了边角,仅仅是因此贯入机体的能量也立刻激发了保险系统,直到所有的保险电池弹射而出,这才堪堪保住MJOLNIR B-2的运行电路。
“没事,瞄准镜根本不能信的情况下你能打到目标已经足够强了,甚至连副队都救下了呢,接下来你撤退就好。”队长简单安慰着,同时向破阵与尖锥做出准备手势。
总的来说,现在的情况并不复杂,运河对岸的支援阵地弹药告急,火力覆盖对于吴子森已经没有太大的用处,外围的生命线兵团和其余支援单位都在忙于撤离群众,更大规模的杀伤性武器和强大的作战人员也因为多方制约、行政效率和层级距离的因素而迟迟不能到场,至此整个场上能打的就只剩下贝拉一行人了。
刚刚对精灵劈出的数百米闪电似乎让吴子森开窍一般,霎时间就在场地上拉起一大片随心而动的远距离闪电,进一步摧毁着周边的一切,甚至时不时向炮火袭来的对岸刺去雷枪,砸在原先搁置的货轮之上,远远便能看到甲板一片火光大作。
“尖锥,我上来了。”
一道闪电在击中一处仓库残骸堆成的尖塔后接地消散,在其不远处的掩体里,贝拉消瘦的身影一跃而起,后肢稳稳落在了尖锥背部的踏板,两手抓握着数个颜色各异的小型蓄电池,将其两两连接,用嘴巴咬着的胶布缠绕在一起。并不宽大的腰带上,别着几根白色铁质管状物,其中一个露出了印有“LS-S-O17”字符的一面。
“队长,太冒险了,这闪电的强度明显更离谱了啊。”尖锥试探地问道。
“不然你要怎么样,都这种地步了难道要跑吗?他要是跑去干些什么我们指定第一个被问责。我就不信他这电是用不完的!”贝拉咬牙切齿地训斥着,令尖锥心虚地缩了缩脖子。
“破阵,如何?”贝拉没有在意,转头问另一名队员。
被叫到名字的那台MJOLNIR B-2没有急着回话,而是展示着两手挂载的黑色破门锤,在臂中隐藏的液压杆爆发下,半圆状的锤头被猛地推出半米,隐隐还有搅动气流的风声。
“一切就绪,发射器都装上OC-244了。”
贝拉点头表示了解,随后用纤细的手指将缠绕好的电池抓握在右手,另一只手则接过尖锥递过来的防护头盔和反器材狙击步枪。在固定好枪身和头盔后,贝拉伸手在尖锥的头盔上用力拍了拍,紧接着握住了其后颈的把手。
没有多言,收到信号的尖锥一脚就把机动滑轮的油门踩到弹簧极限,三相异步电动机的运作效率在瞬间抵达了临界值,冷却风扇的声响还没发出,便立刻被机甲驰骋的呼啸完全掩盖。
贝拉只感到风声一紧,惨烈的仓库一区便已经完全展现在眼前,漆黑的电弧正如同大黾蝽的长腿自由滑行于视线之中,将大地当作画布绘制着抽象的符号,映衬着背景中熊熊燃烧的火焰。尽管两者距离大约两百米,但敏锐的直觉还是让她确定吴子森已经发现了他们。
没有迟疑,贝拉马上就将手中的电池分到两手远远地向前全部洒出,暴怒的雷电也在同一刻应声而至,从两侧向着三人刺去。
预期中的灰飞烟灭并没有出现,每一道黑光都像是饥肠辘辘的野狗般扑向了抛洒出的电池,其中的纯铜元件对于一切瓶装闪电来说都是无法抗拒的存在。出乎吴子森意料的是,接收着恐怖能量的蓄电池并没有像普通的往常那样过载炸裂,而是如无底洞一般消耗着黑色闪电的威力。
没来得及思考更多,疾驰的两架MJOLNIR B-2已经穿越了呼啸的电暴囚笼,将两者距离缩短到不足百米。吴子森一心急,赶忙将成吨的混凝土板乃至更下方的层级石块成片揭起,以可怖的速度投掷而去。
见状,紧跟其后的破阵配合着尖锥的减速冲到最前方,肩部发射器的装甲板应声抛射不见踪影,暴露出下方的十六联装弹药仓。
爆发火盐的推动下,八发弹头突破一次性塑料密封盖呼啸而出,外壳在空中快速分离,露出了内部看似脆弱的透明物体,齐齐向着混凝土板的中心位置冲去,那一个个弹头状的白玻璃在与混凝土块相撞的瞬间就密布裂痕,但裂痕又以更快的速度消失不见,随后全都不可思议地反噬到了混凝土板之上,毫无道理的破碎深入根基,最终被赶上的破阵一拳砸得粉碎。
更多的弹头被射出,双肩乃至腿部的发射器都被打空,冲锋在前的破阵手中,强悍的破门锤如同打桩机般来回伸缩着,将吴子森的抵抗尽数粉碎。
最后挡路的阻碍应声碎裂,两者的距离此刻已经不足五十,仅剩隔断的巨大深坑横在眼前。
眼见几人距离自己越来越近,对生的渴望令愤怒与恐惧在顷刻间涌入吴子森面无血色的面庞,大脑猛地一颤,异变再次爆发。
可公开情报:
[记录开始]
昏黑的房间内,仅有一束光自画面上方射下,照亮了一个被绑坐在木椅上的人,由于画面对着椅背的位置,只能看到背影,以及其黑色的碎发,画面中仅露出赤裸的上半身,具有男性的体态特征,全身布满夸张的伤痕,身体似乎是因为剧痛和愤怒而颤抖。
除此之外,房间内无法观察到更多细节,不过根据后续内容能够判断,房间的黑暗中还有数名人员。
未知男声:(轻声)安全吗?
未知女声:(轻声)是,现实稳定阵列正常运行。
未知男声:考虑得如何?
男人:想都别想,我绝对不会答应你们。
未知男声:为什么要这样难以沟通呢?这对于你我而言都没有好处吧。
男人:呸,少来这套,难道要我用这种能力去帮你们杀人,助纣为虐吗?!你们不如现在就杀了我,不然等哪一天我找到机会了,绝对要把你们撕成碎片!
未知男声:好的,我是否可以理解你的意思为,无论如何你都不会加入我们。
男人:对,你个蠢货!
未知男声:(轻声)把那些拿来。
未知女声:(轻声)是。
男人:你们又想干什么?!
无人回应男人,片刻后,一个小推车进入了光束照射范围,上面整齐摆放着许多粉白的胶囊,整整二十八个。
未知男声:你知道无忧胶囊吗?
男人:(剧烈挣扎)喂,你们要干什么?!要他妈的做什么!
许多双手自黑暗中探出,将男人猛地按在椅子上。一个拥有四只手臂的高大身影站在男人的面前,似乎正一边掰开他的嘴一边将胶囊塞进他的嘴里。
男人的挣扎与叫喊持续到记录结束。
[记录结束]
07
“又,又来了!区域内检测到异常切行频率场数量暴增!十二……更新,二十九……更新,三十七……更新,五十三!更新,更新,七……八十一……”
二号NCID保障车传回,D2点位空间出现精神影响性质,技术士官倒下!”
“四号和三号NCID保障车传回,D3和D4点位运行强度过大,正装及备用设备均过热!”
“空间观察保障二组传回,现场频率解码混乱!切行频率场基数过大!无法定位落点层级!”
“一号NCID保障车传回,请求自D1点位转移至D11点位!”
“空间观察保障一组传回,区域影响范围扩散!范围扩散!”
支援阵地临时指挥所内,一个又一个的坏消息几乎将开锁器机动支队指挥官的脑袋搅成浆糊。还没细想如何应对,不远处货轮的甲板就再一次发生了剧烈的爆炸,碎片夹杂着火焰抛射而出,让众人情不自禁地缩了缩脑袋。
“兵团长联系上了没?”指挥官看着旁边匆匆赶来的联络员问道,眼中满是止不住的期待。
“不行。”联络员说完前半句后又马上补充道,“副兵团长也不行!他们显然还跟着监督者A在后室的深处层级待着,现在你是此处开锁器兵团的最高权限指挥官。”
指挥官一瞬间面如死灰,但很快就拍着小脸振作了起来,熟练地用橡皮筋将背后披散的长发收束成马尾。
“向监督者C申请联络东京一区,请求他们加强空间井镇压级别!”
“立刻联络待命保障小组,把待命的三辆NCID保障车都调进来,分别部署至D5,D21,D31,优先保证外围支援单位安全撤离!”
“所有待命保障小组随行一支生命线兵团小组,做好应对措施,立刻将二号车技术士官转移。”
“三号和四号没错的话,所在位置都是在运河边缘,启用高温预案,无视损失,允许就地冷却!”
“一号车给我在原地待好,发送授权码,允许超频运行!”
“空间观察保障一组当前任务转为协助疏散一般支援单位,都给我张大眼睛,守好小命,别掉进那些莫名其妙的层级里了!”
得命的众人立刻开始按部就班地执行命令,刚刚还有些焦头烂额的临时指挥所在片刻间就又运转了起来。
瘫在椅背的指挥官长吐一口浊气,只感觉自己的头发又白了几缕,深沉的眼袋又黑了几分。自从兵团长和副兵团长带着一部分兵团成员,跟着监督者A执行所谓的机密任务后,一堆本来不需要自己承担的额外兵团事务就越来越多,本以为今天围剿恐怖分子的任务可以让自己好好休息一番,结果意外却接二连三的发生。
突然,眼前一杯咖啡的出现打断了她的思绪,指挥官稍微一愣,转头看到满脸敬佩的联络员。
“哈哈,懂事。”接过咖啡,指挥官打趣道。
“对付这种可怕的家伙,导火索小队能赢吗?”联络员没有接话,转头看向电光大作的对岸,甚至可以明显地看到空间出现了微弱的扭曲,如同热浪将远处的景象拍得发颤那般。
没有思考太多,看着指挥所内忙碌的众人,指挥官将手中的咖啡杯高高举起,自信地回答了联络员的问题。
“当然,为了人类更好的明天,我们不会输。”
08
一直以来心态平稳的贝拉现在也不免想要问候一下吴子森。
在一次次死亡的威胁下,这该死的现实扭曲者居然总是能够爆发出匪夷所思的力量。
刹那间,空间内的重力好似消失一般,原本还在向前冲刺的三人只觉得速度突然变慢,随后渐渐地向空中浮起,缓缓飞到深坑的上方,与吴子森处在同一个高度。
此刻,大半个仓库一区已经不复存在,数不尽的残骸,撕裂的地皮,与进一步扩大的深坑,大量肉眼可见的小范围空间扭曲几乎布满视线,将一切所及之物肆意地弯曲折叠,处于影响范围内的漫天惰粉在与这些异象的对抗中发出止不住的尖锐声响,如同耳鸣般充斥着大脑。或许是无法熟练控制这股能力,就连一直被保护着的目标仓库此刻也出现了些许破损。
之前,处于现实清新剂的保护下,三人周边的空间无法直接被吴子森所干涉。但此刻,就算是现实清新剂也开始在MJOLNIR B-2的全尺寸面甲显示系统上播报过载警告,红彤彤的窗口令尖锥心头一紧。
大量的残骸又一次自四面八方向三人撞去,尖锥与破阵立刻激活喷射系统向包围圈的上方闪避。冲在前方的破阵以自身为炮弹将一块块巨大的石块撞向一旁,众人因此得以逃出包围圈。
突然,破阵从背后将尖锥朝着吴子森的方向踹去,处于喷射系统加速下的MJOLNIR B-2飞快远离了破阵,甚至险些将贝拉晃下机甲。
还没反应过来,黑色的闪电已经划过破阵,机甲的喷射系统与引擎猛然爆炸,烟雾自每一条缝隙中涌出,机载智能无法响应,就连远在会议室内的生命检测系统也直接下线,整台报废的MJOLNIR B-2就这样加入了大片漂浮残骸的队伍中。
不过尖锥与贝拉并不知道这些后续,在瞥到电光的一瞬间他们就了然一切,一刻也没有为破阵的意外而哀悼,冲刺在前的尖锥立即对近在咫尺的吴子森举起手中的机枪,从枪上的下挂榴弹发射器与身上的一切弹仓中倾泻出所有的惰粉扩散弹,贝拉也在此时抓着狙击步枪一跃而起,跳到了飞过的一块混凝土板后。
惰粉扩散弹在飞出弹仓的片刻间便全部被碾碎引爆,密集地绽出大团的惰粉,什么也无法看清。集成摄像头在惰粉影响下雪花大作,接着一股无法抵抗的绝对冲击力袭来,将尖锥远远地击飞,胸口甚至还有夸张的下凹痕迹。
“你们没有打败我的可能,这一切都是注定的未来。”解决掉威胁的吴子森看向一旁无人的空中,那里的某片混凝土板后隐藏着贝拉,这种即将胜利的时刻似乎让他再一次感到飘飘然。
“还在说着那种故作高深的蠢话!我告诉你,才没有什么被注定的狗屁未来!”知道隐藏无用的贝拉顶了一下混凝土板令其缓慢地翻转,直到与吴子森正好上下对视。
原先别在腰间的白色管状物在瞬间便被用力抛射出去,贝拉一手抓着狙击步枪的枪管目不转睛地凝视着吴子森,双腿的肌肉青筋暴起。
见此情形,吴子森的不解仅持续一瞬,随后一股不安便立刻令其察觉,没有迟疑,黑色的闪电劈向了这道反射着白光的不安之物,在雷击下,管状物的铁质外壳立刻溶解粉碎,散射出其中漆黑如碳的粉末。
电流划过,在微秒级别的高速尺度中,粉末内部的袖珍空间已经自发坍缩,在挤出一切分贝能量的同时,那股毫无道路的恐惧感也一并侵袭到吴子森的内心。
没有更多的奇迹,恐惧的分贝炸弹在刹那间已贯入耳蜗,将意识炸得粉碎,将人格撞得四散,大量的星空在眼前诞生而后炸裂,天上地下仿佛都在全力放电。
面庞感受到一股剧烈的冲击,在安全头盔保护下依然感到不适的贝拉已经在这失神的瞬间抓着狙击步枪的枪管一下把枪托抡到吴子森的脸上。虚弱无比的吴子森立刻倒飞出去砸在地上,而紧跟着落下的贝拉一脚就把这奄奄一息的男人踩在脚下,黑洞洞的枪口猛地插进他的口腔。
“才没有什么注定的狗屁未来,”无视吴子森的扭曲面容,贝拉猛地扣动了扳机“只有依然存在的我们所创造的,才叫未来!”
炸响的轰鸣伴随着火光将吴子森吞噬,制退器的狂暴气流扬起了大片的尘土与血肉,后坐力将神经紧绷的贝拉猛地推开,失去支持的枪身砸在了地面。没了现实扭曲的影响,漆黑的闪电失去了踪影,那些漂浮在空中的所剩无几的巨石也纷纷落地,直到枪栓推出的子弹在地上彻底没了动静,回荡于夜空的巨响才终于缓缓消失,只剩下远处的运河传来若有若无的水声。
不安城的夜,被静谧的深蓝所填充,没有一丝杂色与云雾。喧嚣后,一切似乎终于重归于寂静。
“绵羊分队等待开锁器兵团镇压现场,确保现实清新剂运作稳定,准备包围仓库,把导火索小队的伤员全部抢救出来。”
会议室内,通过屏幕远远目睹一切的生命线兵团长正在激动地向现场下达指令,比身为导火索兵团长的里德还要积极。
“后室援助小队支援小组正在奔赴现场。”一旁沉默已久的后室援助小队代表又冷不防地来了一句,挥舞的附肢似乎在表达着它的兴奋。
“如此一来,事件也算是结束了吧。”帕拉斯研究所的代表说道。
“抱歉,我们的人员来晚了,不过还是希望能够出一些力。”后室家居生产厂的代表推了推眼镜说道。
屏幕内连线的第一钢铁集团代表已经与监督委员G先行移步到其他地方,而第一响应兵团长斯威夫特此刻也不得不离开会议室,去跟头条新闻团队准备明天面向社会或者阿尔戈斯之眼的说辞了。
“你也觉得不对吗?”看着沉默思考的里德,隐隐感到有些不妙的监督者-C问道。
“没办法,毕竟最终目标还没有抓到。”里德回复道,“不过,关于开锁器那边联系东京一区的事该怎么办?”
“我已经派人联系了,无所谓,反正不只是东京一区的UCWD,估计连我们这边的阿尔戈斯之眼总部都早就惊动了吧。”监督者-C的脸上浮现出一丝疲惫的笑容,挂着淡淡的鱼尾纹。
“快点,快让生命线的人离远点!我们需要在工业区内建立防线。”屏幕中突然插入一个不符会议室气氛的急切声音,属于开锁器兵团的屏幕中出现了一位面容憔悴的少女,正是此前在临时指挥所负责开锁器兵团的最高指挥官,“绝大多数异常暴增的切行频率场已经影响到层级的交叉点,正在不可逆地逐步稳定!”
“什么情况?”
“也就是切行裂痕,一大堆连接各种层级的稳定双向通道正在成形!”
与此同时,包揽着万千层级的后室内,一个又一个裂缝自虚空中突兀出现,如同破碎的玻璃裂痕般扩大,散发着热量与光芒,与混乱的磁场一同刺激着周边的一切。
看来这一夜的不安城,还不会太宁静。
作者:
U-Coocoo
图片链接:
图1:https://pixabay.com/zh/photos/planet-mars-crater-victoria-crater-11613/
图2:https://pixabay.com/zh/photos/nuclear-power-plant-cooling-tower-4529392/
正文所有明显或隐晦引用的文章列表:
层级
- Level 11 无垠城市
- Level C-28 令人不安的城市
- Level C-441 温和地带
- 总部
实体
- Entity 9 猎犬
- Entity 147 这只是时间问题
- Entity C-72 红外线鹰
物品
- Object 15 火盐
- Object 17 寂静汁液
- Object 21 Wi-Fi
- Object 32 现实清新剂
- Object 42 瓶装闪电
- Object C-29 原液
- Object C-36 空间仪表盘
- Object C-76 高级盖革计数器
- Object C-94 博罗利亚虹石
- Object C-98 协调后室时授时服务器
- Object C-117 MJOLNIR B项目(Object C-117-1)
- Object C-140 超能效电池
- Object C-211 切行阻断装置
- Object C-244 逆碎玻璃
- Object C-257 无忧胶囊
- Object C-276 惰岩
现象
- Phenomenon 5 切行
- Phenomenon C-19 空想症候群
- Phenomenon C-37 火盐生长
- Phenomenon C-78 切行裂痕
相关人士
- 猎犬贝拉
- 监督者-A Stretch(仅tag)
- 监督者-C Andrew(仅tag)
团体
- 探险者总署
- 阿尔戈斯之眼
- 后室援助小队
- 后室家居生产厂
- 帕拉斯研究所
- 第一钢铁集团(无tag)
- 深红之锤(无tag)
其他
如发现有明显遗漏欢迎补充,不确定则可在评论区询问,其他的文章问题也是如此,请务必告诉我文章可能存在的问题。
次回予告: 没有这玩意!
前篇:探险者总署作战记录#2.11