成员一览
: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);
}

所有成员

GunWoodGunWood 24 Apr 2026 11:53
severinesunseverinesun 24 Apr 2026 12:10
bbb6677bbb6677 24 Apr 2026 12:10
Laimu_slimeLaimu_slime 24 Apr 2026 14:07
Genshvn_PGenshvn_P 24 Apr 2026 23:34
woshilaoliuwoshilaoliu 24 Apr 2026 23:34
liuyi666liuyi666 25 Apr 2026 00:01
KWLDXSCKWLDXSC 25 Apr 2026 00:01
yesiyuanyesiyuan 25 Apr 2026 00:15
1Level 2561Level 256 25 Apr 2026 00:51
wind and cloudwind and cloud 25 Apr 2026 00:54
shenglvehaowushenglvehaowu 25 Apr 2026 00:57
Charley MisakaCharley Misaka 25 Apr 2026 01:59
ahv12-gcjahv12-gcj 25 Apr 2026 01:59
gjsw555445gjsw555445 25 Apr 2026 01:59
eygglhheygglhh 25 Apr 2026 01:59
hjonhii333666hjonhii333666 25 Apr 2026 01:59
GBLemonGBLemon 25 Apr 2026 03:09
Hellos_497Hellos_497 25 Apr 2026 03:33
watercloudswaterclouds 25 Apr 2026 04:02
rikui233rikui233 25 Apr 2026 04:48
FNHanBaoFNHanBao 25 Apr 2026 04:48
zsr_2025zsr_2025 25 Apr 2026 05:05
JgPz E-100JgPz E-100 25 Apr 2026 05:31
luohaotianluohaotian 25 Apr 2026 05:32
133456133456 25 Apr 2026 06:29
DX_com4DX_com4 25 Apr 2026 14:17
niudunbushiniudunniudunbushiniudun 26 Apr 2026 00:15
SDclassThanSDclassThan 26 Apr 2026 03:49
sihuai2412sihuai2412 26 Apr 2026 03:49
VeythanVeythan 26 Apr 2026 03:49
blackcatskylanblackcatskylan 26 Apr 2026 08:40
Mercury_zahwiMercury_zahwi 26 Apr 2026 09:03
MetroFanMetroFan 26 Apr 2026 13:16
hote_0hote_0 26 Apr 2026 13:59
Macro129Macro129 26 Apr 2026 14:48
TRSTRS 26 Apr 2026 14:48
bowlof oldgrapefruitbowlof oldgrapefruit 28 Apr 2026 11:16
heyeyaheyeya 29 Apr 2026 14:40
Stellaryu114Stellaryu114 30 Apr 2026 11:13
corn-maizecorn-maize 30 Apr 2026 16:02
S_Command_blockS_Command_block 01 May 2026 03:31
oneggonegg 01 May 2026 03:48
the tears upthe tears up 01 May 2026 07:38
kanwendekanwende 02 May 2026 02:43
LHD2333LHD2333 02 May 2026 11:11
bilibili_xiguabilibili_xigua 02 May 2026 12:41
big stongbig stong 02 May 2026 18:19
cake_xiaoliucake_xiaoliu 03 May 2026 09:05
Devil linmoDevil linmo 03 May 2026 14:33
yalinggeyalingge 04 May 2026 03:28
adeathmustadeathmust 04 May 2026 11:34
monxianmonxian 04 May 2026 16:17
SpacewordSpaceword 05 May 2026 03:28
qwert114514qwert114514 05 May 2026 14:34
broken_skyerbroken_skyer 06 May 2026 04:19
Paramecium114Paramecium114 06 May 2026 13:08
Shirataki2263Shirataki2263 07 May 2026 14:50
YangGuang_2024YangGuang_2024 08 May 2026 14:24
Embers2426Embers2426 09 May 2026 16:59
NatorebiNatorebi 10 May 2026 00:39
TRE12C VERTRE12C VER 12 May 2026 11:35
cat ama114514cat ama114514 12 May 2026 14:37
caikunzitaimeicaikunzitaimei 16 May 2026 02:47
Dili-genceDili-gence 17 May 2026 12:37
SenshineSenshine 17 May 2026 12:38
QuncangQuncang 17 May 2026 12:38
ROLE120ROLE120 22 May 2026 11:50
LRCLRCLRCLRC 29 May 2026 14:35
l_player_ll_player_l 29 May 2026 14:35
Lxv37-wttoaeLxv37-wttoae 29 May 2026 14:35
PaltePalte 05 Jun 2026 14:21
beinglessbeingless 07 Jul 2026 10:22
XsNHiPERXsNHiPER 18 Aug 2026 16:36
m87cccm87ccc 20 Aug 2026 14:41

所有版主

TRSTRS
woshilaoliuwoshilaoliu

所有管理员

bbb6677bbb6677
Charley MisakaCharley Misaka Master Administrator
FNHanBaoFNHanBao
© The OUR Backrooms Wiki (2026)
本站不遵循CC协议