/* ===== 泷泽萝拉第三部名字 定制样式 · 暖橙赭石 ===== */
        :root {
            --main: #ea580c;
            --accent: #d97706;
            --bg-soft: #fffbf5;
            --ink: #1c1917;
            --card-radius: 22px;
            --btn-radius: 999px;
            --shadow-soft: 0 12px 28px rgba(234, 88, 12, 0.08), 0 4px 12px rgba(28, 25, 23, 0.04);
        }

        body {
            background-color: var(--bg-soft);
            color: var(--ink);
            font-family: 'Noto Sans SC', 'Inter', system-ui, sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .display-font {
            font-family: 'Noto Serif SC', serif;
            font-weight: 700;
        }

        /* 滚动渐显 */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s cubic-bezier(.2,.7,.3,1), transform 0.6s cubic-bezier(.2,.7,.3,1);
            will-change: opacity, transform;
        }
        .reveal.in-view {
            opacity: 1;
            transform: none;
        }

        /* 导航胶囊 */
        .navbar-hm {
            background: rgba(255, 251, 245, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(217, 119, 6, 0.15);
            padding: 0.8rem 0;
        }
        .navbar-hm .navbar-brand {
            font-family: 'Noto Serif SC', serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--main);
            letter-spacing: 0.5px;
        }
        .navbar-hm .nav-link {
            color: var(--ink);
            font-weight: 500;
            margin: 0 0.2rem;
            padding: 0.5rem 1rem;
            border-radius: var(--btn-radius);
            transition: 0.2s;
        }
        .navbar-hm .nav-link:hover {
            background: rgba(234, 88, 12, 0.08);
            color: var(--main);
        }

        /* 按钮全圆 */
        .btn-round {
            border-radius: var(--btn-radius);
            padding: 0.6rem 1.8rem;
            font-weight: 600;
            box-shadow: 0 6px 14px rgba(234, 88, 12, 0.2);
            transition: 0.2s;
        }
        .btn-outline-round {
            border-radius: var(--btn-radius);
            padding: 0.5rem 1.5rem;
            border: 1.5px solid var(--main);
            color: var(--main);
            background: transparent;
            font-weight: 600;
        }
        .btn-outline-round:hover {
            background: var(--main);
            color: #fff;
        }

        /* hero 大数字 */
        .hero-stat {
            font-size: 5rem;
            font-weight: 900;
            font-family: 'Noto Serif SC', serif;
            line-height: 1;
            color: var(--main);
            text-shadow: 0 6px 20px rgba(234, 88, 12, 0.12);
        }
        .hero-sub {
            font-size: 1.1rem;
            color: #57534e;
        }

        /* 卡片中等圆角 + 轻阴影 + hover */
        .card-soft {
            background: white;
            border-radius: var(--card-radius);
            border: 1px solid #f0e8de;
            box-shadow: var(--shadow-soft);
            transition: transform 0.25s ease, border-color 0.2s;
            overflow: hidden;
        }
        .card-soft:hover {
            transform: scale(1.02);
            border-color: var(--accent);
            box-shadow: 0 18px 32px rgba(217, 119, 6, 0.12);
        }

        /* 对比表格 */
        .compare-table td, .compare-table th {
            padding: 1rem 0.8rem;
            border-bottom: 1px dashed #ead9c8;
        }
        .compare-table .featured-tag {
            background: var(--main);
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: var(--btn-radius);
            font-size: 0.75rem;
        }

        /* 渐变光晕背景 */
        .glow-orb {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle at 30% 30%, rgba(234,88,12,0.08), rgba(217,119,6,0.02) 70%);
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            z-index: 0;
        }

        /* 编号清单 */
        .number-list {
            counter-reset: step-counter;
            list-style: none;
            padding-left: 0;
        }
        .number-list li {
            counter-increment: step-counter;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: baseline;
            gap: 0.8rem;
            font-size: 1.05rem;
        }
        .number-list li::before {
            content: counter(step-counter);
            font-family: 'Noto Serif SC', serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--main);
            min-width: 2.2rem;
            text-align: right;
            opacity: 0.8;
        }

        /* 小标题下划线 */
        .section-title {
            font-size: 2rem;
            font-weight: 900;
            border-left: 8px solid var(--main);
            padding-left: 1.2rem;
            margin-bottom: 2rem;
        }

        /* 页脚 */
        .footer-links a {
            color: #57534e;
            text-decoration: none;
            margin: 0 0.8rem;
        }
        .footer-links a:hover {
            color: var(--main);
        }

        /* 懒加载图片占位 */
        img[data-src] {
            background: #ece3d7;
            min-height: 120px;
            transition: opacity 0.3s;
        }

