SCP-CN-4707
@import url("https://fonts.googleapis.com/css2?family=Zhi+Mang+Xing&display=swap");
:root {
    --global-white-color: 255, 252, 250;
    --global-pale-color: 250, 240, 230;
    --global-light-color: var(--global-dark-color);
    --global-dark-color: 140, 25, 0;
    --global-black-color: 60, 0, 0;
    --global-accent-1: 255, 25, 0;
    --global-accent-2: 180, 25, 0;
    --global-accent-3: var(--global-dark-color);
    --alt-color: 255, 120, 0;
 
    --light-ui-txt: var(--global-dark-color);
    --dark-ui-bg: 90, 15, 0;
    --bright-ui-bg: var(--global-dark-color);
    --bright-ui-txt: 255, 220, 140;
    --paper-bg: var(--bright-ui-txt);
    --paper-txt: var(--bright-ui-bg);
 
    --global-border-width: 0.145rem;
 
    --body-bg: 60, 25, 15;
 
    --header-bg: var(--bright-ui-bg);
    --header-txt: var(--bright-ui-txt);
    --header-hover-bg: var(--paper-bg);
    --header-hover-txt: var(--paper-txt);
 
    --topbar-hover-bg: var(--header-hover-bg);
    --topbar-hover-txt: var(--header-hover-txt);
 
    --dropdown-bg: var(--header-hover-bg);
    --dropdown-txt: var(--header-hover-txt);
    --dropdown-hover-bg: var(--header-bg);
    --dropdown-hover-txt: var(--header-txt);
 
    --openmenu-hover-txt: 0, 0, 0, 0;
 
    --sidebar-bg: var(--paper-bg);
 
    --heading-bg: var(--bright-ui-bg);
    --heading-txt: var(--bright-ui-txt);
 
    --menu-bg: 0, 0, 0, 0;
    --menu-txt: var(--paper-txt);
    --menu-hover-bg: var(--bright-ui-bg);
    --menu-hover-txt: var(--bright-ui-txt);
 
    --rate-bg: var(--global-bg);
    --rate-txt: var(--global-txt);
 
    --tabview-hover-bg: var(--dark-ui-bg);
    --tabview-selected-bg: var(--bright-ui-bg);
    --tabview-selected-txt: var(--bright-ui-txt);
 
    --toc-bg: var(--global-bg);
    --toc-txt: var(--global-txt);
    --toc-heading-bg: var(--bright-ui-bg);
    --toc-heading-txt: var(--bright-ui-txt);
    --toc-heading-hover-bg: var(--dark-ui-bg);
 
    --dark-block-bg: var(--global-black-color);
 
    --btn-txt: var(--link-primary);
    --btn-hover-bg: var(--bright-ui-bg);
    --btn-hover-txt: var(--bright-ui-txt);
 
    --bottombar-bg: var(--header-bg);
    --bottombar-txt: var(--header-txt);
 
    --banner-height: 19rem;
    --sidebar-width: 14rem;
    --content-width: 52rem;
 
    --dropdown-border-width: 0;
 
    --banner-title-size: 7rem;
    --banner-subtitle-size: .85rem;
    --page-title-size: 2.5rem;
 
    --header-title: "The Backrooms中文维基";
    --banner-title-1: "异途";
    --banner-title-2: "道门";
    --banner-subtitle-1: "一粒金丹吞入腹";
    --banner-subtitle-2: "始知我命不由天";
 
    --sidebar-ui: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_sidebar-icon.svg");
 
    --body-font: "Noto Serif SC", "Noto Serif TC", serif;
    --banner-font: "Zhi Mang Xing", "Zhuque Fangsong (technical preview)", var(--body-font);
    --header-font: var(--body-font);
    --title-font: var(--body-font);
    --ui-font: var(--body-font);
    --mono-font: "PT Mono", "Noto Sans SC", "Noto Sans TC", Consolas, monaco, monospace;
}
 
