Level C-1809
: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 {
    --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 }
评分: 0+x

生存难度:生存難度:

等级等級 0

  • 安全
  • 稳定
  • 实体横行

如何使用:

[[include :backrooms-wiki-cn:component:level-class
|class=等级
]]


class 处的可用参数包括以下内容,支持简繁体及英文输入。
English 简体中文 繁體中文
0 1 2 3 4 5 0 1 2 3 4 5 0 1 2 3 4 5
unknown 未知 未知
habitable 宜居 宜居
deadzone 死区 死區
pending 等待分级 等待分級
n/a 不适用 不適用
amended 修正 修正
omega 终结 終結

该组件支持简繁切换,如下方代码所示:

[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级
]]


lang 处选择语言,cn 表示简体中文,tr 表示繁体中文,不填默认选择简体中文。

自定义等级

[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级名字
|color=#000000(带有井号的十六进制色号代码。)
|image=链接(至图片的链接。)
|one=在这
|two=随便
|three=放文字
]]

使用 CSS 进行自定义:

你可以使用 CSS 进行额外的自定义,将代码放入到 [[module css]] 中或者是放入到页面的版式内都可以。在这一组件中,不要把 [[module css]] 放在 [[include]] 里面,把它放在那个的下面或者是页面的顶部或底部。
将这些代码放入到你的页面/版式中以编辑所有的颜色,因为组件的 |color= 部分仅能控制背景:

[[module css]]
.sd-container {
/* 字体 */
--sd-font: Poppins, Noto Sans SC, Noto Serif SC;

/* 边框 */
--sd-border: var(--gray-monochrome); /* 大多数等级 */
--sd-border-secondary: 0, 0, 0; /* 不适用 */
--sd-border-deadzone: 20, 0, 0; /* 死区 */

/* 标志 */
--sd-symbol: var(--sd-border) !important; /* 大多数标志 */
--sd-symbol-secondary: 255, 255, 255; /* 4 级以上的是白色 */

/* 文本 */
--sd-bullets: var(--sd-border) !important; /* 点句符文本颜色 */
--sd-text: var(--swatch-text-secondary-color); /* 顶部框文本颜色 */

/* 等级颜色 */
--class-0: 247, 227, 117;
--class-1: 247, 227, 117;
--class-1: 255, 201, 14;
--class-2: 245, 156, 0;
--class-3: 249, 90, 0;
--class-4: 254, 23, 1;
--class-5: 175, 6, 6;
--class-unknown: 38, 38, 38;
--class-habitable: 26, 128, 111;
--class-deadzone: 44, 13, 12;
--class-pending: 182, 182, 182;
--class-n-a: 38, 38, 38;
--class-amended: 185, 135, 212;
--class-omega: 25, 46, 255;
}
[[/module]]

旧版颜色:

如果你不喜欢新版的样式,想要用回旧版的红色边框色,只需要在你的页面中与组件一同引入下方的代码:

[[module css]]
.sd-container {
--sd-border: 90, 29, 27;
--sd-image: 90, 29, 27;
--sd-symbol: 90, 29, 27;
}
[[/module]]

Level C-1809是后室C层群的第1809个层级。

描述

Level C-1809主体为观测上无边界的繁花原野,其地貌与温带气候下的开放式皇家园林高度类似,内部分布有少量的凉亭及回廊等,同时拥有数条河流,但据流浪者的报告,该层级内的建筑与河流都没有固定的数量和坐标,其分布似会在每个人进入时产生改变。向层级的某一方向观测,可在层级深处目测约15千米处窥见一座高大的灰白色四棱方柱形纪念碑。层级内天气系统恒定,总呈现白日或晨昏时段,未见夜晚,气温随时间变化在20到25摄氏度之间波动。空气湿度中等,透明度极高,含氧量较高,据估算约为30%左右。该层级可见大量来自不同季节和产地的鲜花同时在原野上开放,并在空气中释放浅淡的复合型芬芳,会令进入该层级的流浪者感受到舒适,愉悦,甚至亢奋。

该层级有较为丰富的物资供给,尤以各类制式武器和切行道具为甚,如火盐杏仁水生物枪瓶装闪电迁跃浆果等。以上物资多被发现在凉亭和回廊之类的建筑当中。

同时,该层级存在后室内多种常见敌对实体,且往往会表现出比在其他层级更强的攻击性。据研究表明,该实体可能并非正常意义上存在的实体,我们将在稍后的实体相关部分对此进行说明。