/* --- 子页面追加 --- */
/* 本页专属少量样式(会自动合并进站点CSS) */
        .about-hero {
            background: linear-gradient(135deg, var(--bg-soft) 0%, #fff3e6 100%);
            padding: 5rem 0 3.5rem;
            position: relative;
            overflow: hidden;
        }
.about-hero .glow-orb {
            top: -80px;
            right: -60px;
            width: 300px;
            height: 300px;
            opacity: .5;
        }
.about-card {
            background: rgba(255,255,255,.7);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(234, 88, 12, .1);
            border-radius: var(--card-radius);
            box-shadow: var(--shadow-soft);
            padding: 2rem 1.8rem;
            transition: transform .3s ease, box-shadow .3s ease;
            height: 100%;
        }
.about-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 36px rgba(234, 88, 12, .12);
        }
.about-card i {
            color: var(--main);
            font-size: 2rem;
            margin-bottom: 1rem;
            display: inline-block;
        }
.about-card h3 {
            font-weight: 700;
            color: var(--ink);
            margin-bottom: .8rem;
            font-size: 1.25rem;
        }
.about-card p {
            color: #57534e;
            line-height: 1.8;
            margin-bottom: 0;
            font-size: .95rem;
        }
.timeline-wrap {
            position: relative;
            padding-left: 2rem;
        }
.timeline-wrap::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 8px;
            bottom: 8px;
            width: 3px;
            background: linear-gradient(to bottom, var(--main), var(--accent), rgba(234,88,12,.1));
            border-radius: 99px;
        }
.timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 6px;
            width: 15px;
            height: 15px;
            background: var(--main);
            border: 3px solid #fff;
            border-radius: 50%;
            box-shadow: 0 0 0 3px rgba(234, 88, 12, .25);
        }
.timeline-item .year-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--main), var(--accent));
            color: #fff;
            font-size: .8rem;
            font-weight: 700;
            padding: .2rem .9rem;
            border-radius: 999px;
            margin-bottom: .5rem;
            letter-spacing: .5px;
        }
.timeline-item h4 {
            font-weight: 700;
            color: var(--ink);
            margin-bottom: .4rem;
            font-size: 1.1rem;
        }
.timeline-item p {
            color: #57534e;
            line-height: 1.7;
            font-size: .93rem;
            margin-bottom: 0;
        }
.quote-block {
            border-left: 4px solid var(--main);
            background: rgba(234, 88, 12, .05);
            padding: 1.2rem 1.5rem;
            border-radius: 0 14px 14px 0;
            margin: 1.5rem 0;
            font-style: italic;
            color: #44403c;
            font-size: .98rem;
        }
.stat-wrap {
            text-align: center;
            padding: 1.5rem .8rem;
        }
.stat-wrap .num {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--main), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
.stat-wrap .label {
            color: #78716c;
            font-size: .85rem;
            margin-top: .3rem;
            font-weight: 500;
        }
.value-list {
            list-style: none;
            padding: 0;
        }
.value-list li {
            padding: .7rem 0 .7rem 1.8rem;
            position: relative;
            color: #44403c;
            border-bottom: 1px dashed rgba(234, 88, 12, .15);
            font-size: .95rem;
            line-height: 1.7;
        }
.value-list li:last-child {
            border-bottom: none;
        }
.value-list li::before {
            content: '\f061';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: .75rem;
            color: var(--main);
            font-size: .8rem;
        }
.about-hero {
                padding: 3.5rem 0 2.5rem;
            }
.about-card {
                padding: 1.5rem 1.2rem;
            }
.stat-wrap .num {
                font-size: 2rem;
            }

/* --- 子页面追加 --- */
.guide-hero {
            background: linear-gradient(135deg, var(--bg-soft) 0%, #fff0e6 50%, var(--bg-soft) 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
.guide-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 16px;
            line-height: 1.3;
        }
.guide-hero h1 span {
            color: var(--main);
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
            margin-top: 8px;
        }
.guide-hero p {
            font-size: 1.15rem;
            color: #57534e;
            max-width: 640px;
            line-height: 1.8;
        }
.guide-section {
            padding: 64px 0;
        }
.guide-section:nth-child(even) {
            background: var(--bg-soft);
        }
.guide-step-card {
            background: #fff;
            border-radius: var(--card-radius);
            box-shadow: var(--shadow-soft);
            padding: 32px 28px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(234, 88, 12, 0.08);
        }
.guide-step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 36px rgba(234, 88, 12, 0.12);
        }
