        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', Courier, monospace;
        }

        :root {
            --primary-color: #8B0000; /* 暗红色 */
            --primary-dark: #600000; /* 深暗红色 */
            --primary-light: #A52A2A; /* 浅暗红色 */
            --secondary-color: #F5F5DC; /* 米黄色 */
            --secondary-dark: #E8E8C8; /* 深米黄色 */
            --secondary-light: #FFFEF0; /* 浅米黄色 */
            --text-color: #2D2D2D; /* 主文本颜色 */
            --text-light: #4A4A4A; /* 浅文本颜色 */
            --accent-color: #D4AF37; /* 金色强调 */
            --redacted-bg: #1a1a1a; /* 已编辑内容背景 */
            --memory-bg: rgba(173, 216, 230, 0.1); /* 回忆背景色 */
            --reality-bg: rgba(220, 20, 60, 0.05); /* 现实背景色 */
            --dream-bg: rgba(255, 182, 193, 0.1); /* 梦境背景色 */
            --header-font: 'Courier New', Courier, monospace;
            --body-font: 'Courier New', Courier, monospace;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
            background-color: var(--secondary-color);
            position: relative;
        }

        /* 通用容器样式 */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* 导航栏样式 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--accent-color);
        }

        .navbar.scrolled {
            background-color: rgba(139, 0, 0, 0.95);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-family: var(--header-font);
            letter-spacing: 1px;
            position: relative;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
            border-radius: 5px;
            border: 1px solid var(--accent-color);
        }

        .security-level {
            position: absolute;
            bottom: -15px;
            left: 50px;
            font-size: 0.7rem;
            color: var(--accent-color);
            background-color: var(--primary-dark);
            padding: 2px 8px;
            border-radius: 3px;
            font-family: 'Courier New', Courier, monospace;
            letter-spacing: 0.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
            font-family: var(--header-font);
            letter-spacing: 0.5px;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--accent-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--secondary-color);
        }

        /* 主内容区样式 */
        main {
            padding-top: 80px;
            min-height: 100vh;
        }

        /* 文档头部样式 */
        .document-header {
            background-color: var(--secondary-dark);
            padding: 60px 0 40px;
            border-bottom: 2px solid var(--primary-color);
            position: relative;
        }

        .document-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .document-number, .document-clearance, .document-version {
            font-size: 0.85rem;
            color: var(--primary-color);
            background-color: rgba(139, 0, 0, 0.1);
            padding: 5px 10px;
            border-radius: 3px;
            font-family: 'Courier New', Courier, monospace;
            letter-spacing: 0.5px;
        }

        .document-header h1 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--header-font);
        }

        .subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 20px;
            font-family: var(--header-font);
            letter-spacing: 0.5px;
        }

        .guidance-notice {
            background-color: rgba(139, 0, 0, 0.1);
            border-left: 3px solid var(--primary-color);
            padding: 10px 15px;
            display: flex;
            align-items: flex-start;
            margin-top: 20px;
        }

        .guidance-notice i {
            margin-right: 10px;
            margin-top: 3px;
            color: var(--primary-color);
        }

        /* 文档内容样式 */
        .document-content {
            background-color: white;
            padding: 50px 0;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        }

        .document-content .container {
            max-width: 900px;
        }

        .document-content p {
            margin-bottom: 20px;
            line-height: 1.8;
            text-indent: 2em;
        }

        .document-content h2 {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
            font-family: var(--header-font);
        }

        /* 现实与回忆的区分样式 */
        .reality-section {
            background-color: var(--reality-bg);
            padding: 20px;
            border-left: 4px solid #DC143C;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }

        .reality-section::before {
            content: "现实";
            position: absolute;
            top: -10px;
            left: 15px;
            background-color: #DC143C;
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .memory-section {
            background-color: var(--memory-bg);
            padding: 20px;
            border-left: 4px solid #4682B4;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }

        .memory-section::before {
            content: "回忆";
            position: absolute;
            top: -10px;
            left: 15px;
            background-color: #4682B4;
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .dream-section {
            background-color: var(--dream-bg);
            padding: 20px;
            border-left: 4px solid #FFB6C1;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }

        .dream-section::before {
            content: "幻境";
            position: absolute;
            top: -10px;
            left: 15px;
            background-color: #FFB6C1;
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* 对话样式 */
        .dialogue {
            margin: 15px 0;
            padding: 15px 20px;
            background-color: rgba(245, 245, 220, 0.3);
            border-left: 3px solid var(--accent-color);
            border-radius: 0 5px 5px 0;
            font-style: italic;
        }

        .dialogue-inner {
            color: var(--primary-color);
            font-weight: bold;
        }

        /* 内心独白样式 */
        .inner-monologue {
            font-style: italic;
            color: var(--text-light);
            background-color: rgba(139, 0, 0, 0.05);
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            border: 1px dashed var(--primary-light);
        }

        /* 情感强烈段落 */
        .emotional-intense {
            background-color: rgba(220, 20, 60, 0.08);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border: 2px solid rgba(220, 20, 60, 0.2);
            position: relative;
        }

        .emotional-intense::before {
            content: "";
            position: absolute;
            left: -2px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #DC143C, #8B0000);
        }

        /* 医疗场景样式 */
        .medical-scene {
            background-color: rgba(255, 255, 255, 0.9);
            border: 2px solid #B0C4DE;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .medical-dialogue {
            background-color: rgba(176, 196, 222, 0.2);
            padding: 12px;
            border-radius: 5px;
            margin: 10px 0;
            border-left: 3px solid #4682B4;
            font-family: monospace;
        }

        /* 分隔线样式 */
        .section-divider {
            text-align: center;
            margin: 40px 0;
            position: relative;
        }

        .section-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--accent-color), transparent);
        }

        .section-divider span {
            background-color: white;
            padding: 0 20px;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* 作者署名样式 */
        .author-signature {
            text-align: right;
            margin-top: 40px;
            padding: 15px 20px;
            background-color: rgba(139, 0, 0, 0.05);
            border-radius: 5px;
            font-style: italic;
            color: var(--text-light);
        }

        /* 投票区域样式 */
        .voting-section {
            background-color: var(--secondary-dark);
            padding: 20px 0;
            text-align: center;
            border-top: 2px solid var(--primary-color);
        }

        .vote-info {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .vote-count {
            font-weight: bold;
            color: var(--primary-color);
            font-size: 1.3rem;
        }

        .vote-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: var(--header-font);
        }

        .vote-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .vote-button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        /* 评论区样式 */
        .comments-section {
            background-color: white;
            padding: 40px 0;
            border-top: 1px solid #e0e0e0;
        }

        .comments-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-color);
        }

        .comments-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            font-family: var(--header-font);
        }

        .comments-count {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* 评论输入区域 */
        .comment-input-section {
            background-color: var(--secondary-light);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            border: 1px solid #e0e0e0;
        }

        .comment-textarea {
            width: 100%;
            min-height: 100px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: var(--body-font);
            font-size: 0.95rem;
            resize: vertical;
            background-color: white;
        }

        .comment-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 5px rgba(139, 0, 0, 0.2);
        }

        .comment-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .comment-author-input {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-family: var(--body-font);
            font-size: 0.9rem;
            width: 200px;
        }

        .comment-submit {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-family: var(--header-font);
            transition: background-color 0.3s ease;
        }

        .comment-submit:hover {
            background-color: var(--primary-dark);
        }

        /* 评论列表 */
        .comments-list {
            margin-top: 30px;
        }

        .comment {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 1px solid #f0f0f0;
        }

        .comment-author {
            font-weight: bold;
            color: var(--primary-color);
            font-size: 0.95rem;
        }

        .comment-date {
            color: var(--text-light);
            font-size: 0.85rem;
        }

        .comment-content {
            color: var(--text-color);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .comment-actions-bar {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .comment-like, .comment-reply {
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
        }

        .comment-like:hover, .comment-reply:hover {
            color: var(--primary-color);
        }

        .comment-like.liked {
            color: var(--primary-color);
        }

        /* 回复区域 */
        .replies {
            margin-top: 15px;
            margin-left: 30px;
            border-left: 3px solid var(--secondary-dark);
            padding-left: 20px;
        }

        .reply {
            background-color: var(--secondary-light);
            border: 1px solid #e8e8e8;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 10px;
        }

        .reply-input {
            margin-top: 15px;
            display: none;
        }

        .reply-input.active {
            display: block;
        }

        .reply-textarea {
            width: 100%;
            min-height: 80px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-family: var(--body-font);
            font-size: 0.9rem;
            resize: vertical;
        }

        .reply-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
        }

        .reply-author-input {
            padding: 6px 10px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-family: var(--body-font);
            font-size: 0.85rem;
            width: 150px;
        }

        .reply-submit, .reply-cancel {
            padding: 6px 12px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-size: 0.85rem;
        }

        .reply-submit {
            background-color: var(--primary-color);
            color: white;
            margin-right: 8px;
        }

        .reply-cancel {
            background-color: #ccc;
            color: #666;
        }

        /* 页脚样式 */
        footer {
            background-color: var(--primary-color);
            color: var(--secondary-light);
            padding: 60px 0 30px;
            border-top: 3px solid var(--accent-color);
            position: relative;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 25px;
            padding-right: 30px;
        }

        .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
            color: var(--accent-color);
            font-family: var(--header-font);
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }

        .metadata-info p {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }

        .metadata-info i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }

        /* 动画效果 */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: all 0.5s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .document-header h1 {
                font-size: 1.8rem;
            }
            
            .document-meta {
                flex-direction: column;
            }

            .replies {
                margin-left: 15px;
                padding-left: 15px;
            }

            .comment-actions {
                flex-direction: column;
                gap: 10px;
                align-items: stretch;
            }

            .comment-author-input {
                width: 100%;
            }
        }