M.I.C.
/* ================================================================== */ /* 1. 基础设置与外部资源导入 */ /* ================================================================== */ /* 声明字符编码为 UTF-8 */ @charset "UTF-8"; /* 引入第三方 CSS 文件 */ @import url("https://backrooms-to-dv.wikidot.com/local--files/theme:fixed-test/CSS.css"); /* 基础样式文件 */ @import url("https://fastly.jsdelivr.net/gh/Etinjat/CSS@Backrooms/003v_THEME-liminal_new-BHL.css"); /* Backrooms 主题扩展样式 */ /* 引入 Google 字体(多语言支持) */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap'); /* 主字体:Inter */ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;300;400;500;700;900&display=swap'); /* 简体中文无衬线体 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@100;300;400;500;700;900&display=swap'); /* 简体中文衬线体 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap'); /* 繁体中文无衬线体 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@100;300;400;500;700;900&display=swap'); /* 繁体中文衬线体 */ /* ================================================================== */ /* 2. 全局 CSS 变量定义(主题核心配置) */ /* ================================================================== */ :root { /* ----- 主题标识 ----- */ --theme-base: "black-highlighter"; /* 基础主题名称 */ --theme-id: "mt"; /* 主题唯一标识符 */ --theme-name: "MT"; /* 主题显示名称 */ /* ----- 头部品牌元素 ----- */ --logo-image: url("http://mt-backrooms.wikidot.com/local--files/theme:mic/mic%20white.png"); /* 网站 Logo 图片地址 */ --header-title: "M.I.C."; /* 主标题文字 */ --header-subtitle: "MANAGE IMPROVE CREATE"; /* 副标题文字(空格营造神秘感) */ /* ----- 字体栈定义(现代无衬线为主,中文字体后备)----- */ --body-font: Inter, Noto Sans SC, Arimo, Verdana, Geneva, sans-serif; /* 正文字体 */ --header-font: Inter, Noto Sans SC, Franklin Gothic Medium, Franklin Gothic, ITC Franklin Gothic, Arial, sans-serif; /* 标题字体 */ --title-font: var(--header-font); /* 页面大标题字体(同标题字体) */ --mono-font: Recursive, 幼圆, Noto Serif SC, Consolas, monaco, monospace; /* 等宽字体(代码、终端风格) */ /* ----- 基础颜色变量(RGB 格式,便于配合 rgba() 使用)----- */ --white-monochrome: 30,30,40; /* 背景 */ --pale-gray-monochrome: 25,50,60; /* 编辑页面底部按钮、分页上方、div块深色部分 */ --light-gray-monochrome: 222, 222, 222; /* 分割线上部 */ --gray-monochrome: 120,200,255; /* div块浅色部分、分页 */ --black-monochrome: 255, 255, 255; /* 文本 */ --bright-accent: 55,220,140; /* 选中分页、按钮悬停、已读链接 */ --medium-accent: 120,200,255; /* 分页底部、搜索框、脚注块最左侧部分、鼠标选中文本 */ --dark-accent: 225,225,225; /* 脚注块中间部分、标签及其文本、页面底部第二色块+按钮前端 */ --pale-accent: 255, 255, 255; /* 标题样式 */ --dark-gray-monochrome: 250,250,250; /* 页面最底部、顶栏悬停及展开 */ --light-pale-gray-monochrome: 255, 255, 255; /* 深色div块浅色文本 */ --very-light-gray-monochrome: 0, 0, 0; /* 浅色div块深色文本 */ --pale-white-accent: 120, 200, 255; /* 引用块边框色 */ --dark-white-accent: 30, 30, 40; /* 引用块内部色 */ --pale-black-accent: 120, 200, 255; /* 表格头部颜色 */ /* ----- 渐变效果(头部区域)----- */ --gradient-header: linear-gradient(to top, rgba(var(--pale-gray-monochrome)) 0%, rgba(var(--pale-gray-monochrome), 0.20) 100% ); /* 从深灰色到半透明深灰色的渐变,营造层次感 */ /* ----- 组件颜色变量(应用主题色)----- */ --swatch-headerh1-color: var(--black-monochrome); /* 主标题颜色:白色 */ --swatch-headerh2-color: var(--black-monochrome); /* 副标题颜色:白色 */ --swatch-topmenu-border-color: var(--pale-gray-monochrome); /* 顶部菜单边框色:深灰色 */ --swatch-topmenu-bg-color: var(--pale-gray-monochrome); /* 顶部菜单背景色:深灰色 */ /* ----- 链接颜色(科技蓝/青色调)----- */ --link-color: 0, 190, 255; /* 普通链接颜色:亮蓝色 */ --hover-link-color: 0, 255, 190; /* 悬停链接颜色:青绿色 */ /* ----- 背景特效配置 ----- */ --background-gradient-distance: 0rem; /* 无渐变距离(取消渐变偏移) */ --diagonal-stripes: linear-gradient(transparent 0); /* 斜条纹效果(当前未使用,保留占位) */ } /* -------------------------------------------- 3. 全局背景与布局 说明: 页面整体背景样式、容器布局设置 -------------------------------------------- */ /* 主体背景 - 移除点阵,使用纯色背景 */ #skrollr-body { background-image: none; /* 移除径向渐变点阵 */ background-color: rgb(var(--pale-gray-monochrome)); /* 使用浅灰色纯色背景 */ width: 100%; height: 7.5rem; } /* 主容器背景 - 移除半透明点阵,使用纯色背景 */ #container { background-image: none; /* 移除径向渐变点阵 */ background-color: rgba(var(--pale-gray-monochrome), 0.4); /* 使用半透明浅灰色背景 */ background-attachment: fixed; } /* 头部和顶栏背景滚动方式 */ #header, #top-bar { background-attachment: scroll; } /* ================================================================== */ /* 4. 头部区域样式(Logo、标题) */ /* ================================================================== */ /* 头部和顶部栏背景滚动方式:随页面滚动(不固定) */ #header, #top-bar { background-attachment: scroll; } /* 移除头部的默认背景图片,以便使用自定义伪元素 */ #header { background-image: none; } /* 头部伪元素:显示半透明 Logo 水印 */ #header::before { content: ""; position: absolute; height: 100%; width: 100%; left: 0; top: 0; background-image: var(--logo-image); /* 使用自定义 Logo 变量 */ background-size: auto 16rem; /* 背景高度 16rem,宽度自动 */ background-position: center; background-repeat: no-repeat; opacity: 0.4; /* 40% 透明度,作为背景装饰 */ } /* 主标题 h1 及其链接:绝对定位,居中显示 */ #header h1, #header h1 a { position: absolute; top: 1rem; /* 距离顶部 1rem */ margin: 0; width: 100%; display: flex; justify-content: center; z-index: 0; /* 位于 Logo 水印之上 */ } /* 副标题 h2 及其内部元素:绝对定位,居中显示 */ #header h2, #header h2 span, #header h2 span::before { position: absolute; top: 2rem; /* 距离顶部 2rem,位于主标题下方 */ margin: 0; width: 100%; display: flex; justify-content: center; } /* 标题文字阴影:增强立体感和可读性 */ #header h1 a::before, #header h2 span::before { text-shadow: .063rem 0.1rem 0.1rem #0c0c0c; /* 轻微黑色阴影 */ } /* ================================================================== */ /* 5. 页面底部按钮样式(扁平风格) */ /* ================================================================== */ /* 底部选项按钮:无圆角、无边框 */ div#page-options-bottom-2 > a, div#page-options-bottom > a { border-radius: 0em; -moz-border-radius: 0em; /* Firefox 兼容 */ border: none; } /* 底部按钮悬停/激活状态:同样无边框,保持样式一致 */ div#page-options-bottom-2 > a:active, div#page-options-bottom-2 > a:hover, div#page-options-bottom > a:active, div#page-options-bottom > a:hover { border: none; } /* ================================================================== */ /* 6. 侧边栏样式 */ /* ================================================================== */ /* 侧边栏内所有图片:100% 灰度滤镜,统一为黑白风格 */ #side-bar .side-block div a img { filter: grayscale(100%); } /* 侧边栏图片反转效果(覆盖上一个规则,实现约 90% 反转) */ #side-bar .side-block div a img { filter: invert(calc(230/255)); /* 图片颜色反转,程度约 90% */ } /* 侧边栏链接悬停效果:10% 透明度青绿色背景 */ #side-bar a:not(.newpage):hover { background-color: rgba(0, 255, 190, 0.1) !important; } /* ================================================================== */ /* 7. 链接样式(存在页面 / 新建页面) */ /* ================================================================== */ /* 存在页面链接颜色 */ a:not(.newpage) { color: rgb(55,190,255) !important; /* 使用 !important 确保覆盖 */ } /* 存在页面的链接悬停效果 */ a:not(.newpage):hover { color: rgb(255, 255, 255) !important; /* 保持文字 */ background-color: rgba(55, 220, 140) !important; /* 10% 透明度的青绿色背景 */ transition: background-color 0.2s ease; /* 平滑过渡 */ } /* 新建页面链接(不存在的页面)- 红色警示样式 */ a.newpage { background: transparent; /* 透明背景,不干扰布局 */ text-decoration: none; /* 无下划线,更简洁 */ color: rgb(255, 60, 150) !important; /* 红色文字,强烈提示页面不存在 */ } /* 新建页面链接悬停状态 - 增强警示效果 */ a.newpage:hover { color: rgb(255,255,255) !important; /* 保持红色,避免颜色变化造成混淆 */ background-color: rgba(255, 60, 150); /* 红色背景,强化"不存在"的视觉提示 */ transition: background-color 0.2s ease; /* 背景色平滑过渡,提升交互体验 */ } /* ================================================================== */ /* 8. 顶部导航菜单样式 */ /* ================================================================== */ /* 顶部导航菜单链接默认状态 */ #top-bar div.top-bar > ul > li > a, #top-bar div.mobile-top-bar > ul > li > a { color: rgb(255, 255, 255) !important; /* 白色文字,与深色背景形成对比 */ transition: color 0.2s ease; /* 颜色过渡效果 */ } /* 顶部导航菜单链接悬停状态 */ #top-bar div.top-bar > ul > li > a:hover, #top-bar div.mobile-top-bar > ul > li > a:hover { color: rgb(var(--pale-gray-monochrome)) !important; /* 悬停时变为浅灰色(55,55,55) */ background-color: rgba(0, 255, 190, 0.1) !important; /* 10% 透明度的青绿色背景 */ } /* 顶部菜单链接悬停效果(通用) */ #top-bar a:hover, #top-bar div.mobile-top-bar a:hover { background-color: rgba(0, 255, 190, 0.1) !important; } /* 父级悬停时子链接样式(保持一致性) */ #top-bar div.top-bar > ul > li:hover > a, #top-bar div.mobile-top-bar > ul > li:hover > a { color: rgb(var(--pale-gray-monochrome)) !important; /* 浅灰色文字 */ } /* ================================================================== */ /* 9. 登录状态与账户按钮 */ /* ================================================================== */ /* 登录状态文字样式 */ #login-status { color: rgb(var(--black-monochrome)); /* 白色文字(--black-monochrome 实际为白色) */ } #login-status a { color: rgb(var(--black-monochrome)); /* 白色链接 */ } #login-status ul a { color: rgb(var(--pale-gray-monochrome)); /* 浅灰色链接(55,55,55) */ } /* 账户按钮样式 */ #account-topbutton { color: rgb(var(--black-monochrome)); /* 白色文字 */ } /* ================================================================== */ /* 10. 搜索框交互 */ /* ================================================================== */ /* 搜索框悬停/聚焦状态:半透明背景 */ #search-top-box-input:hover, #search-top-box-input:focus { background: rgba(var(--medium-accent), .25); /* 浅灰蓝色半透明背景 */ } /* ================================================================== */ /* 11. 表格样式 */ /* ================================================================== */ /* 维基内容表格表头样式 */ table.wiki-content-table th { background-color: rgb(var(--pale-black-accent)) !important; /* 亮蓝色背景 */ color: rgb(var(--black-monochrome)); /* 白色文字(--black-monochrome 实际为白色) */ border-color: rgb(var(--black-monochrome)); /* 白色边框 */ } /* ================================================================== */ /* 12. 图片块与引用块 */ /* ================================================================== */ /* SCP 图片块样式:添加阴影效果 */ .scp-image-block { box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } /* 引用块样式 - 用于引用外部内容或重要提示 */ blockquote, div.blockquote { background-color: rgb(var(--dark-white-accent)); /* 不透明背景 */ color:rgb(255,255,255); /* 深蓝色文字 */ padding: 1rem; /* 内边距1rem */ margin: 1rem 0; /* 上下外边距1rem */ box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); /* 轻微阴影 */ border: 0.15rem solid rgb(var(--pale-white-accent)); /* 深蓝色边框,宽度0.15rem */ } /* 风格化引用块:左侧边框为蓝色 */ .styled-quote { background-color: rgb(var(--gray-monochrome)); /* 亮蓝色背景 */ border-left: 0.5rem solid rgb(var(--pale-gray-monochrome)); /* 深灰色左边框 */ color: rgb(var(--very-light-gray-monochrome)); /* 白色文字 */ padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } /* 暗色风格引用块:蓝色背景,左侧深色边框 */ .dark-styled-quote { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景(55,55,55) */ color: rgb(var(--light-pale-gray-monochrome)); /* 白色文字 */ border-left: 0.5rem solid rgb(var(--gray-monochrome)); /* 左侧亮蓝色边框 */ padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .dark-styled-quote a { color: rgb(var(--swatch-menubg-medium-color)); /* 链接颜色:浅灰蓝 */ } /* ================================================================== */ /* 13. 内容块样式(Light / Dark / Border 系列) */ /* ================================================================== */ /* 亮色内容块:蓝色背景,黑色文字 */ .lightblock { background-color: rgb(var(--gray-monochrome)); /* 亮蓝色背景 */ color: rgb(var(--very-light-gray-monochrome)); /* 黑色文字 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } .lightblock a { color: rgb(var(--pale-gray-monochrome)); /* 链接颜色:黑色 */ } /* 暗色内容块:深灰色背景,白色文字 */ .darkblock { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); color: rgb(var(--light-pale-gray-monochrome)); /* 白色文字 */ } /* 更深色内容块:浅灰色背景,白色文字 */ .darkerblock { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景(55,55,55) */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); color: rgb(var(--light-pale-gray-monochrome)); /* 白色文字 */ } /* 暗色块内的链接颜色 */ .darkblock a { color: rgb(var(--swatch-menubg-medium-color)); /* 浅灰蓝色链接 */ } /* 深色边框块:深灰色背景 + 亮蓝色粗边框 */ .dark-borderblock { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景 */ color: rgb(255, 255, 255); /* 白色文字 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--gray-monochrome)); /* 亮蓝色粗边框 */ } /* 亮色边框块:亮蓝色背景 + 深灰色粗边框 */ .light-borderblock { background-color: rgb(var(--gray-monochrome)); /* 亮蓝色背景 */ color: rgb(var(--very-light-gray-monochrome)); /* 黑色文字 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--pale-gray-monochrome)); /* 深灰色粗边框 */ } /* 基础边框块:深灰色背景 + 亮蓝色粗边框 */ .borderblock { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景 */ color: rgb(var(--light-pale-gray-monochrome)); /* 白色文字 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--gray-monochrome)); /* 亮蓝色粗边框 */ } /* ================================================================== */ /* 14. Logo 水印块样式(带水印背景) */ /* ================================================================== */ /* 带边框的 Logo 块样式 */ .border-logoblock { padding: 0.01rem 1rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); color: rgb(var(--light-pale-gray-monochrome)); /* 白色文字 */ margin: 0.5rem 0 0.5rem 0.25rem; display: block; position: relative; background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景 */ border: solid 0.3rem rgb(var(--gray-monochrome)); /* 亮蓝色边框 */ } /* Logo 块的背景水印效果 */ .border-logoblock::after { content: ""; float: center; border: solid 2px #0000; /* 透明边框 */ background: url(http://mt-backrooms.wikidot.com/local--files/theme:mic/MIC_logo_block.png) center/50% no-repeat; /* Logo作为背景,缩放25% */ opacity: 0.25; /* 半透明效果 */ top: 0; left: 0; bottom: 0; right: 0; position: absolute; z-index: 1; /* 置于内容上层 */ } /* 基础 Logo 块样式(无边框版) */ .logoblock { padding: 0.01rem 1rem; color: rgb(var(--light-pale-gray-monochrome)); box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); margin: 0.5rem 0 0.5rem 0.25rem; display: block; position: relative; background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景 */ } /* 基础 Logo 块的水印效果 */ .logoblock::after { content: ""; float: center; border: solid 2px #0000; background: url(http://mt-backrooms.wikidot.com/local--files/theme:mic/MIC_logo_block.png) center/50% no-repeat; /* Logo作为背景,缩放25% */ opacity: 0.25; top: 0; left: 0; bottom: 0; right: 0; position: absolute; z-index: 1; } /* ================================================================== */ /* 15. 标题块样式(章节标题) */ /* ================================================================== */ /* 标题块样式:用于章节标题区域 */ .titleblock { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景 */ color: rgb(var(--light-pale-gray-monochrome)); /* 白色文字 */ padding: 0.5rem 1rem 0.10rem; /* 上内边距较大,下内边距较小 */ margin: 1.5rem 0rem 0.5rem 0rem; /* 较大的上外边距,与正文分离 */ box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.5); /* 较深的阴影 */ border: solid rgb(var(--gray-monochrome)) 2px; /* 亮蓝色细边框 */ } /* 标题框样式:配合 titleblock 使用,形成重叠标签效果 */ .titlebox { color: rgb(var(--very-light-gray-monochrome)); /* 黑色文字 */ position: relative; top: -1.6rem; /* 向上偏移,与 titleblock 重叠 */ background-color: rgb(var(--gray-monochrome)); /* 亮蓝色背景 */ padding: 0.25rem 1rem; line-height: 0.1rem; /* 极小行高,使文字紧凑 */ } /* ================================================================== */ /* 16. 分页组件样式(TabView) */ /* ================================================================== */ /* 分页顶部选中状态:蓝色背景 */ .yui-navset .yui-nav .selected { background-color: rgb(var(--gray-monochrome)) !important; /* 选中分页亮蓝色背景 */ border-color: rgb(var(--gray-monochrome)) !important; /* 蓝色边框 */ } /* 选中分页的文字颜色:白色 */ .yui-navset .yui-nav .selected a, .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:hover { color: rgb(255, 255, 255) !important; /* 白色文字 */ background-color: transparent !important; /* 透明背景 */ } /* 分页内容区域:淡蓝色背景 */ .yui-navset .yui-content { background-color: rgba(0var(--gray-monochrome), 0.1) !important; /* 10% 透明度的亮蓝色背景 */ border-color: rgb(var(--gray-monochrome)) !important; /* 蓝色边框 */ } /* 未选中分页悬停效果:淡蓝色背景 */ .yui-navset .yui-nav a:hover { background-color: rgba(var(--gray-monochrome), 0.2) !important; /* 20% 透明度的亮蓝色背景 */ } /* ================================================================== */ /* 17. 安全/危险等级容器样式(SD 组件) */ /* ================================================================== */ .sd-container { --sd-border: var(--white-monochrome); /* 边框颜色:深灰色(20,20,20) */ --sd-text: 222,222,222; /* 文字颜色:浅灰色 */ --sd-symbol: var(--sd-text); /* 符号颜色同文字 */ --sd-bullets: var(--sd-text); /* 项目符号颜色同文字 */ --sd-symbol: var(--sd-border) !important; /* 覆盖符号颜色为边框色(深灰色) */ --sd-symbol-secondary: 255, 255, 255; /* 次要符号颜色:纯白 */ } /* ================================================================== */ /* 18. 页脚样式 */ /* ================================================================== */ #footer { color: rgb(var(--pale-gray-monochrome)); /* 浅灰色文字(55,55,55) */ } /* ================================================================== */ /* 19. 脚注区域修复(解决链接重叠问题) */ /* ================================================================== */ /* 脚注引用链接(正文中的上标数字) */ sup a.footnote-id { margin: 0 0.15rem; /* 为每个脚注链接左右添加微小间距,防止紧贴 */ display: inline-block; /* 确保margin生效,同时不影响行内布局 */ white-space: nowrap; /* 防止数字换行 */ } /* 脚注列表区域(页面底部的脚注块) */ .footnotes { margin-top: 2rem; /* 与正文保持足够距离 */ padding-top: 1rem; border-top: 1px solid rgba(var(--gray-monochrome), 0.5); /* 添加浅色分割线,增强视觉区分 */ clear: both; /* 清除可能的浮动影响 */ } /* 脚注列表中的每一项 */ .footnotes .footnote { margin: 0.5rem 0; /* 为每个脚注项添加上下间距 */ line-height: 1.4; /* 适当行高,避免文字重叠 */ } /* 脚注内的链接(返回正文的箭头) */ .footnotes a.reversefootnote { margin-left: 0.5rem; /* 为返回链接添加左边距,避免与脚注文字紧贴 */ } #page-title, h1, h2, h3, h4, h5, h6 { color: rgb(var(--pale-accent)); /* 所有标题统一颜色,修改此处即可 */ line-height: 1 } #page-title { font-size: 2.5rem; border-color: rgb(var(--light-gray-monochrome)); } h1 { font-size: 2rem; } h2 { font-size: 1.8rem; } h3 { font-size: 1.6rem; } h4 { font-size: 1.4rem; } h5 { font-size: 1.2rem; } h6 { font-size: 1rem; } /* 扫描线 */ #extrac-div-2 { position: fixed; width: 100vw; height : 1rem; top: 0; pointer-events: none; background: linear-gradient(to bottom, rgb(120, 200, 255) 0%,rgb(120, 200, 255) 50%,rgb(120, 200, 255) 51%,rgb(120, 200, 255) 100%); opacity : .1; animation: scanm 6s linear infinite; } @keyframes scanm { 0% { top: -1rem; opacity : .05;} 25% { top: 50%; opacity: .03;} 37.5% { top: 75%; opacity: 0.06;} 50% { top: 100%; opacity: .03;} 100% { top: 100%;} } /* bg and header */ #skrollr-body { background-image: none; } #container { background-image: none; } #header { background-image: none; }
什么是M.I.C.?
M.I.C.是一个在后室(MT层级群)中活跃的大型组织。该团体在2008年正式创立,总部位于Level MT-0。他们拥有着自己独特的结构体系与军队,并在多数层级中建立基地与前哨站。他们十分友好,尽力于维护和平与创新。
M.I.C.组织名称来源于他们的口号:
“Manage,Improve,Create”
他们以此来划分三个部门,常称为“三大部门”——管理部门、改进部门、创造部门。
以下是关于M.I.C.的介绍。
Q:M.I.C.是个什么样的组织?
首先,你需要知道的是:我们很少评价自己。不过你可以去问其他的流浪者,他们可能会给出你的答案。
- 我们组织的正式名字叫做后室多部门联合组织,但大家通常用我们口号的缩写——M.I.C.来称呼我们。
- 我们组织的前身是一个MT层群中自发组织形成的观察小队。随着切入Level MT-0的流浪者越来越多,我们的成员也越来越多;再加上MT层群中的层级危机四伏且没有一个像模像样的组织,我们就联合起来,创立了M.I.C.这一组织。
- 在Level MT-3被发现之后,M.I.C.成立了军队,以此来对抗横行的实体与部分危害流浪者安全的部分组织。
- 我们不仅尽可能保证流浪者的基本安全,并且会对成员定时进行基本物资的补给。
Q:M.I.C.有什么口号之类的吗?
有。正如前文所提到的,Manage,Improve,Create(管理,进步,创造)。我们也以此划分了三个部分,各司其职。
Q:我该如何加入M.I.C.?
这其实很简单——只需要加入我们的网站,进行实名认证之后领取电子成员凭证即可。
- 你的成员信息将会以编号的形式保存在我们的数据库当中。
- 当然,如果你没有电子设备的话,可以向我们购买,
- 你也可以采用其他方式——我们会给你一个印M.I.C.logo的成员胸章来代替,但这是要收费的!
Q:作为成员,我可以拥有什么权利呢?
作为我们的成员,你可以享受我们提供的基本权利,包括但不限于:
- 收到定期发放的补给。
- 可以加入其他前哨站。
- 参与我们对其他流浪者的交易。
- 在我们网站的论坛上发布消息。
- 将自己探索层级的经历分享在网站上。
- 通过就近的前哨站获得保护措施。
但需要注意的是,作为M.I.C.的成员,你不可以加入与M.I.C.敌对的团体——除非经过许可。
Q:我可以成为比成员等级还要高的流浪者吗?
当然可以。不过,你需要为我们做出一些贡献,下面列举一部分:
- 发布新层级文档。
- 有科研成果。
- 为组织提供中大量原材料。
- 立功情况。
当你做了这些事情之后,你可以向我们申请高级成员资格,我们将在核实之后将你的成员编号加入到高级成员名单里。