::-webkit-scrollbar {
  height: 0.5rem;
  border: none;
}
#top-bar > div > ul > :is(li, li:hover, li:focus, li.sfhover, li:focus-within) > ul > li > a {
  display: flex;
  align-items: center;
}
#login-status #account-options ul {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 100%;
}
#login-status #account-options ul li {
  width: var(--user-drop-column-width);
  height: var(--user-drop-row-height);
  background: rgba(var(--user-drop-bg), .8);
  color: rgba(var(--user-drop-txt));
  transition: background var(--global-duration), color var(--global-hover-duration);
}
#login-status #account-options ul li:is(:hover, :focus, :active) {
  background-color: rgba(var(--user-hover-drop-bg));
  color: rgba(var(--user-hover-drop-txt));
  transition: background var(--global-hover-duration), color var(--global-hover-duration);
}
#login-status #account-options ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
}
#login-status :is(.login-status-create-account, .login-status-sign-in) {
  display: flex;
  position: absolute;
  top: 100%;
  right: 0;
  height: var(--user-drop-height);
  width: var(--user-drop-width);
  font-size: var(--global-font-size);
  color: rgb(var(--user-drop-txt));
  text-align: center;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--global-duration), background var(--global-duration);
}
#login-status:is(:hover, :focus,:focus-within) :is(.login-status-create-account, .login-status-sign-in) {
  pointer-events: auto;
  opacity: 1;
  transition: opacity var(--global-hover-duration), background var(--global-duration);
}
#login-status .login-status-create-account {
  right: var(--user-drop-width);
}
#login-status :is(.login-status-create-account, .login-status-sign-in):is(:hover, :focus) {
  background: rgb(var(--user-hover-drop-bg));
  color: rgb(var(--user-hover-drop-txt));
  transition: opacity var(--global-hover-duration), background var(--global-hover-duration);
}
h1 { font-size: 2em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.6em; }
h4 { font-size: 1.4em; }
h5 { font-size: 1.2em;}
h6 { font-size: 1em; }
table[style^="margin:0;"],
table[style^="margin:0;"] :is(tbody, tr, td) {
  display: contents;
}
#toc {
  display: block;
  width: fit-content;
  margin: .5rem 0;
  padding: 0;
}
#toc.floatleft {
  margin: .5rem 1rem .5rem 0;
}
#toc.floatright {
  margin: .5rem 0 .5rem 1rem;
}
#toc .title, #toc #toc-list {
  margin: 0;
}
.achbox-medals, .achbox-plaques {
  --wrap-bgcl-000: rgb(var(--global-pale-color));
  --wrap-bgcl-111: var(--wrap-bgcl-000);
  --wrap-bgcl-222: var(--wrap-bgcl-000);
  --text-shadow111: rgb(var(--global-dark-color));
  --text-shadow222: rgb(var(--global-light-color));
}
.sd-container {
  --sd-border: var(--global-txt);
  --sd-symbol: var(--sd-border);
  --sd-bullets: var(--sd-border);
  --sd-text: var(--dark-ui-txt);
}
.extrabox {
  --box-border: var(--global-border);
  --box-shadow: var(--global-border);
}
.wrapper {
  --cecs-dark: var(--global-dark-color);
  --cecs-light: var(--global-pale-color);
  --swatch-text-general: var(--global-txt);
}
 
