内容政策
:root {
    --accent-color: 40, 110, 255;
 
    --header-title: "OUR Backrooms";
    --header-subtitle: "我们在一片天空下";
    --background-image: url("https://s41.ax1x.com/2026/04/26/pehbehV.jpg");
 
    --background-color: 245, 247, 252;
    --text-color: 28, 32, 40;
 
    --light-color-1: 255, 255, 255;
    --light-color-2: 248, 250, 255;
 
    --dark-color-1: 40, 110, 255;
    --dark-color-2: 30, 80, 200;
    --dark-color-3: 20, 60, 160;
    --dark-color-4: 10, 40, 120;
 
    --link-color: 40, 110, 255;
    --hover-link-color: 40, 110, 255, 0.7;
    --visited-link-color: 90, 120, 200;
 
    --selected-background-color: 40, 110, 255, 0.15;
 
    --topbar-background-color: 255, 255, 255, 0.85;
    --topbar-hover-background-color: 40, 110, 255, 0.08;
 
    --general-button-background-color: 240, 244, 255;
    --general-hover-button-text-color: 40, 110, 255;
 
    --table-background-color: 255, 255, 255;
    --table-text-color: 30, 35, 45;
 
    --note-background-color: 220, 235, 255;
 
    --sidebar-title-background-color: 235, 240, 255;
}
 
#side-bar .heading {
    position: relative;
    overflow: hidden;
}
 
#side-bar .heading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(40,110,255,0.2),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
 
#side-bar .heading:hover::after {
    opacity: 1;
}
 
#side-bar .menu-item a {
    position: relative;
    display: block;
    padding: 0.45rem 0.8rem;
    border-radius: 0.8rem;
    transition: all 0.3s ease;
}
 
#side-bar .menu-item a:hover {
    background: rgba(40,110,255,0.08);
    transform: translateX(6px);
    box-shadow: 0 0.3rem 0.8rem rgba(40,110,255,0.15);
}
 
#side-bar .menu-item a::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 20%;
    width: 3px;
    height: 60%;
    border-radius: 2px;
    background: rgb(var(--accent-color));
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.3s ease;
}
 
#side-bar .menu-item a:hover::before {
    opacity: 1;
    transform: scaleY(1);
}
 
#top-bar div[class*=top-bar] > ul > li > a {
    transition: transform 0.25s cubic-bezier(.2,.8,.2,1),
                color 0.2s ease;
}
 
#top-bar div[class*=top-bar] > ul > li > a:hover {
    transform: translateY(-2px) scale(1.06);
    color: rgb(var(--accent-color));
}
 
#top-bar div[class*=top-bar] > ul > li > a:active {
    transform: translateY(0) scale(0.98);
}
 
#top-bar div[class*=top-bar] > ul > li > ul {
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.25s ease;
}
 
#top-bar div[class*=top-bar] > ul > li:hover > ul {
    opacity: 1;
    transform: translateY(0);
}
 
#top-bar div[class*=top-bar] > ul > li > ul {
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.25s ease;
}
 
#top-bar div[class*=top-bar] > ul > li:hover > ul {
    opacity: 1;
    transform: translateY(0);
}
 
#top-bar div[class*=top-bar] > ul > li > ul > li > a {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
 
    transition: transform 0.22s cubic-bezier(.2,.8,.2,1),
                color 0.2s ease;
}
 
#top-bar div[class*=top-bar] > ul > li > ul > li > a:hover {
    transform: translateX(4px) scale(1.05);
    color: rgb(var(--accent-color));
}
 
#top-bar div[class*=top-bar] > ul > li > ul > li > a:active {
    transform: translateX(0) scale(0.97);
}
 
@keyframes smooth-fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
#main-content,
#side-bar,
#top-bar {
    animation: smooth-fade 0.6s cubic-bezier(.2,.8,.2,1);
}
 
#page-content a:not([href*="user"]):not([href*="javascript:;"]):not([href*="#u-credit-view"]),
#page-content .avatarhover,
.hovertip a,
.classic-collap a.collapsible-block-link {
    padding: 0.15em;
    margin: -0.15em;
    color: rgb(var(--text-color));
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    box-shadow: inset 0 -0.12rem 0 0 rgba(var(--accent-color), 0.8);
    transition:
        box-shadow 260ms cubic-bezier(.2,.8,.2,1),
        color 220ms ease;
}
 
