假面骑士铠武
特摄
简介
该剧是东映株式会社的2013年的假面骑士作品,是平成假面骑士的第15作
1
。讲述了在繁华而闭塞的都市,年轻人以街舞打破沉闷。流行游戏竟能召唤战斗小动物异域者。然而,“异世界”之门开启,危机四伏。现代社会陷入混沌,如同假面骑士的战国时代。鲜艳水果定锁种子变身,厚重骑士战即将打响,为信念而战。讨论12
。
详细设定
/* ========================================================= */
/* --- 1. 字体与基础设置 (海姆冥界与科技交织主题) --- */
/* ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;800&family=Noto+Sans+SC:wght@400;700&display=swap');
.cinnamoroll-bubble {
position: relative;
margin: 32px 2px 20px 2px; /* 给上方锁种状态栏留出空间 */
border-radius: 8px;
font-family: 'Noto Sans SC', -apple-system, sans-serif;
transition: all 0.25s ease-in-out;
background: #1a241d; /* 极深灰绿底色,模拟海姆冥界森林阴影,护眼 */
color: #e2ebd9; /* 柔和浅绿灰字,降低对比度,防刺眼 */
border: 1.5px solid #2d4a36; /* 森林藤蔓绿边框 */
box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.cinnamoroll-content {
/* 【核心需求】左右内边距严格 3px */
padding: 16px 3px !important;
position: relative;
z-index: 2;
}
/* ========================================================= */
/* --- 2. AI 气泡:铠武·橙子铠甲 (Lock On!) --- */
/* ========================================================= */
.cinnamoroll-bubble.ai-bubble {
background: linear-gradient(145deg, #1b261e, #141c16);
border-left: 5px solid #ff7f00; /* 橙兵卫代表色 */
}
/* AI 标签:锁种激活与骑士系统 */
.cinnamoroll-bubble.ai-bubble::before {
content: "🔒 Lock Seed: Orange (LS-07) // Stage On!";
position: absolute;
top: -24px; left: 0px;
font-family: 'Orbitron', sans-serif;
font-size: 11px;
font-weight: 800;
color: #ff9f43; /* 柔和橙 */
background: #2a1f18; /* 深焦橙底 */
padding: 2px 6px;
border-radius: 4px 4px 0 0;
border: 1px solid #ff7f00;
border-bottom: none;
}
/* 装饰:右下角黄金果实剪影 */
.cinnamoroll-bubble.ai-bubble::after {
content: '🍊';
position: absolute;
bottom: 6px; right: 6px;
font-size: 18px;
opacity: 0.25;
z-index: 1;
}
/* ========================================================= */
/* --- 3. User 气泡:巴隆·香蕉铠甲 (Knight of Spear) --- */
/* ========================================================= */
.cinnamoroll-bubble.user-bubble {
background: linear-gradient(145deg, #222017, #181711); /* 偏暗黄绿底 */
border-right: 5px solid #ffd700; /* 巴隆黄金香蕉色 */
}
/* User 标签:傲慢的强力渴求 */
.cinnamoroll-bubble.user-bubble::before {
content: "🍌 Lock Seed: Banana (LS-08) // Knight of Spear";
position: absolute;
top: -24px; right: 0px;
font-family: 'Orbitron', sans-serif;
font-size: 11px;
font-weight: 800;
color: #ffeb3b; /* 柔和蕉黄 */
background: #2b2816; /* 深暗黄底 */
padding: 2px 6px;
border-radius: 4px 4px 0 0;
border: 1px solid #ffd700;
border-bottom: none;
}
/* 装饰:左下角蔷薇印记(驱纹戒斗元素) */
.cinnamoroll-bubble.user-bubble::after {
content: '🌹';
position: absolute;
bottom: 6px; left: 6px;
font-size: 16px;
opacity: 0.2;
z-index: 1;
}
/* ========================================================= */
/* --- 4. 文本特殊颜色转换 (护眼与主题强化) --- */
/* ========================================================= */
/* 加粗 (Strong) -> 黄金果实之力 (柔和金黄) */
.inazuma-message-text strong {
color: #ffca28 !important;
font-weight: 700;
}
/* 斜体 (Em) -> 冥界之森的侵蚀 (奇异极光绿) */
.inazuma-message-text em {
color: #4db6ac !important; /* 柔和青绿 */
font-style: italic;
}
/* 加粗斜体 -> 极锁种·大将军 (胜哄炽红) */
.inazuma-message-text strong em,
.inazuma-message-text em strong {
color: #ff5252 !important; /* 警示红 */
text-shadow: 0 0 4px rgba(255, 82, 82, 0.4);
}
/* 标题 # (Header) -> 战极驱动器切片提示 */
.inazuma-message-text h1,
.inazuma-message-text h2,
.inazuma-message-text h3 {
color: #81c784 !important; /* 护眼浅绿 */
border-bottom: 2px dashed #388e3c;
padding-bottom: 4px;
margin: 12px 0 8px 0;
font-weight: bold;
}
/* 删除线 -> 被击碎的锁种/退场骑士 */
.inazuma-message-text del {
color: #757575; /* 灰色 */
text-decoration: line-through;
}
/* ========================================================= */
/* --- 5. 代码块:战极驱动器机密数据 (Sengoku Driver System) --- */
/* ========================================================= */
pre {
margin: 12px 0px !important;
/* 【核心需求】左右内边距严格 3px */
padding: 32px 3px 10px 3px !important;
background: #cddc39 !important; /* 浅荧光绿偏黄,模仿量产型战极驱动器面板 */
border-radius: 6px;
border: 2.5px solid #afb42b;
position: relative;
overflow-x: hidden;
box-shadow: inset 0 0 12px rgba(0,0,0,0.2);
}
/* 代码块标题栏 */
pre::before {
content: "⚙️ YGGDRASILL CORP. SYSTEM DATA";
position: absolute;
top: 0; left: 0; right: 0;
height: 24px;
background: #558b2f; /* 墨绿顶条 */
color: #ffffff;
font-family: 'Orbitron', sans-serif;
font-size: 11px;
line-height: 24px;
padding-left: 8px;
font-weight: 800;
}
pre code {
font-family: 'Consolas', monospace !important;
font-size: 13px !important;
color: #000000 !important; /* <--- 核心要求:黑色文字 */
font-weight: bold !important; /* <--- 核心要求:加粗 */
line-height: 1.5 !important;
white-space: pre-wrap;
word-break: break-all;
}
/* 代码内的特殊标记 */
pre code strong {
color: #b71c1c !important; /* 警告红 */
}
pre code em {
color: #0d47a1 !important; /* 科技蓝 */
}
/* ========================================================= */
/* --- 6. 其它细节修饰 --- */
/* ========================================================= */
.inazuma-message-text {
font-size: 14.5px;
line-height: 1.65;
text-align: justify;
overflow-wrap: break-word;
word-wrap: break-word;
}
/* 引用块:世界树的研究日志/海姆冥界石碑翻译 */
blockquote {
margin: 10px 3px;
padding: 8px;
background: #1b2a22; /* 稍亮的墨绿 */
border-left: 4px solid #81c784; /* 绿光屏障 */
color: #c8e6c9 !important; /* 护眼灰绿字 */
font-weight: bold !important; /* 确保加粗 */
font-size: 13.5px;
border-radius: 2px;
}
blockquote strong {
color: #a5d6a7 !important; /* 引用内关键字亮化 */
}
/* 分割线:激光切割线效果 */
hr {
border: 0;
height: 1px;
background: linear-gradient(90deg, transparent, #4caf50, transparent);
margin: 18px 0;
opacity: 0.6;
}
/* 移动端优化 */
@media (max-width: 600px) {
.cinnamoroll-bubble {
margin: 26px 2px 15px 2px;
}
.cinnamoroll-content {
padding: 12px 3px !important; /* 确保在窄屏下依旧死守 3px */
}
.cinnamoroll-bubble::before {
top: -20px;
font-size: 10px;
}
}