:root { --timeScale: 1; --timeDelay: 0s; } /* Converting middle divider from box-shadow to ::before pseudo-element */ .anom-bar > .bottom-box { box-shadow: none!important; } .anom-bar > .bottom-box::before { position: absolute; content: " "; width: 100%; height: 0.5rem; background-color: rgb(var(--black-monochrome, 12, 12, 12)); transform: translateY(-0.74rem); } /* DIVIDER */ .anom-bar > .bottom-box::before { animation-name: divider; animation-duration: calc(0.74s * var(--timeScale)); animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; } /* CLASSIFIED LEVEL BARS */ div.top-center-box > * { animation-name: bar; animation-duration: calc(0.45s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); } /* TOP TEXT */ div.top-left-box, div.top-right-box { clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%); } div.top-left-box > *, div.top-right-box > * { position: relative; animation-name: bottomup; animation-duration: calc(0.65s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* CONTAINMENT, DISRUPTION, RISK CLASSES */ div.text-part > * { clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%); animation-name: expand2; animation-duration: calc(0.5s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.text-part > :nth-child(1) { animation-name: expand1; } div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); } div.main-class::before, div.main-class::after { animation-name: iconslide; animation-duration: calc(0.45s * var(--timeScale)); animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } /* BOTTOM TEXT */ div.main-class > *, div.disrupt-class > *, div.risk-class > * { animation-name: flowIn; animation-duration: calc(0.42s * var(--timeScale)); animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* DIAMOND */ div.arrows { animation-name: arrowspin; animation-duration: calc(0.7s * var(--timeScale)); animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.quadrants > * { animation-name: fade; animation-duration: calc(0.3s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.top-icon, div.right-icon, div.left-icon, div.bottom-icon { animation-name: nodegrow; animation-duration: calc(0.4s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.diamond-part { clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%); animation-name: diamondBorder; animation-duration: calc(0.8s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; will-change: box-shadow; } /* MOBILE QUERY */ @media (max-width: 480px ) { .anom-bar > .bottom-box::before { display:none; } .anom-bar > .bottom-box { box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important; } div.top-center-box > * { animation-name: bar-mobile; animation-duration: calc(0.9s * var(--timeScale)); } div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } } /*--- Motion Accessibility ---*/ @media (prefers-reduced-motion) { div.anom-bar-container { --timeScale: 0; } } /*-------------------------*/ @keyframes divider { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar-mobile { from { max-height: 0%; } to { max-height: 100%; } } @keyframes bottomup { from { top: 100px; } to { top: 0; } } @keyframes expand1 { from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);} to { opacity: 1; clip-path: inset(0);} } @keyframes iconslide { from { opacity: 0; transform: translateX(-5rem);} to { opacity: 1; transform: translateX(0);} } @keyframes expand2 { from { opacity: 0; max-width: 1%;} to { opacity: 1; max-width: 100%;} } @keyframes fade { from { opacity: 0;} to { opacity: 1;} } @keyframes flowIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes arrowspin { from { clip-path: circle(0%); transform: rotate(135deg); } to { clip-path: circle(75%); transform: rotate(0deg); } } @keyframes nodegrow { from { transform: scale(0);} to { transform: scale(1);} } @keyframes diamondBorder { from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } }
特殊收容措施:SCP-CN-1576应被单独保存在一个无人的空旷室内空间,项目表面应始终被透明pvc薄膜完全包裹。该收容设施周围应设置半径至少为450m的缓冲区,并通过一系列的气密装置与Site-CN-██主体相连,设施应设置有独立的通风系统和气体危害处理装置。收容设施的人员在没有得到至少1名4级研究员的书面批准时,不应与项目发生任何形式的肢体接触。可允许负责直接保卫项目的人员了解该项目的部分异常性质。
描述:SCP-CN-1576是一由未知材料制成的,尺寸为30m×60m×1.5cm的块状物体1,外形特征近似于冰。项目表面光滑2,一面的边缘有不规则块状的疑似某种生物组织的剖面的暗红色斑纹,约占该面面积的5.713%(纪录中通常称该面为上表面)。
SCP-CN-1576目前无法被任何物理手段破坏。当一名人类个体任意腰部以下躯体3或该部分躯体的附着物4与项目的上表面接触时,该人类个体腰部以下躯体及其附着物将会没入项目当中。没入的躯体将完全消失,但由此造成的生理机能缺失不会在该人类实体与项目仍接触时表现出负面影响5。人类个体腰部以上的躯体接触项目上表面,效果与接触普通固体无异,可以通过用上肢支撑身体,竖直向上运动的方式安全脱离项目表面。当人类个体与项目下表面发生接触时,项目可能以[数据删除]的方式对半径430米内的人类实体造成严重伤害。
SCP-CN-1576最早在中国山东省██市一家商场的室内溜冰场中被发现,该商场的职员在例行检查的过程中发现了其异常性质并及时报警,随后基金会收容小组赶到现场将其收容。
附录1576-1:实验记录
实验记录CN-1576-A-07
日期:2018/2/3
地点:Site-CN-██
实验执行人/记录者:Dr.Smintheas
概述:实验人员尝试把一只小白鼠(Mus musculus)放置在项目上表面。
实验结果:项目没有表现出异常性质。
实验记录CN-1576-A-10
日期:2018/2/5
地点:Site-CN-██
实验执行人/记录者:Dr.Smintheas
概述:D-12782被要求穿戴基金会标准动力装甲(低功率运转状态)后尝试站立在项目上表面。
实验结果:D-12782腰部以下躯体与外骨骼装甲一同没入项目中。
你们就不能把功率调大点吗?或者找一个能自己爬出来的D级?——Dr.Smintheas
实验记录CN-1576-A-11
日期:2018/2/11
地点:Site-CN-██
实验执行人/记录者:Dr.Smintheas
概述:实验人员把一件面积约1m²的涤纶纺织品放置在项目上表面边缘,D-53278被要求在纺织品上站立。
实验结果:项目没有表现出异常性质。
实验记录CN-1576-A-16
日期:2018/3/27
地点:Site-CN-██
实验执行人/记录者:Dr.Smintheas
概述:D-30254被要求尝试在项目上表面边缘从水平方向脱离项目。
[视频记录开始]
[00:00]:D-30254进入收容设施。[02:28]:D-30254腰部以下躯体没入项目上表面。
[04:13]:D-30254移动至项目上表面边缘。
[04:22]:D-30254向边缘外水平滑动,腰部以上的躯体脱离项目,腰部以下躯体仍然处在项目中。
[04:25]:D-30254死亡,没入项目内的躯体竖直向上脱离项目6。
[视频记录结束]
躯体会被吐出来?如果那块斑纹真是生物组织……——Dr.Smintheas
附录1576-2:事故记录
2018年5月7日进行的实验SCP-CN-1576-A-29中,实验对象D-25377被要求接触项目的下表面,以下为实验详细记录。
实验记录CN-1576-A-29
日期:2018/5/7
地点:Site-CN-██
实验执行人/记录者:Dr.Smintheas
概述:D-25377被要求用任意部位接触项目下表面。
[视频记录开始]
[00:00]:D-25377进入收容设施。[00:56]:D-25377尝试用右手触摸项目下表面,项目未表现出异常性质。
[01:13]:D-25377尝试用右脚触摸项目下表面,项目未表现出异常性质。
[02:42]:Dr.Smintheas初步判断人类实体触摸项目下表面不会触发异常性质,要求结束实验,此时D-25377仍在尝试用不同身体部位触摸项目下表面。
[02:43]:D-25377的左手被吸入项目下表面,在场的基金会研究员试图营救D-25377。
[02:45]:营救行动失败,D-25377完全吸入项目下表面,在场的基金会人员开始疏散。
[视频记录结束]
SCP-CN-1576在吸入D-25377█微秒后发出了咀嚼声并产生高热,推测此时项目表面温度超过[数据删除]K。同时,项目上表面开始大量释放一种未知的无色刺激性气体,该气体在█微秒内突破了收容设施原有气密设施的封锁并充满了Site-CN-██总体积的1/4,事故致使Site-CN-██内7人死亡,██人遭受不同程度的伤害。
据统计,接触被未知气体完全覆盖的人类可能出现以下一种或多种症状:晕眩、呼吸困难、心跳异常加速、短暂失明、全身疱疹、应激过敏反应、神经麻痹以及[数据删除]。上述症状均会在约40分钟后自然消失,目前的研究结果尚不能确认罹患同一症状的人群有共性。
事故SCP-CN-1576-1后,项目的总体积减少了约0.012%,同时项目的上表面一部分斑纹形状变化成了一串未知字符。
事故后基金会已禁止在项目异常性质得到进一步解明前对SCP-CN-1576进行任何实验。
附录1576-3:文字内容记录(已破译)
« SCP-CN-1575 | SCP-CN-1576 | SCP-CN-1577 »





