/* === 纸飞机操作指南 专属样式表 === */
:root {
    --accent-color: #0088cc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-aside: #f8fafc;
    --bg-main: #ffffff;
    --border-line: #e2e8f0;
    --step-bg: #fdfdfd;
    --hover-shadow: 0 10px 25px rgba(0,136,204,0.04);
    --radius-md: 12px;
    --radius-sm: 8px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif; color: var(--text-dark); background: var(--bg-main); line-height: 1.6; }

/* 侧边栏（与首页完全一致） */
.app-container { display: flex; min-height: 100vh; }
aside { width: 340px; background: var(--bg-aside); border-right: 1px solid var(--border-line); padding: 40px 30px; display: flex; flex-direction: column; justify-content: space-between; position: fixed; top: 0; bottom: 0; left: 0; z-index: 10; overflow-y: auto; }
.brand-section .logo-link { font-size: 24px; font-weight: 800; color: var(--accent-color); text-decoration: none; display: flex; align-items: center; gap: 8px; letter-spacing: -0.5px; }
.brand-section .site-intro { font-size: 13px; color: var(--text-muted); margin-top: 15px; text-align: justify; line-height: 1.7; }

.side-nav { margin-top: 40px; }
.side-nav ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.side-nav a { display: flex; align-items: center; justify-content: space-between; text-decoration: none; color: #334155; font-weight: 600; font-size: 14px; padding: 10px 14px; border-radius: var(--radius-sm); transition: all 0.2s; }
.side-nav a:hover, .side-nav a.active { background: #fff; color: var(--accent-color); box-shadow: 0 4px 12px rgba(15,23,42,0.03); }
.side-nav a::after { content: "→"; opacity: 0; transform: translateX(-5px); transition: all 0.2s; font-weight: 400; }
.side-nav a:hover::after, .side-nav a.active::after { opacity: 1; transform: translateX(0); }

.aside-meta { font-size: 12px; color: #94a3b8; border-top: 1px solid var(--border-line); padding-top: 25px; }
.aside-meta a { color: var(--text-muted); text-decoration: none; display: inline-block; margin-bottom: 6px; transition: color 0.2s; }
.aside-meta a:hover { color: var(--accent-color); }
.aside-meta p { margin-top: 8px; line-height: 1.5; }

/* 主内容区域 */
main { margin-left: 340px; flex: 1; padding: 60px 80px; max-width: 1100px; }

.breadcrumb-trail { font-size: 13px; color: var(--text-muted); margin-bottom: 30px; }
.breadcrumb-trail a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-trail a:hover { color: var(--accent-color); }

.view-header { margin-bottom: 40px; border-bottom: 1px solid var(--border-line); padding-bottom: 24px; }
.view-header h1 { font-size: 34px; font-weight: 800; letter-spacing: -1px; color: var(--text-dark); line-height: 1.3; margin-bottom: 12px; }
.view-header .post-meta { font-size: 13px; color: var(--text-muted); }

/* 文章通用样式 */
.guide-body h2 { font-size: 24px; font-weight: 800; color: var(--text-dark); margin-top: 40px; margin-bottom: 16px; padding-left: 14px; border-left: 4px solid var(--accent-color); }
.guide-body p { font-size: 15px; color: #334155; margin-bottom: 18px; text-align: justify; line-height: 1.8; }
.guide-body a { color: var(--accent-color); text-decoration: none; font-weight: 500; }
.guide-body a:hover { text-decoration: underline; }

/* 步骤卡片（原有样式保留） */
.timeline-box { background: var(--step-bg); border: 1px solid var(--border-line); border-radius: var(--radius-md); padding: 28px; margin: 24px 0; }
.timeline-box h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.timeline-box h3 span { background: var(--accent-color); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; font-size: 11px; font-weight: bold; }
.timeline-box ul, .timeline-box ol { margin-left: 20px; color: #475569; font-size: 14.5px; }
.timeline-box li { margin-bottom: 10px; }
.timeline-box p { margin-bottom: 0; color: #334155; font-size: 14.5px; line-height: 1.8; }

/* 效率提示卡片网格（新增） */
.quick-tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0; }
.tip-card { background: var(--card-bg, #fff); border: 1px solid var(--border-line); border-radius: var(--radius-md); padding: 22px; transition: all 0.2s; }
.tip-card:hover { border-color: var(--accent-color); box-shadow: var(--hover-shadow); }
.tip-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.tip-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.tip-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }
.tip-card strong, .tip-card em, .tip-card code { font-family: inherit; background: #f1f5f9; padding: 1px 4px; border-radius: 3px; font-size: 0.9em; }
.tip-card code { font-family: monospace; background: #e2e8f0; }

/* 隐私设置表格（新增） */
.privacy-table { width: 100%; border-collapse: collapse; margin: 25px 0; font-size: 14px; }
.privacy-table thead th { background: #f8fafc; padding: 12px 16px; text-align: left; font-weight: 700; color: var(--text-dark); border-bottom: 2px solid var(--border-line); }
.privacy-table tbody td { padding: 12px 16px; border-bottom: 1px dashed #f1f5f9; color: #334155; }
.privacy-table tbody tr:last-child td { border-bottom: none; }
.privacy-table tbody tr:hover { background: #f8fafc; }

/* 警告卡片（原有样式保留） */
.alert-callout { background: #fff5f5; border-left: 4px solid #ef4444; padding: 20px; border-radius: 0 12px 12px 0; margin: 28px 0; font-size: 14.5px; color: #991b1b; line-height: 1.7; }
.alert-callout strong { color: #7f1d1d; }
.alert-callout a { color: var(--accent-color); font-weight: 600; }

/* 响应式设计 */
@media (max-width: 1024px) {
    aside { width: 260px; padding: 30px 20px; }
    main { margin-left: 260px; padding: 40px 40px; }
    .quick-tips-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .app-container { flex-direction: column; }
    aside { width: 100%; position: relative; border-right: none; border-bottom: 1px solid var(--border-line); padding: 30px 20px; }
    .side-nav { margin-top: 20px; }
    .side-nav ul { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .side-nav a { padding: 6px 12px; font-size: 13px; }
    .side-nav a::after { display: none; }
    main { margin-left: 0; padding: 30px 20px; }
    .view-header h1 { font-size: 26px; }
    .quick-tips-grid { grid-template-columns: 1fr; }
    .privacy-table { font-size: 12px; }
}