#page-content a:not([href*="user"]):not([href*="javascript:;"]):not([href*="#u-credit-view"]):hover,
#page-content .avatarhover:hover,
.hovertip a:hover,
.classic-collap a.collapsible-block-link:hover {
    box-shadow: inset 0 -1.4em 0 0 rgba(var(--accent-color), 0.18);
    color: rgb(var(--accent-color));
    text-decoration: none;
}
 
a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *) {
    padding-right: 0.4em;
    color: rgb(var(--text-color));
    transition: color 0.25s ease, background-color 0.25s ease;
}
 
.collapsible-block {
    margin: 1em 0; 
}
 
#toc-action-bar > a {
    width: 100%;
    color: rgb(var(--text-color));
    transition: color 0.25s ease, background-color 0.25s ease;
}
 
#toc-action-bar > a:hover,
a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *):hover {
    color: rgb(var(--accent-color));
    background-color: rgba(var(--accent-color), 0.12);
    text-decoration: none;
}
 
#toc-action-bar > a:nth-child(1)::before,
#toc-action-bar > a:nth-child(2)::before,
.collapsible-block-folded a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before,
.collapsible-block-unfolded-link a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before {
 
    margin: 0 0.2em 0 0.4em;
    content: "▼";
 
    color: rgba(var(--accent-color), 0.85);
 
    background-color: transparent;
    display: inline-block;
 
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1),
                color 0.25s ease;
}
 
#toc-action-bar > a:hover::before,
.collapsible-block-link:hover::before {
    color: rgb(var(--accent-color));
}
 
#toc-action-bar > a:nth-child(2)::before,
.collapsible-block-folded a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before {
    animation: collapsible-arrow-spin 0.3s cubic-bezier(.25,.8,.25,1) forwards;
}
 
#toc-action-bar > a:nth-child(1)::before,
.collapsible-block-unfolded-link a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before {
    animation: collapsible-arrow-spin-back 0.3s cubic-bezier(.25,.8,.25,1) forwards;
}
 
a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *) {
    padding-right: 0.4em;
    color: rgb(var(--text-color));
    transition: color 0.25s ease, background-color 0.25s ease;
}
 
.collapsible-block {
    margin: 1em 0; 
}
 
#toc-action-bar > a {
    width: 100%;
    color: rgb(var(--text-color));
    transition: color 0.25s ease, background-color 0.25s ease;
}
 
#toc-action-bar > a:hover,
a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *):hover {
    color: rgb(var(--accent-color));
    background-color: rgba(var(--accent-color), 0.12);
    text-decoration: none;
}
 
#toc-action-bar > a:nth-child(1)::before,
#toc-action-bar > a:nth-child(2)::before,
.collapsible-block-folded a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before,
.collapsible-block-unfolded-link a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before {
 
    margin: 0 0.2em 0 0.4em;
    content: "▼";
 
    color: rgba(var(--accent-color), 0.85);
 
    background-color: transparent;
    display: inline-block;
 
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1),
                color 0.25s ease;
}
 
#toc-action-bar > a:hover::before,
.collapsible-block-link:hover::before {
    color: rgb(var(--accent-color));
}
 
#toc-action-bar > a:nth-child(2)::before,
.collapsible-block-folded a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before {
    animation: collapsible-arrow-spin 0.3s cubic-bezier(.25,.8,.25,1) forwards;
}
 
#toc-action-bar > a:nth-child(1)::before,
.collapsible-block-unfolded-link a.collapsible-block-link:not(.classic-collap *):not(.styled-collap *)::before {
    animation: collapsible-arrow-spin-back 0.3s cubic-bezier(.25,.8,.25,1) forwards;
}
 
@keyframes collapsible-arrow-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-90deg); }
}
 
@keyframes collapsible-arrow-spin-back {
    from { transform: rotate(-90deg); }
    to   { transform: rotate(0deg); }
}
 
