: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=Quicksand:wght@500&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap'); @font-face { font-family: 'GlowSansSC'; src: url('https://cdn.jsdelivr.net/gh/LupusCaeruleus/Fonts@main/GlowSansSC-Compressed-Bold.woff') format('woff'); font-weight: normal; font-style: normal; font-display: swap; } @font-face { font-family: 'GlowSansSC'; src: url('https://cdn.jsdelivr.net/gh/LupusCaeruleus/Fonts@main/GlowSansSC-Compressed-ExtraBold.woff') format('woff'); font-weight: bold; font-style: normal; font-display: swap; } @font-face { font-family: 'ARKai_C'; src: url('https://cdn.jsdelivr.net/gh/LupusCaeruleus/Fonts@main/ARKai_C.woff') format('woff'); font-weight: normal; font-style: normal; font-display: swap; } :root { --logo-image:url("http://id-backrooms-wiki.wikidot.com/local--files/start/Logo%20TBID"); --header-title: '海 洋'; --header-subtitle: "平静水域"; --body-font: 'Quicksand', 'ARKai_C', '幼圆', 'Noto Sans SC', 'Noto Color Emoji', sans-serif; --header-font: 'Fjalla One', 'GlowSansSC', 'Noto Sans SC', 'Noto Color Emoji', sans-serif; --title-font: 'Fjalla One', 'GlowSansSC', 'Noto Sans SC', 'Noto Color Emoji', sans-serif; --mono-font: 'Source Code Pro', 'Noto Serif SC', 'Noto Color Emoji', monospace; /*Warna Latar Belakang*/ --white-monochrome: 255, 255, 255; /*Warna Kotak Tabs*/ --pale-gray-monochrome: 250, 255, 255; /*Warna Kotak Tabel*/ --light-gray-monochrome: 26, 153, 96; /*Warna Navigasi Atas*/ --gray-monochrome: 9, 102, 60; /*Warna Tombol a*/ --dark-gray-monochrome: 5, 46, 28; /*Warna Teks*/ --black-monochrome: 0, 0, 0; /*Warna Tombol Nav:Side a*/ --bright-accent: 0, 184, 101; /*Warna Kotak Tabs a*/ --medium-accent: 9, 102, 60; /*Warna Options Button*/ --dark-accent: 9, 84, 50; /*Warna Link Kosong*/ --alt-accent: 74, 255, 174; /*Warna Link Yang Udah Dilihat*/ --visited-link-color: 0, 232, 128; --border-styling: outset 2px rgb(var(--swatch-border-color)); --link-color: 0, 156, 86; --hover-link-color: 0, 156, 86; --link-color: 0, 156, 86; --hover-link-color: 0, 156, 86; } --box-border-bottom: 4px 4px 0 0 rgba(0, 0, 0, 0.2); --box-border-top: 4px 4px 0 0 rgba(0, 0, 0, 0.2); --box-border-left: 4px 4px 0 0 rgba(0, 0, 0, 0.2); --box-border-right: 4px 4px 0 0 rgba(0, 0, 0, 0.2); --box-border-all: 4px 4px 0 0 rgba(0, 0, 0, 0.2); --rating-module-button-plus-color: var(--light-gray-monochrome); --rating-module-button-negative-color: var(--light-gray-monochrome); --rating-module-button-cancel-color: var(--light-gray-monochrome); --rating-module-button-credit-color: var(--light-gray-monochrome); } #header h1, #header h1 a { top: 0.5rem; font-size: 150%; } #header h2, #header h2 span, #header h2 span::before { top: 1.7rem; font-size: 90%; } #skrollr-body { width: 100%; height: 7.625rem; position: absolute; top: 0; left: 0; background: repeating-linear-gradient(-45deg, #360509, #360509 4px, #000000 5px, #000000 5px); background-image: linear-gradient(to bottom, rgba(000,000,000,0) 100%, rgba(000,000,000,0) 100%), url('https://scpsandboxcn.wikidot.com/local--files/lupus-caeruleus/theme-bahari.jpg'); background-color: black; background-repeat: no-repeat; background-size: cover; background-position: bottom; } @media screen and (prefers-reduced-motion: no-preference) { #page-title, #breadcrumbs, #page-content > * { animation-name: swiup; animation-duration: 1s; animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } } #page-title { animation-delay: 0s; font-size: 150%; text-align: center; } #page-title, h1, h2 { color: #09663C; } #side-bar .side-block { position:relative; z-index:3; } #container { background-image: radial-gradient(circle, rgb(var(--medium-accent), 0.05) 50%, transparent 0); } #toc { color: black; background: #FAFAFA; border: 2px dashed #09663C; border-radius: 10px; } h3,h4,h5,h6 { color: #13BA6F; } textarea#edit-page-textarea { background-color: #FAFAFA; border: 2px solid #09663C; border-radius: 10px; color: #000000; } input.text#edit-page-title { background-color: #FAFAFA; border: 2px solid #09663C; border-radius: 10px 20px; color: #000000; font-family: var(--title-font); font-size: 90%; padding: 5px; } blockquote { border: 2px solid #09663C; border-radius: 10px; padding: 1em; background-color: #FAFAFA; } snowflake { color: #fff; font-size: 1em; font-family: Arial, sans-serif; text-shadow: 0 0 5px #000; } .styled-quote { background-color: #FAFAFA; border-left: 0.5rem solid #09663C; padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); border-radius: 5px 10px 10px 5px; } .dark-styled-quote { background-color: #09663C; border-left: 0.5rem solid #FAFAFA; color: #FAFAFA; border-radius: 5px 10px 10px 5px; } .lightblock { background-color: #FAFAFA; padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border-radius: 10px; } .darkblock { background-color: #09663C; color: #FAFAFA; padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border-radius: 10px; } .darkblock a { color: #09663C; } .darkblock h1, .darkblock h2, .darkblock h3, .darkblock h4, .darkblock h5, .darkblock h6, .dark-styled-quote h1, .dark-styled-quote h2, .dark-styled-quote h3, .dark-styled-quote h4, .dark-styled-quote h5, .dark-styled-quote h6, .dark-titleblock h1, .dark-titleblock h2, .dark-titleblock h3, .dark-titleblock h4, .dark-titleblock h5, .dark-titleblock h6 { color: #FAFAFA; } .quote { border: 2px solid #09663C; border-radius: 10px; padding: 0 1em; background-color: #FAFAFA; } .titleblock { background-color: #FAFAFA; color: #000000; padding: 0.5rem 1rem 0.10rem; margin: 1.5rem 0rem 0.5rem 0rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.5); border: solid #09663C 2px; border-radius: 10px; } .titlebox{ color: #FFFFFF; position: relative; top: -1.6rem; background-color: #09663C; padding: 0.25rem 1rem; line-height: 0.1rem; border-radius: 10px 5px; } .dark-titleblock { background-color: #09663C; color: #FAFAFA; padding: 0.5rem 1rem 0.10rem; margin: 1.5rem 0rem 0.5rem 0rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.5); border: solid #FAFAFA 2px; border-radius: 10px; } .dark-titlebox{ color: #09663C; position: relative; top: -1.6rem; background-color: #FAFAFA; padding: 0.25rem 1rem; line-height: 0.1rem; border-radius: 10px 5px; } .owindow.owait .content { background-color:#FAFAFA; } .owindow { background-color:#FFFFFF; color:#000000; border: 2px solid #09663C; border-radius: 10px 20px; } .owindow .title { background-color:#09663C; border-radius: 10px 20px; color: white; } .hovertip { background-color:#FFFFFF; color:#000000; border: 2px solid #09663C; border-radius: 10px 20px; } .scp-image-block { box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); font-size: 90%; border-radius: 10px; overflow: hidden; } .footnotes-footer { border-left: 5px solid #09663C; border-right: 0px solid transparent; border-radius: 0px 10px 10px 0px; } @keyframes swiup { from { opacity: 0; transform: translate(0,30px); } to { opacity: 1; transform: translate(0,0); } } @-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}.snowflake:nth-of-type(10){left:25%;-webkit-animation-delay:2s,0s;animation-delay:2s,0s}.snowflake:nth-of-type(11){left:65%;-webkit-animation-delay:4s,2.5s;animation-delay:4s,2.5s}
🫧
ㅤㅤㅤㅤㅤㅤ🫧
ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ🫧
SECURE(安全)