#container-wrap-wrap {
    position: relative;
}
#extra-div-1, #extra-div-2, #extra-div-3, #extra-div-4 {
    position: absolute;
    z-index: -1;
    width: 50%;
    height: 80vh;
    background: rgb(var(--dark-ui-bg));
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-size: auto 100%;
    mask-repeat: repeat-x;
    mask-size: auto 100%;
}
#extra-div-1 {
    top: 0;
    left: 0;
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
}
#extra-div-2 {
    top: 0;
    right: 0;
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2a.svg");
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2a.svg");
}
#extra-div-3 {
    bottom: 0;
    left: 0;
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
    rotate: 180deg;
}
#extra-div-4 {
    bottom: 0;
    right: 0;
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg-2b.svg");
    rotate: 180deg;
}
#header {
    grid-template-rows: auto auto;
    top: calc(0px - var(--header-height) - var(--topbar-height));
    transition: top var(--global-duration);
}
#header:is(:hover, :focus-within) {
    top: 0;
    transition: top var(--global-hover-duration);
}
#header h1, #top-bar, #search-top-box, #login-status {
    position: relative;
    top: 0;
}
#header-extra-div-3 {
    pointer-events: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1rem;
}
#header-extra-div-1 {
    background: rgb(var(--header-bg));
    border: none;
    box-shadow: 0 0 6rem rgb(var(--global-black-color));
}
#header h2 {
    display: none;
}
#top-bar > div > ul > :is(li, li:hover, li:focus, li.sfhover, li:focus-within) > ul > li a {
    background: rgb(var(--dropdown-bg));
}
#side-bar {
    --global-border-width: 0;
    padding-top: var(--sidebar-width);
}
#side-bar::before {
    width: calc(var(--header-ui-size) * 0.7);
}
:is(#side-bar, #side-bar:hover, #side-bar:focus-within)::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--sidebar-width);
    background: rgba(var(--menu-txt));
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_sidebar.svg");
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 80%;
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_sidebar.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 80%;
}
#side-bar .side-block.media > div > a {
    overflow: hidden;
}
#side-bar .side-block.media > div > a > img {
    position: relative;
    transform: translateX(-20rem);
    filter: drop-shadow(rgb(var(--menu-txt)) 20rem 0);
}
:is(#side-bar, #interwiki) .heading,
#side-bar .collapsible-block a.collapsible-block-link {
    padding: 0 .25rem;
    font-size: 1rem;
    font-weight: 900;
}
#side-bar :is(.collapsible-block-folded, .collapsible-block-unfolded-link) .collapsible-block-link:is(:hover, :focus) {
    background: rgb(var(--dark-ui-bg));
}
#content-wrap {
    width: var(--content-width);
    max-width: 100%;
    margin: 0 auto;
    background: rgb(var(--light-ui-bg));
    padding: var(--banner-height) 1rem 1rem;
    box-sizing: border-box;
}
#main-content {
    width: 100%;
    background: rgb(var(--global-bg));
}
#extra-div-6 {
    writing-mode: vertical-rl;
    font-family: var(--banner-font);
    font-size: var(--banner-title-size);
    line-height: 1;
    letter-spacing: -.15em;
    position: absolute;
    top: calc(var(--header-height) + var(--topbar-height));
    left: 0;
    width: 100%;
    height: var(--banner-height);
}
#extra-div-6 span {
    font-size: var(--banner-subtitle-size);
    letter-spacing: -.15em;
}
#extra-div-6::before {
    content: var(--banner-title-1);
    display: block;
    position: absolute;
    left: 50%;
    top: calc(50% - 8rem);
}
#extra-div-6::after {
    content: var(--banner-title-2);
    display: block;
    position: absolute;
    right: 50%;
    bottom: calc(50% - 8rem);
}
#extra-div-6 span::before {
    content: var(--banner-subtitle-1);
    display: block;
    position: absolute;
    left: calc(50% - var(--banner-title-size));
    top: calc(50% - 6.25rem);
}
#extra-div-6 span::after {
    content: var(--banner-subtitle-2);
    display: block;
    position: absolute;
    left: calc(50% - var(--banner-title-size) - var(--banner-subtitle-size));
    top: calc(50% - 6.25rem);
}
#breadcrumbs {
    text-align: center;
}
#page-title, .meta-title {
    font-family: var(--title-font);
    font-size: var(--page-title-size);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1rem;
    padding: 0;
    border: none;
    position: relative;
    z-index: 1;
    width: fit-content;
    max-width: calc(100% - 7rem);
    margin: 1.5rem auto 2.5rem;
}
.meta-title {
    max-width: calc(100% - 5rem);
}
.meta-title p {
    display: contents;
}
#page-title::after,
.meta-title::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: -2.5rem;
    right: -2.5rem;
    height: 0;
    border-top: 1.8rem solid transparent;
    border-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_line.svg") 100% 25% 0 /1.8rem 3.375rem 0;
}
#page-content {
    padding: 0 1rem 4rem;
    box-sizing: border-box;
    position: relative;
}
.seal {
    position: absolute;
    background: rgb(var(--bright-ui-bg));
    -webkit-mask-image: var(--seal-mask);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: var(--seal-mask);
    mask-repeat: no-repeat;
    mask-size: 100%;
    pointer-events: none;
}
.seal-1 {
    --seal-mask: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-1.svg");
    width: 7.5rem;
    height: 7.5rem;
    bottom: -6rem;
    right: 1rem;
    rotate: -17deg;
}
.seal-2 {
    --seal-mask: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-2.svg");
    width: 2rem;
    height: 4rem;
    bottom: -3.5rem;
    left: 0;
    rotate: 24deg;
}
.seal-3 {
    --seal-mask: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-3.svg");
    width: 3rem;
    height: 5.5rem;
    bottom: -1.5rem;
    right: -0.75rem;
    rotate: 0deg;
}
.seal-4 {
    --seal-mask: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-4.svg");
    width: 3rem;
    height: 7.5rem;
    bottom: -6rem;
    left: 2.5rem;
    rotate: -3deg;
}
div.page-rate-widget-box .rate-points {
    font-weight: 900;
}
.creditBottomRate .page-rate-widget-box {
    border: none;
}
:is(.image-block,.scp-image-block) :is(.image-caption,.scp-image-caption) {
    background: rgb(var(--bright-ui-bg));
    color: rgb(var(--bright-ui-txt));
}
.yui-navset .yui-nav, .yui-navset .yui-navset-top .yui-nav {
    border: none;
}
:is(blockquote, .blockquote, div.blockquote, [class*=blockquote], .quote) {
    background: rgb(var(--global-bg));
    color: rgb(var(--global-txt));
    border: var(--global-border-width) solid rgb(var(--global-border));
}
.shadow {
    box-shadow: 0 .2rem .5rem rgba(var(--global-dark-color), .4);
}
.dropshadow {
    box-shadow: 0 .2rem 1rem rgba(var(--global-dark-color), .3);
}
.warn {
    background: rgb(var(--bright-ui-bg));
    color: rgb(var(--bright-ui-txt));
}
.pattern {
    position: relative;
    z-index: 0;
}
.pattern::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    pointer-events: none;
    background: rgba(var(--bright-ui-bg), .05);
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg.svg");
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 3rem;
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_bg.svg");
    mask-repeat: repeat;
    mask-size: 3rem;
}
.line {
    box-shadow: inset 0 0 0 0.08rem rgb(var(--global-border)), inset 0 0 0 0.16rem rgb(var(--global-bg)), inset 0 0 0 0.24rem rgb(var(--global-border));
}
.seal-hr {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}
.seal-hr hr {
    width: 3rem;
    height: 3rem;
    margin: 0;
    border: none;
    background: rgb(var(--bright-ui-bg));
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-1.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_seal-1.svg");
    mask-repeat: no-repeat;
    mask-size: 100%;
}
.seal-hr::before, .seal-hr::after {
    content: "";
    display: block;
    flex: 1;
    height: 0;
    border-top: var(--global-border-width) solid rgb(var(--global-border));
}
.double-hr hr {
    margin: 0.2rem 0;
    height: 0.08rem;
    border: var(--global-border-width) solid rgb(var(--global-border));
}
.kong {
    margin-top: 3rem;
}
#main-content .page-tags,
#page-info-break,
#page-options-container,
#action-area {
    background: rgb(var(--light-ui-bg));
    margin: 0;
}
#main-content #page-content + div {
    padding-top: 4rem;
}
#main-content .page-tags span {
    border: none;
}
#page-options-container {
    padding-top: .5rem;
}
#page-info {
    width: 100%;
}
.page-watch-options {
    margin-bottom: 1rem;
}
#page-options-container .page-options-bottom,
#page-options-container .page-options-bottom a,
#page-options-container .page-options-bottom a#more-options-button {
    border: none;
    font-size: inherit;
}
#action-area {
    padding: 2rem 0;
}
a.action-area-close {
    top: 2rem;
}
#edit-page-form, #new-post-form {
    --light-ui-bg: var(--global-bg);
    --light-ui-txt: var(--global-txt);
    --btn-bg: var(--global-bg);
    --btn-txt: var(--global-txt);
    background: rgb(var(--global-bg));
    color: rgb(var(--global-txt));
    border: none;
}
.preview-message {
    top: 0;
    z-index: 9;
}
#footer {
    position: relative;
    border: none;
    box-shadow: 0 0 6rem rgb(var(--global-black-color));
}
#license-area {
    position: relative;
    --link-primary: var(--bottombar-txt);
    --link-hover: var(--bottombar-txt);
    --link-visited: var(--bottombar-txt);
}
 
