
    /* 容器样式隔离 */
    #guide-content {
        --primary-blue: #0056b3;
        --secondary-blue: #e3f2fd;
        --accent-orange: #ff9800;
        --text-dark: #333333;
        --text-light: #555555;
        --white: #ffffff;
        --border-color: #dee2e6;
        
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: var(--text-dark);
        background-color: #f9f9f9;
        /* 给整个区域加个边框和圆角，像一个独立的文档卡片 */
        border: 1px solid #eee; 
        border-radius: 8px;
        margin-top: 20px;
        overflow: hidden; /* 防止子元素溢出圆角 */
    }

    #guide-content * {
        box-sizing: border-box;
    }

    /* 内部 Header 样式 */
    #guide-content header {
        background-color: var(--primary-blue);
        color: var(--white);
        padding: 30px 20px;
        text-align: center;
    }

    #guide-content header h1 {
        font-size: 28px; /* 大标题稍微大一点 */
        margin: 0 0 10px 0;
        font-weight: 700;
        color: #fff; /* 强制白色 */
        line-height: 1.2;
    }

    #guide-content header p {
        font-size: 16px;
        color: var(--accent-orange);
        font-weight: 600;
        margin: 0;
        opacity: 1;
    }

    /* 内部导航栏样式 */
    #guide-content nav {
        background-color: #004494;
        padding: 10px 0;
        /* 注意：在嵌入式内容中，sticky 可能受父元素 overflow 影响失效，视具体网站结构而定 */
        position: sticky; 
        top: 0;
        z-index: 100;
    }

    #guide-content nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin: 0;
        padding: 0;
    }

    #guide-content nav a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        padding: 5px 10px;
        transition: color 0.3s;
        border-radius: 4px;
    }

    #guide-content nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--accent-orange);
    }

    /* 主要内容区域 */
    #guide-content .inner-content {
        padding: 20px;
    }

    /* 章节通用样式 */
    #guide-content section {
        background: var(--white);
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        border-top: 4px solid var(--accent-orange);
        /* 添加 scroll-margin-top 确保点击导航时标题不被遮挡 */
        scroll-margin-top: 60px; 
    }

    /* 标题样式 */
    #guide-content h2 {
        color: var(--primary-blue);
        font-size: 22px; /* 您要求的 22px */
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 20px;
        border-bottom: 2px solid var(--secondary-blue);
        padding-bottom: 10px;
        line-height: 1.4;
    }

    #guide-content h3 {
        color: #003d80;
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    #guide-content h4 {
        color: var(--text-dark);
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 8px;
        font-weight: 700;
    }

    #guide-content p {
        margin-bottom: 15px;
        color: var(--text-light);
        text-align: justify;
    }

    #guide-content ul, #guide-content ol {
        margin-left: 20px;
        margin-bottom: 15px;
        color: var(--text-light);
    }

    /* 卡片网格 */
    #guide-content .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    #guide-content .card {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        padding: 20px;
        transition: transform 0.2s;
    }

    #guide-content .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: var(--accent-orange);
    }

    #guide-content .card h4 {
        color: var(--primary-blue);
    }

    /* 表格 */
    #guide-content .table-responsive {
        overflow-x: auto;
        margin: 20px 0;
    }

    #guide-content table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
    }

    #guide-content th, #guide-content td {
        padding: 10px 12px;
        border: 1px solid var(--border-color);
        text-align: left;
    }

    #guide-content th {
        background-color: var(--primary-blue);
        color: var(--white);
    }

    #guide-content tr:nth-child(even) {
        background-color: #f8f9fa;
    }

    /* 提示框 */
    #guide-content .highlight-box {
        background-color: var(--secondary-blue);
        border-left: 5px solid var(--primary-blue);
        padding: 15px;
        margin: 20px 0;
        border-radius: 4px;
    }

    #guide-content .warning-box {
        background-color: #fff3e0;
        border-left: 5px solid var(--accent-orange);
        padding: 15px;
        margin: 20px 0;
        border-radius: 4px;
    }

    #guide-content .quote {
        font-size: 18px;
        font-weight: bold;
        color: var(--accent-orange);
        text-align: center;
        font-style: italic;
        margin: 10px 0;
    }

    /* 步骤列表 */
    #guide-content .step-list {
        counter-reset: step;
        list-style: none;
        padding: 0;
    }

    #guide-content .step-list li {
        position: relative;
        padding-left: 45px;
        margin-bottom: 15px;
    }

    #guide-content .step-list li::before {
        counter-increment: step;
        content: counter(step);
        position: absolute;
        left: 0;
        top: 0;
        width: 32px;
        height: 32px;
        background-color: var(--accent-orange);
        color: var(--white);
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        font-weight: bold;
        font-size: 14px;
    }

    /* 手机适配 */
    @media (max-width: 768px) {
        #guide-content nav ul { flex-direction: column; align-items: center; gap: 8px; }
        #guide-content header h1 { font-size: 24px; }
        #guide-content .card-grid { grid-template-columns: 1fr; }
        #guide-content section { padding: 15px; }
    }