异常项目名称:
Mr.Picto
编号:YHN-KHE-0505
归档者:V6
项目名称:Mr.Picto
项目等级:SECURE
异常收容措施
YHN-KHE-0505需收容在███站点的标准活体收容单元内,并确保该收容单元内装配有一张固定桌子与至少两张椅子,且桌子抽屉内须配备一本《西西弗斯神话》、一支铅笔、一把削笔刀与几张白纸。值班人员须保证24小时不间断监视YHN-KHE-0505的情绪状态变化,若YHN-KHE-0505表现出高强度的情绪波动,则监视YHN-KHE-0505的值班人员须将桌子抽屉内的纸与笔提供给YHN-KHE-0505。当YHN-KHE-0505书写完成后,值班人员须将书写过的纸张收回,并立即将纸张内容上报给站点主管。
依据YHN-KHE-0505-1B协定,联合裁定属下的全球安全保障小组1须保证YHN-KHE-0505-1在全球的广泛传播,以此维持YHN-KHE-0505本身异常性质的稳定。
描述:
YHN-KHE-0505外表通常表现为一名通体绿色的小人,与紧急出口标志上的“小绿人”外貌高度相似。YHN-KHE-0505的身高约为170cm2,体重无法测量。目前鉴于YHN-KHE-0505可能会正常人类社会引起骚动,故将YHN-KHE-0505收容于███站点内。
YHN-KHE-0505 Mr.Picto
YHN-KHE-0505最早被发现于1972年5月13日的日本大阪。当时,一名在日本大阪千日百货大楼的特工在执行巡逻任务时,在偏僻的角落发现了YHN-KHE-0505个体。据该名协会特工描述,YHN-KHE-0505似乎当时在向过往群众们大声呼喊着什么3,并且挥舞着自己的双臂指向附近的一个安全出口,但似乎并没有人注意到YHN-KHE-0505的举动。在发现YHN-KHE-0505之后,该名特工立刻通过随身携带的通讯设备向上级汇报,并上前试图与YHN-KHE-0505进行沟通。在与YHN-KHE-0505沟通商量无果之后,该名特工与赶来的特遣队一同将YHN-KHE-0505制服并抓捕回附近站点处。在将YHN-KHE-0505控制回站点后不久,当地百货大楼发生了严重的火灾事件,这使得协会对YHN-KHE-0505的异常性质额外重视。
而在不久后的1973年11月28日,YHN-KHE-0505突然消失不见,并在次日于日本熊本市大洋百货商店被一队潜藏在百货商店的特遣队发现。当时,YHN-KHE-0505正在做着与其最初被发现时同样做的动作。在被协会特遣队强制抓捕并带走后,该百货商店突发大火,并造成103人死亡,124人受伤。在此之后,协会研究员观测到YHN-KHE-0505表现十分沮丧,并且时不时用其类似于手部的结构掩盖其类似于面部的部位。在此之后,协会高层才正式准许对YHN-KHE-0505进行沟通实验。而在协会明确YHN-KHE-0505的异常性质后,一项针对YHN-KHE-0505的模因翻版4散播计划被立刻提上日程。
YHN-KHE-0505本质上是由无数个因意外危险事故或未知危险事故死亡的人类群体的浓厚怨念所聚成的非实体类人实体,其称呼自己为“Mr.Picto”。该实体在YHN-KHE-0505-1A事件之前一直都会在人类重大危险事故降临之前以未知方式出现在现场,并指导人们去规避该类危险。但不幸的是,任何未曾接触过YHN-KHE-0505的人类都无法感知YHN-KHE-0505,且此时的YHN-KHE-0505也无法与外界实体进行互相干扰。而在这一系列灾难不可避免地发生后,YHN-KHE-0505通常会在遇难者遗体前蜷缩着,做出沮丧以及哭泣的动作。据协会进一步研究,仅有接触过YHN-KHE-0505-1的人才可看见YHN-KHE-0505,并可与YHN-KHE-0505产生交互。在YHN-KHE-0505-1A及YHN-KHE-0505-1B事件后,YHN-KHE-0505完全实体化,但YHN-KNE-0505的传送能力似乎却因不明原因而消失5。
YHN-KHE-0505悲痛欲绝的样子
据实验测试,YHN-KHE-0505没有任何感知器官与发声器官,但其可以感知到方圆十米内的一切宏观事物,及其可能存在的危险。YHN-KHE-0505具有较高的智能,能够理解,并能书写英语、法语、西班牙语等全球60多种文字。YHN-KHE-0505具有接近于30~35岁成年人的智力水平,且几乎熟知一切危险行业的安全规范规章。YHN-KHE-0505实体可以抵挡近似于4000kgTNT同时引爆的冲击波,且不会因高温、高压、高腐蚀性、高电压等环境下而损坏。当YHN-KHE-0505方圆十公里内即将发生危险事故时,YHN-KHE-0505会变得焦躁不安,并表现出强烈想要前往当地去阻碍灾难发生的意愿,且其表现出来的情绪激烈程度会随着危险事故的接近而愈发激烈。
而自YHN-KHE-0505-1A事件之后,YHN-KHE-0505拥有的了新的异常能力:即当危险事故发生时,若YHN-KHE-0505出现在以危险事故最初发生点为中心半径10公里以内,则YHN-KHE-0505会替代事故波及人员承受来自危险事故的第一次创伤6。在此之后,YHN-KHE-0505实体会化为一滩绿色的非牛顿流体,并在约15min后于事故重新化为人形。据协会相关部门检测,该流体无任何异常性质,无法以任何形式摧毁,且不再具有先前YHN-KHE-0505的异常能力,且YHN-KHE-0505重塑人形时该流体会自动以5m/s的速度向事故最初发生点蠕动,并不会因任何障碍而被阻拦7。
YHN-KHE-0505-1是指以YHN-KHE-0505为母版,以宣传安全理念为核心的一类模因。该模因首次于1978年由日本消防安全协会发起的一场“紧急逃生出口”标志比赛首次被提出,并在协会的暗箱操作下于1979年将YHN-KHE-0505的模因通过镶嵌技术镶嵌在该项目上8,并成功在世界范围内广泛传播9。
对YHN-KHE-0505异常性质的实验研究
实验1
实验目的:测试YHN-KHE-0505的是否具有智能。
实验时间:1972/5/13
实验流程:YHN-KHE-0505被关押在███站点的标准活体收容单元内,由15名特遣队员在YHN-KHE-0505附近武装戒备,以防止YHN-KHE-0505做出应激行为。一名研究员被派遣与YHN-KHE-0505进行沟通实验。
实验结果:研究员通过纸面书写的方式与YHN-KHE-0505搭建了沟通方式,并知晓了今日晚位于大阪千日百货大厦的失火事件。尽管该名研究员向上级及时汇报,但未能阻止悲剧的发生。
实验结论:YHN-KHE-0505具有较高智能,且似乎具有能导致事故发生的异常性质。继续观测。
实验3
实验目的:向YHN-KHE-0505询问更多有关其本身的异常性质。
实验时间:1973/11/28
实验流程:无
实验结果:当研究员想要靠近YHN-KHE-0505时,YHN-KHE-0505突然消失。十分钟后,位于大洋百货超市的休假特工向组织汇报了YHN-KHE-0505的出现。
实验结论:看起来我们必须加强YHN-KHE-0505的收容措施。如有必要,可对YHN-KHE-0505实行无效化处理。已证实,YHN-KHE-0505的异常性质为检测附近存在的事故。剩余异常特性仍需考究。
实验7
实验目的:测试YHN-KHE-0505对于特定人群的异常性质
实验时间:1974/2/█
实验流程:将未曾见过YHN-KHE-0505但接受过安全培训的消耗品A与未曾接受过安全培训的消耗品B带至YHN-KHE-0505的收容单元。并要求这两人分别形容YHN-KHE-0505,并于YHN-KHE-0505进行交互。
实验结果:消耗品A立刻辨认出来了YHN-KHE-0505为“安全逃生通道上的小绿人”,而消耗品B则表示无法看到YHN-KHE-0505;YHN-KHE-0505与消耗品A进行了简单的肢体接触,但在试图与消耗品B进行肢体接触时,YHN-KHE-0505的手明显穿过了消耗品B的躯体。在这之后,YHN-KHE-0505表现出失落的样子,而消耗品B则是表述毫无感觉。
实验结论:似乎未曾接触过YHN-KHE-0505-1的人并不能看到YHN-KHE-0505,也无法与YHN-KHE-0505进行交互。但协会又在YHN-KHE-0505被发现之前早已在内部广泛宣传了YHN-KHE-0505-1……真是有趣,因果效应又再一次使其成为了一个闭环。不过这次,不需要████那边的人解决了。
实验13
实验目的:测试YHN-KHE-0505的异常性质对于事故的鉴定标准
实验时间:1976/5/13
实验流程:派遣三名安保将YHN-KHE-0505押送至一处空旷地表处。将消耗品A从该地表上方15m的直升机内推出,使其自由落体,并观测YHN-KHE-0505的反应;在此之后,利用远程联络装置指挥消耗品B走到一片早已设好炸药的地区,并在消耗品B到来时引爆炸药。
实验结论:消耗品A被摔死,消耗品B被炸死,而YHN-KHE-0505则是在消耗品A、B死后表现出一股巨大的沮丧感。推测人为故意事故并不在YHN-KHE-0505异常性质的考量内。
实验14
实验目的:无
实验时间:1976/5/20
实验流程:提出并测试实验13的博士在一次意外事故中被卷进绞肉机里,且YHN-KHE-0505正在据事故点10公里开外的收容间内。
实验结果:YHN-KHE-0505的两侧被碾压,随后YHN-KHE-0505化为一滩绿色的液体,并最终在事故发生点出现;该名博士虽然外表皮肤完好,但其身形已被扭曲过度,全身骨骼及内脏粉碎而死。好死,遭报应了。
实验43
实验目的:将YHN-KHE-0505的模因刻印在YHN-KHE-0505-1上。
实验时间:1979年/█/█
实验流程:YHN-KHE-0505将自己的一部分以████的方式镶嵌到了YHN-KHE-0505-1上,并在协会成员的辅助下使得YHN-KHE-0505-1A事件发生。
实验结果:YHN-KHE-0505-1A事件发生,且之后协会与联合裁定达成了YHN-KHE-0505-1B协定,促使YHN-KHE-0505-1在全球范围内的广泛传播,使得历史因果开始闭环。尽管这可能会导致YHN-KHE-0505受到持续不断的创伤,但我们必须假设Mr.Picto是幸福的。
自YHN-KHE-0505-1B事件后,从YHN-KHE-0505收容单元内捡到的一份草纸(已翻译为中文版本)
自人类诞生两万五千年以来——
每一天,都会有大大小小的意外发生
有的人死于意外
有的人死于无知
有的人死于未知
因为这些而死去的人太多了,太多了
他们死去的冤魂堆积如山
他们死后的怨恨浩如烟海
于是我说——
我来吧,我能这么做,我愿意那么做
于是那些冤魂的怨恨灌注着我的身体
构成了我的全部
于是我前往那些事故的源头
呼唤着所有人,远离这些事故!
但没有人回应——直到你们的来到
你们给予了我选择——
保持当前无人问津的现状
或是困于暗无天日的牢笼
永受无穷无尽的折磨
换取只是一块小小的告示牌
——但是我还是选择了后者
哪怕我会因此遍体鳞伤
哪怕我会因此重度残疾
哪怕我会因此死亡千百余次
——但是,这都无所谓
正如西西弗斯一样
正如与一颗巨石搏斗一样
牺牲换取警告
这一过程本身足以充实一颗心
我将会在危险旁,重放自己那不屈的死亡!
I am Mr.Picto .I am very happy!
我是皮特托先生,我很幸福!
“实际上,Mr.Picto从来不是一个人:当工人从楼顶坠亡时,当孩童游泳溺死时,当火灾发生人群困毙时,他们死前的不甘与不舍即汇成了Mr.Picto——即便他们之后还会因为同一种方式一次又一次地剥夺生命。因此,我们必须假设Mr.Picto是幸福的。”
«YHN-KHE-0504 | YHN-KHE-0505 | YHN-KHE-0506 »