/* 纹样标题-通用 */
h1, h2, h3, h4, h5, h6, :is(.bibitems, .footnotes-footer) .title {
    font-weight: 900;
}
.styled-title :is(h1, h2, h3, h4, h5, h6),
.styled-title :is(.bibitems, .footnotes-footer) .title {
    margin: 1rem 0;
    line-height: 1;
    border-left: var(--global-border-width) solid rgb(var(--bright-ui-bg));
    padding-left: 0.125em;
    box-sizing: border-box;
    width: fit-content;
}
.styled-title :is(.bibitems, .footnotes-footer) .title {
    margin-top: 1.25rem;
}
.styled-title.center :is(h1, h2, h3, h4, h5, h6),
.styled-title.center :is(.bibitems, .footnotes-footer) .title {
    border: none;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 5.445em);
}
.styled-title.right :is(h1, h2, h3, h4, h5, h6),
.styled-title.right :is(.bibitems, .footnotes-footer) .title {
    border-left: none;
    padding-left: 0;
    border-right: var(--global-border-width) solid rgb(var(--bright-ui-bg));
    padding-right: 0.125em;
    margin-left: auto;
}
 
/* 纹样标题-H1 */
.styled-title h1,
.styled-title :is(.bibitems, .footnotes-footer) .title {
    position: relative;
    max-width: calc(100% - 2.7225em);
}
.styled-title.center h1
.styled-title.center :is(.bibitems, .footnotes-footer) .title {
    max-width: calc(100% - 5.445em);
}
.styled-title h1::after,
.styled-title :is(.bibitems, .footnotes-footer) .title::after,
.styled-title.center h1::before,
.styled-title.center :is(.bibitems, .footnotes-footer) .title::before {
    content: "";
    display: block;
    width: 2.66em;
    height: 1.5em;
    position: absolute;
    top: -0.125em;
    left: calc(100% + 0.0625em);
    background: rgb(var(--bright-ui-bg));
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_line-r.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: auto 100%;
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_line-r.svg");
    mask-repeat: no-repeat;
    mask-size: auto 100%;
}
.styled-title:is(.center, .right) h1::after,
.styled-title:is(.center, .right) :is(.bibitems, .footnotes-footer) .title::after {
    left: auto;
    right: calc(100% + 0.0625em);
    -webkit-mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_line-l.svg");
    mask-image: url("https://fastly.jsdelivr.net/gh/bleuboat/br@main/images/ytdm_line-l.svg");
}
 