.guide-step-card .step-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--main), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 20px;
        }
.guide-step-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 12px;
        }
.guide-step-card p {
            color: #57534e;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.guide-tip-box {
            background: linear-gradient(135deg, rgba(234, 88, 12, 0.08), rgba(217, 119, 6, 0.05));
            border-left: 4px solid var(--main);
            border-radius: 12px;
            padding: 20px 24px;
            margin: 20px 0;
        }
.guide-tip-box p {
            color: #44403c;
            margin-bottom: 0;
            line-height: 1.7;
        }
.guide-tip-box i {
            color: var(--main);
            margin-right: 8px;
        }
.guide-table-wrap {
            background: #fff;
            border-radius: var(--card-radius);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            border: 1px solid rgba(234, 88, 12, 0.08);
        }
.guide-table-wrap table {
            margin-bottom: 0;
        }
.guide-table-wrap th {
            background: var(--bg-soft);
            color: var(--ink);
            font-weight: 600;
            padding: 16px 20px;
            border-bottom: 2px solid rgba(234, 88, 12, 0.15);
            font-size: 0.95rem;
        }
.guide-table-wrap td {
            padding: 14px 20px;
            color: #57534e;
            border-bottom: 1px solid rgba(28, 25, 23, 0.06);
            font-size: 0.92rem;
            line-height: 1.6;
        }
.guide-table-wrap tr:last-child td {
            border-bottom: none;
        }
.badge-guide {
            background: rgba(234, 88, 12, 0.1);
            color: var(--main);
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 600;
            display: inline-block;
        }
.guide-hero h1 {
                font-size: 2rem;
            }
.guide-hero h1 span {
                font-size: 1.4rem;
            }
.guide-hero p {
                font-size: 1rem;
            }
.guide-section {
                padding: 48px 0;
            }

/* --- 子页面追加 --- */
.disclaimer-section {
            padding: 60px 0;
        }
.disclaimer-card {
            background: var(--bg-soft);
            border-radius: var(--card-radius);
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-soft);
            border-left: 4px solid var(--main);
        }
.disclaimer-card h3 {
            color: var(--main);
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-card h3 i {
            font-size: 1.4rem;
        }
.disclaimer-card p, .disclaimer-card li {
            color: var(--ink);
            line-height: 1.9;
            font-size: 0.95rem;
        }
.disclaimer-card ul {
            padding-left: 20px;
            margin-top: 10px;
        }
.disclaimer-card li {
            margin-bottom: 8px;
        }
.disclaimer-highlight {
            background: rgba(234, 88, 12, 0.08);
            padding: 16px 20px;
            border-radius: 14px;
            border: 1px solid rgba(234, 88, 12, 0.15);
            margin-top: 20px;
        }
.disclaimer-highlight i {
            color: var(--main);
            margin-right: 8px;
        }
.disclaimer-meta {
            background: #fff;
            border-radius: var(--card-radius);
            padding: 30px;
            border: 1px solid rgba(234, 88, 12, 0.1);
            box-shadow: var(--shadow-soft);
        }
.disclaimer-meta h4 {
            color: var(--ink);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
.disclaimer-meta p {
            color: var(--ink);
            line-height: 1.8;
            font-size: 0.9rem;
            opacity: 0.85;
        }
.disclaimer-card {
                padding: 25px;
            }
.disclaimer-card h3 {
                font-size: 1.2rem;
            }

/* --- 子页面追加 --- */
/* 排行榜专属样式 */
        .rank-hero {
            background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fef3c7 100%);
            border-radius: 32px;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
        }
.rank-hero::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(234, 88, 12, 0.06);
        }
.rank-hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--ink);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
.rank-hero h1 span {
            color: var(--main);
        }
.rank-hero p {
            font-size: 1.05rem;
            color: #57534e;
            max-width: 560px;
            position: relative;
            z-index: 1;
        }
