/* Juzi 主题静态样式（由 header.php 内联样式提取，级联顺序保持不变） */

        .submit img {
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            height: 35px;
        }

        .submit input {
            width: 80px;
            padding: 8px;
            margin-left: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        /* 底部友情链接样式 */
        .joe_footer__links {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .joe_footer__links-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #fff;
            text-align: center;
        }

        .joe_footer__links-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .joe_footer__links-item a {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            text-decoration: none;
            color: #fff;
            transition: all 0.3s ease;
        }

        .joe_footer__links-item a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .joe_footer__links-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            margin-right: 8px;
            object-fit: cover;
        }

        .joe_footer__links-name {
            font-size: 14px;
            white-space: nowrap;
        }

        /* 移动端友情链接样式 */
        @media (max-width: 768px) {
            .joe_footer__links-list {
                gap: 10px;
            }

            .joe_footer__links-item a {
                padding: 6px 10px;
            }

            .joe_footer__links-avatar {
                width: 20px;
                height: 20px;
                margin-right: 6px;
            }

            .joe_footer__links-name {
                font-size: 12px;
            }
        }

        /* ========== 顶部导航背景特效 ========== */
        .joe_header__above {
            position: relative;
        }
        .joe_header__above-bg-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        /* 泡泡背景 */
        .joe_header__above-bg-effect.bubbles {
            background: linear-gradient(180deg, rgba(0,111,255,0.06) 0%, rgba(0,111,255,0.01) 100%);
        }
        .joe_header__above-bg-effect.bubbles .bubble {
            position: absolute;
            bottom: -30px;
            background: rgba(0,111,255,0.12);
            border-radius: 50%;
            animation: bubble-rise 6s infinite ease-in;
        }
        @keyframes bubble-rise {
            0% { transform: translateY(0) scale(1); opacity: 0.5; }
            100% { transform: translateY(-100px) scale(0.3); opacity: 0; }
        }
        /* 星空背景 */
        .joe_header__above-bg-effect.starry {
            background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
        }
        .joe_header__above-bg-effect.starry .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: star-twinkle 2s infinite ease-in-out alternate;
        }
        @keyframes star-twinkle {
            0% { opacity: 0.2; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1.3); }
        }
        /* 粒子背景 */
        .joe_header__above-bg-effect.particles {
            background: #0a0a0a;
        }
        .joe_header__above-bg-effect.particles .particle {
            position: absolute;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
            animation: particle-float linear infinite;
        }
        @keyframes particle-float {
            0% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
        }

        /* ========== 副导航美化 ========== */
        .joe_header__below {
            background: linear-gradient(90deg, rgba(0,111,255,0.04) 0%, rgba(0,111,255,0.01) 50%, rgba(0,111,255,0.04) 100%);
            border-top: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
        }
        .joe_header__below-class {
            gap: 4px;
        }
        .joe_header__below-class .item {
            position: relative;
            padding: 0 14px;
            font-size: 13px;
            letter-spacing: 0.3px;
            transition: all 0.3s;
        }
        .joe_header__below-class .item::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--theme);
            transition: all 0.35s;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .joe_header__below-class .item:hover::after,
        .joe_header__below-class .item.active::after {
            width: 50%;
        }
        .joe_header__below-class .item:hover {
            color: var(--theme);
        }
        .joe_header__below-sign .item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
        }
        .joe_header__below-sign .item a {
            padding: 3px 10px;
            border-radius: 14px;
            background: rgba(0,111,255,0.06);
            border: 1px solid rgba(0,111,255,0.12);
            color: var(--minor);
            transition: all 0.3s;
            white-space: nowrap;
        }
        .joe_header__below-sign .item a:hover {
            color: #fff;
            background: var(--theme);
            border-color: var(--theme);
            box-shadow: 0 2px 10px rgba(0,111,255,0.35);
        }
        .joe_header__below-sign .item .split {
            color: var(--classA);
        }

        /* ========== 用户头像下拉菜单 ========== */
        .joe_header__user-menu {
            position: relative;
            display: flex;
            align-items: center;
            margin-left: 10px;
            z-index: 1000;
        }
        .joe_header__user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid rgba(0,111,255,0.2);
            transition: all 0.3s;
            object-fit: cover;
        }
        .joe_header__user-avatar-link {
            display: flex;
            align-items: center;
            border-radius: 50%;
            transition: transform 0.3s;
        }
        .joe_header__user-avatar:hover {
            border-color: var(--theme);
            box-shadow: 0 0 12px rgba(0,111,255,0.35);
            transform: scale(1.08);
        }
.joe_header__user-dropdown {
            position: absolute;
            top: 50px;
            right: -4px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px) saturate(1.4);
            -webkit-backdrop-filter: blur(16px) saturate(1.4);
            border-radius: 16px;
            box-shadow: 0 16px 48px rgba(30, 40, 80, 0.14), 0 2px 8px rgba(30, 40, 80, 0.05);
            min-width: 190px;
            padding: 6px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(0.98);
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.9);
            z-index: 1001;
        }
        .joe_header__user-menu:hover .joe_header__user-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