@media only screen and (max-width: 768px) {
    :root {
        --page-title-size: 2rem;
    }
    .seal-1 {
        width: 5.5rem;
    }
    .styled-title h1,
    .styled-title :is(.bibitems, .footnotes-footer) .title {
        max-width: calc(100% - 2em);
    }
    .styled-title.center h1,
    .styled-title.center :is(.bibitems, .footnotes-footer) .title {
        max-width: calc(100% - 4em);
    }
    .styled-title h1::after,
    .styled-title :is(.bibitems, .footnotes-footer) .title::after,
    .styled-title.center h1::before,
    .styled-title.center :is(.bibitems, .footnotes-footer) .title::before {
        width: 2em;
        height: 1.125em;
        top: 0;
    }
}
: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 }
评分: +23+x

项目编号:SCP-CN-4707

项目等级:Keter

特殊收容措施:鉴于SCP-CN-4707的异常特性,目前无法实现完全收容,但在与该项目进行沟通后,确认其具备不低于人类的智能水平。经讨论决策,基金会将与其达成合作协议,每月提供若干名(具体数量根据实际需求确定)经项目确认的人员作为食用对象,在此过程中所产生的SCP-CN-4707-1实体如有残留部分,将由基金会负责收集并用于科学研究。

此外,SCP-CN-4707亦需协作完成多数低风险的安全实验。为确保双方合作的顺利进行,基金会将不限制SCP-CN-4707的活动范围,但其不得出现在帷幕之外的平民面前,不得擅自觅食以导致SCP-CN-4707-1的产生。

如在野外发现任何SCP-CN-4707-1或SCP-CN-4707-2个体,须立即采取消除措施并彻底清除相关痕迹,SCP-CN-4707-2的尸体须尽快进行焚烧处理,以防止实体发生扩散。如遇紧急情况,应立即报告项目主管,由其通知SCP-CN-4707。

描述:SCP-CN-4707为一类大型鸟类实体,在民俗志怪1中广为流传,该项目外形特征包括鹰般的钩喙,头顶低垂的红色羽冠及红色双眼,全身覆盖黑色羽毛,翅膀后部及尾部亦为红色,尾羽中两根白色长羽尤为显著。腿部修长挺拔,体表流淌着黏稠的黑色液体。

SCP-CN-4707具有一种特殊能力,能够识别并区分善恶,其能凭空从被识别者体内穿透而出,同时剥离出一种与其体表液体性质相似的黑色凝胶,称之为“恶意”,项目会食用此物以获得能量。对于在项目判断中为极恶的个体,项目会取出其心脏,并集中存放于其巢穴中。

SCP-CN-4707的巢穴位于异质空间2内,由人类的脊椎骨作为主要部分构筑,其余边角则由一种未知鸟类的骨架填充。

SCP-CN-4707会在特定人群的后颈部打上标记,一种不明显的黑色斑纹。标记会随时间推移逐渐蔓延至全身,而该个体和周围人员均无法察觉到此现象的发生。所有被标记个体在之后的事件中,无一例外因不当行为3而丧生,且在临死前大多表现出流泪的迹象,随后项目出现并将其带离。目前尚未明确该标记与个体作恶行为之间的因果关系。

SCP-CN-4707在进食过程中,有一定概率产出SCP-CN-4707-1,该实体外形类似于SCP-CN-4707,但体形较为娇小,更似蛇形,会发出尖锐嘈杂的叫声。SCP-CN-4707-1同样具备识别善恶的能力,可以通过啄击目标食用少量“恶意”,但其特殊性在于它会钻入被识别者的体内寄生,并一直向心脏与大脑的方向推进,从而影响其认知与决策,将其行为特征转变为持续作恶,且在其死亡后会产出更多的SCP-CN-4707-1。该类人群被编号为SCP-CN-4707-2。

值得注意的是,SCP-CN-4707-1在出现后通常会立即逃逸或隐匿,并对SCP-CN-4707的存在表现出强烈恐惧的情绪反应。基于可靠分析,该行为可能是因为该实体同样存在于SCP-CN-4707的食谱当中。

附录MC-4707.1:相关实验记录

实验记录 A - 01

对象:SCP-CN-4707-1

过程:解刨SCP-CN-4707-1,研究其身体构造。

