站规
: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);
}

尽管这是一个民主且相对自由的站点,但我们仍然需要站规保证站点正常运转。

如果你是在撰写申请书时第一次打开这个页面的话,那么请务必耐心且认真地通读阅读全文内容。

以下是一些常见于新成员的违规行为,在此列出以作警示:

1. 发布空白/草稿页面。 请去沙盒站进行创作和测试,你可以在侧栏找到后室沙盒mini

2. 未经允许擅自修改他人文章。 包括为他人的页面添加出入口,按照自己的理解和想法修改他人页面的排版、描述或配图,随意回退页面历史版本等。

3. 发表迷惑言论。 如果你不确定某个场合是否适合开玩笑或宣泄情绪,那么保持严肃和冷静总是最好的选择。

1.社群规范

站点成员应遵循以下基本的行为规范

1.1.年龄要求

加入网站的最低年龄限制是 12 周岁,低于规定年龄的用户仍然可以阅读网站上的文章。表现出极度不成熟且影响到他人的行为的用户会结合具体行为,予以相应处分。

1.2.尊重他人

必须尊重社区内的所有成员。提出反对意见或观点没问题,前提是必须保持礼貌。过于偏激、意图人身攻击,歧视他人者将会视情况予以处分。

1.3.关于对其他社群的攻击行为

以OUR Backrooms维基的名义对另一个社群或站点的攻击是严令禁止的。特别是当你在其他 Backrooms 相关网站内(如英文维基或 Fandom 维基,或是其他民间分站,无论是否宣称自己代表本网站)或是QQ等社群中对其网站用户或网站本身进行攻击、言语辱骂或是其他恶劣行为时,你将会受到本站的处罚,视情节性质从警告至永久封禁。

1.4.关于账号分身/开小号

本站禁止开小号或分身,违者将予以警告。若开小号的目的具有破坏性且不正当,大号小号将被站务视具体情况一同予以封禁或其他处罚。

2.内容规范

成员发送或编辑帖文和页面时,应遵守这些条例。

2.1.编辑

你可以随时合规修改属于自己的帖文和页面。如因为更新或网络问题出错而误发了页面或帖文,请及时使用编辑功能补救。特别的,在发帖时如果仅表示更新或补充内容,应编辑更新而非直接重复发帖。

你只能在未经允许的情况下对本站内其他人发布的文章进行非常细微的修改,如修复错误的超链接或错别字(进行这种编辑时,需要在编辑注释栏内予以说明,且若发布者不同意你的修改,你需要将你的修改撤回)。如果认为一个页面需要大幅度修改,应经过发布者或站务团队同意许可后才可编辑。

含“合作”标签的原创页面即为合作页面,可添加对应的可合作内容。不过,页面创建者和站务团队有权删除他们认为页面里不适合出现的内容。

2.2.关于搬运作品

由于本站新建,尚不反对成员搬运自己或他人的作品至本站,但对于部分成员未授权搬运行为可能引发的著作权问题,经站务讨论与社区投票决定,现针对搬运行为作出如下处理办法:

  • 原作者搬运自己作品:
    • 您可以自由搬运、演绎您的作品。
    • 需在作品详情页或讨论区,清晰标明作品署名及原始发布链接。
  • 搬运他人作品:
    • 请确保您拥有您搬运作品原作者或作品原发布站点管理员的许可。
    • 需在作品详情页或讨论区,清晰标明作品署名及原始发布链接,并提供可证明您搬运行为合规的有效凭证(如聊天记录、书面授权)。

针对本站成员搬运违规行为,处置办法如下:

  • 在搬运页面详情页或讨论区未及时(发布后 24 小时内)标出作品署名及原始发布链接的,原则上应给予其警告处分。

具体处置流程:

  • 当出现违规搬运作品,站务将在其讨论区发布一条许可来源要求通告,其中包含一个 24 小时的倒计时。
  • 如在倒计时结束后,搬运者仍未提供相关可证明其搬运行为合规有效凭证,将删除作品(不保留源代码),并给予警告处分。

普通成员亦可随时向站务举报相关搬运违规行为。

2.3.特别内容

由于本网站的性质,部分成人内容和血腥内容是被允许存在的,但不提倡在页面内刻意表现大量的非必要成人内容,也不应在面向全站的讨论串发布直接的成人内容。成人内容页面使用“成人内容”标签特别标记以区分,且发布时,请在页面顶端加入成人内容警告。

出于国内网络的实际情况,与维护网站风气等因素考虑,发表政治言论、在作品里涉及政治是不被提倡的。发送涉及敏感事件,或时政要闻高度相关的内容将受到处罚。

