Level Mt 26

: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 }
评分: +2+x

##000000|时间:2026年5月19日12:51
一通流浪者与M.E.G.的对话:


M.E.G.:您好,这里是M.E.G.,请问有什么可以帮助您的吗?

流浪者:我这边可能发现了一个全新的层级,这个层级我在之前的文档上面也没有找到相同的层级,请问可以汇报给你们吗?

M.E.G.:可以,麻烦提供一下本层级的入口。

流浪者:我就是在不夜城的一块地方看到了一个向下的楼梯,那个向下的楼梯好像是挨着某栋写字楼附近,我当时以为那个是后室地铁,向下的楼梯那边有个箭头,我继续往下走,以为我会来到后室地铁,走着走着我就突然卡到这个地方了。

M.E.G.:再麻烦描述一下你身处的环境。

流浪者:呃,我想想……(沉默20秒)我这个地方还算安全吧,没遇到过实体。环境有那么一点点破旧,但也不至于造成环境危害,我认为就是一个主要的楼梯间,然后通过走廊过道再延伸至各个小房间。我看那个楼梯间一眼望上去好像特别多层,然后我从楼梯间那块地方往下面看,好像能看到类似地下停车场的区域。光线也挺暗的,充斥着一股阴森诡异的绿光,房间的温度有那么一点冷,可能是十几度那样,并且充斥发动机等噪音,烦死了!

M.E.G.:我们能理解您目前的处境,我们也感到抱歉。

M.E.G.:好的辛苦您了,鉴于您那边情况还算比较方便,您可以使用手机或者电脑来描述一下此文章吗?如果您撰写的文章真实有效的话,我们会给予3瓶350ml的杏仁水以及100g皇家口粮的奖励,您看可以吗?

流浪者:应该可以吧,我先试着写一下吧,但我应该不能提供太多信息。

M.E.G.:没关系,只要有一定的真实有效数据的话,我们还是会遵守承诺给予奖励的。您那边还有什么需要报告之类的吗?如果没有的话,可以先挂断,如果再有有效信息,可以再次拨打电话告诉我们。

流浪者:行吧,我先试着探索一下吧。


