/* 基础变量与重置 */
        :root {
            --yv63-bg-base: #060913;
            --yv63-bg-surface: #0d1326;
            --yv63-bg-elevated: #161f3d;
            --yv63-text-primary: #e2e8f0;
            --yv63-text-secondary: #94a3b8;
            --yv63-accent-cyan: #00f0ff;
            --yv63-accent-blue: #3b82f6;
            --yv63-border: rgba(255, 255, 255, 0.08);
            --yv63-spacing-sm: 8px;
            --yv63-spacing-md: 16px;
            --yv63-spacing-lg: 24px;
            --yv63-spacing-xl: 32px;
            --yv63-spacing-xxl: 64px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--yv63-bg-base);
            color: var(--yv63-text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* 强制文本换行规范 */
        .yv63-text-wrap {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        /* ----------------复用首页导航栏样式---------------- */
        .yv63-weluwi {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background-color: rgba(6, 9, 19, 0.9);
            border-bottom: 1px solid var(--yv63-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .yv63-logo {
            min-width: 0;
            display: flex;
            align-items: center;
        }
        .yv63-logo img {
            height: 40px;
            width: auto;
        }
        .yv63-ujalog {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            min-width: 0;
        }
        .yv63-nav-link {
            color: var(--yv63-text-primary);
            font-size: 1rem;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            min-width: 0;
        }
        .yv63-nav-link:hover {
            color: var(--yv63-accent-cyan);
            background-color: rgba(0, 240, 255, 0.05);
        }
        .yv63-nav-link.active {
            color: var(--yv63-accent-cyan);
            border-bottom: 2px solid var(--yv63-accent-cyan);
            border-radius: 0;
        }

        /* ----------------复用首页页脚样式---------------- */
        .yv63-julihu {
            background-color: var(--yv63-bg-surface);
            padding: 60px 5% 40px;
            border-top: 1px solid var(--yv63-border);
            margin-top: 80px;
            display: flex;
            flex-wrap: wrap;
        }
        .yv63-gevab {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            min-width: 0;
        }
        .yv63-footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--yv63-text-primary);
            letter-spacing: 1px;
        }
        .yv63-footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            min-width: 0;
        }
        .yv63-footer-links a {
            color: var(--yv63-text-secondary);
            font-size: 0.95rem;
        }
        .yv63-footer-links a:hover {
            color: var(--yv63-accent-cyan);
        }
        .yv63-copyright {
            color: var(--yv63-text-secondary);
            font-size: 0.85rem;
            text-align: center;
            margin-top: 20px;
        }

        /* ----------------独特页面布局设计---------------- */
        
        /* 顶部展示区 (Banner) */
        .yv63-onina {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            padding: var(--yv63-spacing-xxl) 5%;
            background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.1) 0%, transparent 70%), 
                        var(--yv63-bg-base);
            border-bottom: 1px solid var(--yv63-border);
            justify-content: center;
            text-align: center;
        }
        
        .yv63-onina-content {
            min-width: 0;
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--yv63-spacing-md);
        }

        .yv63-onina-title {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            font-weight: 800;
            color: var(--yv63-text-primary);
            white-space: normal;
            letter-spacing: -1px;
            text-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
        }

        .yv63-onina-subtitle {
            font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
            color: var(--yv63-text-secondary);
            max-width: 600px;
            line-height: 1.8;
        }

        /* 搜索框设计 */
        .yv63-search-ovir {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            max-width: 500px;
            margin-top: var(--yv63-spacing-lg);
            background: var(--yv63-bg-elevated);
            border: 1px solid var(--yv63-border);
            border-radius: 50px;
            padding: 4px;
            transition: border-color 0.3s;
        }
        .yv63-search-ovir:focus-within {
            border-color: var(--yv63-accent-cyan);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
        }
        .yv63-search-input {
            flex: 1;
            min-width: 0;
            background: transparent;
            border: none;
            padding: 12px 20px;
            color: var(--yv63-text-primary);
            font-size: 1rem;
            outline: none;
        }
        .yv63-search-wila {
            min-width: 0;
            background: var(--yv63-accent-blue);
            color: white;
            border: none;
            border-radius: 40px;
            padding: 0 24px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .yv63-search-wila:hover {
            background: var(--yv63-accent-cyan);
            color: var(--yv63-bg-base);
        }

        /* 主体布局容器 */
        .yv63-iceyofe {
            display: flex;
            flex-wrap: wrap;
            max-width: 1300px;
            margin: 0 auto;
            padding: var(--yv63-spacing-xl) 5%;
            gap: var(--yv63-spacing-xl);
            align-items: flex-start;
        }

        /* 左侧动态/帖子列表 */
        .yv63-ahiv {
            display: flex;
            flex-direction: column;
            flex: 1 1 65%;
            min-width: 0;
            gap: var(--yv63-spacing-md);
        }

        .yv63-ahiv-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--yv63-border);
            padding-bottom: var(--yv63-spacing-md);
            margin-bottom: var(--yv63-spacing-sm);
            min-width: 0;
        }
        .yv63-ahiv-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--yv63-text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* 帖子条目 */
        .yv63-rokora {
            display: flex;
            flex-wrap: wrap;
            background: var(--yv63-bg-surface);
            border: 1px solid var(--yv63-border);
            border-radius: 12px;
            padding: var(--yv63-spacing-lg);
            gap: var(--yv63-spacing-md);
            transition: transform 0.3s ease, border-color 0.3s ease;
            min-width: 0;
            align-items: flex-start;
        }
        .yv63-rokora:hover {
            transform: translateY(-2px);
            border-color: rgba(0, 240, 255, 0.3);
            background: var(--yv63-bg-elevated);
        }

        .yv63-rokora-icon {
            flex: 0 0 auto;
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: rgba(59, 130, 246, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--yv63-accent-cyan);
            border: 1px solid rgba(0, 240, 255, 0.2);
        }

        .yv63-rokora-content {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .yv63-rokora-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--yv63-text-primary);
            white-space: normal;
        }
        .yv63-rokora-desc {
            font-size: 0.9rem;
            color: var(--yv63-text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .yv63-rokora-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 8px;
            font-size: 0.85rem;
            color: #64748b;
        }
        .yv63-rokora-tag {
            background: rgba(255, 255, 255, 0.05);
            padding: 2px 8px;
            border-radius: 4px;
            color: var(--yv63-accent-cyan);
        }

        /* 右侧分类/信息栏 */
        .yv63-owihik {
            display: flex;
            flex-direction: column;
            flex: 1 1 30%;
            min-width: 280px;
            gap: var(--yv63-spacing-lg);
        }

        /* 侧边卡片 */
        .yv63-cazuzur {
            background: var(--yv63-bg-surface);
            border: 1px solid var(--yv63-border);
            border-radius: 16px;
            padding: var(--yv63-spacing-lg);
            display: flex;
            flex-direction: column;
            gap: var(--yv63-spacing-md);
            min-width: 0;
            position: relative;
            overflow: hidden;
        }
        .yv63-cazuzur::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--yv63-accent-blue), var(--yv63-accent-cyan));
        }

        .yv63-cazuzur-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--yv63-text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .yv63-cazuzur-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 0;
        }
        .yv63-cazuzur-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.05);
            min-width: 0;
        }
        .yv63-cazuzur-item:last-child {
            border-bottom: none;
        }
        .yv63-cazuzur-item-name {
            color: var(--yv63-text-secondary);
            font-size: 0.95rem;
            transition: color 0.3s;
        }
        .yv63-cazuzur-item:hover .yv63-cazuzur-item-name {
            color: var(--yv63-accent-cyan);
        }
        .yv63-cazuzur-item-count {
            background: var(--yv63-bg-elevated);
            color: var(--yv63-text-primary);
            font-size: 0.8rem;
            padding: 2px 8px;
            border-radius: 12px;
        }

        /* 发帖按钮 */
        .yv63-aricod {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--yv63-accent-blue) 0%, #00d4ff 100%);
            color: #000;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }
        .yv63-aricod:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
        }

        /* 底部引导区 */
        .yv63-wasohol {
            display: flex;
            flex-wrap: wrap;
            max-width: 1300px;
            margin: var(--yv63-spacing-xxl) auto 0;
            padding: var(--yv63-spacing-xl) 5%;
            background: var(--yv63-bg-surface);
            border: 1px solid var(--yv63-border);
            border-radius: 20px;
            align-items: center;
            justify-content: space-between;
            gap: var(--yv63-spacing-xl);
        }
        .yv63-wasohol-text {
            flex: 1;
            min-width: 300px;
        }
        .yv63-wasohol-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--yv63-text-primary);
        }
        .yv63-wasohol-desc {
            color: var(--yv63-text-secondary);
        }
        .yv63-wila {
            display: inline-block;
            padding: 12px 32px;
            border: 1px solid var(--yv63-accent-cyan);
            color: var(--yv63-accent-cyan);
            border-radius: 8px;
            font-weight: 600;
            background: transparent;
            min-width: 0;
        }
        .yv63-wila:hover {
            background: rgba(0, 240, 255, 0.1);
        }

        @media (max-width: 768px) {
            .yv63-iceyofe {
                flex-direction: column;
            }
            .yv63-ahiv, .yv63-owihik {
                flex: 1 1 100%;
                width: 100%;
            }
            .yv63-ujalog {
                display: none; /* 简化移动端导航演示，实际应由JS处理菜单 */
            }
        }