#header h1 a span {
    background: radial-gradient(
        ellipse at center,
        #A0B8FF 0%,
        #80D0FF 35%,
        #8A80FF 70%,
        #C0A0FF 100%
    );
    background-size: 200% 200%;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 2px rgba(40, 40, 60, 0.2);
    text-shadow:
        0 0 2px rgba(120,160,255,0.9),
        0 0 6px rgba(120,160,255,0.7),
        0 0 12px rgba(120,160,255,0.5),
        0 0 20px rgba(120,160,255,0.35);
 
    transition: all 0.35s ease;
    animation: radial-breath 4.5s ease-in-out infinite;
}
 
#header h1 a span:hover {
    text-shadow:
        0 0 8px rgba(130,170,255,0.9),
        0 0 20px rgba(130,170,255,0.7),
        0 0 36px rgba(130,170,255,0.5);
    transform: scale(1.03);
}
 
@keyframes radial-breath {
    0%, 100% {
        background-size: 180% 180%;
        text-shadow: 
            0 0 2px rgba(120,160,255,0.9),
            0 0 6px rgba(120,160,255,0.7),
            0 0 12px rgba(120,160,255,0.5),
            0 0 20px rgba(120,160,255,0.35);
    }
    50% {
        background-size: 220% 220%;
        text-shadow:
            0 0 4px rgba(120,160,255,0.9),
            0 0 10px rgba(120,160,255,0.7),
            0 0 18px rgba(120,160,255,0.5),
            0 0 28px rgba(120,160,255,0.35);
    }
}
 
/* 修正 */
#side-bar .heading, #side-bar .collapsible-block-unfolded-link a, #side-bar .collapsible-block-folded a {
    background: rgb(20 60 160);
}

通常而言,后室OUR维基对文章/艺作的内容是不限制的,这意味着你可以自由创作!但是你仍然需要注意:我们的站点中仍然有非常多的未成年人,有一些内容并不适宜他们进行阅读;另外,有一些容易产生生理不适的内容,虽然可能对于你的文章创作来说是必须的,但是你仍有必要在文章开头提醒读者。同时,被站规所禁止的内容,例如针对某些政治立场进行攻击的语句,是不被允许出现在本站中的,发表包含这些内容的文章会导致你收到惩罚。

在这里列举了常见的有必要进行特别标注以及受限制的内容1,如果你的作品中包含了这些要素,请在这里查阅如何使用标签、注明等方式确保你的作品符合规范。关于详细的标签使用规范,请参阅标签指导


成人内容

如果你在本站多加探索,你会发现一些文章使用了掩藏页,并且不对非站点成员开放。这些文章大多包含有不适宜未成年人阅读的内容,如果你仍未成年,你会因为无法获得成员资格而无法阅读这些文章。而对于创作者来说,如果需要创作包含成人内容的文章,都需要使用到掩藏页并且打上“成人内容”标签。以下列出了一些常见的需要打上成人内容标签的内容:

  1. 明显与性有关的内容,通常表现为裸体和性行为;
  2. 具有性暗示且往往包含露骨的描绘性内容;
  3. 极端暴力或血腥的内容。

后室OUR维基是一个开放的站点,因此上述内容都被允许在符合站规的情况下在讨论区、作品中进行讨论、写作。但禁止进行无意义的详细描写,例如用大量文字描写一段血腥暴力的内容,而该内容与讨论主题或作品并无明显关联。另,尺度过大的成人作品也是不被提倡的,例如肢解图、性虐待的具体方法等,如果你有必须涉及这方面的创作需要,请联系管理团队。

另外,本站禁止发布宣扬恋童癖的内容,例如含有性暗示的儿童图片。发布这些内容会导致你受到处罚。

jumpscare内容

jumpscare,又称突发惊吓,常被用于恐怖电影和恐怖电子游戏,旨在透过影像或事件的突然转变来使观众大惊失色,在互联网上,有一些旨在吓唬使用者的图像、影片、程式使用了突发惊吓的手法,这种手法可能会以一张巨大的脸配合大声尖叫来表现2。你可能注意到,本站中有一些文档会注明文中存在jumpscare的情节,如果你对这种文章感到畏惧或不适,请离开这些文档页面。

对于创作者而言,如果你想要在文中使用jumpscare的手法,请确保使用“jumpscare”标签,该标签会自动在页面开头呈现警告模块。

毒品、自杀、猎奇等其他内容