.rank-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--main);
            color: #fff;
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
.rank-tabs {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
.rank-tab-btn {
            padding: 10px 28px;
            border-radius: 999px;
            border: 2px solid #e7e5e4;
            background: transparent;
            color: #57534e;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
.rank-tab-btn:hover {
            border-color: var(--main);
            color: var(--main);
        }
.rank-tab-btn.active {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
.rank-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: var(--shadow-soft);
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(234, 88, 12, 0.06);
        }
.rank-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(234, 88, 12, 0.12);
        }
.rank-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 18px 20px;
            border-radius: 16px;
            transition: background 0.3s ease;
            border-bottom: 1px solid rgba(28, 25, 23, 0.04);
        }
.rank-item:last-child {
            border-bottom: none;
        }
.rank-item:hover {
            background: var(--bg-soft);
        }
.rank-num {
            font-size: 1.8rem;
            font-weight: 900;
            color: #d6d3d1;
            min-width: 48px;
            text-align: center;
            font-style: italic;
        }
.rank-num.top-1 {
            color: #f59e0b;
        }
.rank-num.top-2 {
            color: #94a3b8;
        }
.rank-num.top-3 {
            color: #b45309;
        }
.rank-cover {
            width: 72px;
            height: 96px;
            border-radius: 12px;
            object-fit: cover;
            background: linear-gradient(135deg, #fef3c7, #ffedd5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
        }
.rank-info {
            flex: 1;
        }
.rank-info h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 4px;
        }
.rank-info p {
            font-size: 0.85rem;
            color: #78716c;
            margin-bottom: 0;
        }
.rank-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 8px;
        }
.rank-tag {
            font-size: 0.75rem;
            background: var(--bg-soft);
            color: var(--main);
            padding: 2px 10px;
            border-radius: 999px;
            font-weight: 500;
        }
.rank-score {
            text-align: right;
            min-width: 80px;
        }
.rank-score .score-num {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--main);
        }
.rank-score .score-label {
            font-size: 0.75rem;
            color: #a8a29e;
        }
.rank-trend {
            font-size: 0.8rem;
            color: #22c55e;
            font-weight: 600;
        }
.rank-trend.down {
            color: #ef4444;
        }
.section-title-rank {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 12px;
        }
.section-sub-rank {
            color: #78716c;
            font-size: 1rem;
            margin-bottom: 36px;
        }
.weekly-pick {
            background: linear-gradient(135deg, #fff7ed, #fef3c7);
            border-radius: 24px;
            padding: 40px;
            margin: 60px 0;
            border: 1px solid rgba(234, 88, 12, 0.1);
        }
.weekly-pick .pick-badge {
            display: inline-block;
            background: var(--main);
            color: #fff;
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
        }
.creator-rank {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(28, 25, 23, 0.06);
        }
.creator-rank:last-child {
            border-bottom: none;
        }
.creator-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--main), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
        }
.creator-info {
            flex: 1;
        }
.creator-info h6 {
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 2px;
        }
.creator-info p {
            font-size: 0.8rem;
            color: #78716c;
            margin-bottom: 0;
        }
.creator-followers {
            text-align: right;
        }
.creator-followers .num {
            font-weight: 700;
            color: var(--main);
        }
.creator-followers .label {
            font-size: 0.75rem;
            color: #a8a29e;
        }
.rank-hero {
                padding: 36px 20px;
                border-radius: 24px;
            }
.rank-hero h1 {
                font-size: 1.8rem;
            }
.rank-item {
                flex-wrap: wrap;
                gap: 12px;
            }
.rank-score {
                min-width: auto;
                margin-left: auto;
            }
.rank-num {
                font-size: 1.4rem;
                min-width: 36px;
            }
.rank-cover {
                width: 56px;
                height: 76px;
            }
.rank-tabs {
                gap: 8px;
            }
.rank-tab-btn {
                padding: 8px 18px;
                font-size: 0.85rem;
            }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.table { color:#1c1917 !important; border-color:rgba(0,0,0,.12) !important; --bs-table-bg:transparent !important; --bs-table-color:#1c1917 !important; }
.accordion-item { background:rgba(0,0,0,.03) !important; color:#1c1917 !important; border-color:rgba(0,0,0,.12) !important; }
.accordion-button { background:rgba(0,0,0,.03) !important; color:#1c1917 !important; }
.accordion-body { background:transparent !important; color:#1c1917 !important; }
.accordion-header { background:transparent !important; }