.yv63-hdr-weluwi {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.yv63-hdr-weluwi,
.yv63-hdr-weluwi *,
.yv63-hdr-weluwi *::before,
.yv63-hdr-weluwi *::after {
    box-sizing: border-box;
}

.yv63-hdr-weluwi nav,
.yv63-hdr-weluwi div,
.yv63-hdr-weluwi section,
.yv63-hdr-weluwi article,
.yv63-hdr-weluwi aside,
.yv63-hdr-weluwi p,
.yv63-hdr-weluwi h1,
.yv63-hdr-weluwi h2,
.yv63-hdr-weluwi h3,
.yv63-hdr-weluwi h4,
.yv63-hdr-weluwi h5,
.yv63-hdr-weluwi h6,
.yv63-hdr-weluwi a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.yv63-hdr-weluwi p,
.yv63-hdr-weluwi h1,
.yv63-hdr-weluwi h2,
.yv63-hdr-weluwi h3,
.yv63-hdr-weluwi h4,
.yv63-hdr-weluwi h5,
.yv63-hdr-weluwi h6 {
    text-decoration: none;
}

.yv63-hdr-weluwi img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.yv63-hdr-weluwi {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.yv63-hdr-weluwi a.yv63-hdr-nav-link {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.yv63-hdr-weluwi a.yv63-hdr-nav-link,
.yv63-hdr-weluwi a.yv63-hdr-nav-link:hover,
.yv63-hdr-weluwi a.yv63-hdr-nav-link:focus,
.yv63-hdr-weluwi a.yv63-hdr-nav-link:active,
.yv63-hdr-weluwi a.yv63-hdr-nav-link.active,
.yv63-hdr-weluwi a.yv63-hdr-nav-link[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.yv63-hdr-weluwi{
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 48px);
            max-width: 1320px;
            background: rgba(24, 27, 33, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            padding: 16px 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

.yv63-hdr-weluwi .yv63-hdr-logo img{
            height: 32px;
            width: auto;
        }

.yv63-hdr-weluwi .yv63-hdr-ujalog{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }

.yv63-hdr-weluwi .yv63-hdr-nav-link{
            font-size: 0.95rem;
            color: #e2e8f0;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
        }

.yv63-hdr-weluwi .yv63-hdr-nav-link:hover{
            color: #00e5ff;
        }

.yv63-hdr-weluwi .yv63-hdr-nav-link.active{
            background: rgba(0, 229, 255, 0.1);
            color: #00e5ff;
        }

@media (max-width: 768px){.yv63-hdr-weluwi{
                flex-direction: column;
                gap: 16px;
                border-radius: 16px;
                padding: 16px;
            }

.yv63-hdr-weluwi .yv63-hdr-ujalog{
                justify-content: center;
            }}

.yv63-ftr-julihu {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.yv63-ftr-julihu,
.yv63-ftr-julihu *,
.yv63-ftr-julihu *::before,
.yv63-ftr-julihu *::after {
    box-sizing: border-box;
}

.yv63-ftr-julihu nav,
.yv63-ftr-julihu div,
.yv63-ftr-julihu section,
.yv63-ftr-julihu article,
.yv63-ftr-julihu aside,
.yv63-ftr-julihu p,
.yv63-ftr-julihu h1,
.yv63-ftr-julihu h2,
.yv63-ftr-julihu h3,
.yv63-ftr-julihu h4,
.yv63-ftr-julihu h5,
.yv63-ftr-julihu h6,
.yv63-ftr-julihu a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.yv63-ftr-julihu p,
.yv63-ftr-julihu h1,
.yv63-ftr-julihu h2,
.yv63-ftr-julihu h3,
.yv63-ftr-julihu h4,
.yv63-ftr-julihu h5,
.yv63-ftr-julihu h6 {
    text-decoration: none;
}

.yv63-ftr-julihu img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.yv63-ftr-julihu {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.yv63-ftr-julihu a,
.yv63-ftr-julihu a:hover,
.yv63-ftr-julihu a:focus,
.yv63-ftr-julihu a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.yv63-ftr-julihu{
            background: #0a0b0e;
            padding: 64px 24px 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 64px;
            display: flex;
            justify-content: center;
        }

.yv63-ftr-julihu .yv63-ftr-gevab{
            max-width: 1320px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
        }

.yv63-ftr-julihu .yv63-ftr-footer-brand{
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
        }

.yv63-ftr-julihu .yv63-ftr-footer-links{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

.yv63-ftr-julihu .yv63-ftr-footer-links a{
            color: #94a3b8;
            font-size: 0.95rem;
        }

.yv63-ftr-julihu .yv63-ftr-footer-links a:hover{
            color: #00e5ff;
        }

.yv63-ftr-julihu .yv63-ftr-copyright{
            width: 100%;
            text-align: center;
            color: #94a3b8;
            font-size: 0.85rem;
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }