:root { --lh-red: #c0392b; --lh-blue: #2980b9; --lh-green: #27ae60; --lh-dark-green: #16a085; --lh-purple: #8e44ad; --lh-orange: #e67e22; --lh-yellow: #f1c40f; --lh-paper-bg: 255, 251, 240; --lh-string-color: 192, 57, 43; --lh-book-color: var(--gray-monochrome); --lh-tape-color: 90,90,90,0.3; --lh-white-bg: 249,249,249; --lh-dark-bg: 50, 50, 50; --lh-highlighter: var(--bright-accent); --lh-border-color: var(--gray-monochrome); --lh-wiki-note-color: var(--bright-accent) } /** * 旧代码合集 * 为了向下兼容而保留 */ .grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto} /** * 便签纸 * notepaper */ .notepaper { background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0); line-height: 2em; background-size: 100% 2em; background-attachment: local; border: 2em solid rgb(var(--lh-paper-bg)); box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2); padding: 0; margin: 1em auto; box-sizing: border-box; position: relative } .notepaper p { margin: 0; font-size: 1.05rem; letter-spacing: 0.1rem; line-height: inherit } .notepaper.narrow, .notepaper.wide { width: 90% } @media screen and (min-width:768px){ .notepaper.narrow { width: 50% } .notepaper.wide { width: 75% } } .notepaper.tight { border-width: 1rem; border-left-width: 1.2rem; border-right-width: 1.2rem; line-height: 1.8em; background-size: 100% 1.8em; font-size: 13px } .notepaper.with-string::before { content: ''; width: 0.5em; height: 6rem; background: rgb(var(--lh-string-color)); top: -2rem; right: -1rem; display: block; position: absolute; box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2); clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%); } .notepaper.with-tape::before { content: ''; border: 1px solid #ddd; background: rgba(var(--lh-tape-color)); width: 1.5em; height: 4em; transform: rotate(45deg); display: block; position: absolute; top: -3em; left: -1.8em } .notepaper.tight.with-string::before { top: -1rem; right: -0.25rem; } .notepaper.tight.with-tape::before { top: -2.5em; left: -1.3em } .notepaper.page { min-height: 36em; counter-increment: page; display: flex; flex-direction: column; justify-content: space-between } @media screen and (min-width:768px){ .notepaper.page { width: 70% } } .notepaper.page:after { content: counter(page); display: block; text-align: center } .notepaper-group { counter-reset: page; } .book-pattern { display: flex; flex-wrap: wrap; flex-direction: row } .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 100% } @media screen and (min-width: 768px) { .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 50% } } .book-wrapper { background: rgb(var(--lh-book-color)); padding: 0.5rem; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2); border-radius: 5px; margin: 1rem auto } @media screen and (min-width: 768px) { .book-wrapper .notepaper { margin: 0 } } /** * 文字修饰 */ .text-highlighted { position: relative } .text-highlighted::before { content: ""; position: absolute; height: 0.9em; bottom: 2px; left: -2px; width: 105%; z-index: -1; background-color: rgb(var(--lh-highlighter)); opacity: .6; transform: skew(-15deg); transition: opacity .2s ease; border-radius: 3px 8px 10px 6px; transition: 0.1s ease background-color; } .text-underlined { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-wavy { text-decoration: underline wavy; text-underline-offset: 4px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-circled, .text-squared { display: inline-block; border: 2px solid rgb(var(--lh-highlighter)); border-radius: 100%; box-sizing: border-box } .text-squared { border-radius: 0 } .text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) } .text-highlighted.td-red::before { background: var(--lh-red) } .text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) } .text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) } .text-highlighted.td-blue::before { background: var(--lh-blue) } .text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) } .text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) } .text-highlighted.td-green::before { background: var(--lh-green) } .text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) } .text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) } .text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) } .text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) } .text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) } .text-highlighted.td-purple::before { background: var(--lh-purple) } .text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) } .text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) } .text-highlighted.td-yellow::before { background: var(--lh-yellow) } .text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) } .text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) } .text-highlighted.td-orange::before { background: var(--lh-orange) } .text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) } .text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) } /* 隐藏文字 */ .text-blank { color: rgba(0,0,0,0) } .text-block { background: rgb(var(--black-monochrome)); color: rgb(var(--black-monochrome)); } .text-blur { filter: blur(0.3em); -webkit-filter: blur(0.3em) } .text-hoverback, .text-selectback { transition-duration: 0.3s; transition-property: background, transform, color } .text-blank.text-hoverback:hover, .text-blank.text-selectback::selection, .text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) } .text-block.text-hoverback:hover { background: transparent!important } .text-block.text-selectback::selection, .text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) } .text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important } /** * 附加项 */ .with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) } .with-border-dark { border: 1px solid rgb(var(--black-monochrome)) } .with-border-light { border: 1px solid rgb(var(--white-monochrome)) } .with-border-thick { border-width: 2px } .with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) } .with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) } .with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) } .with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) } .with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) } .with-padding, .with-box-style { padding: 0.25em 1em } .with-p-sm { padding: 0.125em 0.5em } .with-p-lg { padding: 0.5em 2em } .with-margin, .with-box-style { margin: 1em auto } .with-m-sm { margin: 0.5em auto } .with-m-lg { margin: 2em auto } .with-narrow-width { width: 90%!important; margin-left: auto; margin-right: auto } @media screen and (min-width: 768px) { .with-narrow-width { width: 75%!important } } [class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important } .with-bg-red { background: var(--lh-red)!important } .with-bg-blue { background: var(--lh-blue)!important } .with-bg-green { background: var(--lh-green)!important } .with-bg-darkgreen { background: var(--lh-dark-green)!important } .with-bg-yellow { background: var(--lh-yellow)!important } .with-bg-orange { background: var(--lh-orange)!important } .with-bg-purple { background: var(--lh-purple)!important } /** * 删除类 */ .offwith-shadow { box-shadow: none!important } .offwith-border { border: none!important } .offwith-padding, .offwith-pam { padding: 0!important } .offwith-margin, .offwith-pam { margin: 0!important } .offwith-width-limit { width: auto!important; margin-left: auto!important; margin-right: auto!important } div[class*="grider"].offwith-grid-gap { grid-gap: 0!important } /** * 网格布局 */ /* Gridder 容器 */ div[class*="gridder"] { display: grid; box-sizing: border-box; grid-gap: 1rem; padding: 0 } div[class*="gridder"] * { box-sizing: border-box } .gridder, .gridder-col-2 { grid-template-columns: 1fr 1fr; } .gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .gridder-col-4 { grid-template-columns: repeat(4, 1fr); } @media screen and (min-width: 768px) { .pc-gridder, .pc-gridder-col-2 { grid-template-columns: 1fr 1fr; } .pc-gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .pc-gridder-col-4 { grid-template-columns: repeat(4, 1fr); } } .spanner, .spanner-2 { grid-column-start: span 2; } .spanner-3 { grid-column-start: span 3; } /** * 告示组件 */ .signblock, .signblock-dark, .signblock-warn { margin: 1rem auto; box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4); background: rgb(var(--lh-white-bg)); font-size: 1.05rem; padding: 2rem } @media screen and (min-width: 768px) { .signblock, .signblock-dark, .signblock-warn { width: 75% } } .signblock-dark, .signblock-dark h1 { background: rgb(var(--lh-dark-bg)); color: #fff } .signblock-warn, .signblock-warn h1 { background: var(--lh-red); color: #fff } .signblock h1, .signblock-dark h1, .signblock-warn h1 { text-align: center; font-size: 2rem; margin: 0; font-weight: 700 } .signblock-img { display: flex; flex-direction: row; justify-content: center } .signblock-img img { width: 8em } .signblock-footer { font-size: 0.9em; text-align: center; margin: 0.5rem 0; font-weight: bolder; display: block } /** * 报告 */ .reportblock, .reportblock-dark { border: 2px solid rgb(var(--lh-border-color)); box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3); background: rgb(var(--white-monochrome)); padding: 0.8rem 1.5rem; padding-bottom: 0.4rem; margin: 1.5rem auto; margin-bottom: 1rem; position: relative } .reportblock hr, .reportblock-dark hr { background-color: rgb(var(--lh-border-color)); margin-left: -1.5rem; margin-right: -1.5rem } .reportblock h1:first-child, .reportblock-dark h1:first-child { position: absolute; top: -1rem; left: 1.5rem; font-size: 110%; font-weight: 600; background: rgb(var(--lh-border-color)); color: #fff; padding: 0.2rem 0.5rem; margin: 0; } .reportblock-dark, .reportblock-dark h1 { border-color: rgb(var(--lh-white-bg)); background: rgb(var(--lh-dark-bg)); color: #fff } .reportblock-dark hr { background-color: rgb(var(--lh-white-bg)); } /* 更好的折叠框 */ .bettercollap { margin: 1em 0; } .bettercollap .collapsible-block { width: auto; overflow: hidden; border: 1px solid rgb(var(--lh-border-color)) } .bettercollap .collapsible-block-content, .bettercollap .collapsible-block-link { background: rgb(var(--white-monochrome)); padding: 0.5em } .bettercollap .collapsible-block-content { padding-left: 1em; padding-right: 1em } .bettercollap .collapsible-block-link { color: rgb(var(--lh-border-color)); background: rgb(var(--white-monochrome)); transition: .3s; display: block; } .bettercollap .collapsible-block-link:hover, .bettercollap .collapsible-block-unfolded .collapsible-block-link, .styledcollap.bettercollap .collapsible-block-link { color: rgb(var(--white-monochrome)); background: rgb(var(--lh-border-color))!important; text-decoration: none } .bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) } .bettercollap .collapsible-block-link::before { content: "\25BC"; display: inline-block; margin-right: 0.5em; transform: rotate(-90deg) scale(0.9) } .bettercollap .collapsible-block-unfolded .collapsible-block-link::before { transform: rotate(0) scale(0.9) } .bettercollap .collapsible-block + .collapsible-block { border-top: none } .styledcollap.bettercollap .collapsible-block { border-radius: 2px; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3) } .styledcollap.bettercollap .collapsible-block-content { background-color: rgb(var(--pale-gray-monochrome)); border-width: 3px } .styledcollap.bettercollap .collapsible-block-link:hover { background: rgba(var(--lh-border-color),0.95)!important; } /** * 提示框 */ .infoblock { color: #f1f1f1; font-weight: bold; background: #424242; padding: 5px 5px 5px 5px; border-radius: 4px; margin: -0.5rem 0 1rem 0; display: block; width: fit-content; padding-right: 25px; } .infoblock::before { content: "ⓘ " } /** * 单页迭代 */ .offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none } .offset-page:target { display: block }
/* BHL Style Search Top Box And User Account */ /* By Mercuresphere */ /* Based on BHL Theme */ :root, :root:lang(cn) { --merc-light-color: var(--swatch-menutxt-light-color); --merc-dark-color: var(--swatch-menubg-dark-color); --user-account-mask: url("https://fastly.jsdelivr.net/gh/Crimone/crimson-anemone@main/files/user-circle.svg"); --search-top-box-mask: url("https://fastly.jsdelivr.net/gh/Crimone/crimson-anemone@main/files/search-top-box-mask.svg"); } /* ===用户和搜索栏=== */ @media only screen and (max-width: 768px) { #login-status { right: unset; font-size: unset; } #navi-bar, #navi-bar-shadow, #search-top-box-input { display: unset; } #search-top-box-input { min-width: unset; } #search-top-box { top: unset; right: unset; height: unset; } #search-top-box:focus-within { box-shadow: unset; background: unset; padding: unset; } #search-top-box:not(:focus-within):before { -webkit-mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2); -webkit-mask-position: center center; -webkit-mask-repeat: no-repeat; -webkit-mask-image: var(--search-top-box-mask); ; z-index: 14; background-color: rgb(var(--merc-light-color)); color: rgb(var(--merc-dark-color)); text-align: center; cursor: pointer; mask-image: var(--search-top-box-mask); ; mask-position: center center; mask-repeat: no-repeat; mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2); pointer-events: none; position: absolute; top: 0; right: 0; width: calc(0.9375rem * 1.8); height: 100%; content: " "; } #search-top-box form[id=search-top-box-form] { visibility: unset; height: unset; } #search-top-box form[id=search-top-box-form]:focus-within { visibility: unset; } #search-top-box form[id=search-top-box-form] input { -webkit-appearance: unset; -moz-appearance: unset; position: unset; top: unset; transform: unset; appearance: unset; height: unset; } #search-top-box form[id=search-top-box-form] input[type=text] { visibility: unset; transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), font-variation-settings .2s cubic-bezier(.4, 0, .2, 1), font-weight .2s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1), right .2s cubic-bezier(.4, 0, .2, 1), width .6s cubic-bezier(.4, 0, .2, 1), padding .6s cubic-bezier(.4, 0, .2, 1), max-width .6s cubic-bezier(.4, 0, .2, 1); } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text] { position: unset; right: unset; transform: unset; cursor: unset; border-width: unset; width: unset; height: unset; color: unset; } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text]:hover { background-color: unset; } #search-top-box form[id=search-top-box-form] input[type=submit] { background: none; transition: unset; } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=submit] { opacity: unset; margin: unset; padding: unset; width: unset; } #header h1 a { z-index: unset; } } @media only screen and (max-width: 56.25rem) { #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { background-color: rgba(0, 0, 0, 0); } } @media (min-width: 36rem) { #login-status { flex-grow: unset; left: unset; right: unset; } #login-status:not(:hover):not(:focus-within) { visibility: hidden; } #login-status::before { visibility: visible; } } #search-top-box-input { min-width: unset; display: inline-block; } #search-top-box-form input[type=submit], #search-top-box-form input[type=submit]:focus, #search-top-box-form input[type=submit]:hover { color: transparent; } #search-top-box-form input[type=submit]:focus, #search-top-box-form input[type=submit]:hover { border: none; text-shadow: none; } #search-top-box-form input[type=submit], #search-top-box-input:focus, #search-top-box-input:hover { border: none; } #search-top-box { display: flex; z-index: 12; position: absolute; top: 1.5em; right: calc(3% - .25em); align-items: center; justify-content: center; width: auto; height: calc(0.9375rem * 1.8); transform: translateY(-50%); font-size: calc(0.9375rem * .86667); } #search-top-box, #search-top-box * { box-sizing: border-box; margin: 0; padding: 0; border: none; transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), font-variation-settings .2s cubic-bezier(.4, 0, .2, 1), font-weight .2s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1), right .2s cubic-bezier(.4, 0, .2, 1), width .6s cubic-bezier(.4, 0, .2, 1), padding .6s cubic-bezier(.4, 0, .2, 1), max-width .6s cubic-bezier(.4, 0, .2, 1); will-change: box-shadow, font-variation-settings, font-weight, background-color, color, right, width, padding, max-width; } #search-top-box:focus-within, #search-top-box:focus-within *, #search-top-box:focus-within :after, #search-top-box:focus-within :before { margin: 0; padding: 0; transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), font-variation-settings .2s cubic-bezier(.4, 0, .2, 1), font-weight .2s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1), right .2s cubic-bezier(.4, 0, .2, 1), width .3s cubic-bezier(.4, 0, .2, 1), padding .3s cubic-bezier(.4, 0, .2, 1), max-width .3s cubic-bezier(.4, 0, .2, 1); will-change: box-shadow, font-variation-settings, font-weight, background-color, color, right, width, padding, max-width; } #search-top-box:focus-within { background: rgba(var(--merc-dark-color), .7); box-shadow: calc(calc(0.9375rem * 1.8) / 2 * -1) 0 calc(calc(0.9375rem * 1.8) / 2) rgba(var(--merc-dark-color)); } #search-top-box:after, #search-top-box:before { position: absolute; top: 0; right: 0; width: calc(0.9375rem * 1.8); height: 100%; content: " "; } #search-top-box:before { -webkit-mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2); -webkit-mask-position: center center; -webkit-mask-repeat: no-repeat; -webkit-mask-image: var(--search-top-box-mask); ; z-index: 14; background-color: rgb(var(--merc-light-color)); color: rgb(var(--merc-dark-color)); text-align: center; cursor: pointer; mask-image: var(--search-top-box-mask); ; mask-position: center center; mask-repeat: no-repeat; mask-size: calc(calc(0.9375rem * 1.8) / 2) calc(calc(0.9375rem * 1.8) / 2); pointer-events: none; } #search-top-box:not(:focus-within):hover:before { background-color: rgb(var(--merc-light-color)); } #search-top-box:after { --clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: var(--clip-path); z-index: 13; clip-path: var(--clip-path); pointer-events: none; background-color: transparent; } #search-top-box:not(:focus-within):after { --clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); background-color: rgb(var(--merc-light-color), 0); } #search-top-box form[id=search-top-box-form] { display: flex; visibility: visible; position: relative; right: 0; max-width: 100%; height: calc(0.9375rem * 1.8); } #search-top-box form[id=search-top-box-form]:not(:focus-within) { max-width: calc(0.9375rem * 15); } #search-top-box form[id=search-top-box-form] input { -webkit-appearance: none; -moz-appearance: none; appearance: none; position: relative; top: 0; } #search-top-box form[id=search-top-box-form] input[type=text] { z-index: 13; position: absolute; right: 0; width: calc(0.9375rem * 15); max-width: calc(0.9375rem * 15); height: 100%; padding: 0 calc(0.9375rem * 1.8) 0 1em; outline: 0 solid rgb(var(--merc-light-color)); background-color: rgb(var(--merc-dark-color), .7); box-shadow: 0 0 0 .125rem rgb(var(--merc-light-color)); color: rgba(var(--merc-light-color)); } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text] { max-width: calc(0.9375rem * 1.8); padding: 0; outline-width: 0; background-color: rgba(var(--merc-dark-color), 0); box-shadow: 0 0 0 0 rgb(var(--merc-light-color)); color: rgba(0, 0, 0, 0); cursor: pointer; } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=text]:hover { background-color: rgba(var(--merc-dark-color), 1); } #search-top-box form[id=search-top-box-form] input[type=submit] { visibility: visible; z-index: 14; position: absolute; right: 0; width: calc(0.9375rem * 1.8); height: calc(0.9375rem * 1.8); outline: 0 solid rgb(var(--merc-light-color)); background-color: transparent; box-shadow: 0 0 0 .125rem rgb(var(--merc-light-color)); color: t; font-size: calc(0.9375rem * .86667); cursor: pointer; pointer-events: all; } #search-top-box form[id=search-top-box-form]:not(:focus-within) input[type=submit] { box-shadow: 0 0 0 0 rgb(var(--merc-light-color)); pointer-events: none; } #login-status { --wght: var(--ui-wght); display: flex; z-index: 11; position: absolute; top: 1.5em; right: calc(3% + calc(0.9375rem * 1.8) - .25em); align-items: center; justify-content: center; height: 2em; margin: 0 0 0 .5em; transform: translateY(-50%); color: rgb(var(--merc-light-color)); font-weight: var(--wght); font-size: 1em; font-family: var(--UI-font); white-space: nowrap; transition: opacity .2s cubic-bezier(.4, 0, .2, 1); } #search-top-box:focus-within ~ #login-status { opacity: 0; } #login-status span.printuser a:first-of-type { width: 1.75em; } #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in { margin: 0 1em; background-color: rgb(var(--pale-gray-monochrome)); color: rgb(var(--merc-dark-color)); padding: 0.1em 1em; text-decoration: none; } #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account:active, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account:hover, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in:active, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in:hover, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-create-account:focus-within, #login-status:not(.page-rate-widget-box):not(#search-top-box-form) > a.login-status-sign-in:focus-within { background-color: rgba(var(--merc-light-color), 1); color: rgb(var(--merc-dark-color)); text-decoration: none; } #login-status span.printuser { --wght: var(--ui-wght); margin-right: .5em; color: rgb(var(--merc-light-color)); font-weight: var(--wght); } #login-status a#my-account, #login-status a[href*="account/messages"] { color: rgb(var(--merc-light-color)); } #login-status a#my-account { --wght: var(--ui-wght); -webkit-text-decoration: underline rgb(var(--merc-dark-color)) .125em; display: flex; align-items: center; padding: 0 .5em; background-color: initial; box-shadow: inset 0 0 0 0 rgb(var(--merc-dark-color)); font-weight: var(--wght); text-decoration: underline rgb(var(--merc-dark-color)) .125em; transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), text-decoration .2s cubic-bezier(.4, 0, .2, 1), -webkit-text-decoration .2s cubic-bezier(.4, 0, .2, 1); } #login-status a#my-account:active, #login-status a#my-account:hover { --wght: var(--ui-hvr-wght); -webkit-text-decoration: underline rgb(var(--merc-dark-color)) 0; box-shadow: inset 0 -2em 0 0 rgb(var(--merc-dark-color)); color: rgb(var(--merc-light-color)); font-weight: var(--wght); text-decoration: underline rgb(var(--merc-dark-color)) 0; } #login-status a#my-account:focus-within { --wght: var(--ui-hvr-wght); -webkit-text-decoration: underline rgb(var(--merc-dark-color)) 0; box-shadow: inset 0 -2em 0 0 rgb(var(--merc-dark-color)); color: rgb(var(--merc-light-color)); font-weight: var(--wght); text-decoration: underline rgb(var(--merc-dark-color)) 0; } #login-status #account-topbutton { --clip-path: polygon(30% 35%, 70% 35%, 50% 60%, 50% 60%); -webkit-clip-path: var(--clip-path); position: relative; width: var(--account-height); height: var(--account-height); margin: 0; padding: 0; background-color: rgb(var(--merc-light-color)); color: transparent; clip-path: var(--clip-path); transition: -webkit-clip-path .1s cubic-bezier(.4, 0, .2, 1); transition: clip-path .1s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .1s cubic-bezier(.4, 0, .2, 1); } #login-status #account-options { display: block !important; z-index: 12; position: absolute; top: 1.5rem; right: 0; width: 10em; margin: .25em 0 0; padding: 0; overflow: hidden; background-image: var(--gradient-header); background-color: rgb(var(--merc-dark-color)); opacity: 0; pointer-events: none; transition: opacity .15s cubic-bezier(.4, 0, .2, 1); } #login-status #account-options:focus-within, #login-status #account-topbutton:active + #account-options, #login-status #account-topbutton:focus + #account-options { opacity: 1; pointer-events: all; } @media (pointer: coarse) { #login-status #account-options:hover, #login-status #account-topbutton:hover + #account-options { opacity: 1; pointer-events: all; } } #login-status #account-options * { margin: 0; padding: 0; } #login-status #account-options ul { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 2em; flex-grow: 1; align-items: center; justify-content: center; font-size: .85em; } #login-status #account-options ul li { position: relative; } #login-status #account-options ul li, #login-status #account-options ul li a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; } #login-status #account-options a { --box-shadow: rgba(var(--merc-dark-color)); --wght: var(--ui-wght); position: relative; flex-grow: 1; height: 100%; max-height: 2em; padding: 0 .25em; box-shadow: inset 0 0 0 .0625rem var(--merc-dark-color); font-weight: var(--wght); transition: color .15s cubic-bezier(.4, 0, .2, 1), font-weight .15s cubic-bezier(.4, 0, .2, 1), font-variation-settings .15s cubic-bezier(.4, 0, .2, 1); } #login-status #account-options li > a, #login-status #account-options li > a:visited { color: rgb(var(--merc-light-color)); } #login-status #account-options li > a:active, #login-status #account-options li > a:hover { --wght: var(--ui-hvr-wght); color: rgb(var(--merc-dark-color)); font-weight: var(--wght); text-decoration: none; } #login-status #account-options li > a:focus-within { --wght: var(--ui-hvr-wght); color: rgb(var(--merc-dark-color)); font-weight: var(--wght); text-decoration: none; } #login-status #account-options li > a[href*="/messages"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; min-height: 100%; font-size: 0; } #login-status #account-options li > a[href*="/messages"]:after { position: absolute; left: 50%; transform: translateX(-50%); content: "信息"; font-size: calc(0.9375rem * .765); pointer-events: none; } #login-status #account-options li > a:before { --clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); -webkit-clip-path: var(--clip-path); z-index: -1; position: absolute; top: 0; width: 100%; height: 100%; background-color: rgb(var(--merc-light-color)); content: " "; clip-path: var(--clip-path); pointer-events: none; transition: -webkit-clip-path .2s cubic-bezier(.4, 0, .2, 1); transition: clip-path .2s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .2s cubic-bezier(.4, 0, .2, 1); } #login-status #account-options li > a:active:before, #login-status #account-options li > a:hover:before { --clip-path: polygon(-15% 0, 115% 0, 100% 100%, 0 100%); } #login-status #account-options li > a:focus-within:before { --clip-path: polygon(-15% 0, 115% 0, 100% 100%, 0 100%); } /* ===默认收起用户信息栏和搜索栏=== */ #search-top-box { top: 23px; right: calc(3%); } #login-status { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; top: 24px; right: calc(3% + calc(0.9375rem * 1.8) + .25em); color: transparent; pointer-events: none; transition: color .2s cubic-bezier(.4, 0, .2, 1); user-select: none; } @media only screen and (min-width: 980px) { #search-top-box { right: calc(3% + (-100vw + var(--header-width-on-desktop, 61.25rem)) / 2); } #login-status { right: calc(3% + calc(0.9375rem * 1.8) + .25em + (-100vw + var(--header-width-on-desktop, 61.25rem)) / 2); } } #login-status:active, #login-status:hover { -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; color: rgb(var(--merc-light-color)); pointer-events: all; user-select: auto; } #login-status:focus-within { -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; color: rgb(var(--merc-light-color)); pointer-events: all; user-select: auto; } #login-status:active #account-options, #login-status:hover #account-options { pointer-events: all; } #login-status:focus-within #account-options { pointer-events: all; } #login-status > :not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); opacity: 0; transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), text-decoration .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1), clip-path .2s cubic-bezier(.4, 0, .2, 1), opacity .2s cubic-bezier(.4, 0, .2, 1), -webkit-text-decoration .2s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .2s cubic-bezier(.4, 0, .2, 1); } #login-status:active > :not(#account-topbutton):not([href*="account/messages"]), #login-status:hover > :not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); opacity: 1; } #login-status:focus-within > :not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); opacity: 1; } #login-status #account-topbutton { margin-left: 0; background-color: initial; pointer-events: all; transition: clip-path .15s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .15s cubic-bezier(.4, 0, .2, 1); } #login-status:hover #account-topbutton { background-color: rgb(var(--merc-light-color)); } #login-status:before { -webkit-mask-image: var(--user-account-mask); -webkit-mask-size: calc(calc(0.9375rem * 1.8) - .5em); -webkit-mask-position: center right; -webkit-mask-repeat: no-repeat; z-index: 2; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(var(--merc-light-color), 1); content: ""; cursor: pointer; mask-image: var(--user-account-mask); mask-position: center right; mask-repeat: no-repeat; mask-size: calc(calc(0.9375rem * 1.8) - .5em); pointer-events: all; transition: background-color .15s cubic-bezier(.4, 0, .2, 1); } #login-status:hover:before { background-color: rgba(var(--search-icon-hover-color), 1); } #login-status:active:after, #login-status:active:before, #login-status:hover:after, #login-status:hover:before { background-color: rgba(var(--search-icon-hover-bg-color), 0); cursor: auto; pointer-events: none; } #login-status:focus-within:after, #login-status:focus-within:before { background-color: rgba(var(--search-icon-hover-bg-color), 0); cursor: auto; pointer-events: none; } #login-status #account-topbutton { --clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: var(--clip-path); background-color: rgba(var(--merc-light-color), 0); clip-path: var(--clip-path); } #login-status:active #account-topbutton, #login-status:hover #account-topbutton { --clip-path: polygon(30% 35%, 70% 35%, 50% 60%, 50% 60%); -webkit-clip-path: var(--clip-path); background-color: rgb(var(--merc-light-color)); clip-path: var(--clip-path); } #login-status:focus-within #account-topbutton { --clip-path: polygon(30% 35%, 70% 35%, 50% 60%, 50% 60%); -webkit-clip-path: var(--clip-path); background-color: rgb(var(--merc-light-color)); clip-path: var(--clip-path); } #login-status #account-options { margin: 0; } #login-status a[href*="account/messages"] { color: rgb(var(--merc-light-color)); pointer-events: all; } #account-topbutton { border: none; } #account-options { border: none; }
生存难度:生存難度:
等级等級 死区
- 极不安全
- 极不稳定
- 中量实体
Level KP-666是后室KP层群的第+666层。
描述
Level KP-666是一片无限的公路,外部有着草原,但是出于未知原因,人员无法离开公路范围,表现为被一座“空气墙”所挡住。
层级内部有一辆大型轿车,其宽度超过空气墙。流浪者进入时总是会进入距离其100米外的位置,在层级内部有流浪者时轿车会不断前进,被轿车撞到或进入轿车底部的流浪者将全部消失2;试图爬上轿车顶端会导致车辆不断变抖,直到3分钟后将没有任何保护的流浪者甩下地面,上到车顶后掉落至地面的流浪者会立刻死亡,流浪者死亡后轿车将停止抖动。轿车无法以任何手段破坏。
层级内部具有昼夜循环,且内部具有一些常见实体,如笑魇、猎犬、无面灵、钝人等,据流浪者报告,实体的数量正在不断增加。公路上经常会刷新杏仁水、幸运豆奶、皇家口粮、气化悲伤、液态痛苦、分割雪糕等。
基地、前哨和社区
该层级目前没有已知的基地、前哨或社区。
入口与出口
入口
- 切入Level KP-11的混凝土人行道。
- 进入Level KP-32的地铁站,有一定概率将你带来Level KP-666。
- 沿着Level KP-56的的公路不断走下去,最终将会进入Level KP-666。
出口
- 极其少见的情况下,在流浪者逃跑时切入“空气墙”可以来到Level KP-1483。
生存难度:生存難度:
等级等級 3
- 安全稳定
- 中量实体
- 主要威胁消除
Level KP-666是后室KP层群的第+666层。
描述
Level KP-666是一片无限的公路,外部有着草原,但是出于未知原因,人员无法离开公路范围,表现为被一座“空气墙”所挡住。
层级内部有一辆大型轿车,轿车目前已被停止。目前该轿车上方有一个大型人力用木板围出的,仅上方开口的巨型木盒,其内部有大量尸体,该车被大量流浪者依靠身体压下车身4。使得汽车被迫停止。目前该车正在由挪车帮开始往反方向行驶。
层级内部具有昼夜循环,且内部具有一些常见实体,如笑魇、猎犬、无面灵、钝人等,据流浪者报告,实体的数量正在不断减少。公路上经常会刷新杏仁水、幸运豆奶、皇家口粮、气化悲伤、液态痛苦、分割雪糕等,在每日0点会再次刷新。
基地、前哨和社区
挪车帮
- 共有6人,目前正在试图将这辆车开回起点,均为开车爱好者。
The R.P.C.临时停车点基地
- 人员数量未知,主要目的是收集这里大量的物资。
- 欢迎流浪者加入,会帮助流浪者在层级内部生存。
入口与出口
入口
- 切入Level KP-11的混凝土人行道。
- 进入Level KP-32的地铁站,有一定概率将你带来Level KP-666。
- 沿着Level KP-56的的公路不断走下去,最终将会进入Level KP-666。
出口
- 极其少见的情况下,在流浪者逃跑时切入“空气墙”可以来到Level KP-148。
生存难度:生存難度:
等级等級 宜居
- {$one}
- {$two}
- {$three}
Level KP-666是后室KP层群的第+666层。
描述
Level KP-666内部有一片大城市,其科技水平到达了前厅2000年的水平。层级被一条大型公路分割为两区,在沿着公路一个方向行走一段距离后将出现“空气墙”在公路两边,同时房屋也会不断变少,距离过远可能会导致受到实体的攻击。层级具有昼夜和四季循环,在冬季会下雪,最高温度为36°C,最低温度为-12°C。
左边为A区,A区具有普通居民楼、写字楼、商场等建筑,其内部通常都是装修完好的,少量尚未装修。部分郊外区域没有任何房屋。层级内部还具有市场、公园、游乐场等设施。层级有猎犬和无面灵,但它们均收到“第11效应”的影响,变得无害且温顺。层级内部有公路和人行道,它们通常不会到达死胡同,街道边也可以发现如消防栓、邮箱、广告牌、路灯、扶手椅,也有人在街道上摆摊,路灯在夜晚时会自行打开。广告牌上的物品通常来源于后室本地,偶尔可以看到来自前厅的物品。层级内部始终具有WiFi。
街道周边也有大量树木、花坛,它们遵循季节变化,但是会在春季无法控制的生长。层级内部有山坡、河流、湖泊等地势,河流和湖泊内的水均为杏仁水,且河流上无论如何总是会有至少一座桥架在上方。层级内部有多种前厅动物类别,它们多数居住在郊区。层级的马路上经常会刷新杏仁水、幸运豆奶、皇家口粮、气化悲伤、液态痛苦、分割雪糕等,在每日0点会再次刷新。
右边为B区,B区的楼房较少,且如同许久未用,楼内存在大量灰尘,多数楼体均有破损,且地面凹凸不平。温度比A区波动更大,其内部有完整的前厅动物生态系统,B区如同一座未开发完成的城市,因此内部也有完整生态群系。地面与楼内上有许多的建筑材料和物资,与A区相比更多5。
B区有一片自然温泉池,被温泉池的水浸泡会使流浪者感到心情放松,并且逐渐消散内心中的恐惧。还会使流浪者回忆起往事,均为良好方面的往事。该温泉池可治疗因各种原因心理无法治愈的流浪者,还可治疗失忆症患者。
层级内部有一辆大型轿车,该轿车已被停止,切入点总是距离轿车100米外的区域,R.P.C会阻止一切流浪者启动汽车。
基地、前哨和社区
The R.P.C.路边城市基地
- 具有武装力量。
- 成员2000人左右,不开放贸易。
- 位于A区离汽车最近的大型写字楼。
- 暂时不开放流浪者加入,但是会保护所有流浪者的安全。
- 有武装人员避免流浪者开启汽车。
Y.Z.T.大型交易点
- 具有少量武装力量。
- 成员共有500人左右,开放贸易,接收特殊订单。
- 在A区和B区都各有3处贸易与储存大量物资区。
- 欢迎流浪者的加入。
B.A.T.C.杏仁水贸易/获取基地
- 在B区的一栋楼中。
- 成员共有800人左右,大量采购或收集杏仁水。
- 会与流浪者贸易生产的杏仁水制品,售价便宜。
- 似乎知道杏仁水大量出现的区域。
The E.G.G.隐秘研究基地
- 据说在B区的一片楼房区,禁止无关人员进入
- 成员数量未知,规模较大。
入口与出口
入口
- 切入Level KP-11的混凝土人行道。
- 进入Level KP-32的地铁站,有一定概率将你带来Level KP-666。
- 沿着Level KP-56的的公路不断走下去,最终将会进入Level KP-666。
出口
- 极其少见的情况下,在流浪者逃跑时切入“空气墙”可以来到Level KP-148。
- 在停车位附近切出可以来到Level KP-27
- 在R.P.C的写字楼门切出可以到达Level KP-11
- 还有许多未发现的出口,如有发现请直接填写。
以下为回收的记录
我今天似乎到了一个新的层级,我现在在一条公路上,我在Level KP-11的人行道上摔倒了,然后就来到了这里。远处似乎有一座大型城市。公路两边不知为何,我无法穿过。有一辆汽车向我开来,我在奔跑……我已经跑不动了……
[记录终止]
我一来就看到这台平板电脑掉落在地上,我把我的笔记本和笔带进来了,也许还用的上。和你描述的一样,那辆车已经开过来了,我试一下跳上车顶会发生什么。[汽车的吵闹声]我跳上来了,不过这里好抖,我抓着车,尝试拿笔戳破窗户。没有用……这窗户他妈就和金刚石做的一样,笔头被戳烂了,窗户一点损伤都没有,笔记本、笔和平板我就放地上了。等一下。啊——
[记录终止]
我看了看记录,车似乎也要来了,我得找找出口。地面不行,周围的空气墙也不行,估计没有出口,你总不可能对着汽车切出吧。车来了,我先跑再说。[撞击声]
我带着平板切出了这里,我在被追逐时摔倒撞入空气墙,然后就来到了Level KP-148。
[记录停止]
R.P.C数据库论坛备份
讨论串标题:关于Level KP-666的讨论
讨论串状态:封锁/备份
讨论串创立时间:2055年10月07日07时20分06秒
讨论串封锁时间:2056年1月3日17时45分14秒
>>用户:CaiZi
开门见山,最近发现的这个Level KP-666似乎在起点有一座城市。
>>用户:Chun
所以呢,我们又到不了。
>>用户:CaiZi
我们可以利用胶水和木板围出一个类似箱子的区域,然后让进入层级的流浪者进去,这样就可以压到轮胎,停止这辆疯狂的车。
>>用户:hdog
那我们准备一下吧,我第一个,在Level KP-11的商业A区中心集合。
>>用户:CaiZi
人不够,不急。
>>用户:Tommy
我也不想待在后室了,与其自杀,为何不做点贡献呢?
>>用户:Alex
反正在KP层群也待了十几年了,该体验的都体验过了,到时候不要忘了我穿过4个死区,可惜在第5个终结了。
>>用户:Tracy
我在前厅可以说是一个无用的废材,到了后室让我重新感受到了自己的价值,现在就再见吧,愿下辈子在前厅能做个有用的人。
>>用户:CaiZi
不如给这玩意起个名吧,就叫停车计划怎么样。停车计划第一次准备开始,要来的在Level KP-11的商业A区中心集合。
>>用户:Chun
来了。
>>CaiZi的语音录制
CaiZi:人似乎齐了,共5人,我本人会组织后面的停车计划,木头和胶水都准备好了,你们一个个切入吧。
Chun:我先。
CaiZi:你带上平板、底板和胶水,先把最基础的弄好。
平板消息:我进去了。等一下,好晃!
平板消息:完成,下一位。
Tracy:有点紧张,万一我没跳上车子,不是就浪费了吗。
CaiZi:不用担心,我的材料够用,大不了下一次,你带上钉子、锤子和木板,固定四周区域。
平板消息:完美!我跳上车了!
平板消息:这玩意有点难弄,不过我弄好了。
CaiZi:这样有点慢,不如hdog和Tommy你们一起进去吧。
hdog:……行吧。
Tommy:好的
CaiZi:再加高一点,给你们钉子、锤子和木板,加油!
hdog&Tommy:为人类而战!
平板消息:不是很妙,Tommy连人带木板摔下车了。
CaiZi:啊这……不过没事,下次还能再弄,相信你们这样的人会越来越多的。
平板消息:完成!
>>用户:CaiZi
再次开始召集人员,目的是进入木箱,利用重量停止车的运行。
>>用户:陈
我在后室出生,已经在这里滚爬摸打二十几年了,我的父母均死在这里,我也不想再待了。
>>用户:王
和上面的好巧,我在后室结婚生子,而我却身体残废,还给她们增负,对不住了女儿,爸爸不想拖累你,先走一步了。
>>用户:李
为什么我没有感人的经历呢?来玩拼句子游戏吧,我来第一个字:赴。
>>用户:Steven
你们这是要集齐百家姓吗?我也没啥话。死。
>>用户:王
众所周知,3=100。
>>用户:Amy
者。
>>用户:Tony
话说停车计划到底是为了什么呢?
>>用户:CaiZi
避免从Level KP-11的大量切入,以及到达路反方向那头的城市。
>>用户:Tony
知道了。的。
>>用户:Tina666
我……我的丈夫和孩子全部切入了Level KP-666。我要为他们报仇!我这里有一包买给我孩子的药,等到开始时一起吃吧。精。
>>用户:man
无话可说。神。
>>用户:CaiZi
第二次停车计划开始,请报名的流浪者在15:00到Level KP-11的商业A区中心集合,记得最后吃顿饱饭。
>>CaiZi的语音录制
CaiZi:共6人,Tony和man暂时有事,等到下一轮。
Tina666:我先走一步了,诸位。
王:就这样走了?
CaiZi:……我还没讲,上一次加高有一块木板没了……
王:材料给我,我要进去了。
CaiZi:好吧。
平板消息:完成,没带什么自我了解的工具,不知还得在这个箱子里喘息多少年。
Steven:我也先走了,再见。
平板消息:我滴任务,完成了!还好我带了老鼠药,分给了王一颗。
李:我也去了。
平板消息:这车速度已经不如跑步了,我刚才在反复横跳,不耍了,上车了。Steven给我颗。
平板消息:我就只剩下2颗老鼠药了。
陈:没话讲。
平板消息:我也上车了,这里好挤,感觉有点恶心,但是我不能吐。
Amy:就让我对这一轮行动做一个完美的结束吧。
平板消息:结束!
[CaiZi看着人行道发呆,随后敬了个礼,然后离开]
>>用户:Sam
永。
>>用户:Level KP-666平板
我意外切入了这里,好消息是,我之前看到了这条帖子,就当我是自愿的吧。垂。
>>用户:CaiZi
离谱了……
>>用户:Worker1234
我在前厅是一个不受待见的工人,父母在我小时候时就出车祸死了。在来到后室后,我加入了R.P.C,在这里,我找到了自己残余的价值,后室或许对于某些人来说,才是一个温暖的家……在团体中平等的关系让我在人生的尽头找到了受欢迎的感觉,我将利用完我最后点的残余价值。不。
>>用户:318193480148
朽。
>>用户:CaiZi
第二场活动在明天15:00,一样的,最后吃一顿饱饭在来吧。
>>CaiZi的语音录制
CaiZi:上次没来的两个人来了,这次共有5人,算我一个。
318193480148:?你也去啊。
CaiZi:我将给停车计划一个收尾……
man:上一次没来,抱歉了。
Tony:+1。
CaiZi:没事。
man:我在来之前做了许多心理准备,那么就让我开一个好头吧!看了上次的消息,这次毒药管够。
平板消息:我到了,话说这车是真慢,现在我们走路都不会被撞。
CaiZi:确实是。
Tony:我也先走一步了。
318193480148:废话不多说,再见,这美好的世界。
Worker1234:该说的都说过了,再见。
平板消息:速度已经很慢了,再来一人就行了。
CaiZi:共牺牲16人,这场疯狂的计划也将结束,后来人不要忘记给我们上香啊。这16个人共同点都很多,或许没有一个人希望自己是没有价值的,而后室对于某些前厅颓废的人就是一个美好的开始……我也一样……
[CaiZi再次看着人行道地板发呆]
CaiZi:“赴死者的精神永垂不朽”,这句话缺少了感叹号,就让我把这个感叹号补上,做出一个完美的收尾吧!
赴 死 者 的 精 神 永 垂 不 朽 !
R.P.C已将讨论封锁并备份,并更新档案为等级3。
2056.1.5
我收到Level KP-666的车停下的消息后就来到了这里,带着我的3个朋友,我们都爱好开车。我们来到了车内部,这里面就是一辆正常轿车的样子,有座椅,共有6个位置,车钥匙也插在这里,我把车钥匙拔掉,然后和另外3个人把车上的木板卸下来,然后把尸体交给了R.P.C的人帮忙埋葬。周围还有一些实体,我们为了躲避只能坐上车。我的一个朋友意识到,这辆车是无视空气墙的,于是开始掉头,结果在掉头时,车拼命抖动,这比我在前厅遇到的任何一条路都抖。停下,我叫他,车停了,抖动也散去了。我们在车里睡了一觉
2056.1.6
一早醒来,我发现头顶上有一个红色的按钮。我想按,可是我的朋友阻拦这我,说好奇心害死猫,我趁他们收集物资时按了一下,没有反应。就和他们一起去收集物资了。话说这里的物资还真是多。回去后,我让每个人固定好自己,然后开车,意外的是,这辆车已经不再抖动了。我告诉了他们按钮的事,我的一个朋友很激动,立刻爬到车底下,然后跳到车顶再跳下来。一点事也没有,这辆车变得和正常一模一样。
2056.1.7
今天在继续返回的路上,我肉眼可见的感觉实体逐渐变少了,从开始的被实体包围到寥寥无几,或许到达城市后就无实体了。后来又来了两人加入我们团体。加入后车已经坐满了,也不可能再加人了。
2056.1.10
这几天都没有发生什么事,唯一不同就是实体已经绝迹了,而物资却都还在,我用望远镜看,似乎远处有一座城市的轮廓。
2056.1.12
今天已经可以看到城市了,就快到了。
2056.1.13
到城市了,这个城市似乎有两个部分,被那条马路切割着,空气墙也没了。前方有一个车位,我们把车停到了车位,然后开始寻找出口。太迟了,先睡一觉吧
2056.1.14
早上起床寻找出口,我的一位兄弟在距离停车位最近的写字楼大门切出,然后成功了。而我想寻找更多出口,于是尝试对地面和路面切出。没用,对建筑物切出呢?没用,我突发奇想,对着停车位切出,来到了Level KP-27。
R.P.C已将Level KP-666的最终难度定为宜居,并把层级名字更改。欢迎流浪者前来居住。
« Level KP-665 | Level KP-666 | Level KP-667 »