Level MT-45
/* ================================================================== */ /* 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("https://mt-backrooms.wikidot.com/local--files/start/new-mt-logo"); /* 网站 Logo 图片地址 */ --header-title: "The Backrooms MT"; /* 主标题文字 */ --header-subtitle: "你 并 不 是 没 有 从 未 来 过 这 里"; /* 副标题文字(空格营造神秘感) */ /* ----- 字体栈定义(现代无衬线为主,中文字体后备)----- */ --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: 20, 20, 20; /* 背景 */ --pale-gray-monochrome: 55, 55, 55; /* 编辑页面底部按钮、分页上方、div块深色部分 */ --light-gray-monochrome: 222, 222, 222; /* 分割线上部 */ --gray-monochrome: 210, 210, 230; /* div块浅色部分、分页 */ --black-monochrome: 255, 255, 255; /* 文本 */ --bright-accent: 115, 119, 120; /* 选中分页、按钮悬停、已读链接 */ --medium-accent: 183, 186, 190; /* 分页底部、搜索框、脚注块最左侧部分 */ --dark-accent: 115, 119, 120; /* 脚注块中间部分、标签及其文本、页面底部第二色块+按钮前端 */ --pale-accent: 115, 119, 130; /* 实际未使用) */ --dark-gray-monochrome: 207, 207, 203; /* 页面最底部、顶栏悬停及展开 */ --light-pale-gray-monochrome: 255, 255, 255; /* 深色div块浅色文本 */ --very-light-gray-monochrome: 0, 0, 0; /* 浅色div块深色文本 */ /* ----- 渐变效果(头部区域)----- */ --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):hover { background-color: rgba(0, 255, 190, 0.1) !important; /* 10% 透明度的青绿色背景 */ transition: background-color 0.2s ease; /* 平滑过渡 */ } /* 新建页面链接颜色:红色(高亮提醒) */ a.newpage { color: rgb(255, 0, 0) !important; /* 红色文字,使用 !important 确保覆盖 */ } /* 新建页面链接悬停状态 */ a.newpage:hover { color: rgb(255, 0, 0) !important; /* 保持红色文字 */ background-color: rgba(255, 0, 0, 0.1); /* 淡红色背景,提高可识别性 */ } /* ================================================================== */ /* 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(210, 210, 230) !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); } /* 通用引用块样式:20% 透明度的青绿色背景 */ blockquote, div.blockquote { background-color: rgba(0, 255, 190, 0.2); /* 20% 透明度的青绿色背景 */ color: inherit; /* 继承文字颜色 */ padding: 1rem; margin: 1rem 0; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border-color: rgb(0, 255, 190) !important; /* 青绿色边框 */ } /* 风格化引用块:左侧边框为蓝色 */ .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) */ 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); } /* ================================================================== */ /* 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); } /* 暗色内容块:深灰色背景,白色文字 */ .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)); /* 白色文字 */ } /* 深色边框块:深灰色背景 + 亮蓝色粗边框 */ .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. 标题块样式(章节标题) */ /* ================================================================== */ /* 标题块样式:用于章节标题区域 */ .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; /* 极小行高,使文字紧凑 */ } /* ================================================================== */ /* 15. 分页组件样式(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% 透明度的亮蓝色背景 */ } /* ================================================================== */ /* 16. 安全/危险等级容器样式(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; /* 次要符号颜色:纯白 */ } /* ================================================================== */ /* 17. 页脚样式 */ /* ================================================================== */ #footer { color: rgb(var(--pale-gray-monochrome)); /* 浅灰色文字(55,55,55) */ } /* ================================================================== */ /* 18. 脚注区域修复(解决链接重叠问题) */ /* ================================================================== */ /* 脚注引用链接(正文中的上标数字) */ 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; /* 为返回链接添加左边距,避免与脚注文字紧贴 */ }
生存难度:生存難度:
等级等級 1
- 安全且稳定
- 极少量实体
- 友好的团体
文件属性:Crest
Level MT-45是后室MT层群的第46层。
描述
锚点工会建立在该层级内的中央控制楼,位于广场附近。
该层级表现为一片连绵起伏的丘陵与山地地区,其范围固定,约与一座小型城市面积相当,其边缘处存在肉眼不可见的屏障1,屏障外全部是天空的颜色,推测是无物质的虚空,可能在远处与其他层级相连。山区覆盖茂密的温带落叶植被,但因此层级不存在季节更替,因此树木的生长周期并不完全统一。山间的河流由山顶的细石间发源,流至山脚后会穿过屏障自然下落,最终去向未知。该层级的昼夜循环与前厅基本无异。
在该层级没有人类涉足的地方,偶尔会有实体出没,种类繁杂但数量稀少,几乎无法对结伴而行的流浪者构成实际威胁。躲开敌对实体的最好办法就是不贸然进入人烟稀少的山区。
在该层级中央的高海拔地区,存在一处人工建造的地区。其中间是一座开阔的广场,广场周围是发电站、商业街、小型住宅区等建筑群,同时该区域也是流浪者聚集的地方。进入该层级的流浪者可以根据路标来到广场。流浪者可以在公共场所自由活动,商业街的所有门店也全部面向流浪者开放。在这些流浪者聚集的地方,同时也生活着一些友善的无面灵,并保持着与人类相似的生活方式,因此流浪者大可将他们当作普通居民看待。
基地、前哨和社区
锚点工会中央信号基站
基地中的一座小型雷达,拍摄时处于休眠状态。
- 锚点工会参与建立了该层级的大部分人工设施,并在其中建立了「中央信号基站」基地。信号基站会通过无线连接的方式实现与其他信号较弱的层级互相联通,保证在不同层级内都可以安全稳定地接入公会的网络。
- 基站内的发射塔与雷达可以连接到广度极大的范围,其甚至包含了不同层群的层级。公会通过这种方式实现与不同层级内的公会前哨保持实时互通,使会员可以随时与公会联系。
- 目前,基站已投入运营。所有其他关于基站内部的详细资料属于A级及以上属性文件。
- 该基地同时包含商业街的部分门店2,公会欢迎流浪者前来交易、娱乐。
M.E.G.锚点基站前哨
- M.E.G.的该前哨参与了该层级的建设工作,因此公会感谢你们的付出。
- 负责基站部分技术问题的指导及辅助运营,并管理该层级的流浪者社区。
正电子科技公司基站特邀团队与前哨
- 受锚点工会邀请入驻该层级的特别团队,在该层级拥有自己的前哨。公会很荣幸与你们合作。
- 负责基站部分技术问题的指导、山区治理、屏障性质探明等工作。
- 该前哨暂不参与有关流浪者社区的相关工作。
入口和出口
入口
- 从锚点工会的任意基地可以直接通往该层级的商业街。
- 在Level MT-24中,当流浪者逐渐感受到温度升高,继续向前方行走约10km后将看到周围冰雪逐渐消融、天气变得适宜,在这之后流浪者便会进入该层级。
出口
- 从商业街中最大的文创店可以直接通往锚点工会的任意基地。
- 从屏障意外切出,流浪者将在下坠时昏迷,并于Level 0中醒来。
感谢阅读!干杯!
作者:Mimura Foxium
屏幕之外,文中图片由作者在前厅拍摄。
文中的部分超链接指向后室维基其他站点。
« Level MT-44 | Level MT-45 | Level MT-46 »


