            :root {
            --primary-gradient: linear-gradient(135deg, #6c5ce7, #a29bfe, #fd79a8);
            --deep-gradient: linear-gradient(135deg, #2d3436, #434a4e, #1e272e);
            --blue: #3b82f6;
            --purple: #8b5cf6;
            --pink: #ec4899;
            --green: #10b981;
            --orange: #f59e0b;
            --dark-bg: #1a1a2e;
            --dark-card: #16213e;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5e;
            --text-light: #f5f5f7;
            --text-muted: #9ca3af;
            --card-bg: #ffffff;
            --border-color: #e8e8ef;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --max-width: 1200px;
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background: #fafafa;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ========== 导航栏 ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: var(--transition);
        }
        .navbar.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.95);
        }
        .navbar-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            height: 64px;
        }
        .navbar-logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            white-space: nowrap;
            position: relative;
            z-index: 1002;
        }
        .navbar-logo span {
            font-weight: 300;
            font-size: 0.85rem;
            letter-spacing: 2px;
            margin-left: 6px;
            color: var(--text-muted);
            -webkit-text-fill-color: var(--text-muted);
        }
        .nav-toggle {
            display: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1002;
            border: none;
            background: transparent;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        .nav-toggle-bar {
            display: block;
            width: 22px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 2px;
            margin: 4px auto;
            transition: var(--transition);
            transform-origin: center;
        }
        #nav-checkbox {
            display: none;
        }
        #nav-checkbox:checked~.nav-toggle .nav-toggle-bar:nth-child(1) {
            transform: translateY(6.5px) rotate(45deg);
        }
        #nav-checkbox:checked~.nav-toggle .nav-toggle-bar:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        #nav-checkbox:checked~.nav-toggle .nav-toggle-bar:nth-child(3) {
            transform: translateY(-6.5px) rotate(-45deg);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }
        .nav-menu a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: var(--transition);
            position: relative;
            padding: 4px 0;
            white-space: nowrap;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            border-radius: 2px;
            transition: var(--transition);
        }
        .nav-menu a:hover {
            color: var(--text-primary);
        }
        .nav-menu a:hover::after {
            width: 100%;
        }

        /* ========== 底部 ========== */
        .footer {
            background: var(--dark-bg);
            color: var(--text-muted);
            padding: 40px 24px 24px;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
        }
        .footer-logo {
            font-size: 1.2rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .footer-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--text-light);
        }
        .footer-copy {
            font-size: 0.78rem;
            letter-spacing: 1px;
            opacity: 0.6;
        }
        .footer-copy a {
            color: inherit;
            text-decoration: none;
        }
        .footer-copy a:hover {
            text-decoration: underline;
        }

        /* ========== 主容器 ========== */
        .main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 88px 24px 0;
        }

        /* ========== 面包屑导航 ========== */
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--text-primary);
        }
        .breadcrumb .separator {
            color: #c0c0d0;
            user-select: none;
        }
        .breadcrumb .current {
            color: var(--text-primary);
            font-weight: 500;
        }

        /* ========== 两列主布局 ========== */
        .content-columns {
            display: flex;
            gap: 32px;
            align-items: flex-start;
        }
        .main-column {
            flex: 1;
            min-width: 0;
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 28px 32px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }
        .sidebar-column {
            width: 340px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        /* ========== 文章标题区（含缩略图） ========== */
        .article-header {
            display: flex;
            gap: 24px;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            align-items: flex-start;
        }
        .article-thumb {
            flex-shrink: 0;
            width: 200px;
            height: 138px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            box-shadow: var(--shadow-sm);
        }
        .article-header-info {
            flex: 1;
            min-width: 0;
        }

        /* ========== 文章标题 ========== */
        .article-title {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.3;
            margin-bottom: 12px;
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            color: var(--text-primary);
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 0.85rem;
            color: var(--text-muted);
            /* 移除原来的底部边距和边框，由 .article-header 统一处理 */
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .article-meta .publish-time {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .article-meta .publish-time::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #a29bfe;
        }
        .article-meta .read-count {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .article-meta .read-count::before {
            content: '👁';
            font-size: 0.8rem;
        }

        /* ========== 文章正文 ========== */
        .article-body {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .article-body h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 32px 0 16px;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            padding-left: 14px;
            position: relative;
            border-left: 4px solid var(--primary-gradient);
        }
        .article-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            border-radius: 4px;
            background: var(--primary-gradient);
        }
        .article-body h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 12px;
            color: var(--text-primary);
        }
        .article-body p {
            margin-bottom: 16px;
        }
        .article-body strong {
            color: var(--text-primary);
            font-weight: 700;
        }
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-sm);
            margin: 24px 0;
            display: block;
            box-shadow: var(--shadow-sm);
        }
        .article-body ul {
            list-style: none;
            padding-left: 0;
            margin: 16px 0;
            counter-reset: article-list-counter;
        }
        .article-body ul li {
            counter-increment: article-list-counter;
            position: relative;
            padding-left: 28px;
            margin-bottom: 10px;
            line-height: 1.7;
        }
        .article-body ul li::before {
            content: counter(article-list-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            background: var(--primary-gradient);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.9rem;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .article-body table thead {
            background: var(--dark-bg);
            color: #fff;
        }
        .article-body table th {
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .article-body table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-color);
            background: #fff;
        }
        .article-body table tbody tr:last-child td {
            border-bottom: none;
        }
        .article-body table tbody tr:hover td {
            background: #f8f8ff;
        }

        /* ========== 相关文章 ========== */
        .related-section {
            margin-top: 40px;
            padding-top: 24px;
            border-top: 2px solid var(--border-color);
        }
        .related-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .related-title::before {
            content: '';
            width: 4px;
            height: 22px;
            background: var(--primary-gradient);
            border-radius: 4px;
        }
        .related-list {
            list-style: none;
            counter-reset: related-counter;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .related-list li {
            counter-increment: related-counter;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 12px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            cursor: pointer;
            background: #fafafa;
        }
        .related-list li:hover {
            background: #f0f0f8;
        }
        .related-list li::before {
            content: counter(related-counter);
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            margin-top: 2px;
        }
        .related-item-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .related-item-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            line-height: 1.5;
            transition: color var(--transition);
        }
        .related-item-title:hover {
            color: #6c5ce7;
        }
        .related-item-time {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ========== 侧边栏通用列表 ========== */
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }
        .widget-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-color);
        }
        .widget-title {
            font-size: 1rem;
            font-weight: 700;
            position: relative;
            padding-left: 14px;
        }
        .widget-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 18px;
            border-radius: 3px;
            background: var(--primary-gradient);
        }
        .widget-list {
            list-style: none;
            counter-reset: side-counter;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .widget-list li {
            counter-increment: side-counter;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 8px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            cursor: pointer;
        }
        .widget-list li:hover {
            background: rgba(0, 0, 0, 0.03);
        }
        .widget-list li::before {
            content: counter(side-counter);
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: #fff;
            margin-top: 2px;
        }
        .widget-latest .widget-list li::before {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
        }
        .widget-hot .widget-list li::before {
            background: linear-gradient(135deg, #fdcb6e, #fd79a8);
            color: #1a1a2e;
        }
        .widget-featured .widget-list li::before {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
            color: #1a1a2e;
        }
        .widget-recommend .widget-list li::before {
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
        }
        .widget-list .side-title {
            flex: 1;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-primary);
            text-decoration: none;
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            line-height: 1.5;
            transition: color var(--transition);
        }
        .widget-list .side-title:hover {
            color: #6c5ce7;
        }

        /* ========== 响应式设计 ========== */
        @media (max-width: 992px) {
            .content-columns {
                flex-direction: column;
            }
            .sidebar-column {
                width: 100%;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 16px;
            }
            .sidebar-widget {
                flex: 1 1 calc(50% - 16px);
                min-width: 250px;
            }
            .main-column {
                padding: 20px 16px;
            }
        }

        @media (max-width: 768px) {
            .navbar-inner {
                padding: 0 16px;
                height: 56px;
            }
            .navbar-logo {
                font-size: 1.3rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #ffffff;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 80px 28px 40px;
                gap: 20px;
                box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
                transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1001;
                border-radius: 0 0 0 24px;
            }
            .nav-menu a {
                font-size: 1.05rem;
                font-weight: 600;
                color: var(--text-primary);
            }
            #nav-checkbox:checked~.nav-menu {
                right: 0;
            }
            .main {
                padding: 72px 12px 0;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px;
            }

            /* 移动端标题区改为纵向排列 */
            .article-header {
                flex-direction: column;
                gap: 16px;
                align-items: stretch;
            }
            .article-thumb {
                width: 100%;
                height: auto;
                aspect-ratio: 200 / 138;
                object-fit: cover;
            }
            .article-title {
                font-size: 1.5rem;
            }
            .article-meta {
                font-size: 0.75rem;
                gap: 12px;
                flex-wrap: wrap;
            }
            .article-body {
                font-size: 0.9rem;
            }
            .article-body h2 {
                font-size: 1.3rem;
            }
            .article-body h3 {
                font-size: 1.1rem;
            }
            .article-body table {
                font-size: 0.8rem;
            }
            .article-body table th,
            .article-body table td {
                padding: 8px 10px;
            }
            .related-list li::before {
                width: 20px;
                height: 20px;
                font-size: 0.65rem;
            }
            .sidebar-column {
                flex-direction: column;
                gap: 16px;
            }
            .sidebar-widget {
                flex: 1 1 100%;
            }
            .widget-list li::before {
                width: 20px;
                height: 20px;
                font-size: 0.65rem;
            }
            .widget-list .side-title {
                font-size: 0.8rem;
            }
            .footer {
                padding: 28px 16px 16px;
                margin-top: 40px;
            }
            .footer-links {
                gap: 14px;
            }
        }

        @media (max-width: 480px) {
            .main-column {
                padding: 16px 12px;
            }
            .article-title {
                font-size: 1.3rem;
            }
            .related-list li {
                padding: 8px 10px;
                gap: 8px;
            }
        }