有一些敏感内容尚未制作独立的警告标签,例如涉及毒品、自杀、猎奇的内容,这些内容可能会引来审查或者是令阅读者不适。我们无法将所有可能造成这些影响的内容全部总结在该文档中,但我们希望创作者在创作这些内容时想到你的文章一经发布便是对全站人员开放,因此你需要考虑到你的文章对他人造成的影响,将这些可能造成的不良影响在文中进行醒目的标注是每一个创作者应当的义务。如果你对这些内容可能造成的影响有疑惑,可以联系站务来进行进一步的讨论。

过度涉及现实

后室OUR维基并不是一个用于宣传或抵毁他人的平台。不应以宣传或人身攻击为目的,发布与任何现实人物强关联的内容。这也包括明确指向个人或现实团体的虚拟形象,以及恶俗的网络流行梗。

涉政内容

鉴于中文环境日渐严格的审查机制以及封禁力度,本站不提倡在讨论区和文章中发表涉政内容,无论是直接提及还是隐喻。而发布带有恶劣影响的政治言论和文章将受到处罚,以下是一些常见的带有恶劣影响的政治言论的类型:

  • 直接提及或用隐喻的方式影射敏感的时政事件。
  • 大肆宣扬某种政治观点或立场。
  • 在讨论区公开讨论时政或历史事件/人物,而这些事件/人物与后室并无直接关联。
  • 对他人的政治立场进行批判、攻击3
  • 其他可能的恶劣涉政言论可交由职员来进行判断。

总而言之,后室是一个虚拟的创作平台,如非必要,不建议在本站发表涉政言论,即便你觉得该种言论是安全的。

他人个人信息相关

使用他人经历或部分特征作为角色原型是允许的。出于隐私保护,不得将任何人的详细个人信息原样或加以无法消除特征的改编写入文中,这包括但不限于姓名、性别、年龄、身份证或其他同类证件号码、住址、学习/工作地点以及联系方式。此类行为将据严重性决定如何处理,必要时视同恶意传播个人信息行为(开盒)。

现实反人类组织

尽管本站不干涉任何成员的政治倾向与立场,但这不并不代表你可以在本站的公开场合发表极端言论。其中的典型便是表现出对现实中极端的反人类组织的支持、宣扬或同情,也不允许在文章中出现类似的桥段,违反者将受到处罚。

模仿现实政府公文

本站不推荐对于现实世界中政府公文进行高度模仿,这可能会为网站带来不必要的审查与麻烦。如若有必要使用类似的图片、格式或logo,请使用和现实世界中国家、地区以及各种组织不产生直接关联或不易产生联想的架空组织及这些架空组织的衍生设定,另请注明:"本文中出现的国家、组织、团体均为虚构。”

以下涉嫌影射的组织同样应避免使用此类形式:

  1. 六扇门、龙组等作为前厅国家性组织出现的异常组织;
  2. 国安XX局等现实国家的架空机构4
  3. 华夏等明显指代现实地名的对应政府机构。

特别地,完全架空世界观或设定下的地球组织,如有识血肉等可视情况对待,最终解释权归站务所有。

引发生理不适的CSS样式、图片与音频

以上内容将引发读者在文章内容以外的生理不适,进而可能损害健康。这里给出几个典型的例子:快速闪烁的高对比度颜色5版式或动图可能诱发光敏性癫痫,不恰当的配色方案可能导致读者双眼刺痛、流泪,尖锐刺耳或音量突变的自动播放音频则可能导致听觉受损。

AI生成内容

AI作为新兴的辅助写作工具,可以有效的帮助创作者进行创作,你可能发现本站中不少文章使用了AI生成的图片。但使用AI生成的内容仍需注意以下几点:

  1. 本站允许使用AI生成图像作为文档或议论配图。
  2. 不得将单纯的AI生成图片作为艺作发布,或在文中大段引用纯AI生成的文字内容,否则一律据反抄袭政策,按照抄袭处理。
  3. 少量引用AI生成内容时,需标注文字具体来源及相应协议。

若创作者被发现违规使用AI生成内容,作者将被勒令限期内更改或重写,严重违规者或屡次违规者将被警告。
© The OUR Backrooms Wiki (2026)
本站不遵循CC协议