结果:尽管SCP-CN-4707-1能够将自身转化为类液体状态,但其仍表现出可触及的物质实体。在对SCP-CN-4707-1个体进行解剖后发现,其结构包含一根坚韧细长的喉管状器官(命名为GF-01器官),该器官始终与胃部相连,同时可以从嘴部伸出体外。此外,SCP-CN-4707的视网膜构成中含有一种特殊物质,这赋予其接受并转化特定光线的能力,进而使该光线能够被视觉中枢识别。推测其区分善恶的判定依据正是基于这一能力。

在对SCP-CN-4707-1体内关键器官进行移除和替换后,该个体在较长一段时间内表现出与普通鸟类无异的行为特征,且拒绝任何形式的投喂及自主进食行为。自实验开始截至目前,该SCP-CN-4707-1个体已因能量严重匮乏而死亡,尸体并未造成任何异常影响。此后该尸体由SCP-CN-4707负责处理。

分析:SCP-CN-4707-1的进食似乎高度依赖其体内特有器官,当喉管被替换后,SCP-CN-4707-1似乎丧失了从目标身上剥离恶意并摄食的能力。

实验记录 A - 02

对象:D-470734

过程:测试SCP-CN-4707-1的特殊器官在离体后是否还能发挥原有功效。

结果:将具有活性的GF-01器官尖端插入D-470734手臂,受试者尚未表现出疼痛反应,但器官表现出明显的活跃反应,伴随纯黑色晶体状物质从受试者体内析出。该物质在短暂维持晶体形态后迅速溶解,并由GF-01器官作通道转移至试剂瓶(代替胃部)。经检测,接触该物质的人员会出现情绪不稳定、对周围人员敌意增强及思维偏向负面等症状。

在向正常的SCP-CN-4707-1个体提供此类物质后,其会正常进食直至饱腹,而经过器官替换的个体则无法摄入该物质。

本次实验结束后,D-470734展现出一种超然的心理状态,表现为能够正常进行沟通和交流,但不再对工作人员实施言语或肢体攻击,对工作人员唯命是从。这种现象在维持了一段时间后消失,D-470734恢复正常行为习惯。

分析:受试者疑似短暂丧失了自主对他人施加伤害的能力,或许是因为这种物质的本质是“恶意”,因而将其剥离后受试者失去了表达恶意的能力。

实验记录 A - 03

对象:D-470772

过程:对恶意物质的研究实验。

结果:经多项检测与实验证明,该物质不具备在医疗、能源、合成等领域的实际应用价值,其唯一作用便是作为SCP-CN-4707及SCP-CN-4707-1的食物来源,或用于转化SCP-CN-4707-2。在将该物质注入受试者体内后,该物质能够实现与被SCP-CN-4707-1寄生相同的效果,并在注入后的瞬间扩散至全身。

D-470772现已成功转化为SCP-CN-4707-2实体,由于该个体并未被SCP-CN-4707-1控制大脑,其行动仍由自身心智决定,但受恶意物质的影响,SCP-CN-4707-2的认知和行为极端倾向于破坏与摧毁。

在外观上,该SCP-CN-4707-2个体表现出身体姿态佝偻,四肢延长,齿爪锐利;双目泛白无光,面色晦暗;沟通能力丧失,仅能通过野兽般的吼叫表达情感,但其情感表现亦逐渐衰退;动作敏捷,肢体可随意扭曲或弯折,具备攀附墙面等特化能力;无需进食,可以通过破坏行为制造异常能量以维持生命状态。

SCP-CN-4707-2死亡后,其腹部依然会保持活跃状态,预计在不定时间内持续生产10至12个SCP-CN-4707-1实体。

分析:鉴于该物质的潜在危害性,暂仅作为特殊资源保管,不作为战略性武器使用。同时,本次实验中所制造的SCP-CN-4707-1实体已全部移交至SCP-CN-4707负责处理。

实验记录 B - 01

对象:SCP-CN-4707-2

过程:对SCP-CN-4707-2的身体结构与能力进行详细研究。

结果:SCP-CN-4707-2在各方面表现出与普通人类不同的生理特征,其体内器官存在病理性变异,并与外部器官的异常变化形成联系:其齿爪和指甲与骨骼相连,心脏跳动频率显著增强,供血能力得到提升,肺部组织会产生一种无色气体,经由导管将气体排放至外界,口腔内还存在类似毒腺的腺体结构。

长时间吸入该气体的实体可能出现类似SCP-CN-4707-2的生理变化,并促使其体内潜在的恶意物质发生增殖,直到足以影响宿主,导致其逐步转化为SCP-CN-4707-2。

同时,SCP-CN-4707-2的视觉神经受到部分损伤,导致其失去视觉功能,但听觉能力显著增强。其体内存在良性的类骨质增生症状,身体柔韧性显著提高,四肢可分泌一种透明的特殊液体,从而赋予其类似蜘蛛的攀爬能力。