随着流浪者在层级中的探索和停留时间的延长,该层级的环境会在潜移默化中改变,主要表现为大片连绵的玫瑰花丛开始出现,花香气息愈发浓郁,且会必然的来到黄昏时段,晚霞将覆盖整个层级的天空,带给流浪者以某种色彩极为绚烂的震撼美感。

若流浪者在层级中向着纪念碑行进了一段距离1他们将来到纪念碑前,而此刻,该层级的环境将发生变化。

这一变化通常被描述为在极为短促的瞬息之间毫无征兆的完成,例如流浪者走神,打哈欠,揉眼睛的瞬间。

该层级的全部“地面”将变成青白色且有少量紫褐色沉积的类皮肤状质感,且经历了少量时日的腐败,略僵硬且失去弹性,触碰时能感受到皮肤下有轻微的气囊感。类似一张无限摊开的人皮,但即使在昏暗环境下,也仍然保持着苍白的色彩,似乎具有一定的自发光能力,但无法波及到周围的其他事物。对从该地面的采样报告显示,此物质与腐败早期的人类尸体的相似度极高,主要区别在于嗅觉感知上的不同,此时,该层级的地面仍然保留着先前类似花香的气息,且被描述为“浓郁的真诚而甜美”。

与此同时,天空的颜色将变得更加暗沉且单调,呈现出无变化的暗红色,正上方的天顶部分将有少量的透光感。

而原本流浪者眼中纪念碑所在的位置将出现一颗被刺穿的眼球,刺穿眼球的针刺触感类似玫瑰荆棘,高度约8米,底部直径约1.2米左右,而被洞穿的眼球直径约5米,瞳仁为蓝色,通常为仰望状态。针刺刺入刺出口皆无明显异常。瞳孔的另一端视觉神经,也和眼球一样被放大,相互交缠着盘在针刺上,末端拖在地面,延伸约1.5米左右。

当流浪者恢复镇定之后,本层的唯一智能实体“人类先驱”会从针刺的后流浪者的视野盲区走出。

层级效应:

“先驱者效应”

“先驱者效应”是Level C-1809内固有的渐进型生理和心理强化现象。该效应会在流浪者嵌入该层级后即刻产生影响,随着流浪者在层级内探索的深入逐步加强,其影响不可逆,在探索该层级的过程中持续存在。2

该效应可被大致分为以下阶段:

阶段一
生理层面:基础生理耐受得到可观测提升,感官锐化,体力增强,对物理性疼痛的耐受阈值得到大幅提高。

心理层面:自信心提升,探索欲增强,情绪状态趋于积极和略亢奋状态。

阶段二:

生理层面:疼痛感知进一步钝化,自我组织愈合能力加强至伤口新肉生长速度肉眼可见,加速至基准水平的300%。肌肉力量和耐性逐步接近人类极限。

心理层面:疲惫感和对战斗的恐惧感逐步降低,精神持续处于亢奋状态,且几乎无负面影响。

阶段三:

生理层面:对恐惧和疼痛的生理反应近乎消失。体力,反应力,力量等各项生理指标稳定于超越正常人类极限的水准。

心理层面:将清晰的感受到自身力量,且对自身能力进入极度自信状态,探索欲和对力量的渴求持续增强。

阶段四(通常为流浪者面对人类先驱时所处的影响状态):

生理层面:身体机能强化至难以用现有生理学知识解释的程度,但外表与普通人类无异。

心理层面:探索欲,自信心和荣耀感达到顶峰,但同样被认为逻辑思维和风险评估能力可能受到影响,表现为影响理性判断,比常人更易于进行高风险的激进行为。

实体

“人类先驱”

该实体外观为身着简欧复古礼服与部分盔甲装饰的类人个体,无明显性别特征。其面部大部分被红色玫瑰填充,这些花束将随着本人的状态变缓而呈现出生长与绽放的不同阶段。发生时对应花瓣会产生震动,故声音除正常人声外会伴有轻微的花瓣摩擦声。

人类先驱表现出随和而健谈的性格,尽管流浪者无法在该层级内部连接网络,但人类先驱本身似乎对外界发生的事情有所了解,且乐于和流浪者分享时事。它具有丰富的战术和格斗知识,会主动肯定流浪者探索致死的勇气,且乐于进行长时间交流。