.joe_header__user-dropdown a {
            display: flex;
            align-items: center;
            padding: 9px 12px;
            margin: 2px 0;
            color: #3d4a5c;
            font-size: 13.5px;
            font-weight: 500;
            transition: all 0.22s;
            text-decoration: none;
            border-radius: 10px;
            border-bottom: none;
        }
        .joe_header__user-dropdown a:last-child {
            border-bottom: none;
        }
        .joe_header__user-dropdown a:hover {
            background: linear-gradient(90deg, rgba(64, 158, 255, 0.1), rgba(114, 46, 209, 0.05));
            color: var(--theme);
            padding-left: 16px;
        }
        .joe_header__user-login-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 12px;
            border-radius: 50%;
            transition: all 0.3s;
            cursor: pointer;
        }
        .joe_header__user-login-link:hover {
            transform: scale(1.12);
            filter: drop-shadow(0 0 8px rgba(0,111,255,0.4));
        }
        .joe_header__below-progress {
            height: 3px;
            background: linear-gradient(90deg, var(--theme), #a855f7);
            box-shadow: 0 0 8px rgba(0,111,255,0.5);
            transition: width 0.2s ease;
            position: relative;
            z-index: 50;
        }
.joe_header__user-dropdown a svg {
            margin-right: 10px;
            width: 16px;
            height: 16px;
            fill: #8a94a6;
            transition: fill 0.22s;
            flex-shrink: 0;
        }
        .joe_header__user-dropdown a:hover svg {
            fill: var(--theme);
        }

        /* ========== 面包屑美化 ========== */
        .joe_bread__bread {
            display: flex;
            align-items: center;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 8px;
        }
        .joe_bread__bread .item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--minor);
            font-size: 14px;
            transition: all 0.3s;
            padding: 5px 14px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(64,158,255,.12), rgba(150,140,255,.14));
            background-size: 200% 200%;
            animation: jzBreadItemFlow 7s ease-in-out infinite;
        }
        @keyframes jzBreadItemFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .joe_bread__bread .item .link {
            color: var(--main);
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
        }
        .joe_bread__bread .item .link:hover {
            color: var(--theme);
        }
        .joe_bread__bread .item svg {
            width: 16px;
            height: 16px;
            fill: var(--theme);
        }
        .joe_bread__bread .item:last-child {
            background: linear-gradient(135deg, rgba(64,158,255,.20), rgba(94,231,255,.22));
            color: var(--theme);
            font-weight: 600;
        }
        [data-night] .joe_bread__bread .item {
            background: linear-gradient(135deg, rgba(90,130,230,.18), rgba(130,110,230,.16));
            color: #c9d4ee;
        }
        /* 面包屑浅色动态背景（不再是纯色，探索背景不要太深） */
        .joe_bread {
            border-radius: 0 0 14px 14px;
            padding: 4px 22px;
            background: linear-gradient(120deg, rgba(233, 244, 255, .78), rgba(255, 243, 235, .78), rgba(240, 240, 255, .82), rgba(231, 246, 244, .78));
            background-size: 320% 320%;
            animation: joeBreadFlow 9s ease-in-out infinite;
        }
        @keyframes joeBreadFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        [data-night] .joe_bread {
            background: linear-gradient(120deg, rgba(28, 34, 52, .72), rgba(40, 32, 48, .72), rgba(26, 40, 48, .72));
            background-size: 320% 320%;
            animation: joeBreadFlow 9s ease-in-out infinite;
        }

        /* ========== 正文底部：标签 + 点赞/收藏/分享 操作组（移至最右侧） ========== */
        .joe_detail__operate {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }
        .joe_detail__operate-tags {
            flex: 1 1 auto;
            min-width: 0;
        }
        .joe_detail__operate-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .joe_detail__operate-actions > .joe_detail__agree,
        .joe_detail__operate-actions > .joe_detail__fav,
        .joe_detail__operate-actions > .joe_detail__operate-share {
            position: relative;
            border-radius: 999px;
            padding: 7px 16px;
            background: linear-gradient(120deg, rgba(64, 158, 255, .16), rgba(112, 203, 255, .22), rgba(150, 140, 255, .18), rgba(64, 158, 255, .16));
            background-size: 300% 300%;
            box-shadow: 0 3px 12px rgba(64, 158, 255, .18);
            animation: joeActionFlow 6s ease-in-out infinite;
            transition: transform .3s, box-shadow .3s;
            cursor: pointer;
        }
        .joe_detail__operate-actions > .joe_detail__agree:hover,
        .joe_detail__operate-actions > .joe_detail__fav:hover,
        .joe_detail__operate-actions > .joe_detail__operate-share:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(64, 158, 255, .30);
        }
        @keyframes joeActionFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        [data-night] .joe_detail__operate-actions > .joe_detail__agree,
        [data-night] .joe_detail__operate-actions > .joe_detail__fav,
        [data-night] .joe_detail__operate-actions > .joe_detail__operate-share {
            background: linear-gradient(120deg, rgba(80, 140, 220, .28), rgba(120, 160, 230, .32), rgba(90, 120, 220, .28));
            background-size: 300% 300%;
            box-shadow: 0 3px 12px rgba(40, 60, 120, .4);
            animation: joeActionFlow 6s ease-in-out infinite;
        }
        /* 点赞按钮（原 left 独立位并入操作组，保留 .joe_detail__agree 类名兼容原 JS） */
        .joe_detail__agree {
            margin: 0;
            display: flex;
            align-items: center;
        }
        .joe_detail__agree .agree {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--main);
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        .joe_detail__agree .agree .icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff9a9a, #f43f3f);
            box-shadow: 0 3px 10px rgba(244, 63, 63, .4);
            cursor: pointer;
            transition: transform .3s;
        }
        .joe_detail__agree .agree .icon:hover {
            transform: scale(1.12) rotate(-6deg);
        }
        /* 收藏按钮 */
        .joe_detail__fav .fav {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--main);
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        .joe_detail__fav .fav svg {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            padding: 0;
            background: linear-gradient(135deg, #ffb74d, #f57c00);
            box-shadow: 0 3px 10px rgba(245, 124, 0, .4);
            transition: transform .3s;
        }
        .joe_detail__fav .fav svg path {
            fill: #fff;
        }
        .joe_detail__fav .fav:hover svg {
            transform: scale(1.12) rotate(6deg);
        }
        .joe_detail__fav .slfav.active .fav svg {
            background: linear-gradient(135deg, #ffd54f, #ff8f00);
            box-shadow: 0 3px 14px rgba(255, 143, 0, .6);
        }
        .joe_detail__fav .slfav.active .fav .text {
            color: #f57c00;
            font-weight: 700;
        }
        /* 分享按钮（保留原 .joe_detail__operate-share 弹出结构，微调尺寸） */
        .joe_detail__operate-share {
            position: relative;
            margin-left: 0 !important;
        }
        .joe_detail__operate-share > svg {
            display: block;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            cursor: pointer;
            transition: -webkit-transform .35s;
            transition: transform .35s;
            transition: transform .35s, -webkit-transform .35s;
        }
        .joe_detail__operate-share > svg:hover {
            -webkit-transform: rotate(360deg) scale(1.12);
            transform: rotate(360deg) scale(1.12);
        }
        .joe_detail__operate-share .reach {
            position: absolute;
            z-index: 10;
            top: 38px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            -webkit-transform: translateX(-50%) translateY(12px);
            transform: translateX(-50%) translateY(12px);
            transition: all .25s;
            background: rgba(255, 255, 255, .96);
            border-radius: 10px;
            padding: 8px 10px;
            box-shadow: 0 8px 22px rgba(0, 0, 0, .14);
        }
        .joe_detail__operate-share.active .reach {
            opacity: 1;
            -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
            visibility: visible;
        }
        .joe_detail__operate-share .reach a {
            padding: 3px 2px;
        }
        .joe_detail__operate-share .reach svg.icon {
            width: 26px;
            height: 26px;
        }
        [data-night] .joe_detail__operate-share .reach {
            background: rgba(28, 32, 48, .96);
        }

        /* ========== 文字版操作按钮（点赞/收藏/分享，移至最右侧+动态背景） ========== */
        .joe-dl-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: flex-end;
            margin-left: auto;
        }
        .joe-dl-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 500;
            color: var(--main);
            background: linear-gradient(135deg, rgba(64,158,255,.12), rgba(150,140,255,.14));
            background-size: 200% 200%;
            animation: jzActionFlow 6s ease-in-out infinite;
            transition: all .3s;
            text-decoration: none;
            cursor: pointer;
            border: none;
            position: relative;
        }
        @keyframes jzActionFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .joe-dl-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,.08);
        }
        .joe-dl-action-btn.active {
            background: linear-gradient(135deg, #ff512f, #dd2476);
            color: #fff;
            animation: none;
        }
        .joe-dl-share-btn { position: relative; }
        .joe-dl-share-reach {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            display: none;
            gap: 8px;
            background: rgba(255,255,255,.96);
            border: 1px solid rgba(220,230,255,.8);
            border-radius: 12px;
            padding: 8px;
            box-shadow: 0 6px 20px rgba(0,0,0,.1);
            z-index: 50;
            white-space: nowrap;
        }
        .joe-dl-share-btn.open .joe-dl-share-reach { display: flex; }
        .joe-dl-share-reach a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; transition: all .2s; }
        .joe-dl-share-reach a:hover { background: rgba(64,158,255,.12); transform: scale(1.1); }
        [data-night] .joe-dl-action-btn { background: linear-gradient(135deg, rgba(90,130,230,.18), rgba(130,110,230,.16)); color: #c9d4ee; }
        [data-night] .joe-dl-share-reach { background: rgba(20,24,36,.95); border-color: rgba(90,110,180,.25); }
        [data-night] .joe-dl-action-btn.active { background: linear-gradient(135deg, #ff512f, #dd2476); color: #fff; }

/* ========== 首页列表 meta 浅色背景 ========== */
        .joe_list__item .meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
            padding: 8px 14px;
            border-radius: 12px;
            background: linear-gradient(135deg, #f3f8ff, #f6f9f4);
            border: 1px solid rgba(148, 163, 184, .16);
        }
        html[data-night='night'] .joe_list__item .meta {
            background: linear-gradient(135deg, rgba(30, 41, 59, .55), rgba(35, 46, 66, .45));
            border-color: rgba(100, 116, 139, .28);
        }
        .joe_list__item .meta .last {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        /* ========== 首页分类胶囊随机浅色 ========== */
        .jz-sort-chip {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 3px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.6;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            max-width: 100%;
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .jz-sort-chip svg {
            width: 13px;
            height: 13px;
            flex-shrink: 0;
        }
        .jz-sort-chip:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
        }
        .jz-sort-chip::after {
            content: '';
            position: absolute;
            left: -80%;
            top: -4px;
            bottom: -4px;
            width: 65%;
            background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .95), transparent);
            transform: skewX(-18deg);
            animation: jzSortShine 2s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes jzSortShine {
            0%, 30% { left: -80%; }
            100% { left: 150%; }
        }

        /* ========== 文章列表meta美化 ========== */
        .joe_list__item .meta .items {
            display: flex;
            align-items: center;
            gap: 0;
        }
        .joe_list__item .meta .items li {
            position: relative;
            padding: 0 10px;
            font-size: 12px;
            color: var(--minor);
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.3s;
        }
        .joe_list__item .meta .items li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 3px;
            background: var(--theme);
            border-radius: 50%;
            opacity: 0.5;
        }
        .joe_list__item .meta .items li:first-child {
            padding-left: 0;
        }
        .joe_list__item .meta .items li:first-child::before {
            display: none;
        }
        .joe_list__item .meta .items li::after {
            display: none !important;
        }
        .joe_list__item .meta .items li:hover {
            color: var(--theme);
        }
        .joe_list__item .meta .items li svg.meta-icon {
            width: 13px;
            height: 13px;
            fill: currentColor;
            opacity: 0.7;
        }

/* ========== 列表缩略图右上角付费标签 ========== */
        .joe_list__item .thumbnail .joe_pay_tags {
            position: absolute;
            z-index: 3;
            top: 5px;
            right: 5px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
            max-width: 72%;
        }
        .joe_list__item .thumbnail .joe_pay_tag {
            display: inline-block;
            height: 20px;
            line-height: 20px;
            padding: 0 8px;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            border-radius: 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            box-shadow: 0 2px 8px rgba(0,0,0,0.28);
            letter-spacing: 0.3px;
            max-width: 100%;
        }
        .joe_list__item.single .thumbnail .joe_pay_tags {
            top: 10px;
            right: 10px;
        }
        .joe_list__item.default:hover .thumbnail .joe_pay_tags,
        .joe_list__item.single:hover .thumbnail .joe_pay_tags {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0)
        }
        .joe_list__item.default .thumbnail .joe_pay_tags,
        .joe_list__item.single .thumbnail .joe_pay_tags {
            -webkit-transform: translate3d(120%, 0, 0);
            transform: translate3d(120%, 0, 0);
            transition: -webkit-transform 0.35s;
            transition: transform 0.35s
        }

        /* ========== 下载标签与火焰特效 ========== */
        .joe_download-tag {
            position: absolute;
            top: 8px;
            left: 8px;
            padding: 3px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            z-index: 5;
            animation: tag-flame 2s infinite;
            box-shadow: 0 2px 8px rgba(0,0,0,0.25);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .joe_download-tag.free { background: linear-gradient(135deg, #52c41a, #389e0d); }
        .joe_download-tag.login { background: linear-gradient(135deg, #faad14, #d48806); }
        .joe_download-tag.points { background: linear-gradient(135deg, #722ed1, #531dab); }
        .joe_download-tag.money { background: linear-gradient(135deg, #f5222d, #cf1322); }
        .joe_download-tag.level { background: linear-gradient(135deg, #13c2c2, #08979c); }
        .joe_download-tag.follow { background: linear-gradient(135deg, #eb2f96, #c41d7f); }
        .joe_download-tag.vip { background: linear-gradient(135deg, #f59e0b, #d97706); }
        @keyframes tag-flame {
            0%, 100% { box-shadow: 0 0 4px rgba(255,120,0,0.2), 0 2px 8px rgba(0,0,0,0.2); }
            25% { box-shadow: 0 0 10px rgba(255,100,0,0.4), 0 2px 8px rgba(0,0,0,0.2); }
            50% { box-shadow: 0 0 18px rgba(255,80,0,0.5), 0 2px 8px rgba(0,0,0,0.2); }
            75% { box-shadow: 0 0 10px rgba(255,100,0,0.4), 0 2px 8px rgba(0,0,0,0.2); }
        }

        /* ========== 评论区楼层美化 ========== */
        .joe_comment {
            margin-top: 25px;
        }
        .comment-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .comment-list__item {
            margin-bottom: 0;
        }
        /* 评论区简洁风：无卡片阴影、无渐变、无悬浮动画 */
.comment-list__item-contain {
            position: relative;
            display: flex;
            gap: 12px;
            padding: 14px 4px;
            background: transparent;
            border-radius: 0;
            box-shadow: none;
            border: none;
            border-bottom: 1px solid var(--classC);
            transition: border-color .2s;
            overflow: visible;
        }
.comment-list__item-contain:hover {
            box-shadow: none;
            border-bottom-color: rgba(148, 163, 184, .45);
            transform: none;
        }
        [data-night] .comment-list__item-contain {
            background: transparent;
            border-color: rgba(148, 163, 184, .14);
        }
        .comment-list__item-contain .term {
            display: flex;
            gap: 12px;
            width: 100%;
        }
        .comment-list__item-contain .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            flex-shrink: 0;
            border: 1px solid var(--classC);
            box-shadow: none;
            transition: none;
        }
        .comment-list__item-contain:hover .avatar {
            border-color: var(--classB);
            transform: none;
            box-shadow: none;
        }
        .comment-list__item-contain .content {
            flex: 1;
            min-width: 0;
        }
        .comment-list__item-contain .user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        .comment-list__item-contain .author {
            font-weight: 600;
            color: var(--main);
            font-size: 15px;
        }
        .comment-list__item-contain .author a {
            color: var(--theme);
            transition: all 0.3s;
        }
        .comment-list__item-contain .author a:hover {
            text-decoration: underline;
        }
        .comment-list__item-contain .agent {
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .comment-list__item-contain .floor-badge {
            display: inline-flex;
            align-items: center;
            padding: 1px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 500;
            color: var(--minor);
            letter-spacing: 0;
            background: var(--classC);
            box-shadow: none;
        }
        .comment-list__item-contain .floor-sofa,
        .comment-list__item-contain .floor-bench,
        .comment-list__item-contain .floor-floor3,
        .comment-list__item-contain .floor-normal {
            background: var(--classC);
            box-shadow: none;
        }
        .comment-list__item-contain .floor-badge-author {
            background: var(--classC);
            color: var(--theme);
            box-shadow: none;
        }
        .comment-list__item-contain .substance {
            color: var(--routine);
            line-height: 1.75;
            font-size: 14px;
            margin-bottom: 12px;
            word-break: break-word;
        }
        .comment-list__item-contain .substance img.draw_image {
            max-width: 100%;
            border-radius: 8px;
            margin: 5px 0;
        }
        .comment-list__item-contain .handle {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 12px;
        }
        .comment-list__item-contain .handle .date {
            color: var(--minor);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .comment-list__item-contain .handle .reply {
            color: var(--minor);
            cursor: pointer;
            transition: color .2s;
            padding: 0;
            border-radius: 0;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: transparent;
        }
        .comment-list__item-contain .handle .reply:hover {
            color: var(--theme);
            background: transparent;
            box-shadow: none;
        }
.comment-list__item-children {
            margin-left: 52px;
            margin-top: 0;
            padding-left: 0;
            border-left: 2px solid var(--classC);
        }
        .comment-list__item-children .comment-list__item-contain {
            background: transparent;
            border-radius: 0;
            padding: 12px 4px;
            border: none;
            border-bottom: 1px solid var(--classC);
        }
        .comment-list__item-children .comment-list__item-contain .avatar {
            width: 32px;
            height: 32px;
        }
        [data-night] .comment-list__item-children .comment-list__item-contain {
            background: transparent;
            border-color: rgba(148, 163, 184, .14);
        }
        .comment-list__item-children .comment-list__item {
            margin-bottom: 0;
        }
        .comment-list__item-children .comment-list__item:last-child .comment-list__item-contain {
            border-bottom: none;
        }
        .comment-page {
            padding: 16px 0;
            text-align: center;
            margin: 0 auto;
        }
        .comment-page span {
            background: var(--theme);
            color: #fff;
            padding: 6px 14px;
            border-radius: 6px;
            margin: 0 3px;
        }
        .comment-page a {
            background: var(--classC);
            color: var(--main);
            padding: 6px 14px;
            border-radius: 6px;
            margin: 0 3px;
            transition: all 0.3s;
            text-decoration: none;
        }
        .comment-page a:hover {
            background: var(--theme);
            color: #fff;
        }

        /* ========== 文章详情页作者meta美化 ========== */
        .joe_detail__count {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
            border-bottom: 1px solid var(--classC);
            margin-bottom: 24px;
        }
        .joe_detail__count-information {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .joe_detail__count-information .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--classC);
            transition: all 0.3s;
        }
        .joe_detail__count-information .avatar:hover {
            border-color: var(--theme);
            transform: scale(1.05);
        }
        .joe_detail__count-information .meta {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .joe_detail__count-information .author {
            font-size: 15px;
            font-weight: 600;
        }
        .joe_detail__count-information .author a {
            color: var(--main);
            transition: color 0.3s;
            text-decoration: none;
        }
        .joe_detail__count-information .author a:hover {
            color: var(--theme);
        }
        .joe_detail__count-information .item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--minor);
        }
        .joe_detail__count-information .item .meta-dot {
            width: 4px;
            height: 4px;
            background: var(--classA);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .joe_detail__count-information .item .text a {
            color: var(--minor);
            transition: color 0.3s;
        }
        .joe_detail__count-information .item .text a:hover {
            color: var(--theme);
        }
        /* 年月日 / 评论 / 阅读 纯文字样式（无背景） */
        .joe_detail__count-information .item .text {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            line-height: 1.6;
            color: var(--minor);
            transition: color 0.3s;
        }
        .joe_detail__count-information .item .text:first-child {
            color: var(--main);
            font-weight: 600;
        }
        .joe_detail__count-information .item .text:hover {
            color: var(--theme);
        }
        .joe_detail__count-information .item .meta-dot {
            background: rgba(150, 150, 170, .35);
        }
        [data-night] .joe_detail__count-information .item .text {
            color: #c9d4ee;
        }
.joe_detail__count-created {
            font-size: 32px;
            font-weight: 800;
            color: var(--theme);
            opacity: 0.9;
            font-family: 'Courier New', monospace;
            letter-spacing: 2px;
        }

        /* ===== 详情页：分类胶囊样式（随机浅色背景来自内联样式） ===== */
        .joe_detail__category {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 10px;
        }
        .joe_detail__category .item {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid rgba(148, 163, 184, 0.18);
            text-decoration: none;
            transition: transform .3s, box-shadow .3s, filter .3s;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }
        .joe_detail__category .item:hover {
            transform: translateY(-2px);
            filter: brightness(1.03);
            box-shadow: 0 4px 12px rgba(64, 158, 255, 0.18);
        }
        .joe_detail__category .item::after {
            content: "";
            position: absolute;
            top: 0;
            left: -80%;
            width: 45%;
            height: 100%;
            background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.7), transparent);
            transform: skewX(-20deg);
            animation: jzDetailSortShine 3.2s linear infinite;
        }
        @keyframes jzDetailSortShine {
            0% { left: -80%; }
            55% { left: 135%; }
            100% { left: 135%; }
        }

        /* ===== 详情页：日期随机颜色 + 显著扫光 ===== */
        .joe_detail__count-created.jz-date-shine {
            position: relative;
            display: inline-block;
            overflow: hidden;
            border-radius: 6px;
            padding: 2px 6px;
            animation: jzDateColorBreath 2.8s ease-in-out infinite;
        }
        .joe_detail__count-created.jz-date-shine::after {
            content: "";
            position: absolute;
            top: -4px;
            bottom: -4px;
            left: -90%;
            width: 55%;
            background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.9), transparent);
            transform: skewX(-18deg);
            animation: jzDateShine 2.2s linear infinite;
            z-index: 1;
        }
        @keyframes jzDateShine {
            0% { left: -90%; }
            60% { left: 150%; }
            100% { left: 150%; }
        }
        @keyframes jzDateColorBreath {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.82; }
        }
        html[data-night='night'] .joe_detail__count-created.jz-date-shine::after {
            background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
        }

        /* ===== 详情页：标题+作者信息区 浅色背景 ===== */
        .jz-detail-head {
            position: relative;
            margin-bottom: 14px;
            padding: 14px 18px 12px;
            border-radius: 14px;
            background: linear-gradient(135deg, #f4f9ff, #f6faf4);
            border: 1px solid rgba(148, 163, 184, .16);
        }
        .jz-detail-head .joe_detail__category {
            margin-bottom: 8px;
        }
        html[data-night='night'] .jz-detail-head {
            background: linear-gradient(135deg, rgba(30, 41, 59, .55), rgba(35, 46, 66, .45));
            border-color: rgba(100, 116, 139, .28);
        }

        /* ===== 详情页：相关推荐 浅色背景胶囊 ===== */
        .joe_detail__related {
            margin-top: 18px;
            padding: 14px 16px 16px;
            border-radius: 14px;
            background: linear-gradient(135deg, #f4f9ff, #f6faf4);
            border: 1px solid rgba(148, 163, 184, .16);
        }
        .joe_detail__related-title {
            display: inline-flex;
            align-items: center;
            padding: 5px 18px;
            margin-bottom: 14px;
            border-radius: 999px;
            background: linear-gradient(135deg, #dbeafe, #e8f6ee);
            color: #30599c;
            border: 1px solid rgba(64, 158, 255, .18);
        }
        .joe_detail__related-title::before {
            position: static;
            width: 6px;
            height: 14px;
            margin-right: 8px;
            border-radius: 3px;
        }
        .joe_detail__related-content .item {
            background: #fff;
            border: 1px solid rgba(148, 163, 184, .14);
        }
        html[data-night='night'] .joe_detail__related {
            background: linear-gradient(135deg, rgba(30, 41, 59, .55), rgba(35, 46, 66, .45));
            border-color: rgba(100, 116, 139, .28);
        }
        html[data-night='night'] .joe_detail__related-title {
            background: rgba(90, 130, 230, .18);
            color: #c9d4ee;
            border-color: rgba(90, 110, 180, .28);
        }
        html[data-night='night'] .joe_detail__related-content .item {
            background: rgba(30, 41, 59, .5);
            border-color: rgba(100, 116, 139, .25);
        }

                /* ========== 评论区简洁白色表单 ========== */
        .joe_comment__respond-form {
            background: #ffffff;
            border: 1px solid rgba(148, 163, 184, .15);
            border-radius: 14px;
            padding: 16px;
            overflow: hidden;
        }
        .joe_comment__respond-form .body {
            margin-bottom: 0;
        }
        .joe_comment__respond-form textarea {
            background: #fff;
            border: 1px solid rgba(148, 163, 184, .18);
            border-radius: 10px;
            padding: 10px 12px;
            font-size: 14px;
            color: var(--main);
            width: 100%;
            box-sizing: border-box;
            resize: vertical;
            transition: border-color .3s, box-shadow .3s;
        }
        .joe_comment__respond-form textarea:focus {
            border-color: rgba(64, 158, 255, .35);
            box-shadow: 0 0 0 3px rgba(64, 158, 255, .08);
            outline: none;
        }
        .joe_comment__respond-form .foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
            padding-top: 0;
            background: transparent;
            border-top: none;
        }
        html[data-night='night'] .joe_comment__respond-form {
            background: linear-gradient(135deg, rgba(30, 41, 59, .45), rgba(35, 46, 66, .35));
            border-color: rgba(100, 116, 139, .22);
        }
        html[data-night='night'] .joe_comment__respond-form textarea {
            background: rgba(30, 41, 59, .55);
            border-color: rgba(100, 116, 139, .3);
            color: #c9d4ee;
        }
        html[data-night='night'] .joe_comment__respond-form textarea:focus {
            border-color: rgba(90, 130, 230, .45);
            box-shadow: 0 0 0 3px rgba(90, 130, 230, .1);
        }

        /* ========== 黑夜模式适配 ========== */
        html[data-night='night'] .comment-list__item-contain {
            background: transparent;
            border-color: rgba(148, 163, 184, .14);
        }
        html[data-night='night'] .comment-list__item-children .comment-list__item-contain {
            background: transparent;
        }
        html[data-night='night'] .joe_header__above-bg-effect.starry,
        html[data-night='night'] .joe_header__above-bg-effect.particles {
            opacity: 1;
        }
html[data-night='night'] .joe_header__user-dropdown {
            background: rgba(52, 58, 78, 0.94);
            border-color: rgba(120, 132, 160, 0.35);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
        }
        html[data-night='night'] .joe_header__user-dropdown a {
            color: #c3cde2;
        }
        html[data-night='night'] .joe_header__user-dropdown a svg {
            fill: #8fa0bd;
        }
        html[data-night='night'] .joe_header__user-dropdown a:hover svg {
            fill: #7fd4f0;
        }
        html[data-night='night'] .joe_header__user-dropdown a:hover {
            background: linear-gradient(90deg, rgba(84, 181, 219, 0.14), rgba(84, 181, 219, 0.04));
            color: #7fd4f0;
        }
        html[data-night='night'] .joe_header__user-dropdown-head {
            background: linear-gradient(135deg, rgba(84, 181, 219, 0.12), rgba(114, 46, 209, 0.1));
            border-bottom-color: rgba(120, 132, 160, 0.3);
        }

        /* ========== 深色模式可读性增强 v8：文字提亮 + 卡片不透明 ========== */
        html[data-night='night'] body {
            --main: #e7ecf4;
            --routine: #c5cdd9;
            --minor: #9aa4b5;
            --seat: #717c8e;
            --classA: #3a4150;
            --classB: #333947;
            --classC: #2c313d;
        }
        html[data-night='night'] .joe_detail__title {
            color: #f2f5fa;
            text-shadow: none;
        }
        html[data-night='night'] .joe_detail {
            background: #1f242e;
        }
        html[data-night='night'] .joe_detail__article {
            color: #c9d1de;
        }
        html[data-night='night'] .joe_detail__article img,
        html[data-night='night'] .joe_detail__article video,
        html[data-night='night'] .joe_detail__article iframe {
            opacity: 1;
        }
        html[data-night='night'] .jz-detail-head {
            background: linear-gradient(135deg, #263043, #2a3550);
            border-color: rgba(120, 140, 180, .3);
        }
        html[data-night='night'] .joe_detail__related {
            background: linear-gradient(135deg, #263043, #2a3550);
            border-color: rgba(120, 140, 180, .3);
        }
        html[data-night='night'] .joe_detail__related-content .item {
            background: #262d3a;
        }
        html[data-night='night'] .joe_aside__item {
            background: #1f242e;
        }

        /* ========== 靓号系统样式 ========== */
        .joe_lianghao-page { padding: 20px 0; }
        .joe_lianghao-header { text-align: center; margin-bottom: 30px; }
        .joe_lianghao-header h2 {
            font-size: 28px;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--theme), #722ed1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .joe_lianghao-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 24px;
            border-bottom: 2px solid var(--classC);
            padding-bottom: 10px;
        }
        .joe_lianghao-tabs .tab {
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            color: var(--minor);
            border: 1px solid transparent;
        }
        .joe_lianghao-tabs .tab:hover, .joe_lianghao-tabs .tab.active {
            background: var(--theme);
            color: #fff;
            border-color: var(--theme);
        }
        .joe_lianghao-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 16px;
        }
        .joe_lianghao-card {
            background: var(--background);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 2px solid var(--classC);
            transition: all 0.35s;
            position: relative;
            overflow: hidden;
        }
        .joe_lianghao-card:hover {
            border-color: var(--theme);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }
        .joe_lianghao-card .id-number {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Courier New', monospace;
        }
        .joe_lianghao-card .rarity {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .joe_lianghao-card .rarity-common { background: #f0f0f0; color: #666; }
        .joe_lianghao-card .rarity-rare { background: #d6e4ff; color: #2f54eb; }
        .joe_lianghao-card .rarity-epic { background: #f9f0ff; color: #722ed1; }
        .joe_lianghao-card .rarity-legendary { background: #fff7e6; color: #fa8c16; }
        .joe_lianghao-card .rarity-supreme { background: linear-gradient(135deg, #fff1f0, #fff7e6); color: #cf1322; }
        .joe_lianghao-card .price {
            font-size: 14px;
            color: var(--minor);
            margin-bottom: 12px;
        }
        .joe_lianghao-card .price strong { color: #f5222d; font-size: 18px; }
        .joe_lianghao-card .btn-buy {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 20px;
            background: var(--theme);
            color: #fff;
            font-size: 13px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .joe_lianghao-card .btn-buy:hover { background: #0056d6; transform: scale(1.05); }
        .joe_lianghao-card .btn-buy:disabled {
            background: var(--classA);
            cursor: not-allowed;
            transform: none;
        }
        .joe_lianghao-card.sold { opacity: 0.6; border-color: var(--classA); }
        .joe_lianghao-card.sold .btn-buy { background: var(--classA); }
        .joe_lianghao-card .badge-exclusive {
            position: absolute;
            top: 6px; right: 6px;
            width: 24px; height: 24px;
            background: linear-gradient(135deg, #ffd700, #ffaa00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            box-shadow: 0 2px 6px rgba(255,170,0,0.4);
        }
        .joe_lianghao-record {
            background: var(--background);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            border: 1px solid var(--classC);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .joe_lianghao-record .info { display: flex; flex-direction: column; gap: 4px; }
        .joe_lianghao-record .id { font-size: 18px; font-weight: 700; color: var(--main); }
        .joe_lianghao-record .time { font-size: 12px; color: var(--minor); }
        .joe_lianghao-rules {
            background: var(--background);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--classC);
            line-height: 1.8;
        }
        .joe_lianghao-rules h3 { margin-bottom: 16px; color: var(--main); font-size: 18px; }
        .joe_lianghao-rules ul { padding-left: 20px; }
        .joe_lianghao-rules li { margin-bottom: 8px; color: var(--routine); }

        /* ========== 友情链接系统样式 ========== */
        .joe_links-page { padding: 20px 0; }
        .joe_links-header { text-align: center; margin-bottom: 30px; }
        .joe_links-header h2 { font-size: 26px; margin-bottom: 8px; color: var(--main); }
        .joe_links-header p { color: var(--minor); font-size: 14px; }
        .joe_links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
            margin-bottom: 30px;
        }
        .joe_links-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px;
            background: var(--background);
            border-radius: 12px;
            border: 1px solid var(--classC);
            transition: all 0.3s;
            text-decoration: none;
        }
        .joe_links-card:hover {
            border-color: var(--theme);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .joe_links-card img {
            width: 40px; height: 40px;
            border-radius: 8px;
            object-fit: cover;
            background: var(--classD);
        }
        .joe_links-card .info { flex: 1; min-width: 0; }
        .joe_links-card .name {
            font-weight: 600;
            color: var(--main);
            font-size: 14px;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .joe_links-card .desc {
            font-size: 12px;
            color: var(--minor);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .joe_links-apply {
            background: var(--background);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--classC);
            max-width: 500px;
            margin: 0 auto;
        }
        .joe_links-apply h3 { text-align: center; margin-bottom: 20px; font-size: 18px; color: var(--main); }
        .joe_links-apply .form-group { margin-bottom: 16px; }
        .joe_links-apply label {
            display: block;
            margin-bottom: 6px;
            font-size: 14px;
            color: var(--main);
        }
        .joe_links-apply input, .joe_links-apply textarea {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid var(--classC);
            border-radius: 8px;
            background: var(--background);
            color: var(--main);
            font-size: 14px;
            transition: all 0.3s;
        }
        .joe_links-apply input:focus, .joe_links-apply textarea:focus {
            border-color: var(--theme);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,111,255,0.1);
        }
        .joe_links-apply .btn-submit {
            display: block;
            width: 100%;
            padding: 12px;
            background: var(--theme);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .joe_links-apply .btn-submit:hover { background: #0056d6; }
        .joe_links-apply .fetch-status {
            font-size: 12px;
            color: var(--minor);
            margin-top: 4px;
        }
        /* ===== 靓号徽章（全站展示：评论区/文章作者/资料卡） ===== */
        .jz-vip-wrap {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            vertical-align: middle;
            margin: 0 4px;
            position: relative;
            font-size: 12px;
            line-height: 1;
            white-space: nowrap;
        }
        .jz-vip-wrap .jz-vip-tag, .jz-vip-wrap .jz-vip-id { position: relative; z-index: 1; }
        .jz-vip-tag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            flex: 0 0 auto;
        }
.jz-vip-id {
            display: inline-flex;
            align-items: center;
            padding: 2.5px 7px;
            border-radius: 4px;
            font-weight: 700;
            letter-spacing: 0.5px;
            background: transparent;
            transition: text-shadow 0.3s;
        }
        .jz-vip-tag-common { background: linear-gradient(135deg, #94a3b8, #64748b); }
        .jz-vip-tag-rare { background: linear-gradient(135deg, #3b82f6, #2563eb); }
        .jz-vip-tag-epic { background: linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow: 0 0 10px rgba(139,92,246,0.45); }
        .jz-vip-tag-legendary { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 0 12px rgba(245,158,11,0.5); }
        .jz-vip-tag-supreme { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 0 14px rgba(239,68,68,0.6); }
        /* 靓号ID：颜色 + 稀有度背景色 */
        .jz-vip-id-common { color: #94a3b8; text-shadow: 0 0 6px rgba(148,163,184,0.55); background: linear-gradient(135deg, rgba(148,163,184,0.16), rgba(148,163,184,0.05)); }
        .jz-vip-id-rare { color: #3b82f6; text-shadow: 0 0 8px rgba(59,130,246,0.6); background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(59,130,246,0.05)); }
        .jz-vip-id-epic { color: #8b5cf6; text-shadow: 0 0 10px rgba(139,92,246,0.7); background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(139,92,246,0.06)); }
        .jz-vip-id-legendary { color: #f59e0b; text-shadow: 0 0 12px rgba(245,158,11,0.75); background: linear-gradient(135deg, rgba(245,158,11,0.22), rgba(245,158,11,0.06)); }
        .jz-vip-id-supreme { color: #ef4444; text-shadow: 0 0 14px rgba(239,68,68,0.8); background: linear-gradient(135deg, rgba(239,68,68,0.24), rgba(239,68,68,0.07)); }
/* ID微动态：呼吸发光（仅后台开启时，vip_effect_pulse_enable） */
        .jz-vip-id-pulse {
            animation: jzVipIdPulse 2.2s ease-in-out infinite;
        }
        @keyframes jzVipIdPulse {
            0%, 100% { filter: brightness(1); transform: scale(1); }
            50% { filter: brightness(1.35); transform: scale(1.04); }
        }
        .jz-vip-fire {
            position: absolute;
            left: -8px;
            top: 50%;
            width: 34px;
            height: 34px;
            transform: translateY(-50%);
            background:
                radial-gradient(ellipse at 50% 80%, rgba(255,165,0,0.85) 0%, rgba(255,80,0,0.45) 45%, rgba(255,60,0,0) 75%),
                radial-gradient(ellipse at 30% 60%, rgba(255,220,90,0.9) 0%, rgba(255,140,0,0.35) 55%, rgba(255,140,0,0) 75%);
            filter: blur(1px);
            border-radius: 50%;
            pointer-events: none;
            animation: jzVipFire 1.4s ease-in-out infinite alternate;
            z-index: 0;
        }
        @keyframes jzVipFire {
            0% { transform: translateY(-50%) scale(0.9); opacity: 0.65; }
            100% { transform: translateY(-56%) scale(1.15); opacity: 1; }
        }
        .jz-vip-sparkle {
            position: absolute;
            inset: 0;
            pointer-events: none;
            border-radius: 6px;
            overflow: hidden;
        }
        .jz-vip-sparkle::before {
            content: '';
            position: absolute;
            top: 0;
            left: -60%;
            width: 45%;
            height: 100%;
            background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent);
            animation: jzVipSparkle 2.4s ease-in-out infinite;
            transform: skewX(-20deg);
        }
        @keyframes jzVipSparkle {
            0% { left: -60%; }
            55% { left: 130%; }
            100% { left: 130%; }
        }
        /* 彩虹变色特效 */
        .jz-vip-rainbow {
            animation: jzVipRainbow 3s linear infinite;
            background: linear-gradient(90deg, #ff0000, #ff8000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 400% 100%;
        }
        @keyframes jzVipRainbow {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }
        /* 白光扫光特效 */
        .jz-vip-sweep {
            position: relative;
            overflow: hidden;
        }
        .jz-vip-sweep::after {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
            transform: skewX(-25deg);
            animation: jzVipSweep 2.5s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes jzVipSweep {
            0% { left: -100%; }
            60% { left: 160%; }
            100% { left: 160%; }
        }
        .nice-id-badge.uid-default {
            display: inline-flex;
            align-items: center;
            padding: 2.5px 7px;
            border-radius: 4px;
            background: transparent;
            color: var(--minor);
            font-size: 12px;
            font-weight: 600;
            vertical-align: middle;
            margin: 0 4px;
            white-space: nowrap;
            animation: jzVipIdPulse 2.6s ease-in-out infinite;
        }
        [data-night] .nice-id-badge.uid-default { background: transparent; color: #9ca3af; }

        /* ---------- 深浅色切换动态过渡（100% 提取自子比主题 css/main.css ::view-transition 规则） ---------- */
        /* 禁用默认交叉淡入，由 JS 驱动"从点击位置圆形扩散/收缩"动画 */
        ::view-transition-old(root),
        ::view-transition-new(root) {
            animation: none;
            mix-blend-mode: normal;
        }
        /* 切到夜间：新（暗色）视图置顶，圆形扩散覆盖旧（亮色）视图 */
        html[data-night='night']::view-transition-old(root) {
            z-index: 1;
        }
        html[data-night='night']::view-transition-new(root) {
            z-index: 2147483646;
        }
        /* 切回日间：旧（暗色）视图置顶，圆形收缩露出新（亮色）视图 */
        ::view-transition-old(root) {
            z-index: 2147483646;
        }
        ::view-transition-new(root) {
            z-index: 1;
        }

    /* ========== 头像下拉框（100% 复刻子比主题 sub-user-box 结构） ========== */
    .joe_header__user-dropdown {
        min-width: 268px;
        padding: 12px;
    }
    .joe_header__user-dropdown .sub-user-box {
        width: 100%;
        word-break: break-word;
        white-space: normal;
    }
    /* 重置旧版竖排菜单样式对 sub-user-box 的影响 */
    .joe_header__user-dropdown .sub-user-box a {
        display: flex;
        padding: 0;
        margin: 0;
        border-radius: 0;
        background: none;
        text-decoration: none;
    }
    .joe_header__user-dropdown .sub-user-box a:hover {
        background: none;
        padding-left: 0;
        color: inherit;
    }
    .joe_header__user-dropdown .sub-user-box a svg {
        margin-right: 0;
        width: 17px;
        height: 17px;
        fill: currentColor;
    }
    .jz-sub-userinfo {
        display: flex;
        align-items: center;
        position: relative;
    }
    .jz-sub-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(0, 111, 255, 0.2);
        flex-shrink: 0;
    }
    .jz-sub-usermeta {
        flex: 1;
        min-width: 0;
        margin-left: 10px;
        display: flex;
        flex-direction: column;
    }
    .jz-sub-usermeta b {
        font-size: 14.5px;
        color: #3d4a5c;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .jz-sub-uid {
        font-size: 12px;
        color: #8a94a6;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .jz-sub-msgicon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(136, 136, 136, 0.1);
        color: #5a6b85 !important;
        position: relative;
        flex-shrink: 0;
        margin-left: 8px;
        transition: all 0.25s;
    }
    .jz-sub-msgicon:hover {
        background: var(--theme, #006fff);
        color: #fff !important;
    }
    .jz-sub-msgicon badge {
        position: absolute;
        top: -5px;
        right: -7px;
        background: #ff4d4f;
        color: #fff;
        font-size: 11px;
        line-height: 1;
        padding: 3px 5px;
        border-radius: 10px;
        border: 2px solid #fff;
        font-style: normal;
        box-shadow: 0 2px 6px rgba(255, 77, 79, 0.4);
    }
    .jz-sub-vipwrap {
        margin-top: 12px;
    }
    .jz-sub-vipbar {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 8px 10px !important;
        border-radius: 8px;
        color: #fff !important;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: opacity 0.25s;
    }
    .jz-sub-vipbar:hover {
        opacity: 0.85;
    }
    .jz-sub-vipbar.is-try {
        background: linear-gradient(135deg, #ff5f57, #ff9500) !important;
    }
    .jz-sub-vipbar-exp {
        font-size: 12px;
        font-weight: 400;
        opacity: 0.92;
    }
    .jz-sub-divider {
        height: 1px;
        background: rgba(136, 136, 136, 0.16);
        margin: 12px 0 2px;
    }
    .jz-sub-links {
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        margin-top: 10px;
    }
    .jz-sub-links > a {
        flex-direction: column !important;
        align-items: center !important;
        min-width: 56px;
        padding-top: 6px;
        transition: opacity 0.25s;
    }
    .jz-sub-links > a:hover {
        opacity: 0.7;
    }
    .jz-sub-ico {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        margin-bottom: 6px;
        transition: background 0.25s;
    }
    .jz-sub-links > a:hover .jz-sub-ico {
        filter: brightness(1.06);
    }
    .jz-sub-links > a > span:last-child {
        font-size: 12px;
    }
    .joe_header__user-dropdown .c-blue { color: #3e8ef7 !important; }
    .joe_header__user-dropdown .c-purple { color: #8e44ec !important; }
    .joe_header__user-dropdown .c-green { color: #28c76f !important; }
    .joe_header__user-dropdown .c-red { color: #ff4d4f !important; }
    .joe_header__user-dropdown .c-yellow { color: #f5a623 !important; }
    .jz-sub-ico.c-blue { background: rgba(62, 142, 247, 0.12); }
    .jz-sub-ico.c-purple { background: rgba(142, 68, 236, 0.12); }
    .jz-sub-ico.c-green { background: rgba(40, 199, 111, 0.12); }
    .jz-sub-ico.c-red { background: rgba(255, 77, 79, 0.12); }
    .jz-sub-ico.c-yellow { background: rgba(245, 166, 35, 0.16); }
    html[data-night='night'] .joe_header__user-dropdown {
        background: rgba(41, 42, 45, 0.96);
        border-color: rgba(255, 255, 255, 0.08);
    }
    html[data-night='night'] .jz-sub-usermeta b { color: #e5eef7; }
    html[data-night='night'] .jz-sub-uid { color: #94a3b8; }
    html[data-night='night'] .jz-sub-divider { background: rgba(255, 255, 255, 0.1); }
    html[data-night='night'] .jz-sub-msgicon { background: rgba(255, 255, 255, 0.12); color: #e5eef7 !important; }
    html[data-night='night'] .jz-sub-msgicon badge { border-color: #292a2d; }
        .comment-vip-id { display: inline-flex; align-items: center; vertical-align: middle; margin-left: 6px; }
        .joe-author-vip-id { display: inline-flex; align-items: center; vertical-align: middle; margin-left: 6px; }
/* 用户下拉资料卡头部 */
        .joe_header__user-dropdown-head {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 12px 10px;
            border-bottom: 1px solid rgba(228, 234, 244, 0.9);
            margin-bottom: 6px;
            background: linear-gradient(135deg, rgba(64, 158, 255, 0.07), rgba(150, 140, 255, 0.07));
            border-radius: 10px 10px 0 0;
        }
        .joe_header__user-dropdown-head .avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--theme);
            flex: 0 0 auto;
        }
        .joe_header__user-dropdown-head .info {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }
        .joe_header__user-dropdown-head .name {
            font-size: 14px;
            font-weight: 700;
            color: var(--main);
            line-height: 1.2;
        }
        .joe_header__user-dropdown-head .id { line-height: 1; }
        .joe_header__slideout-author .info { display: flex; flex-direction: column; gap: 6px; }
