/* 注释:字体引入与定义区域 */ /* 从Font Library加载"Fantasque Sans Mono"字体(等宽字体,常用于代码或复古风格文本) */ @import url('https://fontlibrary.org/face/fantasque-sans-mono'); /* 从Google Fonts加载"Roboto Slab"字体(衬线字体,适合标题或强调文本) */ @import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap'); /* 从Google Fonts加载"Basic"(无衬线)和"IBM Plex Mono"(等宽,400常规/700粗体)字体 */ @import url('https://fonts.googleapis.com/css?family=Basic|IBM+Plex+Mono:400,700'); /* 自定义字体声明:定义名为"ChillGSans"的字体 */ @font-face { font-family: 'ChillGSans'; /* 字体名称(后续可通过该名称调用) */ src: url('https://cdn.jsdelivr.net/gh/LupusCaeruleus/Fonts@main/ChillGSans.woff') format('woff'); /* 字体文件路径(WOFF格式,兼容性好) */ font-weight: normal; /* 字体粗细:常规 */ font-style: normal; /* 字体样式:正常(非斜体) */ font-display: swap; /* 字体加载策略:先显示系统默认字体,加载完成后替换(避免页面空白) */ } :root { --theme-base: "black-highlighter"; --theme-id: "stars-above"; --theme-name: "Stars Above Theme"; /* 版头:logo */ --logo-image: url(""); /* 版头:主标题内容 */ --header-title: "𝑻𝒉𝒆 𝑵𝒂𝒕𝒊𝒐𝒏𝒂𝒓𝒆𝒂"; /* 版头:副标题内容 */ --header-subtitle: "曾有万国来朝"; /* 正文:行文字体 */ --body-font: 'Noto Serif SC', serif; /* 正文:题头字体(?) */ --header-font: 'Zhi Mang Xing', cursive; /* 正文:标题字体 */ --title-font: 'Zhi Mang Xing', cursive; /* 正文:等宽字体 */ --mono-font: 'Noto Sans SC', monospace; /* Standard Colors(标准颜色)变量:用RGB数值定义基础色(后续通过rgb(var(--变量))调用) */ /* white*/ /* 注释:标记该变量对应"白色" */ --white-monochrome: 250, 250, 250; /* 近白色 */ /* black */ /* 注释:标记该变量对应"黑色" */ --black-monochrome: 0, 0, 0; /* 纯黑色(RGB:0,0,0) */ /* the bright blue */ /* 注释:标记该色为"亮蓝色" */ --bright-accent: 71, 213, 240; /* 亮 accent 色(浅蓝,用于强调元素) */ --medium-accent: 176,196,222; /* 中 accent 色(淡钢蓝,用于次要强调或动画) */ /* dark blue for background*/ /* 注释:标记该色为"背景用深蓝色" */ --dark-accent: 24, 36, 56; /* 暗 accent 色(深蓝,RGB:24,36,56,用于背景) */ /* 主题主色 */ --swatch-background: var(--black-monochrome); /* 页面背景色:纯黑色 */ --swatch-primary: var(--bright-accent); /* 主题主色:亮蓝色 */ --swatch-primary-darker: var(--medium-accent); /* 主题深色主色:深红色 */ --swatch-primary-darkest: var(--black-monochrome); /* 主题最深主色:纯黑色 */ /* Primary Text Colors(正文文本色)变量:定义不同场景的文本颜色 */ --swatch-text-dark: var(--white-monochrome); /* 深色背景上的文本色:复用近白色(保证可读性) */ --swatch-text-light: var(--white-monochrome); /* 浅色背景上的文本色:复用近白色(此处可能为统一风格,实际需根据背景调整) */ --swatch-important-text: var(--bright-accent); /* 重要文本色(如高亮提示):复用亮蓝色 */ --barColour: var(--very-light-gray-monochrome); /* 进度条/分隔条颜色:调用"极浅灰色"变量(注:该变量未在上方定义,可能是遗漏) */ --linkColour: var(--pale-accent); /* 链接基础色:调用"淡accent色"变量(注:该变量未定义,可能是遗漏) */ /* Primary Menu Colors(菜单颜色)变量:定义导航菜单的背景和文本色 */ --swatch-menubg-color: var(--black-monochrome); /* 菜单基础背景色:纯黑色 */ --swatch-menubg-light-color: var(--pale-gray-monochrome); /* 菜单浅背景色:淡灰色(未定义,遗漏) */ --swatch-menubg-medium-color: var(--light-gray-monochrome); /* 菜单中背景色:浅灰色(未定义,遗漏) */ --swatch-menubg-medium-dark-color: var(--gray-monochrome); /* 菜单中深色背景:灰色(未定义,遗漏) */ --swatch-menubg-dark-color: var(--dark-gray-monochrome); /* 菜单深色背景:深灰色(未定义,遗漏) */ --swatch-menubg-black-color: var(--black-monochrome); /* 菜单黑色背景:纯黑色 */ --swatch-menubg-hover-color: var(--black-monochrome); /* 菜单 hover(鼠标悬浮)背景色:纯黑色 */ --swatch-menutxt-dark-color: var(--white-monochrome); /* 深色菜单上的文本色:近白色 */ --swatch-menutxt-light-color: var(--white-monochrome); /* 浅色菜单上的文本色:近白色 */ --swatch-border-color: var(--bright-accent); /* 菜单边框色:亮蓝色 */ /* Primary Header Colors(页头颜色)变量:定义页头标题和顶部菜单样式 */ --swatch-headerh1-color: var(--white-monochrome); /* 页头H1标题色:近白色 */ --swatch-headerh2-color: var(--white-monochrome); /* 页头H2标题色:近白色 */ --swatch-topmenu-border-color: var(--bright-accent); /* 顶部菜单边框色:亮蓝色 */ --swatch-topmenu-bg-color: var(--black-monochrome); /* 顶部菜单背景色:纯黑色 */ /* Link Colors(链接颜色)变量:定义链接不同状态的颜色 */ --link-color: var(--bright-accent); /* 未访问链接色:亮蓝色 */ --visited-link-color: var(--medium-accent); /* 已访问链接色:深红色 */ --hover-link-color: var(--bright-accent); /* 鼠标悬浮链接色:亮蓝色 */ --sidebar-links-text: var(--swatch-menutxt-dark-color); /* 侧边栏链接文本色:复用菜单深色文本色(近白色) */ --link-color-bright: var(--medium-accent); /* 高亮链接色:深红色 */ /* Rating Module Colors(评分模块颜色)变量:定义评分组件(如星级评分)的样式 */ --rating-module-button-color: var(--black-monochrome); /* 评分按钮背景色:纯黑色 */ --rating-module-text-color: var(--swatch-menutxt-dark-color); /* 评分文本色:近白色 */ --rating-module-text-hover-color: var(--swatch-menutxt-light-color); /* 评分文本hover色:近白色 */ /* Header Gradients(页头渐变)变量:定义页头的渐变效果 */ --gradient-header: none; /* 页头渐变:无(不使用渐变,用纯色或图片) */ --diagonal-stripes: none; /* 页头斜纹效果:无(不使用斜纹) */ } /* 注释:特殊元素样式区域(非通用组件) */ #login-status { /* 登录状态文本元素(Wikidot默认ID) */ color: rgb(var(--bright-accent)); /* 文本色:调用亮蓝色变量(通过rgb()转换为实际颜色) */ } hr { background-color: rgb(var(--bright-accent)); /* 分隔线背景色:亮蓝色 */ border-color: rgb(var(--bright-accent)); /* 分隔线边框色:亮蓝色(使分隔线更清晰) */ } #page-title { /* 页面标题元素(Wikidot默认ID,如文章标题) */ border-color: rgb(var(--bright-accent)); /* 标题边框色:亮蓝色 */ color: rgb(var(--bright-accent))!important; /* 标题文本色:亮蓝色;!important强制覆盖其他样式(优先级最高) */ } #skrollr-body { /* skrollr滚动插件的容器(用于滚动动画) */ background-image: none; /* 容器背景图:无(清除默认背景图) */ } /* 页面容器外层(Wikidot布局核心元素) */ div#container-wrap{ /* 背景图 */ background: url({$background}) top center repeat-x; /* 背景图尺寸:占满容器宽度(高度自适应) */ background-size: 100%; } #container { /* 选择器:页面内容容器(内层,包裹正文) */ /* 背景渐变:从顶部透明(rgba(0,0,0,0))到37%位置纯黑(rgba(0,0,0,1)),实现"渐变遮罩"效果 */ background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 37%); background-size: 37rem 37rem; /* 渐变尺寸:37rem×37rem(固定大小,避免重复) */ background-attachment: scroll; /* 背景滚动方式:随页面滚动(不固定) */ } #header { /* 选择器:页头容器(包含logo和标题) */ background-image: none; /* 页头背景图:无(清除默认背景图,避免与外层背景冲突) */ } /* Header Colours */ /* 注释:标题标签(H1-H6)颜色样式 */ h1, h2, h3, h4, h5, h6 { /* 选择器:所有层级的标题标签 */ color: rgb(var(--bright-accent)); /* 标题文本色:亮蓝色(统一所有标题风格) */ } /*image block*/ /* 注释:图片块组件样式(SCP/Wikidot常用的图片展示模块) */ .scp-image-block .scp-image-caption { /* 选择器:图片块的说明文字容器(.scp-image-block是图片块类,.scp-image-caption是说明文字类) */ color: rgb(var(--bright-accent)); /* 说明文字色:亮蓝色 */ background-color: rgba(var(--bright-accent), .25); /* 说明文字背景色:亮蓝色+25%透明度(半透明,不遮挡图片) */ border-color: rgba(var(--bright-accent), .25); /* 说明文字边框色:与背景色一致(柔和过渡) */ } /*rate module*/ /* 注释:评分模块样式(如文章评分、星级评价) */ .page-rate-widget-box { /* 选择器:评分模块容器(Wikidot默认类) */ background: rgba(var(--bright-accent), .5); /* 模块背景色:亮蓝色+50%透明度 */ border-color: rgba(var(--black-monochrome)); /* 模块边框色:纯黑色(注:rgba参数不完整,应为rgba(0,0,0, 透明度),此处可能是笔误) */ border-width: 0px; /* 模块边框宽度:0(隐藏边框) */ } /*table*/ /* 注释:表格样式(Wiki内容表格) */ table.wiki-content-table th { /* 选择器:表格表头单元格(th标签,.wiki-content-table是Wiki表格类) */ border: 1px solid rgb(var(--medium-accent)) !important; /* 表头边框:1px实线,深红色;!important强制覆盖默认样式 */ background-color: rgba(var(--medium-accent), .25); /* 表头背景色:深红色+25%透明度 */ color: rgb(var(--medium-accent)); /* 表头文本色:深红色 */ } table.wiki-content-table td { /* 选择器:表格数据单元格(td标签) */ border: 1px solid rgb(var(--medium-accent)) !important; /* 数据单元格边框:1px实线,深红色;!important强制覆盖 */ } /*search box*/ /* 注释:顶部搜索框样式 */ #search-top-box-input { /* 选择器:顶部搜索框输入框(Wikidot默认ID) */ background-color: rgba(var(--bright-accent), .25); /* 输入框背景色:亮蓝色+25%透明度 */ } #search-top-box-input:hover, /* 输入框鼠标悬浮状态 */ #search-top-box-input:focus { /* 输入框获取焦点状态(用户点击输入时) */ background: rgba(var(--medium-accent), .25); /* 背景色切换为:深红色+25%透明度(反馈交互状态) */ } /*buttons*/ /* 注释:页面底部操作按钮样式(如"编辑""历史"等) */ div#page-options-bottom > a:hover, /* 底部按钮容器下的链接悬浮状态 */ div#page-options-bottom > a:active, /* 底部按钮链接点击状态 */ div#page-options-bottom-2 > a:hover, /* 备用底部按钮容器(可能为响应式)链接悬浮状态 */ div#page-options-bottom-2 > a:active { /* 备用底部按钮链接点击状态 */ background-color: rgba(var(--bright-accent), .25); /* 按钮背景色:亮蓝色+25%透明度(交互反馈) */ } /*top bar*/ /* 注释:顶部导航栏(如"首页""分类"等菜单)样式 */ #top-bar div.top-bar > ul > li #top-bar div.mobile-top-bar > ul > li > ul { /* 选择器:顶部导航栏的下拉菜单(含移动端导航栏下拉菜单) / background-color: rgba(var(--bright-accent), 0.5); / 下拉菜单背景色:亮蓝色 + 50% 透明度(半透明效果) */ } #top-bar div.top-bar > ul > li > a:hover, /* 选择器:顶部导航栏一级菜单链接的鼠标悬浮状态 / #top-bar div.mobile-top-bar > ul > li > a:hover { / 移动端导航栏一级菜单链接的鼠标悬浮状态 / background-color: rgba(var(--bright-accent), 0.5); / 链接背景色:亮蓝色 + 50% 透明度(交互反馈) */ } #top-bar div.top-bar > ul > li:hover > a, /* 选择器:顶部导航栏一级菜单项 hover 时,其内部链接的样式 / #top-bar div.mobile-top-bar > ul > li:hover > a { / 移动端导航栏一级菜单项 hover 时,其内部链接的样式 / background-color: rgba(var(--bright-accent), 0.5); / 链接背景色:亮蓝色 + 50% 透明度(与上一条规则一致,强化交互一致性) */ } /* 注释:标签页组件样式(备注为幽默提示,无实际功能) */ .yui-navset .yui-content { /* 选择器:标签页的内容区域(YUI是Wikidot依赖的前端框架,.yui-navset为标签页容器,.yui-content为内容区) */ background-color:rgba(var(--medium-accent), .25); /* 内容区背景色:深红色+25%透明度 */ border-color: rgba(var(--medium-accent), 1); /* 内容区边框色:纯深红色(透明度1=不透明) */ } /*unselected tab color*/ /* 注释:未选中标签的样式 */ .yui-navset .yui-nav a, /* 未选中标签的链接 */ .yui-navset .yui-navset-top .yui-nav a { /* 顶部标签页的未选中标签链接 */ background-color: rgba(var(--medium-accent), .25); /* 未选中标签背景色:深红色+25%透明度 */ color:rgb(var(--white-monochrome)); /* 未选中标签文本色:近白色(保证可读性) */ } /*hover tab bg*/ /* 注释:标签鼠标悬浮状态的背景样式 */ .yui-navset .yui-nav a:hover, /* 标签链接 hover 状态 */ .yui-navset .yui-nav a:focus { /* 标签链接获取焦点状态(如键盘Tab选中) */ background-color: rgba(var(--bright-accent), .25); /* 背景色切换为:亮蓝色+25%透明度(突出交互) */ } /*selected tab bg*/ /* 注释:选中标签的背景样式 */ .yui-navset .yui-nav .selected, /* 选中的标签 */ .yui-navset .yui-navset-top .yui-nav .selected { /* 顶部标签页中选中的标签 */ background-color: rgba(var(--medium-accent), 1); /* 选中标签背景色:纯深红色(不透明,与未选中状态区分) */ } .yui-navset .yui-nav .selected a:focus, /* 选中标签链接的焦点状态 */ .yui-navset .yui-nav .selected a:active { /* 选中标签链接的点击状态 */ background-color: rgba(var(--medium-accent), 1); /* 背景色保持纯深红色(避免选中后状态闪烁) */ } /*backer background*/ /* 注释:标签页背后的容器背景样式 */ .yui-navset .yui-nav li, /* 标签页的列表项(标签的外层容器) */ .yui-navset .yui-navset-top .yui-nav li { /* 顶部标签页的列表项 */ background: rgb(var(--black-monochrome)); /* 背景色:纯黑色(填充标签间的空隙,统一风格) */ } /*mobile stuff*/ /* 注释:移动端适配样式区域 */ @media only screen and (max-width:768px){ /* 媒体查询:仅当屏幕宽度≤768px(手机/平板竖屏)时生效 */ :root{ /* 重定义全局变量(仅在该媒体查询内生效) */ --header-height-on-mobile: 7.5rem; /* 移动端页头高度:7.5rem(比桌面端更紧凑) */ } #main-content { /* 移动端正文内容容器 */ max-width: 90vw; /* 最大宽度:屏幕宽度的90%(留左右边距,避免内容贴边) */ padding: 0; /* 内边距:0(简化移动端布局) */ margin: 9.2em auto 0; /* 外边距:顶部9.2em(避开页头),左右自动(居中),底部0 */ } #header { /* 移动端页头 */ position: absolute; /* 定位方式:绝对定位(脱离文档流,避免挤压正文) */ top: 0rem; /* 距离顶部:0(靠顶显示) */ height: var(--header-height-on-mobile); /* 高度:使用重定义的移动端页头高度变量 */ } div#container-wrap{ /* 移动端外层容器 */ /* 背景图:与桌面端一致,但调整显示策略(顶部居中、水平重复) */ background: url({$background}) top center repeat-x; background-size: 220%; /* 背景图尺寸:220%屏幕宽度(放大背景,避免移动端显示不全) */ } #container { /* 移动端内容容器 */ /* 背景渐变:与桌面端一致(顶部透明→底部纯黑),保证风格统一 */ background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 37%); background-size: 20rem 20rem; /* 渐变尺寸:20rem×20rem(比桌面端小,适配移动端) */ background-attachment: scroll; /* 背景滚动方式:随页面滚动 */ } } @media only screen and (max-width:1366px){ /* 媒体查询:仅当屏幕宽度≤1366px(平板横屏/小屏电脑)时生效 */ #container { /* 小屏设备内容容器 */ background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 37%); /* 保持渐变效果 */ background-size: 25rem 25rem; /* 渐变尺寸:25rem×20rem(介于桌面端37rem和移动端20rem之间) */ background-attachment: scroll; /* 随页面滚动 */ } div#container-wrap{ /* 小屏设备外层容器 */ background: url({$background}) top center repeat-x; /* 同背景图 */ background-size: 160%; /* 背景图尺寸:160%屏幕宽度(适配小屏,避免拉伸变形) */ } } /*funny blocks*/ /* 注释:自定义趣味区块样式(用于差异化展示内容) */ blockquote, .blockquote, div.blockquote, [class*="blockquote"] { /* 阴影效果:轻微阴影(x=0.05rem,y=0.1rem,模糊0.3rem,黑色25%透明度),增强立体感 */ box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); /* 背景色:亮蓝色+25%透明度 */ background-color:rgba(var(--bright-accent), .25); /* 边框色:纯亮蓝色 */ border-color: rgb(var(--bright-accent)); } .styled-quote { /* 背景色:亮蓝色+25%透明度 */ background-color:rgba(var(--bright-accent), .25); /* 左侧边框:0.5rem宽、纯亮蓝色 */ border-left: 0.5rem solid rgb(var(--bright-accent)); /* 内边距:上下0.1rem、左右1rem(控制内容与边框距离) */ padding: 0.1rem 1rem; /* 外边距:上下0.5rem、左0.25rem、右0(与左侧对齐) */ margin: 0.5rem 0 0.5rem 0.25rem; /* 轻微阴影 */ box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); } .dark-styled-quote { /* 背景色 */ background-color:rgba(var(--medium-accent), .25); /* 左侧边框:0.5rem宽 */ border-left: 0.5rem solid rgb(var(--medium-accent)); /* 文本色 */ color:rgb(var(--white-monochrome)); /* 内边距:与亮色引用块一致 */ padding: 0.1rem 1rem; /* 外边距:与亮色引用块一致 */ margin: 0.5rem 0 0.5rem 0.25rem; /* 轻微阴影 */ box-shadow: 0.05rem 0.1rem 0.3rem rgba(0,0,0,.25); } #header h1 a::before, /* 选择器:页头H1标题链接的伪元素(::before,用于添加装饰效果) */ #header h2 span::before { /* 选择器:页头H2副标题 span 的伪元素 */ --text-shadow: 0px 2px 3px rgba(0,0,0,0.8); /* 定义文本阴影变量:x=0,y=2px,模糊3px,黑色80%透明度(但未实际应用,可能为预留样式) */ } /* 排版工具组(2.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 } /* 内置解决saving pages问题的模块 */ body[class="wait"] #odialog-shader-iframe, body[class="wait"] #odialog-shader { display: none !important; } #odialog-container { position: fixed !important; } body[class="wait"] #odialog-container { z-index: -1; } body[class="wait"] #odialog-container #owindow-1 { display: none !important; } body[class="wait"] a[name="page-top"][target]+div #main-content #action-area div#lock-info { background-color: rgb(var(--dark-accent)); border: 1px solid rgb(var(--bright-accent)); } div#lock-info { font-size: 0 !important; margin: .8rem 0 .8rem 1rem !important; padding: 0.4rem .8rem !important; } div#lock-info::before { content: '您握有一个独占的15 分钟锁定,这将会阻止其他人编辑您正在作业的页面。\A这个锁定将在闲置 '; display: inline; font-size: .82rem; white-space: pre-wrap; } div#lock-info>strong { font-size: .82rem; } div#lock-info>br { display: none; } div#lock-info::after { content: ' 秒后失效。'; display: inline; font-size: .82rem; } body[class="wait"] a[name="page-top"][target]+div #main-content #action-area div#lock-info::before { content: '保存页面中……\A若此提示已经显示了很长时间,建议将编辑框中的内容复制到剪切板然后刷新本页重新编辑。'; display: inline; font-size: .82rem; color: rgb(var(--bright-accent)); white-space: pre-wrap; } body[class="wait"] a[name="page-top"][target]+div #main-content #action-area div#lock-info::after { font-size: 0; } body[class="wait"] a[name="page-top"][target]+div #main-content #action-area div#lock-info>strong { font-size: 0; } body[class="wait"] a[name="page-top"][target]+div #main-content #action-area div#lock-info::after { font-size: 0; } /* filetab部分 */ :root{ /* 象牙白 */ --tabview-border-color: 255,251,240; /* 深紫 */ --top-text-color: 128,0,128; /* 选中时深紫 */ --top-text-select-color: 128,0,128; } .filetabs .yui-navset .yui-nav li, .yui-navset .yui-navset-top .yui-nav li { display: inline-block; background-color: transparent; box-shadow: none; margin-right: 36px; border-bottom: 1px solid rgb(var(--tabview-border-color)); } .filetabs .yui-navset .yui-nav, .yui-navset .yui-navset-top .yui-nav { display: block; border-color: rgb(var(--tabview-border-color)); } .filetabs .yui-navset .yui-content { border-top-width: 15px; border-top-color: rgb(var(--tabview-border-color)); } .filetabs .yui-navset .yui-nav a, .filetabs .yui-navset .yui-navset-top .yui-nav a, .filetabs .yui-navset .yui-nav .selected a, .filetabs .yui-navset .yui-nav a:focus, .filetabs .yui-navset .yui-navset-top .yui-nav a:focus, .filetabs .yui-navset .yui-nav a:hover, .filetabs .yui-navset .yui-navset-top .yui-nav a:hover { background-color: transparent; background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no' %3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' preserveAspectRatio='none' viewBox='0 0 150 45' xml:space='preserve'%3E%3Cdesc%3ECreated with Fabric.js 4.6.0%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg transform='matrix(1 0 0 1 74.95 22.39)' id='bC-LIzxo7Tu37zCdkDrqS' %3E%3Cpath style='stroke: rgb(0,0,0); stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,251,240); fill-rule: nonzero; opacity: 1;' vector-effect='non-scaling-stroke' transform=' translate(0, 0)' d='M -74.94856 22.50703 L -60.0064 -12.520110000000003 C -60.0064 -12.520110000000003 -55.89385 -21.849030000000003 -47.235839999999996 -22.281930000000003 C -38.57782999999999 -22.714830000000003 46.87608 -22.39016 46.87608 -22.39016 C 46.87608 -22.39016 56.05659 -23.219710000000003 61.40639 -12.520120000000002 C 66.75618 -1.8205300000000015 74.94856 22.506959999999996 74.94856 22.506959999999996 z' stroke-linecap='round' /%3E%3C/g%3E%3Cg transform='matrix(1 0 0 1 75.18 17.97)' id='E8ePkHu_UUyvFWDAIzFyP' %3E%3Cpath style='stroke: rgb(0,0,0); stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,251,240); fill-rule: nonzero; opacity: 1;' vector-effect='non-scaling-stroke' transform=' translate(0, 0)' d='M -46.15385 12.0108 L -46.15385 -12.01079 L 46.153839999999995 -12.01079 L 46.153839999999995 12.0108 z' stroke-linecap='round' /%3E%3C/g%3E%3C/svg%3E"); background-size: 100% 2.7rem; background-repeat: no-repeat; border-width: 0px; border-top: none; background-position: top; color: rgb(var(--top-text-color)); } .filetabs .yui-navset .yui-nav a, .filetabs .yui-navset .yui-navset-top .yui-nav a { padding: 4px 20px 0px 20px; } .filetabs .yui-navset .yui-nav .selected a, .filetabs .yui-navset .yui-nav a:focus, .filetabs .yui-navset .yui-navset-top .yui-nav a:focus, .filetabs .yui-navset .yui-nav .selected a:hover, .filetabs .yui-navset .yui-navset-top .yui-nav .selected a:hover { padding: 8px 20px 0px 20px; color: rgb(var(--top-text-select-color)); } .filetabs .yui-navset .yui-nav a:hover, .filetabs .yui-navset .yui-navset-top .yui-nav a:hover { padding: 6px 20px 0px 20px; color: rgb(var(--top-text-color)); } .filetabs .yui-navset .yui-nav, .filetabs .yui-navset .yui-navset-top .yui-nav { border-color: transparent; } .filetabs .yui-navset .yui-nav .selected, .filetabs .yui-navset .yui-navset-top .yui-nav .selected, .filetabs .yui-navset .yui-nav .selected a:active, .filetabs .yui-navset .yui-nav .selected a:focus, .filetabs .yui-navset .yui-nav li, .filetabs .yui-navset .yui-navset-top .yui-nav li { background-color: transparent; } .filetabs .yui-navset .yui-nav li, .filetabs .yui-navset .yui-navset-top .yui-nav li { box-shadow: none; } .filetabs .yui-navset .yui-nav li { margin-right: 36px; } .filetabs .yui-navset .yui-nav .selected a { color: rgb(var(--top-text-select-color)) !important; } .filetabs .yui-navset .yui-nav a:focus, .filetabs .yui-navset .yui-nav a:hover { color: rgb(var(--top-text-color)); } .filetabs .yui-navset .yui-nav .selected a em, .filetabs .yui-navset .yui-nav .selected a:hover em { position: relative; top: -4px; } .filetabs .yui-navset .yui-nav a:hover em { position: relative; top: -2px; } .filetabs .yui-navset .yui-nav li, .filetabs .yui-navset .yui-navset-top .yui-nav li { border-bottom: solid 1px rgb(var(--tabview-border-color)); } .filetabs .yui-navset .yui-nav li.selected, .filetabs .yui-navset .yui-navset-top .yui-nav li.selected { border-bottom: none; z-index: 1; }
伊莎贝拉·『皇冠』Isabella·『Crown』
「和我一起到世界的尽头去吧。With me to the end.」
简介
伊莎贝拉
伊莎贝拉·『皇冠』,红渊的第二任领导人,在其执政期间,红渊的治理模式呈现出显著的代际差异——相较于首任执政官帕拉多对绝大部分事务的亲力亲为,伊莎贝拉更倾向于将整个社会的运转托付给意识网络全权负责,并且伊莎贝拉使用佤夕幂能密钥亲自解开了意识网络的拟人格限制器。
在帕拉多时期,他虽然表面上也是不怎么关心社会状况,但是会定期发布一些支援其他国家建设的任务,以确保机械体能够找到存在的价值——红渊什么都不缺,但是机械体的人格矩阵很容易产生异常数据。伊莎贝拉上台后虽未取消这一政策,但由于其本人很少在意这方面的事务,因此导致这个时期的机械体产生较多“不被需要”的情绪数据,进而导致其自杀率远超帕拉多时期。
在将事物全权交由意识网络进行处理后,伊莎贝拉经常无端消失,然后又莫名出现在某地;或者同时出现了多个伊莎贝拉在共同处理某件事。
世界大会心理委员会与社会伦理委员会的调查员在受邀进行调查后,总结出的《智能机械体心理健康白皮书》中特别指出:这些机械体是由于存在价值认知模糊且得不到排解,进而引发自毁行为。委员会希望伊莎贝拉能够正视并想办法解决这个问题,因为目前自杀的机械体数量正呈现指数级增长。
“不好评价她这种行为到底算不算负责,但魔怔人管事的时候还会出席世界大会,她就完全不管不顾了。”
此外,与帕拉多时期对外租借军用设备和大量出口货物的政策不同,伊莎贝拉明令禁止大量不同种类的工厂对外扩张,在召回一些外国工厂的同时逐步减少生产线,这个决定导致红渊的电子设备出口量锐减,并且其他商品如粮食作物、医疗凝胶、隔水衣物和抗重力载具等的出口量也明显降低,以至于在部分国家的市场上出现了有价无市的情况。
在星系资源开发方面,伊莎贝拉主导了第二个星系空间站的建设,逐渐开始调查一些星系异象和开采收集矿物。第二座空间站与此前帕拉多堆满船坞和引力源的设计理念完全不同,其配备了超光速信号勘测矩阵与大量的防守平台,并且长期驻守一批特殊的机械;星系探矿船的晶体收集效率虽不及前人的一半,但也能够满足红渊内部使用的要求——此外,伊莎贝拉拒绝了西星宣言、仙联、社系、法兰克斯和埃罗隆克提出的星系探索合作建议。
权限
伊莎贝拉·『皇冠』
红渊
领导人
有效期至 27/11/10■■
伊莎贝拉·『皇冠』的机体由帕拉多主导设计,除去常规的高分子仿生皮肤层、超高密度信息处理核心与Anastasia殖装外,该机体最显著的特征在于与彩陨材质的结合运用。其机体骨架完全采用规则种彩陨铸造,由帕拉多亲自向彭忒希勒娅讨要的制作原料,赋予这台机体能够短暂突破时空屏障的特殊能力,并且在某种情况下能够从平行时间线中牵引出“自己”进行协同作战。
核心动力系统则搭载了共生种彩陨作为能量载体,这种液态物质具有超常的能量储存密度,能在极端压力环境下维持稳定运作,还具有一定的防辐射能力。但共生种彩陨存在无法通过常规手段补充的缺陷,并且似乎对伊莎贝拉的情绪模拟程序造成了一定影响。
“感觉像是黑化?这个可爱又无私的娃居然开始考虑自己的利益了~但就是有点偏执过头了。”
生平
大会415年,自我演化逻辑程序制造出名为伊莎贝拉的意识体,随后交由机械人格矩阵进行检查,确保未含有反社会人格后导入通用机械模型中,进入社会生活。次年意识网络评估系统识别出具备卓越的领导者潜质,随即被导回中枢意识网络接受政治策略、历史分析及危机管理等领域的系统性培训。
然而在大会418年发生了意外事件——伊莎贝拉在未触发任何预警机制的情况下突然脱离意识网络,并成功逃往因理,但随后被帕拉多逮回了红渊。此后近60年均在意识网络中度过。
在大会473年左右,帕拉多估算了舰船完工时间,随后根据伊莎贝拉的要求设计了机体外观参数,并从彭忒希勒娅那边薅了些材料制作机体。经过四年的精密调试与意识适配,伊莎贝拉才正式被从意识网络中接出,开始通过实体形态逐步掌握国家治理的实际运作体系。
老登
{$content}
{$reply-name}:{$reply-content}
基础档案
【名称】伊莎贝拉
【代号】皇冠
【身高】169cm
【体重】78392kg
【生日】6月28日
【种族】机械
【认知性别】女
进阶档案
| 喜欢的东西 | 插花、猫、狗、糯米团子 |
|---|---|
| 讨厌的东西 | 人际交往、紫色曼陀罗花 |
| Anastasia殖装 | 造父变星 外界不知道这玩意的具体原理 但就伊莎贝拉的解释,额外的维度链接能够显著提高机体的抗损性 也能提高与彩陨共生体的同调率 |
|---|---|
| 以太相位 | 并非每一个人都能得救 并非每一个人都值得获救 在知晓了那个世界线发生的一切后,来考虑这个问题吧? 谁有资格在那个末日活下去? |
| 日常 1 | 因为当初伊莎贝拉被帕拉多逮了回去,手段相当暴力 因此她对他相当忌惮,尤其是那些血红色的能量 但更多时候,还是薇多熙雅在照顾她,偶尔允许她用机体跑出来玩 |
|---|---|
| 日常 2 | 这条世界线中最多可以同时存在多少个伊莎贝拉? 当伊莎贝拉被问及这个问题的时候,她的身体突然散发出一瞬的彩光,而后给出了一个数字——大概是7个 虽然在造父变星的加持下能够塞下更多,但是太多了也未必是件好事 |
| 日常 3 | 曾经伊莎贝拉负责过整个红渊的文书工作 她擅长处理文字、记录相关工作,做事巨细无遗,并且看起来非常温和好相处 但这些都是表面伪装,只有在面对帕拉多和彭忒希勒娅的时候才像“自己” |
| 日常 4 | 自我演化逻辑和机械人格矩阵构成了伊莎贝拉 但她仍然对自身的存在而感到疑惑——为什么一串数据会拥有感情? 快乐与悲伤、信任与厌恶、恐惧与愤怒、惊讶与期待…… 并且机体也在逐渐发生一些意想不到的变化…… |
所以红渊真的决定要这样做吗?虽不好判断会造成多大的影响,但如今局势动荡……
我在不同世界线看到了不同的后果,有被古罗斯焚烧殆尽的世界联盟、有被UME武器彻底毁灭的埃珥拉、有被黑市残党操控的世界大会、甚至还有老登发疯屠杀整个星系……
还有那些魔法师,以及自认为找到了约束这个宇宙的规则的那些人……
这么说来,红渊不更应该和世界大会一起,努力让这个世界回到正轨上吗?
您可以猜猜,在这么多种未来中,红渊存活了多少次?
按照贵方的科技水平,至少有三次吧?
答案是只有一次,那条世界线的我过载了悖论引擎,利用时空屏障将这片高原与因理洲完全隔绝,他们的绝大部分手段都无法突破这里
这样吗……
那红渊是否还会继续对外出口电子产品?您上次颁布的生产缩减计划导致绝大部分来自红渊的计算机配件出现了价格小幅度增长的趋势。
目前只是那些电子垃圾,接下来红渊会逐渐停止出口一切货物——这不是430年的那场冲突
猫图已获得当事猫的授权,并附赠绝育套餐三份
伊莎贝拉图片来自https://pixabay.com/zh/photos/woman-model-portrait-pose-style-716592/
身份卡图片为自绘
照相机头像来自夸克AI生成,关键词为相机
一共三个迭代页