在多位受访流浪者的印象中,人类先驱的说话方式被描述为一个真诚的年轻人而非强大的特有实体,它在与流浪者对话的过程中偶尔会像年轻人一样插科打浑,但总体上来说通常抱有礼貌甚至是敬重的态度。
在建立初步沟通后,如流浪者没有主动开启其他话题,人类先驱将从胸口取出一朵正在燃烧的玫瑰,向流浪者提出一个选择:“奇迹还是生还?”

选择“生还”:人类先驱将赠送流浪者一朵普通玫瑰3,除常开不败外与正常玫瑰并无区别。流浪者可请求返回任何已知层级,但永久失去在本层级获得的所有身体机能强化。

选择“奇迹”:人类先驱将赐予流浪者正在燃烧的玫瑰并使其与流浪者的身体融为一体。流浪者可请求返回任何已知层级,并且在接下来的18天内保留全部的强化状态,任务成功率与生存率将得到极大幅度提升,似乎受某种未知因果律保护。然而,18日期限后,所有选择该体像的流浪者均会因各种原因死亡,无法避免。

其他实体:

该层级中可见到绝大多数在后室中较常见的敌对实体,但在先驱者效应的影响下它们大多无法对流浪者造成有效伤害,因此被怀疑该层级的效应同样对实体有影响,但影响与对人类的影响不同。

基地,前哨与社区:

由于先驱者效应的驱动性质,本层级未建立任何长期稳定的基地,前哨或社区。

入口与出口

入口:

切行是该层级的主要进入方式。

  • 在任意非切行困难层级于负伤情况下撞击切入自身造成的生物血迹或尸体。
  • Level 11中进入一家格斗俱乐部,并选择印有玫瑰装饰的拳套攻击附近的沙包。
  • 在进行了高风险的冒险行为后,因意外切入该层级的概率将显著提升。

出口:

  • 在到达该层级50千米深处前,被实体击败会被强制切回随机安全层级。
  • 完成与人类先驱的交谈后,可以请求他将你送至任何层级。
: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 }

附录

对进入Level C-1809的流浪者的采访


  • 采访对象:流浪者 Lethnos 女士
  • 采访者:Noah 探员
  • 地点/联系方式:线上谈话
  • 采访时间:████ / ██ / ██

(电话接通)

Noah:这里是M.E.G.于level 1的前哨站,请问是Lethnos女士吗?
Lethnos:是。
Noah:请问您现在所处环境是否支持通讯?您是否愿意接受M.E.G.的采访?
Lethnos:可以,请说。

(风声在背景中隐约可闻)

Noah:据Meg在外执勤的员工所得到的情报,您在前些时日进入了Level C-1809,并在完成了与人类先驱的交谈之后,选择了接受奇迹,请问这一信息是否属实?
Lethnos:属实。
Noah:您现在是否仍如同奇迹中所描述一样,拥有超越人类极限的身体素质?
Lethnos:拥有,我几乎不会感到疲惫。
Noah:请问您的精神状态是否也受到影响?有表现出对高风险行为的倾向吗?
Lethnos:也许属实,在最近的数日里我拥有了远超以往的勇气和探索欲望,但我个人倾向认为,这是在我身体机能增强后,自然导致的,而非直接在精神上受到影响。
Noah:请问您可以详细描述此过程吗?
Lethnos:可以。我认为勇气和探索欲这一类品质是人天生所存在的,只是在以前的绝大多数时刻,我需要谨慎的评估风险,所以未能将很多想法实施,而现在奇迹给了我去冒险的资本。
Noah:好的。所以您的意思是您现在更加旺盛的勇气探索欲和对高风险行为的倾向,是因为您本身如此,而并非受到层级效应和奇迹的催化?
Lethnos:是。
Noah:好的。请问现在奇迹有表现出生理或心理上的副作用吗?
Lethnos:没有,我很好,无论是我的身体还是我的精神,都很好,我非常确信,这就是我想要的。
Noah:那请问您如何评估在18日后必定暴毙的代价呢?您身上有无某种预感或者迹象能证实这一点?
Lethnos:我想的很清楚,我知道死亡对我来说意味着什么,但我也同样觉得,在有些东西面前,生命的代价并不算什么。我的生理上和心理上都没有任何不适,我对死亡已经不感到恐惧了。
Noah:对死亡完全不感到任何恐惧吗?您认为这是层级的精神影响还是……?
Lethnos:是我的期望。
Noah:明白。但我还是需要详细的确认一遍,就是您是否认为您现在的所有心理状态和可能导致风险的行为倾向都是您本就如此,只是在身体机能获得强大后可以释放,而非精神影响导致的,是吗?
Lethnos:是,我确定。
Noah:感谢您的分享,最后一个问题,请问您可以阐述您当时选择奇迹的理由吗?
Lethnos:……可以。
(对方似乎有轻微的情绪波动)
Lethnos:长话短说,我在此前是个身体健康状况很糟糕的人,原本很难在后室存活,是我父母带我投奔的M.E.G.。他们也因此入职了M.E.G.开始参加工作,并教导我,我们现在是因为受到帮助而能在这个地方生存,希望我以后也能做一个能帮助他人的人。在后来的一次外出任务中意外牺牲。我原本想和他们一块去的,但是我在前一天晚上发烧,于是留在了Level 11的医院休息。
Lethnos:……我总觉得,如果我也去了,或许我能拦住他们,或许我能救下他们。但我没有去。我知道谈,如果可能没有意义,人死也不能复生,但我甚至连继承他们的遗志去为M.E.G.做点事情都做不到,更别说他们教导我的更伟大而更遥远的梦想,去做出一点贡献,为人做出一点贡献。
Noah:我明白了,所以您认为,Level C-1809是您的机会是吗?一个继承父母的遗志去为人类做出一点贡献的机会,哪怕代价是您的生命?
Lethnos:是。 除了父母以外,我没有别的亲人和朋友,我已经无牵无挂。奇迹对我来说只是一个可以让我燃烧出更多价值的机会。
Noah:感谢您的配合,祝你接下来的行程一切顺利。
(片刻沉默)
Noah:您和您的父母一样,都是伟大的流浪者,伟大的人。
Lethnos:……谢谢你,再见。

