: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 }
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Bitter&display=swap'); /* 全局 */ :root { --theme-base: "black-highlighter"; --theme-id: "blank"; --theme-name: "Blank Theme"; --logo-image: none; --header-title: "The Backrooms"; --header-subtitle: "你曾经来过这里"; --bb-black: 65, 65, 65; --bb-white: 253, 253, 253; --bb-accent-color: 63, 66, 50; --bb-accent-background: 215, 219, 204; --body-font: Inter, Noto Sans SC, Noto Sans TC, Arimo, Verdana, Geneva, sans-serif; --header-font: var(--body-font); --title-font: var(--body-font); --mono-font: Bitter, Noto Serif SC, Noto Serif TC, Consolas, monaco, monospace; --temp-font-1: Inter, Noto Sans SC, Noto Sans TC, Arimo, Verdana, Geneva, sans-serif; --temp-font-2: Bitter, Noto Serif SC, Noto Serif TC, Consolas, monaco, monospace; --white-monochrome: var(--bb-white); --pale-gray-monochrome: var(--bb-white); --light-gray-monochrome: var(--bb-white); --gray-monochrome: var(--bb-white); --black-monochrome: var(--bb-black); --bright-accent: var(--bb-black); --medium-accent: var(--bb-white); --dark-accent: var(--bb-black); --pale-accent: var(--bb-black); --swatch-topmenu-border-color: var(--bb-white); --swatch-menubg-dark-color: var(--bb-black); --rating-module-button-plus-color: var(--bb-black); --rating-module-button-negative-color: var(--bb-black); --rating-module-button-cancel-color: var(--bb-black); --rating-module-button-credit-color: var(--bb-black); --link-color: var(--bb-black); --hover-link-color: var(--bb-black); --visited-link-color: var(--bb-black); --background-gradient-distance: 0rem; --gradient-header: linear-gradient(to top, rgba(var(--medium-accent)) 0%, rgba(var(--medium-accent), 0.90) 100%); --diagonal-stripes: linear-gradient(transparent 0); } * { scrollbar-color: rgb(var(--bb-black)) transparent !important; } #page-content { font-size: 110%; } @media only screen and (max-width: 768px) { #page-content { font-size: 90%; } } ::selection { background: rgb(var(--black-monochrome)); color: rgb(var(--white-monochrome)); } ::-moz-selection { background: rgb(var(--black-monochrome)); color: rgb(var(--white-monochrome)); } #skrollr-body { background-image: none; } #container { background-image: none; } /* body::-webkit-scrollbar-thumb { background-color: rgb(var(--bb-black)); } body::-webkit-scrollbar-track { background-color: rgb(var(--bb-white)); } */ #main-content { padding-bottom: 3em; } /* 版头 */ #login-status, #login-status a { color: rgb(var(--bb-black)); opacity: 0; transition: opacity 300ms; } #login-status span.printuser { opacity: 0; transition: opacity 300ms; } #header:hover #login-status span.printuser, #header:focus-within #login-status span.printuser { opacity: 1; } #header:hover #login-status, #header:hover #login-status a, #header:focus-within #login-status, #header:focus-within #login-status a { opacity: 1; } #account-topbutton { border: none; } #account-options { background-color: rgb(var(--bb-white)); border: 0.15rem solid rgb(var(--bb-black)); } #login-status ul a { text-decoration: none; background-color: rgb(var(--bb-white)); color: rgb(var(--bb-black)); transition: background-color 300ms; } #login-status ul a:hover, #login-status ul a:focus { background-color: rgb(var(--bb-black)); color: rgb(var(--bb-white)) !important; } @media only screen and (max-width: 768px) { #search-top-box-form { display: none; } } #search-top-box-input { display: none; } #search-top-box-form>input.button.btn { opacity: 0; transition: opacity 300ms, color 300ms, background-color 300ms; color: rgb(var(--bb-black)); background-color: rgb(var(--bb-white)); border: 0.15rem solid rgb(var(--bb-black)); } #search-top-box-form>input.button.btn:hover { color: rgb(var(--bb-white)); background-color: rgb(var(--bb-black)); } #search-top-box-form input[type=submit]:focus, #search-top-box-form input[type=submit]:hover { text-shadow: none; } #header:hover #search-top-box-form>input.button.btn, #header:focus-within #search-top-box-form>input.button.btn { opacity: 1; } #header h1 a::before, #header h2 span::before { text-shadow: none; color: rgb(var(--bb-white)); transition: color 300ms, bottom 300ms; } #header:hover h1 a::before, #header:hover h2 span::before, #header:focus-within h1 a::before, #header:focus-within h2 span::before { color: rgb(var(--bb-black)); } #header h1 a:before { position: relative; font-weight: 900 !important; bottom: 0; } #header:hover h1 a:before, #header:focus-within h1 a:before { bottom: 3px; } #header h2, #header h2 span, #header h2 span::before { position: absolute; top: 2rem; margin: 0; width: 100%; display: flex; justify-content: center; } /* 顶栏 */ #top-bar div.mobile-top-bar>ul>li>a, #top-bar div.top-bar>ul>li>a, #header:hover #top-bar div.mobile-top-bar>div.open-menu>p>a, #header:focus-within #top-bar div.mobile-top-bar>div.open-menu>p>a { color: rgb(var(--bb-white)); transition: opacity 300ms; } #header:hover #top-bar div.mobile-top-bar>ul>li>a, #header:hover #top-bar div.top-bar>ul>li>a, #header:focus-within #top-bar div.mobile-top-bar>ul>li>a, #header:focus-within #top-bar div.top-bar>ul>li>a { color: rgb(var(--bb-black)); } #header:hover #top-bar div.mobile-top-bar>div.open-menu>p>a, #header:focus-within #top-bar div.mobile-top-bar>div.open-menu>p>a { color: rgb(var(--bb-black)) !important; } #top-bar div.top-bar>ul>.sfhover>a { color: rgb(var(--bb-white)) !important; } #top-bar div.mobile-top-bar>ul>li:hover>a, #top-bar div.mobile-top-bar>ul>li:focus-within>a { color: rgb(var(--bb-white)) !important; } #top-bar div.mobile-top-bar>ul>li>ul>li, #top-bar div.top-bar>ul>li>ul>li { transition: background 300ms; } #top-bar div.mobile-top-bar>ul>li>ul>li:hover, #top-bar div.top-bar>ul>li>ul>li:hover, #top-bar div.mobile-top-bar>ul>li>ul>li:focus, #top-bar div.top-bar>ul>li>ul>li:focus { background: rgb(var(--bb-white)); } #top-bar div.mobile-top-bar>ul>li>ul>li:hover a, #top-bar div.top-bar>ul>li>ul>li:hover a, #top-bar div.mobile-top-bar>ul>li>ul>li:focus-within a, #top-bar div.top-bar>ul>li>ul>li:focus-within a { color: rgb(var(--bb-black)); } /* 侧栏 */ #side-bar::-webkit-scrollbar { display: none !important; } #main-content::after { visibility: hidden; } #main-content::before { background-color: rgb(var(--bb-white)) !important; } #side-bar div.side-block { border-right: none; } #side-bar .heading { border-top: 0.125rem solid rgb(var(--bb-black)); border-bottom: 0.125rem solid rgb(var(--bb-black)); } #side-bar .heading p { background-color: rgb(var(--bb-black)); color: rgb(var(--bb-white)); text-shadow: none; } #side-bar .menu-item, #side-bar .menu-item p { border-bottom: 0.15rem solid rgb(var(--bb-white)) !important; } #side-bar div.menu-item a:not(a:first-child) { border-left: 0.15rem rgb(var(--bb-white)) !important; } #side-bar .side-block>.collapsible-block .collapsible-block-link { color: rgb(var(--bb-black)); text-shadow: none; } #side-bar .side-block>.collapsible-block .collapsible-block-link:hover { color: rgb(var(--bb-white)); } #side-bar div.menu-item a { transition: background-color 300ms; } #side-bar div.menu-item a:hover { background-color: rgb(var(--bb-black)); color: rgb(var(--bb-white)); } #side-bar .side-block>.collapsible-block a.collapsible-block-link:after, #side-bar div.menu-item a.collapsible-block-link:after, #side-bar div.menu-item a::before { display: none; } #side-bar { position: fixed; border-right: 0.15rem solid transparent; } #content-wrap { margin-left: 0; } #side-bar:hover { border-right: 0.15rem solid rgb(var(--bb-black)); } @media only screen and (max-width: 768px) { #side-bar { border: none !important; } } /* 评分 */ .page-rate-widget-box, .rate-box-with-credit-button { background-color: rgb(var(--bb-white)) !important; border-color: transparent !important; box-shadow: none !important; } /* 页面元素 */ .radius-div>* { border-radius: 10px; } .error-inline { color: rgb(var(--bb-black)); border: 1px solid rgb(var(--bb-black)); } hr, .dashed-hr { margin: 1em 0; padding: 0; display: block; border: none; height: 2px; background-image: linear-gradient(90deg, rgb(var(--bb-black)) 0%, rgb(var(--bb-black)) 55%, rgb(var(--bb-white)) 55%, rgb(var(--bb-white)) 100%); background-size: 1em 2px; background-repeat: x-repeat } .solid-hr { margin: 1em 0; padding: 0; display: block; height: 2px; background-color: rgb(var(--bb-black)); } .styled-hr { margin: 1em 0; padding: 0; display: block; position: relative; height: 0.15em; overflow: hidden; border: initial; background-color: rgb(var(--bb-black)); -webkit-clip-path: polygon(50% 10%, 100% 50%, 50% 90%, 0% 50%); clip-path: polygon(50% 10%, 100% 50%, 50% 90%, 0% 50%); } .avatar-hover { display: none !important; } .avatarhover a { text-decoration: none; color: rgb(var(--bb-black)); -webkit-box-decoration-break: clone; box-decoration-break: clone; transition: color 300ms cubic-bezier(0.4, 0.0, 0.2, 1); background-color 300ms cubic-bezier(0.4, 0.0, 0.2, 1); } .avatarhover:hover a { text-decoration: none; color: rgb(var(--bb-white)); } #action-area .avatarhover:hover a { background-color:rgb(var(--bb-black)); } #page-content a:not([href*="user"]):not([href*="javascript:;"]):not([href*="#u-credit-view"]), #page-content .avatarhover, .hovertip a, .classic-collap a.collapsible-block-link { padding: 0.15em; margin: -0.15em; color: rgb(var(--bb-black)); -webkit-box-decoration-break: clone; box-decoration-break: clone; box-shadow: inset 0 -0.125rem 0 0rem rgb(var(--bb-black)); transition: box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1), color 300ms cubic-bezier(0.4, 0.0, 0.2, 1); } #page-content a:not([href*="user"]):not([href*="javascript:;"]):not([href*="#u-credit-view"]):hover, #page-content .avatarhover:hover, .hovertip a:hover, .classic-collap a.collapsible-block-link:hover { box-shadow: inset 0 -1.5em 0 0 rgb(var(--bb-black)); text-decoration: none; color: rgb(var(--bb-white)); } #page-title, .meta-title { margin: 0 auto 0.6em; text-align: center; font-size: 30px !important; } /* 目录 & 折叠 */ #toc { background-color: rgb(var(--bb-white)); border: solid 0.15rem rgb(var(--bb-black)); color: rgb(var(--bb-black)); padding: 0; } #toc-action-bar { padding: 0 !important; } #toc-list { margin: 0.5em; } #toc-action-bar>a, a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *) { display: inline-block; transition: background-color 300ms; color: rgb(var(--bb-black)); background-color: rgb(var(--bb-white)); text-decoration: none !important; } a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *) { padding-right: 0.4em; } .collapsible-block { margin: 1em 0; } #toc-action-bar>a { width: 100%; } #toc-action-bar>a:hover, a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *):hover { color: rgb(var(--bb-white)); background-color: rgb(var(--bb-black)); } #toc-action-bar>a:nth-child(1)::before, #toc-action-bar>a:nth-child(2)::before, .collapsible-block-folded a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before, .collapsible-block-unfolded-link a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before { margin: 0 0.2em 0 0.4em; content: "▼"; color: rgb(var(--bb-black)); background-color: transparent; visibility: visible; display: inline-block; } #toc-action-bar>a:nth-child(1):hover::before, #toc-action-bar>a:nth-child(2):hover::before, .collapsible-block-folded a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *):hover::before, .collapsible-block-unfolded-link a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *):hover::before { color: rgb(var(--bb-white)); } #toc-action-bar>a:nth-child(2)::before, .collapsible-block-folded a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before { animation-name: collapsible-arrow-spin; animation-duration: 0.3s; animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32, .38, .39, .94); animation-fill-mode: forwards; } #toc-action-bar>a:nth-child(1)::before, .collapsible-block-unfolded-link a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before { animation-name: collapsible-arrow-spin-back; animation-duration: 0.3s; animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32, .38, .39, .94); animation-fill-mode: forwards; } @keyframes collapsible-arrow-spin { from { transform: rotate(0deg); } to { transform: rotate(-90deg); } } @keyframes collapsible-arrow-spin-back { from { transform: rotate(-90deg); } to { transform: rotate(0deg); } } /* 分页 */ .yui-navset .yui-nav { border: solid 3px rgb(var(--bb-black)); box-shadow: none; } .yui-navset .yui-nav a, .yui-navset .yui-navset-top .yui-nav a { transition: background-color 300ms; background-color: rgb(var(--bb-white)); color: rgb(var(--bb-black)); } .yui-navset .yui-nav a:hover, .yui-navset .yui-nav a:focus { background-color: rgb(var(--bb-black)); color: rgb(var(--bb-white)); } .yui-navset .yui-nav .selected, .yui-navset .yui-navset-top .yui-nav .selected { background-color: rgb(var(--bb-black)); color: rgb(var(--bb-white)) !important; } .yui-navset .yui-nav .selected a { color: rgb(var(--bb-white)) !important; } .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:active { background-color: rgb(var(--bb-black)); color: rgb(var(--bb-white)); } .yui-navset .yui-nav li, .yui-navset .yui-navset-top .yui-nav li { box-shadow: 0 0 0 .0625rem rgb(var(--bb-white)); background-color: rgb(var(--bb-white)); } .yui-navset .yui-content { background-color: rgb(var(--bb-white)); border: none; margin: 0; padding: 0.25em 0; } /* 图像框 */ .scp-image-block { border: none; box-shadow: none; } .scp-image-block .scp-image-caption { background-color: rgb(var(--bb-black)); color: rgb(var(--bb-white)); border: none !important; } .reversed-image .scp-image-block .scp-image-caption { background-color: rgb(var(--bb-white)); color: rgb(var(--bb-black)); } .bordered-image .scp-image-block { border: 0.15rem solid rgb(var(--bb-black)); } /* 表格 */ table.wiki-content-table tr, table.wiki-content-table th, table.wiki-content-table td { border: .2rem solid rgb(var(--bb-black)) !important; } table.wiki-content-table th { background-color: rgb(var(--bb-black)) !important; color: rgb(var(--bb-white)); } /* DIVs */ .code { border: dashed 0.15rem rgb(var(--bb-black)); background-color: rgb(var(--bb-white)); color: rgb(var(--bb-black)); } .code::-webkit-scrollbar-thumb { background-color: rgb(var(--bb-black)); } .code::-webkit-scrollbar-track { background-color: rgb(var(--bb-white)); } .blockquote, blockquote { border: solid 0.15rem rgb(var(--bb-black)) !important; box-shadow: none !important; background-color: rgb(var(--bb-white)) !important; color: rgb(var(--bb-black)) !important; } .lightblock { margin-left: 0; border: solid 0.15rem rgb(var(--bb-black)) !important; box-shadow: none !important; background-color: rgb(var(--bb-white)); color: rgb(var(--bb-black)); } .darkblock { --bb-black: var(--white-monochrome); --bb-white: var(--black-monochrome); margin-left: 0; border: none !important; box-shadow: none !important; background: rgb(var(--bb-white)); color: rgb(var(--bb-black)); } .darkblock * { --bb-black: var(--white-monochrome); --bb-white: var(--black-monochrome); } .styled-quote { background-color: rgb(var(--bb-white)); color: rgb(var(--bb-black)); margin-left: 0; border-left: solid 0.4rem rgb(var(--bb-black)) !important; box-shadow: none !important; padding-top: 0; padding-bottom: 0; } .dotted-quote { color: rgb(var(--bb-black)); background-color: rgb(var(--bb-white)); padding: 0.01rem 1rem; margin: 0.5rem 0; border: dashed 0.15rem rgb(var(--bb-black)); } .dotted-quote hr { background-image: none; background-color: rgb(var(--bb-white)); height: 0px; border-top: dashed 0.15rem rgb(var(--bb-black)); } .accent-block { --bb-black: var(--bb-accent-color); --bb-white: var(--bb-accent-background); background-color: rgb(var(--bb-white)); padding: 0.01rem 1rem; margin: 0.5rem 0; color: rgb(var(--bb-black)); } .accent-block * { --bb-black: var(--bb-accent-color); --bb-white: var(--bb-accent-background); } .accent-block .darkblock { --bb-black: var(--bb-accent-background) !important; --bb-white: var(--bb-accent-color) !important; } /* 脚注 */ a.footnoteref { color: rgb(var(--bb-black)); background-color: transparent; transition: background-color 300ms; text-decoration: none !important; padding: 0 0.2em; } a.footnoteref:hover { color: rgb(var(--bb-white)); background-color: rgb(var(--bb-black)); } .hovertip { border: 0.15rem solid rgb(var(--bb-black)) !important; } .hovertip .f-footer { display: none; } #page-content>div.footnotes-footer { border-left: solid 0.4rem rgb(var(--bb-black)); margin-top: 1rem; } .footnotes-footer .footnote-footer a:nth-child(1) { text-decoration: none; color: rgb(var(--bb-black)); } /* 标签 */ .page-tags { margin: 0 auto; text-align: center !important; } .page-tags a { line-height: inherit; font-weight: 600; } .page-tags span { border-top: none; border-bottom: 0.15rem solid rgb(var(--bb-black)); } .page-tags span a { color: rgb(var(--bb-black)); -webkit-box-decoration-break: clone; box-decoration-break: clone; transition: box-shadow 300ms cubic-bezier(0.4, 0.0, 0.2, 1), color 300ms cubic-bezier(0.4, 0.0, 0.2, 1), padding 300ms cubic-bezier(0.4, 0.0, 0.2, 1), margin 300ms cubic-bezier(0.4, 0.0, 0.2, 1); } .page-tags span a:hover { box-shadow: inset 0 -1.5em 0 0 rgb(var(--bb-black)); text-decoration: none; color: rgb(var(--bb-white)); } /* 按钮 */ div#page-options-bottom-2>a, div#page-options-bottom>a { background-color: rgb(var(--bb-white)); font-weight: 600 !important; color: rgb(var(--bb-black)); border-radius: 0em; -moz-border-radius: 0em; border: 0.15rem solid transparent; text-decoration: none !important; transition: border 300ms, background-color 300ms; } #prw54355 { font-weight: 600 !important; } div#page-options-bottom-2>a:active, div#page-options-bottom-2>a:hover, div#page-options-bottom>a:active, div#page-options-bottom>a:hover { color: rgb(var(--bb-white)); background-color: rgb(var(--bb-black)); border: 0.15rem solid rgb(var(--bb-black)); text-decoration: none !important; } /* 信息 */ #page-info { color: rgb(var(--bb-white)); } div.page-watch-options { visibility: hidden; } @media only screen and (max-width: 768px) { #page-info { display: none; } } /* 页脚 */ #license-area { display: none; } #footer { display: none !important; } /* 操作 */ #owindow-1 { border-color: rgb(var(--bb-black)); } #who-rated-page-area>div>span { color: rgb(var(--bb-black)) !important; } #who-rated-page-area .avatarhover:hover a { transition: background-color 300ms; } #who-rated-page-area .avatarhover:hover a { background-color: rgb(var(--bb-black)); } #action-area input.text::-webkit-scrollbar-thumb, #action-area textarea::-webkit-scrollbar-thumb { background-color: rgb(var(--bb-black)); } #action-area input.text::-webkit-scrollbar-track, #action-area textarea::-webkit-scrollbar-track { background-color: rgb(var(--bb-white)); border-left: rgb(var(--bb-black)) 0.15rem solid; } #action-area input.text::-webkit-resizer, #action-area textarea::-webkit-resizer { border-top: rgb(var(--bb-black)) 0.15rem solid; border-left: rgb(var(--bb-black)) 0.15rem solid; background-color: rgb(var(--bb-white)); color: rgb(var(--bb-black)); } textarea, input.text, input.checkbox, div.note, #lock-info { border: 0.15rem solid rgb(var(--bb-black)) !important; } table.form td div.sub, form div.sub { color: rgb(var(--bb-black)); } .pager a { color: rgb(var(--bb-black)); background-color: rgb(var(--bb-white)); border: 0.15rem solid rgb(var(--bb-black)); text-decoration: none !important; transition: background-color 300ms; } .pager .current { border: 0.15rem solid rgb(var(--bb-black)); color: rgb(var(--bb-white)); background-color: rgb(var(--bb-black)); } .pager a:hover { color: rgb(var(--bb-white)); background-color: rgb(var(--bb-black)); } .change-textarea-size a { color: rgb(var(--bb-black)); background-color: rgb(var(--bb-white)); border: 0.15rem solid rgb(var(--bb-black)); transition: background-color 300ms; text-decoration: none; } .change-textarea-size a:hover, .change-textarea-size a:active { color: rgb(var(--bb-white)); background-color: rgb(var(--bb-black)); } .owindow .button-bar a, a.button, button, div.buttons input, file, input.button { background: rgb(var(--bb-white)); color: rgb(var(--bb-black)); border-radius: 0em !important; -moz-border-radius: 0em !important; border: 0.15rem solid rgb(var(--bb-black)); transition: border 300ms, background-color 300ms; } .page-source { border: 0.15rem solid rgb(var(--bb-black)); font-family: var(--mono-font); } .owindow .button-bar a:active, .owindow .button-bar a:hover, a.button:active, a.button:hover, button:active, button:hover, div.buttons input:active, div.buttons input:hover, file:active, file:hover, input.button:active, input.button:hover { color: rgb(var(--bb-white)); background-color: rgb(var(--bb-black)); border: 0.15rem solid rgb(var(--bb-black)); } .preview-message { border: 0.15rem dotted rgb(var(--bb-black)); background-color: rgb(var(--bb-white)); } a.action-area-close:hover { background-color: rgb(var(--bb-white)); } table.page-history td.optionstd a { color: rgb(var(--bb-black)); border: none; text-decoration: none; background-color: transparent; transition: background-color 300ms; } table.page-history td.optionstd a:hover { color: rgb(var(--bb-white)); background-color: rgb(var(--bb-black)); } select { font-family: var(--body-font); border: 0.1rem solid rgb(var(--bb-black)); color: rgb(var(--bb-black)); background-color: rgb(var(--bb-white)); } /* 特殊折叠 */ .styled-collap .collapsible-block { margin: 0.5rem 0; } .styled-collap a.collapsible-block-link { text-decoration: none; display: block; padding: 0.3rem 0.5rem; background-color: rgb(var(--bb-black)); color: rgb(var(--bb-white)); } .styled-collap .collapsible-block-content { padding: 0.01rem 1rem; background-color: rgb(var(--bb-white)); border: 0.125rem solid rgb(var(--bb-black)); border-top: none; } .styled-collap .collapsible-block-folded a.collapsible-block-link::before { margin: 0 0.2em 0 0.4em; content: "▶"; color: rgb(var(--bb-white)); background-color: transparent; display: inline-block; } .styled-collap .collapsible-block-unfolded a.collapsible-block-link::before { margin: 0 0.2em 0 0.4em; content: "▼"; color: rgb(var(--bb-white)); background-color: transparent; visibility: visible; display: inline-block; } /* 更多标题 */ .classic-title { text-align: left; border-bottom: 3px rgb(var(--bb-black)) solid; padding: 0; margin-top: 0.6em !important; margin-bottom: 0.6em !important; } .classic-title p { margin-bottom: 0.2em; } .new-title { display: flex; margin-top: 0.6em !important; margin-bottom: 0.6em !important; } .new-title p { display: flex; margin-top: 0; margin-bottom: 0; } .new-title::after { content: ""; flex-grow: 1; height: 3px; margin: auto auto auto 1.2rem; background: rgb(var(--bb-black)); } /* SD 适配 */ .sd-container { --sd-border: var(--bb-black); --sd-bullets: var(--bb-black) !important; } /* 授权栏适配 */ #page-content .licensebox .collapsible-block-link { color: rgb(var(--bb-black)); } #page-content .licensebox .collapsible-block-link:hover { color: rgb(var(--bb-white)); }
就不该在Level 4到处乱搞的,我暗自吐槽道。但当我从那个楼梯上摔下来,掉到这个看起来只有一面墙的地下室的时候,就已经为时已晚了。
我扶着自己的头缓了一下,似乎是摔晕了,但晕了多长时间我自己也不知道。周围相当昏暗,我环顾四周,除开这一面似乎无限延伸的墙壁,其他地方都无法确定有什么。
我的第一反应是,赶紧回去。
可我在这一瞬间茫然了……
我无法形容此时的感受,就感觉自己似乎忘掉了什么,但又不知道自己忘掉了什么。我很清楚的记得这里是哪,很清楚的知道应该沿着墙走,很清楚的记得要寻找那些碎石瓦砾多的地方,那里很可能是出口,可是,为什么?
我不知道,此地不宜久留的想法像徘徊的防空警报般的盘旋在大脑里。但我看向了来时的楼梯,直觉告诉我绝不能走这楼梯,至少通向黑暗的地方某种意义上绝不是什么好的选择。
我努力的回忆着自己看过的档案,脑海中闪过了曾经的记忆,沿着墙走,这似乎没什么问题,毕竟除了这堵破败的墙壁,也没有其他更好的选择了。通向黑暗的地方某种意义上绝不是什么好的选择。
我沿着墙走,寻找着那些类似于出口的位置,那种堆砌着大量杂物的地方,虽说没有定论,但至少有希望,对,总比那些黑漆漆的位置,通向黑暗的地方某种意义上绝不是什么好的选择。
我愣了一下,为什么?为什么我的脑子里一直在重复着这些奇怪有毫无意义的话语?等一下,毫无意义?我为什么会这么想?通向黑暗的地方某种意义上真的不是什么好的选择。
我恍惚了,我意识到自己的精神事实上已经出现了问题,我到这里多久了……
那名为“求生欲”的本能支配着我向前走。这里居然有光,算了,不去想那么多了,就当是,层级照顾我们这些来到这里的倒霉蛋吧。
光照一直围绕在我周围,让我能辨别周围的环境,我继续走着,那些破败的脚手架、碎石、瓦砾似乎在增多,不是增多,似乎是这附近开始堆积了起来,我开始兴奋了起来,为什么?该死,又是这种感觉,不过我也不想在意这种,毕竟我来到这种堆砌着大量碎石瓦砾的地方就是为了来找出口的……
哈哈,我笑了出来,操他妈的我居然在笑!在我忘记了自己要干什么的时候!
本来我来到这就纯属意外,按理来说应该与外界保持联系,我现在算是明白了,来到这会忘东西,有个人在你耳边起码能提醒着你你在干什么,对就是这样的。……
可我一直沿着墙走是在干什么?
找到离开这的方法。
难道我把这么重要的事给忘了?我摇了摇头,一定是紧张导致的,正常情况下遇到事很容易忘记一些事,一定是这样的,一定是这样的!
我得走下去,我得想起自己来到这里的目的!我……
怎么来到这的?
也不知道是恍惚还是什么,我的眼前似乎有什么在飞。
飞蚊症?也不是不可能。
但是当我脸上有触感的时候,我才意识到,这些小飞虫似乎是真实存在的。
这些是实体?
也许我并不孤单。
我不想理会这些,它们并不会影响我,只是随着我的行走越来越多,难道越往深处越……
这时,我注意到,在远离墙壁的位置,有个人?
他本不应该出现在那里的。
他发出着一些难以理解的声音,我试图靠近他,而映入眼帘的,
是一具残破不堪的躯体。
我想询问他一些事,但他似乎已经不会有所反应了,只留下向着墙壁爬行的姿势。
但这些飞虫,似乎在发出“呼救声”?
它们并没有朝我飞来,而是飞往了深处……
发现跟自己作伴除了流浪者还有其他实体的时候,我也说不上高兴还是害怕。
我一直在沿着墙走,沿路除了那些瓦砾碎屑,破碎的脚手架,还有窃皮者?
我不清楚,看着它那的躯体,只有那标志性的身高和外观,毕竟这黑白色的世界里可没有颜色特征。
它似乎也在沿墙行进,但每一步都会有尘土从它的身上抖落。
它在消失?
它似乎听到了我,转过身来。
我看到了一个像是被无情蹂躏过玩偶一般的正面,若不是那外观特征,我不敢相信这个没有眼睛、脸消失了一半、躯体有着各种破损的东西是窃皮者,或者说,现在我也不敢相信。
我绕开了它,它并没有追上来,当它渐渐的消失在我的视野中时,我意识到了一个问题,它的周围没有那些小飞虫。
还是说,只有流浪者才会?
我不清楚,报告中并没有,还是说……
我没想那么多,只是继续走着……
好冷
什么情况,难道连我的感知都……
我无心去想这些,毕竟……我要做什么?
耳边缓缓地响起来了声音,这是什么?
我在努力的回忆这是什么声音,但我的大脑在告诉我,这是风声、雨声、海浪声……
为什么会是这些?我在辨别这些声音的来源,它们不来自于任何位置,似乎是在我的脑子里发出的……
我听到了礼堂的钟声,婚礼?不应该啊,我掉进后室的时候可没结婚,不过说来也讽刺,刚跟交往许久的女朋友确定了心意,就掉进了这该死的地方,她应该……
等等,我为什么在想这些?在后室这鬼地方,生存的压力都把我这些美好的回忆消磨光了……
走马灯?
我自嘲的笑了一下,是啊,在这么走下去我就是死路一条。
那声音不合时宜的,或者说十分精准的再次响起,我眼前是我表白的那一刻……真好啊,她还是那般的美丽,那般的温柔,真想……
慢着,为什么会有声音?!
我记得当时我们因为什么事躲了起来,周围的环境是寂静的,为什么会有这么明显的声音?
那声音回响着,我的脑海中开始播放着曾经那些温馨幸福的时刻,可是,在某些时刻是没有声音的,这股声响就是那些时刻的杂音……
我试图分析发生了什么,显然这些声音并不是那些时刻的,它只是恰如其分在此时响起,让我觉得它就是那时候的……
可我为什么会想起那时候的事?明明已经被消磨掉了……还是说那些美好的回忆只是被新的记忆覆盖掉了,这么说的话……
我意识到了一个严重的问题,我已经忘记自己为什么会在这了……
这让我有些慌乱,毕竟在这种恶劣的环境下,忘记档案无异于死路一条,我努力回忆着有关这个虚空地下室的相关信息,
我还记得多少?
这可真冷
我继续沿着墙壁在走,那些回响,现在已经可以称的上是杂音了,就像蜂鸣声在我脑子里回荡着……
那股刺耳的声音一直在,我被脚手架绊倒了,这的碎石瓦砾可真多。
我忍不住吐槽,自己的心底似乎产生了一股没来由的希望……
我不知道为什么会有这种感觉,只是这里让我……
算了,继续走吧……
这时,我注意到自己的手指已经开始消失了,慢慢的像尘埃一般飘散在空中……
那不是尘埃,是种小飞虫?
我感到了一丝熟悉,我说不上来为什么会熟悉,只是看着它们在飞舞着。
没有一丝一毫的感觉,我也好奇自己居然能不害怕,或许此刻的我已经是一个死人了,只是拖着这具注定消失的躯体往前行走着,走向那注定的结局。
为什么是我?
恍惚间,我似乎看到了那些小飞虫前往的地方,在那灰暗的深处,它们似乎正在聚集成一个有着巨大翅膀的什么……
现̸̙̇̆̐实̯̮̂ͨ̄似̷̜͑̒͞乎̬͑͐̃͞在̨̭͔̟ͧ折̩̼̻ͯ͛叠̳͔̖̌ͥ…͓̖̦̒̀…̤͓̓̕͝
我̷̶̱̤̋恐̷̪̓̏͡怕̛͎̺ͩͅ已̸̬͂ͭ̿经̸͔̠̰̉被̻͉̑̌̿抛̧̤̦͈̕弃̛̳̉̑͟在̶̭̓͘͜了̞̉ͫ͞͠这̫̟̍́ͯ荒̷̪́ͪͮ凉̹̮̠͋̕的̛̈́̃̆̒边̤͓̝̞͝境͏͉̤͑͛
正̴̗̳͖̣̩̎̂̑̎如̸̛̳͇̔̆́͘̚͝此̸͉͖̄̾̍̌͟͡͠地̵͔̝͑̃͗͑̅̚͠一̢̛̜̻̄̍̏̈́ͤ̇般̴͙͋̾̉͏͖̈́̓̐
漫̶̖̙͇̞̽̏̉̑ͅ无̫̖͊ͫ͜͏̑͑̂͞目̦̱̰ͥͤ̓̋̏́͢的͔͙ͮ̈́̆̉̃̀̾̊地̛̝̂ͭ͊͒̔̍͡͝走̵̷̟̙̹͑̔ͪ͗ͤ下̷̻̹̬͆͗ͦ̈̈ͅ去̡̡̛̩̱͓ͨ̋͒̕
身̬̝̤̊͌̃̎̊̚ͅ形̦͖̤ͨ̅̏́̚̕͞随̶̪̱̜̯ͪ̄͋̿̒着̴̢̡̥͍̺̯ͧͫͫ时̧̝̥ͭ̈́͋͌̂ͧͦ间̸̨̡̛͇̼̓̄̀͢逐̛̛̜͐͒̾ͬͦͥ͠渐͓̪͙̎ͥ̀͂ͦͫ͜消̩̔ͬͥ͟͡͏̌́ͯ散̶̸̢̪̻̖̬̽ͩ̑
有̢͙͈̊̈́̿͂͒͝͝谁̹̖̘̀͊ͨ͒ͬ͘͢在̺͔͙̗̹̇̏ͬͤ͜看͍̖̪̇̋̋͂̂͞͠吗͓̣̍ͧ̐͋̽͢͠͝?̸̭̫̹͓̔̽͌ͤ̐
哪̶̢̛̝͉͉̲͑̈̓ͤ̿ͧ̃̚怕̨̤̙͍̳̰̼̤̐́͐ͧͧ̅̈́只̨̢̛̫͇̱̮̰̮ͫ̿ͧ̑̋̑有̷̧͓̬̬́̌̋̽ͬ͆̓̚̕͝一͖̼͚͙̱̰̏́ͫ̄̿ͧ̕͟ͅ眼̡̡͙͇̀͐̃͛ͫ̂͛͑̉ͬ͟也̲͇͙͖͕ͧ̎̽̈́̆̓ͩ̀̚͡好̶̡̨̳̫̳͆̈́̇͋͊ͭ̏̚͜…̯͓ͬ͒͐͏̻͕̼̟ͪ͛͒͜͠…͑̆̆͏̴̡͉̰͗̏͐̌̀̄ͦ
回̗ͭ͒ͪ͏̫̖̻̱͒̐̒ͭ̔͗望̴̹̤̲̯͕̫̄ͤͩ̿̑̇ͫ̿那̴͍̞̰͖͔̩̮͐ͧͣ̓ͤ͘͟也̨̖̬̦͔̻ͩ̈̄͊ͬ̑ͬ͡͞许̢̢̦̲̫̠͛͗ͦ̇͋ͮ̀͟ͅ存̢̭̥̤̼͕̘͕͙́̉͊̕͟͟在̷̷͔̩̥̳̹̯̂̏̿̏ͫͭ̀过̸̧̖̻ͮ̇̈ͨ̈͋͗͒̊͘͟的̰͉͕̃̆ͩͯͨ͛͡͏̤̳̋͢美̢̝͕̬ͤ͗̓̐̓͗̀̈́̕͜͞好̛͕͍̤̺̯̘̞̼̣͊͂̈́͌ͥ
那̵̛̭̱̳͈͓̈͆ͪ́́̂͡͠曾̧͔̫̹̙̬̆̽ͬ̂̍̏ͦ͝͞经̸̡̨͕̰̺͉͂ͤͨ̄ͨ̽͢͞的̨̬͚̹̹͇̫ͧ͆̊̈ͦ̎̐̃辉̞̘̥̻̯̈́̈́ͣ͋͒͂̐̓͑͞煌̸͖̩͇͓͌͐ͭͯͩ͑ͨ͘̚͠
就̶̶̷͕̆ͣ̾̾̊͏̢̣̰̹̇ͥ̑͐̅͡像̵̨̻̠̞̩̳̭̩̺̫̜̃̀ͣ͐ͨ̚͡ͅ那̨̦̓͘͢͏̧̢̺̫̗̦̬́ͤ̑ͯ͋͌͢回̦̘̲͉̲͈͎͍̣̳̓ͫͤ͒̓ͬ͂ͭ͐͞声̷̷̨̣̼͍͎̲̙͊ͧͯͧ̉͑ͦ̇̃͞ͅ想̧͉̜̝̖͉̲͍ͦ̂̂͂͒̀̔̄̚̕͞͞传̣̘̳͗͏̸̛̲͈͕̮̙̲̝̈́̈͊ͨ͠͞达̧͙͇̥̉̀̄́ͫ̉̑̾͆ͦ̓ͩ̂͘͡͠的͚̹͈̫̖̞̯͖̠͉ͭ̇́ͭ̾ͦ̉ͦ̕͟
但̴̶̹̰̟̱̲̗͑ͧ̆̇ͭ̒̀ͭ̚̚̕ͅ我̨̦͚̖̭͇͈̹ͮ̂̉͒̊̀ͪͫ͌ͯ̃́们̥͈̟̱͙̝͖͛ͤͨͭ̋̃̓ͫ̄͘̚͝ͅ的̵̞̼̼̰͙̖̼͈̪̫̦̪̻ͮ͋͛̎ͭ͟结̶̵̛̛̖͎̻̰̮̖͋̓́̆ͩ́̒̈͡ͅ局͎͎̜͍͍̩͚̞͇̿͗ͯ͌̌̋̄̇̀͆͛依͕͏̨͔̦̻̘̻͈̣̆̓̆̅̔͂͘̚̚͞旧̷̵̫͕͖͇̫̘͚ͥ̿͑͑̉͆̔̕͟͢͢是̛̠͒ͥͧ̇̕͡͏͇̺̹͕̑̊̀ͫ̎͂͗
迷͏̷̰͖̺͍͇̱͇͔̋̔̏ͤ̑̒͒̂͑̀͂̚̕͢͡失̴̦͙͉̹̞͍͙̙̹̘̼̳̙̰̊̉̋̆̾̚͟͝͝͠于͓̮̫͚̘̪̥̙̥̗̖͉͖ͯ̒͛ͧ̆̍͂ͥ̔̋̕͠边̷̶̴̧͚̟̻̻̗̩̞̙͓́̌ͯ̄̃̓͒̌̌̿͢͠境̶̡̛̤̩͉̰̣͇͔̠̌͑̋̌̎̅̀̆ͭ̒̐̚͠͡
消̴̢͍͈̲̗̐̿̎͐̉͐͏̴̨͇͖̙͈͋͆̽̑̑̅泯͟͏̧̟͈̫̦̪̲̠̣͍͇͍͕̀ͣ͑̽ͧ̆̈́͝͡͡于̳͏̶̵̢̛̛̟̗͖͎͆ͬͫ͗̈̅̄͒ͯ̔̓̉͊͡逝̷̡̦̩̭̤̲̮͓̘̬͉̘̖̅ͩ̊͗̂͂ͫ͢͢͜͠年͓̭̹͙̮̖͔͙͚̈́̔̀̅̍̓ͭ͐ͤ̂̓͊͑͟͟͞
在̛̙̖̝̭̯̩̟̆ͭ̄̍̆̽̀͆̓ͩ̔͑ͬͩͪ̈̔ͪ̈́̊̚͢那̷̢̧̞̬̟͉͍͔͚͎̬͓͓̈ͣͮ̎̄ͥ̐̓͆ͫ̋͑̽̓̚͟鲸̶̸̛͓͍̟̝͖͉͇̤́͊̈́̓ͯͨ̓͂̓ͧ̽̌̿̏̔ͨ͜͝͞吞̷̷̙̫̙͖̰̣̣͇̪̣̬͓̯̗̍̂͑̈́̉̅̏ͧ̿ͩ͋̽ͤ͛光̷̵̵̷̱̯̣̥͙͍̹͗̏̏̉ͤ͂ͦ̊̎͋̋̀͂ͤ͗̿ͩ͞͞芒̵̧̧̛̘̦̳̬̪̙̠̮̯̙̗̘̼͚͈̪͈͍ͩͣͤ̃̈̆ͤ̈́的̘̖̔̿ͬ̉͝͏̨̢̟̤̌̒̓̎̇͌ͯ͘͜͡͠͏͈͖̊ͧͩͧ灰̸̵̧̛̠̭̠̭͙̜̝̤̖̟̤̈́͛̇͆̄̐ͥͯͣ͆ͩ͋͜͡͡中̸̨̨͍̬̪̭͕̼̮̾͋ͤ̂ͦ̒̍ͥ̈́ͨ͒̉ͦͣͨ̊̍̾̃͝
……
…
.
化作消逝在阴影中的一抹暗灰黯洃……
-
著作信息
边境之旅
作者:Nameless35722 - 作者页
wangjx - 作者页
wild ghost377 - 作者页
snowmob - 作者页
DielsAlder
十分感谢队员们的帮助
迷失域
想要解开心中的悬念?来看看我们队伍的其他作品!
我是那消逝在阴影中的一抹暗灰。
美梦将死,然后灰色的世界醒来。
暗灰边界的更深处,崩溃边缘的大地。
文字记下他们的生,却永远忘却了他们的死,失落的传说和濒临崩塌的绝对之点,始终在重现着它们的宿命——消逝。
一切终将被遗忘,但请握住我的手。
天不赋力,草芥泯于逝川。
