: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)); } }
: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-1854个体应被整体控制在东海系日本海一带的暮光区海域,由Site-CN-82-β生物部门高强度监管。应定期观测海域内项目生存状态与数量,维护项目生存环境。
现已回收7只SCP-CN-1854个体带回82-β站点B-4异常生物研究实验区进行深度研究。基金会高层已向中国国家海洋局与外界宣布项目野外灭绝,以减少异常带来的影响。
所有回收的SCP-CN-1854个体应收容于Site-CN-82-β右翼低危水生生物收容区的特制水生收容舱-ζ中,该收容舱应具备以下条件:
- 收容舱内部压强应适配至0.9×10^7Pa以模拟海洋中层带环境。
- 收容舱墙壁应具有去压通道,以便人员对舱室物品进出进行有效操控。
- 应定期向收容舱内部提供灯笼棘鲛(Etmopterus Lucifer)以供项目食用。
- 禁止人员将光源带入收容舱所在区域,以防SCP-CN-1854受惊。
如SCP-CN-1854种群延续出现危机,应按《异常生物保护条例》内容对其进行特别保护(详见附录CN-1854.2)。
描述:SCP-CN-1854是一种名为巴氏辛德汉斯虫(Schinderhannes bartelsi)的叶足动物门生物。项目体态与普遍奇虾种化石结构有异,其尺寸普遍小于现存化石样本。项目移动时可高频振动其游泳桨状肢,时速可达25km/h。
SCP-CN-1854可将身体拟态为海水以达到伪装效果,拟态时无法以任何方式观测。项目可以通过拟态以达到瞬时位移的效果,这有助于其进行更高效的捕猎。项目通常以软骨鱼纲(Chondrichthyes)与辐鳍鱼纲(Actinopterygii)鱼类为食,且并未发现其天敌。项目肢体前段具有毒液,可以短暂麻痹猎物神经,并使其结缔组织于短时间内萎缩,后通过身体前端的特化附肢辅助进食猎物骨骼。项目可以通过未知方式同进食猎物残骸一起拟态,推测这样仅为达到掩盖尸体的效果,确切目的未知。
SCP-CN-1854可发出强生物光。研究表明,项目体表分布有数千处特化腺体,受到外部刺激时可分泌淡蓝色荧光素与未知成分荧光素酶。此类荧光素酶可驱使项目散发出蓝色光芒,值得注意的是,任何非金属液体均无法将项目生物光传播介质阻隔,包括反射/折射。基金会正从样本中提取此类生物酶进行下一步研究。
SCP-CN-1854具有特殊的繁殖方式:雄性个体纳精囊位于第二、三步足基部间的腹甲上,雌性则通过口部排卵。交配时,项目会进入拟态状态,期间无法观测。交配完成后的一段时间内无法观测到受精卵被排出,一周后一个新的SCP-CN-1854个体会凭空出现于项目集体中。项目个体平均仅可存活约40年,且死亡后失去所有异常性质。值得注意的是,由于项目极少交配、寿命较短,故应加强对其周遭环境的维护以延续该生物种群繁衍。
一般状态下,SCP-CN-1854体色接近大红,个体死亡时其体表将迅速褪色为类米黄色,随后黑色淤血将持续从其内部浮现,逐渐填满该个体体表。当项目个体已完全转变为黑色淤血状血块时,项目附肢与桨状肢将逐一脱落。持续约30min后,项目躯体将以粒子形式分解,仅留下脱落部分。
补充:SCP-CN-1854化石本于2009年在德国本登巴赫地区Hunsrück Slate动物群发现,该生物在当时科学界引起巨大争议,其缘由为化石所在的时期距离最近的叶足动物门生物化石时期具有巨大空档,基金会随后介入调查,于东海琉球海沟区域首次发现现存SCP-CN-1854种群。据推测,项目在4.87亿年前曾于现波罗的海海域栖息,由于经历第一次生物大灭绝而进化出异常结构与功能,长期保持拟态迁徙至中国东海海域,且期间已经历多次生理演变。
Site-CN-82-β研究小组于2011.1.12正式接管SCP-CN-1854相关事宜,由站点异常生物学研究部门进行研究。
以下为Site-CN-82-β异常生物学研究部动物部门主管H-Storm Z的研究笔记:
不可思议,奇虾应该早就灭绝了才对,可我们眼前的真的是活生生的奇虾!我曾经翻阅过本部的资料,他们在加拿大那边也发现了奇虾,不过我们发现的这个族群与那个奇虾截然不同。
SCP-CN-1854有十分强悍的拟态能力,透明的……完全看不见。我想这就是它们能苟活至今的原因——它们善于伪装,以至于没有生物能伤害到它们。
它们很会逃跑,速度已经能和开了全档的电动车持平了。抓取样本的时候我们都追不上它们,更何况它们随时都在隐身,来无影去无踪——多亏了稳定网才能捕捉到我面前的这七只可爱的小家伙。
生物光是很有意思的一点,它们的生物光仿佛不会被任何液体类介质所影响,我们甚至能从海面看到那千米以外一个个微弱的蓝光。我认为它们可以通过这光来交流,也可在遇到危险的时候会通过生物光痕迹构成的鬼脸般的图案来震慑对方,多么奇妙!
我们派出过潜水器,那帮家伙害怕我们,一靠近就会进入拟态模式,所以我们的设备停靠的远远的。我当时就坐在副座,亲眼看到一个小巧的SCP-CN-1854个体杀死了一只太平洋双光鱼1,那只可怜的深海鱼一瞬间变成了干尸,随后一群奇虾就这样围了上去,啃食它的骨块。
我认为我们不该把它们全都关起来,毕竟它们都挺了几亿年了,不该被我们所掌控。它们就这样活着,靠自己的意志坚持到现在——问问自己,我们有什么资格“凌驾于自然”?
说实话,我不愿将这些奇虾归咎于“异常”的行列,或许它们只是找到了自己的进化道路,而我们还无法用异常科学来解释。所以我呼吁组织的所有生物研究专家对这类奇虾进行更细致的保护,我们正在努力当中。
它们是自己的英雄,是最后的奇虾。
——张伯风 Site-CN-82-β
据2021.1.19日最新统计,东海系日本海一带所存活的野生SCP-CN-1854数量仅剩427只,根据世界自然保护联盟(IUCN)评级,项目种群已划入极危(CE)物种范围。
基金会方派遣捕鲸船82Kel-01与潜水器82Sub-04对全部野外SCP-CN-1854个体进行回收,依据《异常生物保护条例》第三章第四条内容对项目进行收容与看护:
第四条:如在编异常生物濒临灭绝,且具有较低威胁性,应通过重新拟定收容方案的方式对其进行尽可能的保护,并还原其生态环境,直至种群可正常繁衍。基金会方不可懈怠或蔑视异常生命,应利用可调度资源保护全部濒危在编异常所处种群,任何单位及个人均不可干涉此类活动。
由于Site-CN-82-β大型收容突破事故对SCP-CN-1854所处舱室造成巨大影响,故基金会方已于██山山脚重新修缮一处临时收容站,以保证SCP-CN-1854种群所处环境适宜、安静。
« SCP-CN-1853 | SCP-CN-1854 | SCP-CN-1855 »