(通讯结束)

采访结束

流浪者Lethnos的回电通讯


  • 采访对象:流浪者 Lethnos 女士
  • 采访者:Noah 探员
  • 地点/联系方式:线上谈话
  • 采访时间:自上次采访18日后

(收到通讯信息)

Lethnos:你好,我是18日前和你们进行通讯的流浪者Lethnos。
Noah:稍等,请等待我核对一下信息……好的,身份确认,请问您有什么需要帮助的吗?
Lethnos:没有,只是18天快要到了,我猜你们可能需要我现在所能提供的信息。
Noah:您请说,以及如果有任何需要帮助的地方请立刻在通讯中说明。
Lethnos:我的身体和精神状态仍然非常良好,但我感受到一种身体由内而外的轻微溃散感,很轻,我不知道这是否是错觉。
Noah:请您继续,但我在最后强调一遍,如果您有任何需要帮助的地方,请立刻在通讯中求助并说明,并给我们你的位置信息。
Lethnos:并无这个需要。其实我猜我不会因为这种溃散而死掉,我想,进入Level C-507。我携带了摄像和录音设备。
Noah:……您确定要这么做吗?您是否是受到了Level C-1809的精神影响或只是出于某种冲动?
Lethnos:并不是。我确信我本来就是会这么做的,只是先驱者效应和奇迹给了我一定的勇气,让我去落实而已。
Noah:您真的确信您的赴死行为与Level C-1809的精神影响无任何干系吗?
Lethnos:我确信。探索本就是人无法掩饰的欲望,在这个……难以生存的地方向世界证明人本身是具有力量的是每个人在心中潜在的执念,每个人都会想要去这么做,只是我们对死亡的恐惧,有的时候会遮盖住这一切。这无可厚非,但,可以避免。生命如飞鸟掠过提供给了我这样一个机会,一个摆脱我们躯体上的孱弱和精神上的枷锁去证实人类精神最伟大的机会,这是奇迹,这是我想要的。
Noah:但即使完全失去对死亡的恐惧,死亡的代价也仍然是巨大的。
Lethnos:但仍存在更重要的东西。还记得吗?或许是奇迹带给了我超乎寻常的自信和勇气,我猜,我应该能在其中比常人走的更远。我将尝试整合尽可能多的有用信息,并提交给前哨站。
Noah:请慎重考虑。
Lethnos:我想的很清楚。话说您听说过一个哲学概念吗?人会经历三次死亡。
这是我的最后一天,按照时间来估算的话,我会在大约两个小时后感知到奇迹的代价,而化为灰烬,那是我生理意义上的死亡。
而在一段时间之后,你会忘记我,我认识过的所有人都会忘记我,这是社会学意义上的死亡。
而在某一个极其遥远的未来,我所留下的录像,我所整合出的资料,包括这一个的每一个通话的记录,都会在网络和现实中消失,这是我辩证学意义上的死亡。
但我想说,如果我整理出来的资料,真的有拯救过谁的性命,解除过谁的困境,鼓舞过谁的心境,那么我不在乎死了。
Noah:我认同您的理论,但我仍持我的观点,无论其目的有多么伟大,死亡本身都是极沉重的事情。
Lethnos:哈。不用尝试接着说服我了,从被赐予奇迹开始,就没有回头路了。
Noah:但请在最后想想,你想证明的是人类的意志和人与人精神的传递,当你证实的方式是通过得到层级与实体的赐福!
Lethnos:不用深究,首先,这是我的选择,是我自己嵌入那个层级,走到了层级深处,并且做出了我的选择,我有资格得到这个赐福,这是我应得的。其次……你会认为在探险的时候查看前人所留下来的记录,会影响你证实人类的精神吗?
Noah:荒谬的比喻!当然不会,但现在你的力量来源于你所要向其证明你力量的后室本身,而且您真的能确定你所展现出来的一切勇气,不是因为层级的诱导吗?
Lethnos:那奇迹也不会。人类先驱之所以被称为人类先驱,是因为TA本身也曾是人类,正如我所说的,探索的欲望和对人类的力量证明的渴望,在每个人心中一直存在,TA也只是在尝试以自己的方式为我们激发那种勇气而已,我是说,这只是一个机会。一位死去的人类前辈向我们提供的机会而已,我只是抓住了。
Noah:……请等一下,关于Level C-1809的实际危险性,我们仍将进行讨论和修正,这……等等,你说人类先驱曾经是人类?
Lethnos:是。
Noah:那请问您有向他询问过,TA是如何变成现在的存在的吗?
Lethnos:嘶……他TA太愿意谈这个,我就没有追问了。但我确信TA不在诱导我们,我能感受到TA的某种……真诚?好了,我的时间不多了,我要出发了。
Noah:请等一下……!
Lethnos:你说,这样我是否也算人类的先驱者了呢?什么是先行者,什么是人类的力量,我一直在向着世界发问,但是它好像并没有准备好一个答案,所以现在,我要去论证了。再……拜拜。