(电话挂断)
通话时长:03分49秒##

    • _

    生存难度:生存難度:

    等级等級 1

    • 安全
    • 稳定
    • 极少量实体

    描述

    Level MT-26主要表现为一个的楼梯间再延伸至各个房间的样子,楼梯间由灰色的瓷砖铺成,温度应该保持在十几度那样子吧。楼梯间均有扶手,扶手可能为铁或者其他等不锈钢的材质。##每一层的楼梯间应该都有走廊过道,然后走廊过道再延伸至各个小房间,楼梯间总是充斥着一种诡异的绿光,这里有非常烦人的电动机以及蜂鸣器的噪声,特别吵就对了。
    我总是想控制我自己强制睡觉,可是我发现我在这里一整天睡不过两个小时,精神也特别疲惫。
    我原本有个背包里面充满物资的,但是来到这个层级之后,我发现我突然丢了很多的东西,保守估计我40%的东西都没了。我的杏仁水,巧克力,罐头以及手电筒等等,这是层级的性质吧,挺倒霉的感觉)。

    实体

    我目前还没有发现,这里就只有我一人,我好害怕。

    基地与前哨

    我目前没有发现。

    入口

    我也不知道还有什么其他的入口,反正我是从Level 11的写字楼附近的一个地下楼梯走进去,然后就来到这个鬼地方。

    出口

    我正在找,(我想起来我的背包里面有个签名,但不过在这里没有用。感觉本层级似乎屏蔽了特殊切出方式)。或许我也不能一时半会走,我还要给M.E.G提供有效的线索,可能M.E.G.那边需要我帮忙。

      • _

      今天是我第一次来到这个层级,我原本在不夜城那边,我在一栋写字楼的附近看到了一个向下的楼梯,我还以为是地铁入口,我原本想要去后室地铁的,但我来到这个鬼地方。
      我打开背包,发现我的背包里面有很多东西都已经丢了,我只有仅剩的一点物质,背包里有个手电筒,我感觉环境暗,我就打开结果那个手电筒直接爆炸了,妈的吓死我了,这个狗日的层级性质,跟Level 6一个样子。我用手机与M.E.G.联系,他们叫我在这里写篇文档来描述这个层级,最后我同意了,虽然说我写的文章质量不太好,但不过能写一点是一点吧,毕竟他们应该可以给我奖励,时间不早了,我这边天黑的很,我还是先睡了。

        • _

        生存难度:生存難度:

        等级等級 1

        • 安全
        • 稳定
        • 极少量实体

        Level MT-26是后室MT层群的第26层。

        描述

        这里大致是一个楼梯间通过每层的走廊过道延伸至各个房间,楼梯间温度保持在17~19度。环境充斥着一种诡异的绿光,本层级充斥着一种马达发动机的噪声,尚不清楚噪声的来源。
        楼梯间由灰色地砖以及白色的粉刷墙壁布置而成,在楼梯间的部分地方白色的粉刷墙壁可能会有破损,注意楼梯间的杂物,他们有可能会把你压住。
        每层楼基本上都有走廊过道一般来说,走廊过道通常会延伸2~4个房间,房间里面温度不一,但大多保持在19~25摄氏度之间。
        本层级资源匮乏,你卡入这个层级的时候,很多资源都会莫名的丢失。我尚未找到任何有效的资源,我在这里只找到了一些过期的食物。

        实体

        暂未发现。

        基地与前哨

        暂未发现,但我猜测以前有可能有。

        入口

        Level 11一栋写字楼附近的楼梯一直往下走。

        出口

        暂未发现,本层级似乎无法使用特殊方式逃离,至少我带的签名没有任何作用。

          • _

          ##000000|时间:2026年5月23日17:40


          M.E.G.:**,您目前还在吗?

          流浪者:在的。

          M.E.G.:目前正在派成员打算进入Level MT-26,您之前所说的入口我们已经找到,如果描述的情况属实,我们会给予350ml的杏仁水和100g的皇家口粮作为奖励。

          流浪者:你注意一下,我来这个层级的时候,我的背包就莫名其妙丢了很多东西,我感觉你把杏仁水以及皇家口粮送进来的话可能会造成丢失,并且我和另外一名流浪者,到目前为止没有发现任何一个出口!!!我在这里都要崩溃了真的。

          M.E.G.:这些都不是什么问题,我们在这里会先派两名成员进入你们所在的层级,他们大概率能帮助你很多。

          流浪者:好吧,我知道了。


          (电话挂断)
          通话时长:01分14秒##

            • _

            生存难度:生存難度:

            等级等級 1

            • 安全
            • 较稳定
            • 极少量实体

            Level MT-26是后室MT层群的第26层。

            描述

            Level MT-26是一个主要为楼梯间为中心向外延伸若干个房间的层级。本层级首次上报于2026年5月19日。(但日期不代表首次被发现日期,推测该层级首次发现时间约为2019年1月至2021年4月。)

            到达Level MT-26时,流浪者普遍出现在一层,一层是目前勘探最完全的地方。

            本层级大部分楼层具有较弱的WiFi,但可以保持通话,短信发送,但无法支持大型游戏正常游玩。本层级允许拍照,但相机所拍摄下来的画面画质模糊颜色暗淡。

            S-502%20P1

            某卧室的电子时钟

            时间遵循类似前厅的昼夜循环,但一天的时长与前厅有所不同,本层级一天为36小时,[其中白天14小时(6点~21点),晚上22小时(21点~6点)]。

            本层所携带的任何钟表,或层级内的钟表(如电子表等)皆会因层级性质而变为36小时制,且电子表会持续发出微弱电流或嗡鸣声。

            楼梯间

            S-502%20P2

            17层的楼梯间

            S-502%20P3

            39层的楼梯间

            楼梯间温度一般为18-20℃,空气中弥漫着一种劣质空气清新剂的味道。墙壁为白色正常粉刷材质,部分表面具有明显裂开的裂痕,沙土,红砖等粉末可能会从裂缝处掉到地板。楼梯间的地砖大部分铺设淡灰色地砖,部分地砖已经部分破损。

            楼梯间整体光线昏暗,空间内散发出一种诡异的绿色光。后经查证,绿色发光源是来自楼层标识牌,且楼层标识牌含有少量低放射金属。楼层标识牌包含可能含有放射性金属,在衰变过程中产生的轻微射线,持续散发出微弱的绿色光源,且辐射处于较低水平,但长时间(约超过3分钟)靠近在楼层标识牌的流浪者,会出现轻微乏力,恶心呕吐的辐射不良反应。

            本层级的噪音主要来源有蜂鸣器,马达和机器等运转的声音。声音响度基本在55~75分贝。长期处于此环境中,会让流浪者造成听力损害。甚至影响精神以及心智危害。

            部分楼层的楼梯间会有极多的杂物,杂物包括玩具、金属制品、数码产品等。以及部分过期物资。杂物堆一旦坍塌,可能会导致流浪者的挤压伤害,甚至因此死亡。

            每过大约9个小时,楼梯间就会发生一次风格变化,且位置也会变化,例如墙面或地砖由崭新变为破旧。流浪者有在变化时期卡入墙壁或者掉入虚空的可能。但是变化的位置幅度偏小,位置变化基本不超过30cm,只要不贴紧墙壁,就基本不会因不稳定结构而卡住墙壁或掉入虚空。

            楼层层数 层级影响 氧气浓度
            50层及以下 噪音开始出现,墙面地面少量破损 约20%
            50~99层 拍摄画质开始模糊,噪音逐渐放大 约17%
            100~199层 氧气浓度开始降低,开始出现敌对实体 约15%
            200~400层 环境破损更严重,拍摄画质更加模糊 约12%
            400~500层 拍摄设备无法工作 约9%
            500层以上 目前到达500层及以上的4位流浪者均已失踪 预测低至约6%
            S-502%20P4

            目前所拍摄的最高的层级一处极度虚化的楼梯,疑似拍摄楼层为320-360层

            (楼层越高,噪音越大,环境越破败,拍摄画质越低,氧气浓度越低)

            目前已有至少11人失踪于Level MT-26的400层以上部分,流浪者应避免去往400层及以上的层级。

            氧气浓度会随着楼层高度越高而逐渐降低。越往高处氧气浓度越少,长时间停留在氧气浓度低的地方会出现头晕、呼吸困难等症状。若氧气浓度低于一定水平流浪者可能会因缺氧而失去生命体征。

            走廊

            IF-404%20P5

            22层的走廊过道

            走廊普遍长4-8m,宽1-2m,走廊普遍延伸2~4个房间,地砖的铺设和墙面的粉刷工艺都与楼梯间布局高度相似。部分楼层的天花板可能有金属制的管道暴露由于大部分的管道年久失修,部分管道可能会滴落铁锈味的杏仁水由于管道铁锈污染
            ,这些杏仁水通常不可饮用,墙上的消防栓等灭火设备也因为年久失修而导致无法使用。走廊天花板上的照明灯基本损坏,无法照明,但仍有少数可以发出微弱的光,但也无法达到正常照明水平。

            房间

            S-502%20P6

            一处空旷的房间

            流浪者可经过走廊过道来到房间,有少数房门已经锁上,无法打开。房间主要有(如:客厅,厨房,卧室等)。部分房间可能对流浪者产生损害的气体超标(如:二氧化碳一氧化碳二氧化硫等)。

            每个房间的温度都有变化,但是大部分保持在19~20度。大部分房间光线较为昏暗,但也有少部分房间光线较为明亮。白色的墙壁略微开裂,以及潮湿,死角有疑似长苔藓或者发霉的痕迹,房间内弥漫着一股潮湿的味道,室内有轻微的滴水声,以及疑似短路产生的电弧声,窗外有疑似发动机的轰鸣以及水泵开启的声音。在白天时窗外有投射类似阳光的光线,尚不清楚白天的亮光发源点何处,并且有较为微弱偏冷的风吹进此房间。
            房间内具有轻微的震感,类似3.5级地震,小型的轻质物品在房间里会有明显的震动,据报道称,在大部分房间长时间放置的物品有可能会消失或者损坏,目前猜测为房间震动所为。

            此房间可以通过遥控器来开启关闭空调,但开启后温度只会极速使房间升温。且开启空调的时候会有约65分贝的电流声以及电弧声,且这种特殊的电流声极易对流浪者造成心智损伤,开启空调超过约3分钟之后会有非常明显的爆炸声,空调在此时立马损坏,爆炸声会影响流浪者的听力以及可能招来本层级的实体,使房间内可燃物着火,有概率会导致房间内墙体坍塌,使流浪者被压在墙体下面,造成流浪者受伤甚至死亡。(因此流浪者不应打开任意房间的空调,无论出于什么事情)。

            地下层

            地下层是本层唯一一个较为明亮的区域,基本不需要使用额外的照明设,其外观表现为一个类似地下停车场,一共有5层(-1~-5层)。
            每层面积约1.6平方千米左右,外观比较类似于Level 35,停车场的地面,墙壁以及柱子,主要采用混凝土和油漆制作而成。地下层每一层的地面上,都会摆放不同款式,不同年代的车辆。其中包括摩托车,三轮车,轿车,大货车等交通工具。部分车辆可能会出现车面凹陷、刮花、玻璃破损、甚至侧翻等情况。这些交通工具都无法正常开启行驶。
            每层的天花板顶上都会配备有冷色灯暖色灯,以及蓝绿色的冷色调灯。地下层部分地方会播放上世纪20~50年代的歌曲,因音响年久失修,导致歌曲播放时会有较大电流声以及明显卡顿。每一层都有通往下一层的楼梯,但需特别注意的是,-5层向下的楼梯极有可能通往虚空。但根据猜测,也有可能通往Level 198(未证实)
            因此不建议流浪者在-5层向下的楼梯逗留,目前-5层向下的楼梯已被封锁。

            实体

            本层级已确认的实体有极少量窃皮者以及窗户。这些实体多分布于房间的角落,有流浪者报告本层级可能有未知实体,由于该流浪者已失踪,目前其他流浪者还未发现此未知实体,因此无法得到额外证实。

            基地、前哨与社区

            由于本层级的性质与环境,本层级没有基地、前哨与社区。

            入口与出口

            入口
            • 不少流浪者都无意间切入此层级,以下为已经证实的入口:
            MT-26

            Level87发现的本层级入口

            • 在任意一层级中,来到一个门或洞,(大小能通过流浪者即可),先在纸写上MT-26,再贴上去。用敲门的方式先敲2下,过3秒后敲6下,打开门走进去,将会来到此层级。
            • 你可以在几乎每一层都能发现本层级的入口,大多都是以门或洞之类,入口往往会有标明,直接进入也可以来到。
            • 被高空坠物砸死有约60%的概率进入。
            • 在楼梯跌落有小概率切入。
            • 在嘴里含入地砖或者大理石碎片,超过30秒,有概率来到此层级,若把地砖和大理石碎片直接咽下去,则会立即来到此层级。
            • 在机器嘈杂声比较严重的环境下昏迷或睡觉,有概率来到此层级。
            出口
            • 跳入虚空可能会进入Level 198(未证实,目前无流浪者成功进入Level 198)。
            • 暂无发现。且本层级无法使用特殊方式逃离。

« Level MT-25 | Level MT-26 | Level MT-27 »

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