SCP-CN-4707-2无须通过摄取营养物质以维持基本生命活动,但仍能通过进食行为将养分转化为恶意物质。其体内存在一套独立的内循环系统,一旦脱离该环境则立即失效,无法进行修复或复制。该系统能够将摄入的所有营养物质转化为类似恶意物质的黑色液体,并储存于体内。

在进行破坏性行为以获取异常能量后,SCP-CN-4707-2能够赋予这些液体恶意物质的部分特性,最后使其彻底转化为恶意物质。在此之前,这些液体仅表现出部分腐蚀性和放射性危害,该个体可以通过口腔内的类毒腺结构,将此类液体喷洒出去或注入其他活物体内。

除此以外,暂未发现SCP-CN-4707-2具备其他异常能力。由于其大脑神经受到损伤,无法通过常规交流方式进行沟通,经采用思维侵入设备进行检测后发现,转化完成的SCP-CN-4707-2仍保留一定的判断力、逻辑能力及思考能力,由SCP-CN-4707-1控制的个体亦表现出相似特征。

分析:对于SCP-CN-4707-1而言,保留SCP-CN-4707-2的部分意识似乎更有利于其觅食行动。此外,关于SCP-CN-4707-2的破坏性行为判定标准,经研究分析,其所产生的恶意物质所引发的后续危害亦被纳入“该实体所造成的破坏”范畴。

实验记录 B - 02

对象:SCP-CN-4707-2

过程:与SCP-CN-4707-2的接触性实验。

结果:对于SCP-CN-4707-1而言,SCP-CN-4707-2与傀儡无异,主要作为工具发挥作用。而SCP-CN-4707在确认SCP-CN-4707-2已完全转化后,将对其进行处死,其体内的恶意物质已达到自我循环状态,无法进行完全剥离。对于尚未完全被恶意物质侵蚀的个体,SCP-CN-4707会将其体内的恶意物质剥离并吞噬,在存在SCP-CN-4707-1个体的情况下,优先目标为这些个体,会将其处死后食用。

在未被完全转化前,SCP-CN-4707-2仍能与亲密人员进行有限的互动,以维持一定的清醒状态。但在完全转化后,该个体会毫不犹豫地对目标展开攻击,过程中该个体仍可能表现出悲伤、痛苦、后悔等情感反应,但这些仅为身体潜意识层面的反应,真实的意识已被完全侵占。

SCP-CN-4707-2个体之间具备相互识别机制,能够区分同类及SCP-CN-4707-1个体。在SCP-CN-4707出现时,其会释放低频信号以向周边范围内的其他同类传递危险讯息,同时尝试逃避或隐匿,在被捕获时传递死亡讯息。

分析:SCP-CN-4707-2已无法被称作人类。

附录MC-4707.2:项目行为观察记录

SCP-CN-4707觅食过程 - 观察录像


时间:5月24日,7:25

地点:监狱外路径

对象:Mr.谭,龄24,犯盗窃、抢劫与故意杀人罪,因与同伙分赃不均而暴起杀人,现判无期徒刑,押至崂蜃监狱4受刑。

过程:SCP-CN-4707出现在周边树林中,目标突然放弃对押送人员行贿,并下跪表现出忏悔之意,详细陈述了过去的罪行,情感激烈。在被重新控制后,确认其已无生命体征,死因系由于其吞入体内无法消化的宝石所导致的胃部破裂。

SCP-CN-4707随后出现在众人眼前,并与目标一同消失,具体表现为黑色的浓雾将两者包围,瞬间显现后又迅速消散,仅在地面上留下一块浅黑色的印记。

[检测到目标信号,重复确认]


时间:3月4日,11:30

地点:监狱外路径

对象:Mr.辰,龄56,与牌友进行娱乐期间损坏他人财物,归家后对妻子施以暴行,因无力承担经济压力而实施盗窃行为,被当地居民当场抓获并造成一人受伤,现判24年有期徒刑,押至崂蜃监狱。

过程:SCP-CN-4707在周边树林中出现,目标正与押送人员发生冲突,在冲突过程中,由于情绪波动幅度过大导致其突发急性心肌梗死。

SCP-CN-4707随后现身,在吞噬目标体内的所有恶意物质后即刻消失。

[发现目标痕迹,持续追查]


时间:5月23日,20:00

地点:法庭外路径

对象:Mr.池,龄17,因其认定其家属曾将其遗弃,受他人教唆后试图实施盗窃行为以满足娱乐需求,在警方予以制止后仍固执己见,乃至于犯下多起恶性伤人事件,并杀害其亲生父母,现判无期徒刑,押至崂蜃监狱。