(似乎是切行带来的白噪声)

(摄像设备启动的声音)

(通讯结束)

M.E.G.于Level C-507的前哨站在约两小时后收到了一份长篇报告,没有署名。

此后,M.E.G.方仍尝试过联络该名流浪者,以官方和私人的多种途径,但均未有所成效,在Level C-507内部搜索时也未发现遗体。

故推断,该流浪者已经死去,永远怀念,我们将铭记Lethnos女士的牺牲与贡献。


流浪者Lethnos的回电通讯


  • 采访对象:人类先驱
  • 采访者:Noah 探员
  • 地点/联系方式:Level C-1809 “生命如飞鸟掠过"

Noah:看来我这一路走的太赶了……人类先驱先生,请允许我这样称呼您,感谢您愿意接受这次采访。首先,我需要对您的身份进行定性,您是该层级的特有实体,还是这个层级的意识?又或是其他的存在?
人类先驱::称呼不重要,你要是乐意的话,叫我鲜花……算了,这个还是别叫了。我不太清楚我这种状态确切应该被归类为什么,但我可以肯定的是,我不是常规意义上的实体或者层级意识,我像是一个……执念未尽的亡魂?
Noah:那您与这个层级存在怎样的联系?
人类先驱::(面部花瓣颤动)这个层级其实是我执念的构成,可以随我的思想而变动,哦,不过我一般不变动……还是很费精力的。
Noah:所以您创造了这个层级?
人类先驱::你可以这么认为。
Noah:您能离开这个层级吗?离开这个层级,是否会对您自身产生影响?
人类先驱::其实对我来说基本没什么影响,但会导致该层级里面的先驱者效应消失,再加上这里的实体很多,所以会对流浪者来说很危险,我一般不离开。
Noah:明白了,请问我可以问一个有些冒犯的问题吗?
人类先驱::可以的,不用担心,直接问就行!
Noah:除了可以完全掌控这个层级以外,您是否具有其他的破坏力?
人类先驱::坦诚来说……有的,(面部玫瑰花略微绽开,随后又收拢)理论上来说,摧毁街道和城市对我来说不是难事?不过你不要露出紧张的表情,这其实是个好消息,因为这能更好的说明我对你完全没有敌意啊。(花瓣摩擦发出类似轻笑的声音)放心,勇敢的流浪者。
Noah:我明白……我从其他来到过这个流浪者口中,听说过,您也曾是人类吗?
人类先驱::情况属实。
Noah:请问您方便谈及您是如何成为现在的……存在的?
人类先驱::方便,但我也不清楚我是怎么变成这样的……我建议还是不要找复刻的方式了,许多选择过奇迹的流浪者都问过我这个问题,然而……如你所见,这里还是很空旷。
Noah:我不会向M.E.G.提议拿流浪者的生命冒险的。接下来,我将向您询问一些有关该层级内现象的问题。首先,在我刚进入时该层级的外在显示为一片皇家园林,但在我探索到一定深度之后,却变成了现在这样……诡异的场景。请问这种变化的来源是什么?
人类先驱::你在外面看到的花园其实是经过美化后的成果,如果刚进来就直接看到现在这样的场景,或许对流浪者精神冲击还是有点太大了……所以我对此进行了美化。
Noah:好的。另一个令人好奇的现象是,在我探索该层级的过程中,我感受到了某种身体机能的增强,我感受到我的力量,耐力,柔韧性都得到了极大的增强,从精神状态上来说,我似乎感受到了超乎常人的勇气和亢奋感,让我在面对实体时毫无恐惧……以上这些都是该层级的效应所导致的吗?
人类先驱::是的,先驱者效应。人的躯体过于孱弱,而精神又被对死亡的恐惧的枷锁所束缚,所以,我创造了此种效应,让人精神中的勇气和向世界证明力量的欲望,可以短暂的超出躯体和恐惧的界限自由生长。
Noah:可这力量是否有所代价?
人类先驱::不要担心,在层级之内,这种效应的影响只是使用了这个层级的力场和一点我的力量,这种损耗对我来说是可恢复,而且可以忽略不计的。
Noah:请问在离开这个层级之后呢?
人类先驱::那这份力量的走向,将取决于你的选择……你的表情看起来有些不适,稍等一下,我看看……(下半张脸面孔的花朵突然缩小,然后像是被分开的帷幕一半向两边褪去,露出下半张面孔,肤色苍白,薄唇微微抿着,含着笑意)这样会让你觉得好受一些吗?
Noah:确实……谢谢,所以你也可以自行拟态你的外貌吗?
人类先驱::是可以的,但是如果要化形成别人的样子,对我来说的消耗也有点大,这对我来说很不熟练。
Noah:那您生前的样子可以化形吗?
人类先驱::可以,但我不想。那总会让我回想起一些……不太好的回忆。
Noah:明白了。请问现在可以谈谈关于离开层级后力量走向的事情了吗?
人类先驱::当然可以,(微笑,张嘴说话时可窥见口腔内部并没有正常人应有的牙齿和舌头之类的口腔结构,而也是由花朵构成)选项有两个,奇迹与生还。如果你选择奇迹,(左手上生长出一朵燃烧的玫瑰,随后悬浮在手心中)你将带着这份力量离开,我会庇护你,尽我所能,让你在18天内,成为某种意义上的神明,然后在第19日的黎明死去。而如果是生还,(抬起右手,上面悬浮着的是一朵普通的玫瑰,沾着露水,不知是否反射了苍白地面的光泽,闪着冷色的光)离开,只是普通的离开,没有代价,同样也没有任何赐福,此后,漫长的余生中也不会再次面对这个选择。这也没什么,他们只是重新变回了人,承认了力量的短暂,回归漫长普通却又正常的可贵的生活中而已。
Noah:这奇迹的代价……是否有些过于沉重了?
人类先驱::确实如此。(面孔上的玫瑰花短暂的闭合回到花苞状态,随后又重新绽放)我只能确保的是,奇迹赋予人的希望会让第19日的黎明到来之前的人沉浸在希望当中,不必承受对死亡痛苦的煎熬。
Noah:所以,奇迹可以在某种意义上来说,消除人们对死亡的恐惧,是吗?
人类先驱::是。选择奇迹之后,人就注定要死,曾有人尝试过打破这个诅咒,比如卡着点,吞服大量的阳光胶囊,或者去level 11的医院,但这都不会成功的。为了让他们在最后18天里面能真正的回忆起自己的愿望,去做那些自己想做的事情,我会暂时麻痹他们对恐惧的感知,我不希望他们在最后的日子里面惶惶不可终日。
Noah:但这并不能掩盖死亡的代价。
人类先驱::我明白,但死亡的代价虽然巨大,却不是无法逾越的。又或者说,死亡在某些人眼中并没有那么残酷。你听说过一个哲学的概念,叫人的三次死亡吗?
Noah:我听说过。
人类先驱::有人和我提起过第四次。即使在生理学上心跳已经停止,即使这个人再也不会被其他人所提起,即使任何能证实那人存在过的痕迹都已经消失……但他还有一种活着的方式。
人的第四次死亡,是他所相信的和所证明的都被证实为虚假,他的事迹即使被提起也不再得到众人认可,他的价值观被认为是异端的那一天。
那是人意志上的死亡。
但是人的探索永不止步,人类永远不会停止向世界证明,所以,这一次他的意志将得到永存。
我不记得是谁和我这么说的了,我依稀记得在我生前好像也有人与我说过类似的话,那个人似乎死的比我晚些,但我好像也不记得他长什么样子了……
Noah:(心中大概有了猜测)那在第19日的黎明会发生什么?
人类先驱::(短暂的沉默)那些被激发的燃烧的潜力,会从内部瓦解,被麻痹的痛苦会在一瞬间回流至人的躯体,以千百倍的方式完全摧毁其肉体和精神,随后,属于奇迹的极高纯度的能量会将人的肉体由内而外的粉碎成灰烬,在空气中燃烧散去,以上这个过程会发生在五秒钟之内。
Noah(感到一阵寒意):选择奇迹的人,多吗?
人类先驱::比你想象中要多得多。我请其中不少人留下了一些笔记,可以过会给你看看。(声音放轻)你知道的,能来到这里并走到我面前的流浪者心中往往是有重要的执念的。
Noah:……都死了?
人类先驱::都死了。