我们无权干涉用户的思想政治倾向,但严禁在网站内发表宣扬或支持极端反动性质、法西斯主义、种族主义、恐怖主义与其他违背公序良俗和普世价值观要求的政治言论与文章。包括但不限于支持或表现出对纳粹与法西斯主义的同情、宣扬种族歧视与仇视、带有主观恶意色彩地对国际人道主义灾难开玩笑的行为等。涉及有关内容文章将被勒令限期整改或删除,涉事用户则将受到警告至封禁不等的处分。

2.4.站点版权协议

本站不遵守 CC BY-SA 3.0 协议。

3.评分守则

成员对页面进行评分互动时,应遵守评分守则。

3.1.尊重并认真评分

评分应该仅出于文章本身的综合质量,因文章本身质量以外的原因而评分是不允许的,例如所谓“拯救待删除页面”等。投票者可以选择不对评分做出任何解释,但主动声称因质量外原因评分可能招致处分。任何拉帮结派,或试图让大量的用户对一篇文章进行 upvote/downvote 的行为都是不允许的。

3.2.关于自我投票

本站允许作者对自己的文章进行 upvote/downvote,但作品的删除线会因作者的自我投票而相应浮动。竞赛时自我投票不计入分数。

关于本站民主政策

A1.基本政策

本站采用民主集中制。

A1.1.政策制定

站点基本政策由站务制定,我们不能保证每一条都令人满意,因此:

  • 对站规的建设性意见请在讨论区-建议区提出。QQ可私信表达诉求。
  • 表达时请礼貌用语。
  • 请不要提出无意义的废话性意见。在提出你的想法前,请先思考它是否真的对网站建设起积极作用。
  • 站务优先考虑拥有本站成员资格者提出的意见。

经站务组商讨后,将被采纳的全部合理意见在投票帖中进行投票并收入站规中。

A1.2.站务与管理层

本站站长无实际作用。

本站设数位常任站务以保障站点正常运转,同时不定期选举非常任站务以辅助管理网站。

非特殊情况,站务兼任站点交流群管理员。

站务若被检举滥用管理职权等行为,将立刻予以最低为移除成员资格的处罚,同时剥夺再次参与站务竞选、投票等权利。我们欢迎您的监督。

A1.3.民主投票

为保障本站运转效率,非站务选举、非特大事件的投票应在QQ群内进行,并将结果同步至网站公告,同时,投票将尽可能减少冗余流程。未拥有本站成员资格者、小号的投票作废。

处分细则

违反以上社区规则将招致处分,处分内容由职员根据具体情况决定;所采取的行动将基于违反的规则和用户过去的行为。所有的警告与封禁处罚都将被记录在职员站点的处分记录归档处,可供成员查询。站务一般会在讨论区/论坛帖子中发布处分帖文,也可能通过站内私信等方式告知违规用户受到处分。

处分分为四类:警告、移除成员资格、封禁与永久封禁。另外,还有具有警示性但非处分的提醒。

提醒

提醒并非是一种处罚,它一般适用于出现轻度违规行为时由站务进行的提醒,例如评论区用特大号字体。

警告

受到警告会使你的警告次数+1。若累计警告次数达到4及以上,则面临最高为移除成员资格的处罚。若累计警告次数达到7及以上,将面临最低为封禁的处罚。

以下是常见的受警告行为:

  • 违规编辑(详见2.1.编辑)
  • 辱骂、攻击、造谣、反串与钓鱼。这些社群内的攻击性行为都是不允许的。
  • 政治敏感。因本站特殊性,请勿在网站或QQ群大肆讨论政治内容。
  • 泄露暗号。眼睛不瞎且会用浏览器的都能找到。

移除成员资格

这是更为严重的处罚。它通常出现在多次警告后不知悔改的情况下,如警告次数达到4及以上时。

封禁

封禁范围最低为一周,上不封顶。

以下是常见的被封禁原因:

  • 开小号或分身并跳脸,造成恶劣影响。
  • 抄袭。若抄袭行为发现,将予以警告。(对于站点的搬运政策详见2.2.关于搬运政策)
  • 破坏页面。清空他人页面、修改设定中心等行为皆被视为破坏页面。
  • 冒充他人。请不要使用他人的身份信息。

永久封禁

永久封禁者一般有特殊情况,或是造成了极大的恶劣影响。

以下行为一旦被发现,将立刻予以永久封禁。

  • 开盒、人肉。同时,任何辅助他人开盒、人肉的用户也将予以至少3个月的封禁。
  • 恶意控分。
  • 发表严重涉政敏感(如法西斯主义、反人类等)言论者。
  • 利用职权对网站或社群造成严重破坏者。

OUR Backrooms欢迎您的监督。

暗号:ouriswehome.


初版临时站规由bbb6677bbb6677基于中站站规修改而来。欢迎各位在Q群或讨论区给出合理意见。
© The OUR Backrooms Wiki (2026)
本站不遵循CC协议