: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)); } }
根据监督者议会的命令
以下文件为5/CN-2288级机密。禁止未经授权的访问。
CN-2288
来自基金会记录及信息安全管理部门的通知
此文件已被确认包含有信息更新。为保证信息记录完整,请按序存取一系列该文件的迭代;当你到达最新的文件时你将被通知。我对造成的不便表示歉意。
— ████
特殊收容措施:由于SCP-CN-2288的特殊性质,当前无需对其进行物理收容。SCP-CN-2288的媒体泄露将由信息部门进行删除或失信化。
调查人员应尽一切可能发现SCP-CN-2288。 获权追踪SCP-CN-2288的人员必须携带爆炸物,以避免SCP-CN-2288-1发生。若发生遭遇,人员应遵守方案Y-m2288:
- 不要尝试逃跑。逃跑可能激起SCP-CN-2288追逐。
- 站在原地,使爆炸物处于可起爆状态。
- 若SCP-CN-2288未表现出敌意,立即通知基金会。
- 若SCP-CN-2288表现出敌意并持续靠近,试图后退并与之拉开距离。此时遵循第一步。
- 若发现多只SCP-CN-2288或正在被SCP-CN-2288攻击,立即引爆爆炸物。
任何于基金会外接触SCP-CN-2288但未受影响的人员都将被执行C级记忆消除。任何受影响的人员不需处理。对SCP-CN-2288的研究经由当前研究负责人方江博士进行。任何试图研究SCP-CN-2288的研究人员都应向方江博士提供一份详尽的研究计划,并由至少两名相关高级人员公证。
描述:SCP-CN-2288是一种四足大型哺乳类食肉猛兽,具有有限智力。项目躯体形似东北虎,头部生长有长须与类似非洲狮的鬃毛;全身被毛,具有彩色花纹,主要由红、黄、绿三种颜色组成。
SCP-CN-2288至今被观察到只在中国农历腊月三十的戌时至丑时1出现,范围仅限于中国地域。项目出现后将寻找人类,并试图对人类进行SCP-CN-2288-1。SCP-CN-2288受到爆炸影响2后将突然消失。
SCP-CN-2288-1为SCP-CN-2288的捕食行为。SCP-CN-2288-1的内容为:项目以约60km/h冲向人类,无视碰撞体积穿过该人类,然后几秒内项目消失。SCP-CN-2288-1发生后,此人类将失去对SCP-CN-2288及SCP-CN-2288-1的记忆。
由于项目的活动时间较短、影响较轻及腊月三十中国人放鞭炮的习俗,对SCP-CN-2288的研究不被视为优先事项。应注意的是,SCP-CN-2288与中国古代神话传说中凶兽“年”的形象较为相似,见附录。
由于禁燃令影响,当前应将收容SCP-CN-2288视为较优先事项。——方江
附录:
太古之时,有一猛兽;散于林中,人谓之“年”。“年”之形怖,性凶,专食禽兽鳞虫,好食人,使人言“年”变。徐徐,人得其“年”之道:盖每年之初,其窜至群聚食人,且出没之时皆在暮夜,及鸡鸣晓,遂还山中也。男女便以此畏之夜同关煞,谓之“年关”;且思得一法过“年关”:每至日暮,家家预备饭,熄火净灶,复以圈栏悉拴牢;然后于食前供祭“年夜饭”,老幼环聚食之,且祈祖考神以安然度夜。食后之时,俱不敢寐,挨坐语张胆。天渐暝下,“年”从林中窜进聚落。只见家家门闭,街上不见一人。半夕之“年”无所得,此凶而愚之物乃怏怏还。已度“年关”之人喜,将谢天地祖宗,欲相贺不为“年”食,又启举鞭,去同邻里亲见道喜。
如此数年,无事,人谓年兽益懈。于一年之腊三十夜,年兽突窜村中。村人效以前事,家家门闭,奈何年兽愈知,破门而入,一村人几为年兽尽,而一家挂红帘、朱衣之新小两口无恙。有童稚数,在院中点竹于戏,火光燎天,竹烧轰爆;年兽转此,见火光惊回窜。其后,人知年兽恐红、恐光、恐声。每至暮冬,天下百姓贴红纸、衣红袍、举爆竹,年兽然则不来矣。
« SCP-CN-2287 | SCP-CN-2288 | SCP-CN-2289 »