(长久的沉默)

Noah:我知道这个问题,可能有些冒犯,但是为了后来者的安全着想,我必须问,您真的确定他们是自愿选择奇迹,而并非受到先驱者效应的影响,而进行了某种冲动行为吗?您这……
人类先驱::我确信是的。我知道作为人,躯体的孱弱,对死亡的恐惧,都给我们带来了太多的局限。我知道,我相信他们想对人类做出一点贡献,去看到那些可能前人未涉足的更遥远的天,只是在恐惧,在恐惧死亡的代价,在自我怀疑,在自我怀疑人类脆弱的身体能否完成这一念想。我只是,作为一个也曾这样期盼着的死者,去为生者提供一个机会而已。
Noah:所以,你确信流浪者是自愿选择的奇迹?
人类先驱::当然。(下半张脸露出一个浅浅的微笑)就算没有下定死亡或是永远逃避的决心,(向对方伸出一只手)也可以握住我的手,我将引导你,做出你真正想要的选择,无论如何选择,你都是伟大的,不管是以人之身,成神之救赎,还是绝望的生存本身都是一件伟大的事情。如果你想要一条漫长的生命,我当然可以带着你平静的无事发生的离开,永远不再涉足奇迹的神迹。但如果你的理想需要的并非是漫长的时间堆积可以达成,我也将赋予你向其靠近的力量,并为你抚平你的恐惧与悲伤。
Noah:(犹豫了一下之后抬手握住对方的手)真是……壮烈的选择。您为什么要提供奇迹这一选项呢?出于您的个人角度。
人类先驱::我是一个死者,一个愿望落空的,在生前被死亡的恐惧淹没的死者。我尝试过那么多活下去的方法,但最后却还是死于人本身躯体的孱弱,我再怎么尝试,我也无法凭借我的肉身去直面一些恐怖的存在我现在只是一个被执念牵在这里的亡魂,我还没有做到的事情……太多了。我的遗憾,我的执念,还有很多,很多。我不希望后来的流浪者也只能因为自己身体的限制止步于此,我希望……人的愿望不要再落空了。
Noah:……您……
人类先驱::我理解你现在会对此表达困惑,我确实,也有自己的私心。(双手捧着对方的手,语气虔诚)我已经死去了,但我希望生者,还能向前走去。你们还活着,你还活着,你是我的希望。
Noah:……
人类先驱::我不想再看见遗憾了,仅此而已啊。(语气温柔而悲伤)我将机会摆在你面前了,现在请问,勇敢的旅人啊,在命运的岔路口,你将走向何方?