过程:SCP-CN-4707在周边建筑物上方突然出现,此时目标正受到其亲属的指责。在护卫人员将周边无关人员驱离至安全区域后,目标突然发起攻击,袭击了一名无关群众。事发时目标已开始向SCP-CN-4707-2转化,并具备部分异常生理特征,被现场人员发现后当场击毙。为防止事件影响扩散,相关人员已采取必要的掩盖措施。

随后SCP-CN-4707现身现场,但未引起现场人员的注意,原因不明。SCP-CN-4707现身后剥离出从SCP-CN-4707-2体内逐渐爬出的SCP-CN-4707-1个体,将其全部吞食后离开现场。

[已确认目标行动轨迹,正在传告最近的魇猎人]

SCP-CN-4707访谈尝试 - 视频记录


受访者:SCP-CN-4707

采访者:Dr.卡图尔·阿卡努斯

前言:对SCP-CN-4707衍生物的研究无新发现,唯一具备沟通能力的项目本体或许能够提供更多信息。


<记录开始>

<多物种翻译器已启动,语言信息转录已启动>

卡图尔:你好,又一次见面,SCP-CN-4707——或许你有一个名字?先前我们还没有询问过这个问题,而你也没有提及过。

SCP-CN-4707:名字?垢乌让,德克特拉,㘸翼,你们这些披毛的浊物在我的翼上写下了许多名字。

卡图尔:那我应该可以称呼你为德克特拉。你有性别概念吗?

SCP-CN-4707:依照你们的看法,能孕育生命的,可养育生命的,会教育生命的,你该用女性的称呼。

卡图尔:好的,德克特拉女士。我想,我或许可以问你几个无伤大雅的小问题,你怎么看?

SCP-CN-4707:我想卢格5并没有让我噤声。

卡图尔:你口中所言的“卢格”是什么?

SCP-CN-4707:造我的主,天螺的父,倒悬烈阳的牵引者,狩猎晦暗天体的神主。

卡图尔:SCP-CN-4707-1与SCP-CN-4707-2究竟是什么东西,或者说在你眼中它们该被称作什么?

SCP-CN-4707:恶与恶的仆从,秽物与劣物。

卡图尔:它们是怎么诞生的?这与你有什么关联?

SCP-CN-4707:恶始终存在,悄无声息地偷走有爱的一切,所以我找到它,杀死它。但恶不会屈从,秽物成了恶的延伸,想逃离主降下的罪罚,又叫他人堕落。

卡图尔:你的行为活动皆是为了进食,还是别有目的?

SCP-CN-4707:惩奸除恶,这是你们的说法。我生来便是要去做这些的,你们这些浊物会堕落,所以我在这里,等你们堕落,或等你们清醒。

卡图尔:那些被你标记的人员具备什么特殊之处吗?你为什么要标记他们?

SCP-CN-4707:有魂灵生来便是污浊,不同于你们,他们的天平已经倾斜,只有崇高的善与爱才能增添他们的重量。我会等他们,若未曾胆怯,未曾沾染罪孽,他们将与我一同归乡。

卡图尔:归乡?这所谓的家乡在哪里,或者说你又来自哪里?

SCP-CN-4707:我从主的第三颗心脏上落下,而后受命来此。除黑暗与虚无,受命前的一切事物没有任何根据与凭依。而他们要去的是花园,主建造的新乡。

卡图尔:如何去到那里?

SCP-CN-4707:受主召见,或祂所认定的人。

卡图尔:嗯……你距离诞生时的那一刻有多长时间了?

SCP-CN-4707:我未曾想过。

卡图尔:好的,感谢配合,德克特拉女士。你还有什么想要补充的内容吗?你知道的,我们总不能问得详尽,你或许也能知道我们想要什么。

SCP-CN-4707:那你便听着,披毛的浊物。造我的主,奇异梦境的主人已经看到这里,因祂的猎人都已来到。

卡图尔:祂的猎人?你说的是谁?

SCP-CN-4707不再回答,而是从访谈室内消失,只留下一根褪色的羽毛。

卡图尔:(接到通讯)什么事……什么?收容室内所有SCP-CN-4707-1和SCP-CN-4707-2实体都死亡了?谁做的!

卡图尔:一个猎人打扮的家伙?先把他控制住,稍后由我来处理……消失了?算了,先给我去检查一遍防御措施,别让其他什么人给趁虚而入了。

卡图尔:(关闭通讯)唉,新麻烦找上门了。

<记录结束>


结语:经过后续调查与分析,确认入侵者为异常组织“魇猎庭”的成员。该组织名声不显,主要目标为追猎特定的异常实体,而SCP-CN-4707的衍生物即为目标之一。

值得注意的是,SCP-CN-4707本身并未被列入其狩猎范畴。

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