(TA抬起双手,左手上的玫瑰如同火焰般明媚的跳动,右手上的玫瑰则闪烁着晨露冷白的光芒,尽管上半张面孔仍然被鲜花覆盖,但Noah能感受到,一种温柔,悲伤却又充满着真挚的目光,直直的看向了他。)

通讯结束












我收集了很多人的笔记,有他们做出选择时的,也有他们其间回来与我倾诉的感想,亦或者在他们生命的最后,我主动去找到了他们。
再看看吧,每一份笔记都来源于一位逝者,读一遍,让这些人为你活一遍,去感受他们的生命是如何飞走的吧。

18天……听起来很好,如果这18天真的是无所不能的话,足够我做很多事了……而且不一定会死,对吗?阳光胶囊……特殊层级……我应该总有办法活下来吧?
感谢您给我这个机会,生命的长度对我早已毫无意义了,这18天对我来说意味着是我可以去冒很多以前没有机会冒的险,去得到一些常人难以得到的讯息,也许这将帮助我帮助到其他很多人,只要有人因为我提供的讯息活了下去,这一切对我来说就是有意义的,相信对您也是。

这是我的第18天了,我去了日落沙滩,我没有在使用我的力量干任何事,我只是捡起一根树枝,在沙滩上写了一首长诗,感受着海风和海浪的气息,等待我与带着咸味的海风融为一体的那一瞬。

我不想签下我的名字,我选择这份奇迹的原因是……我的仇恨。我不能再放任那个杀死了我姐姐的人继续活着了!我要杀了他……我一定要杀了他!
我得到这份力量,已经有五天了。我认真的考虑过我为什么要得到它,我也不在乎我的结局,我早已是重病的垂死之人。但……让我痛苦的是,其他人看我的眼神。他们的目光中充满着恐惧和嫉妒,哪怕他们知道我为此付出的代价。但我想他们应该理解错了,我付出的另一份代价是……另类和孤独。
在18天后死去,值得吗?我想这当然是值得的,力量就是生存的权利,如果我注定要死,我要做那颗燃烧殆尽的流星,我要划过所有人共有的天际!我不想死在阴暗的角落里!

拒绝者也有权利在这里留下笔记吗?哦,你帮我写了,感谢。我拒绝了这份力量,我也见过他人为了得到力量,不惜抛弃道德底线,他们都死的很惨。我不想变成怪物,尽管我弱小,但我还能期许我有着漫长的未来,作为人的未来。

这是我得到这份力量的第16天……来不及了,我对日出感到恐惧,或者说我对一切代表着时间流逝的东西感到恐惧,日出对我来说不再意味着新一天的开始,而是在告诉我,我离死亡又近了一天。

这是我18天来用这具身躯走过的很多常人难以深入的层级的相关信息,我没有时间了,请您帮我将这份资料写成书,发到meg或是其他后续组织的网站上,我希望这些东西能帮到更多的人。

我得到了这份力量,但我没有做任何事。我只是看着,看着其余人向我乞求,向我啼哭,甚至向我痛斥。我不拯救任何人,也不去杀死任何人,我只是去当了一下18天的神明,在18天后消失。然后毁灭我留下的一切痕迹,他们甚至不确定我是否真的存在过。

我愿意写下我的名字,我是Lethnos。我选择力量的原因是……我真心的渴望这份力量,我的名字是一个英文合成词,既包含美丽的意思,也包含脆弱的意思,如同人的存在。但是我……深刻的憎恶着弱小的自己,我一直想要成为一个伟大的人,而这个机会真摆在我的面前。我愿意为此付出代价,这是必要的代价。

我感受到了……我已经在提前支付我的葬礼费用了。

哦,我又要写了吗?我是Lethnos,尽管并没有不尊重您的意思,但我在最后选择退回了这份力量,原因是我最后选择以我纯粹的人的身体,去步入群星。我的时间不多了,不写太多了,再见。我没有遗愿了,我已经将自己的骨灰撒进了星空。

我是meg的特工,我是Noah。
我想起我曾经见到过在层级影响下精神失常的人,我想我现在的精神也失常了。我翻阅了前人的笔记,我想我深刻的意识到了,生命是多么的脆弱。人的生命就像鸟一样,还来不及我靠近,仔细观察,就飞走了。我的心情很复杂,当我翻阅下来时,我想我能看到在这些短短的文字后面,站着一个又一个活生生的人,在我面前,像鸟一样的飞走了。
我亦如是。

18天后,坟墓见。


除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License