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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f5f7f5;
    font-size: 16px;
}

/* Header & Navigation */
body > header {
    background: linear-gradient(135deg, #1e4620 0%, #2d5a27 50%, #3a7d32 100%);
    color: white;
    padding: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

body {
    
}

.site-header nav,
header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo h1 {
    font-size: 1.35rem;
    font-weight: 700;
}

.logo h1 a {
    color: white;
    text-decoration: none;
}

.logo span {
    color: #a8e063;
    font-weight: 500;
}

.nav-links,
.main-nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
}

.nav-links a,
.main-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover,
.main-nav a:hover {
    background: rgba(255,255,255,0.12);
    color: white;
}

.nav-links a.active,
.main-nav a.active {
    background: rgba(168,224,99,0.2);
    color: #a8e063;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e4620 0%, #2d5a27 50%, #3a7d32 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;

    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(168,224,99,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(58,125,50,0.3) 0%, transparent 40%);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* Section Title */
.section-title {
    font-size: 1.6rem;
    color: #1e4620;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #a8e063;
    display: inline-block;
    font-weight: 700;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30,70,32,0.15);
    border-color: rgba(168,224,99,0.3);
}

.card h3 {
    color: #1e4620;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.card .icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

/* Article List */
.article-list {
    margin-top: 20px;
}

.article-item {
    background: white;
    padding: 24px 28px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.article-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateX(4px);
}

.article-item h3 {
    color: #1e4620;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.article-item h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.article-item h3 a:hover {
    color: #3a7d32;
}

.article-item .meta {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.article-item .meta span {
    display: inline-block;
}

.article-item .excerpt {
    color: #555;
    line-height: 1.7;
}

/* Footer */
footer,
.site-footer {
    background: #1a2e18;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 32px 24px;
    margin-top: 60px;
}

.site-footer p,
footer p {
    margin-bottom: 6px;
}

/* ==================== 文章页样式 ==================== */
.article {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}

.article-header {
    padding: 48px 48px 32px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #f8faf6 0%, #f0f7ec 100%);
}

.article-header h1 {
    font-size: 2rem;
    color: #1e4620;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.article-header .meta {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.article-header .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-content {
    padding: 40px 48px;
}

/* TOC 目录 */
.toc {
    background: #f8faf6;
    border: 1px solid #e0ebe0;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 32px;
}

.toc h3 {
    color: #1e4620;
    margin-bottom: 14px;
    font-size: 1.15rem;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #a8e063;
    display: inline-block;
}

.toc ul {
    list-style: none;
    margin-left: 0;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: #3a7d32;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: block;
    padding: 4px 8px;
    border-radius: 6px;
}

.toc a:hover {
    background: #e8f5e0;
    color: #1e4620;
}

.toc > ul > li > a {
    font-weight: 600;
    color: #2d5a27;
}

/* 内容标题 */
.article-content h2 {
    color: #1e4620;
    margin-top: 40px;
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 700;
    padding-left: 16px;
    border-left: 4px solid #a8e063;
    line-height: 1.4;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    color: #2d5a27;
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 6px;
    border-bottom: 2px solid #e8f5e0;
}

.article-content h4 {
    color: #3a7d32;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 16px;
    color: #444;
    line-height: 1.85;
    font-size: 1rem;
}

.article-content ul,
.article-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.article-content li {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.75;
}

.article-content ul li {
    list-style-type: disc;
}

.article-content ol li {
    list-style-type: decimal;
}

/* 产品卡片 */
.product-card {
    background: linear-gradient(135deg, #f8faf6 0%, #f0f7ec 100%);
    border: 1px solid #d4e8d0;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(30,70,32,0.1);
    border-color: #a8e063;
}

.product-card h4 {
    color: #1e4620;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-card ul {
    margin-bottom: 0;
}

.product-card li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.product-card li strong {
    color: #2d5a27;
    font-weight: 600;
}

/* 表格 */
.table-container {
    overflow-x: auto;
    margin: 16px 0;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.compare-table {
    border-collapse: collapse;
    font-size: 0.92rem;
}

.compare-table th {
    background: linear-gradient(135deg, #2d5a27 0%, #3a7d32 100%);
    color: white;
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
}

.compare-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e8f0e6;
    color: #444;
}

.compare-table tbody tr:hover {
    background: #f0f7ec;
}

.compare-table tbody tr:nth-child(even) {
    background: #f8faf6;
}

.compare-table tbody tr:nth-child(even):hover {
    background: #eaf3e5;
}

.compare-table td strong {
    color: #1e4620;
    font-weight: 600;
}

/* 提示框 */
.note {
    font-size: 0.88rem;
    color: #888;
    margin-top: 12px;
    padding-left: 8px;
    border-left: 3px solid #ddd;
}

.tip-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-left: 4px solid #ffa726;
    padding: 18px 22px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

.tip-box p {
    margin-bottom: 0;
    color: #795548;
    font-size: 0.95rem;
}

.tip-box strong {
    color: #e65100;
}

.warning-box {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    border-left: 4px solid #e91e63;
    padding: 20px 24px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

.warning-box h4 {
    color: #c2185b;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1rem;
}

.warning-box ul {
    margin-bottom: 0;
}

.warning-box li {
    color: #880e4f;
    font-size: 0.92rem;
}

.conclusion-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 32px;
    border: 1px solid #a5d6a7;
}

.conclusion-box h3 {
    color: #1b5e20;
    margin-top: 0;
    margin-bottom: 14px;
    border-bottom: 2px solid #81c784;
    padding-bottom: 8px;
}

.conclusion-box p {
    color: #2e7d32;
    margin-bottom: 10px;
}

.conclusion-box p:last-child {
    margin-bottom: 0;
}

/* 清单 */
.checklist {
    background: #f8faf6;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 16px 0;
}

.checklist p {
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 12px;
}

.checklist ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}

.checklist li {
    margin-bottom: 8px;
    color: #444;
    font-size: 0.95rem;
}

/* 高亮块 */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
    padding: 16px 20px;
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: #2e7d32;
}

/* 文章列表 */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e8f5e9;
    transition: all 0.2s ease;
    align-items: flex-start;
}

.article-item:hover {
    border-color: #4caf50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.article-date {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
}

.article-info {
    flex: 1;
}

.article-info h3 {
    font-size: 1.1rem;
    color: #1b5e20;
    margin-bottom: 6px;
}

.article-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
}

.article-tag {
    display: inline-block;
    padding: 2px 10px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    border-radius: 12px;
}

/* 响应式 */
@media (max-width: 768px) {
    body {
    }
    
    header nav,
    .site-header nav {
        flex-direction: column;
        height: auto;
        padding: 12px 16px;
        gap: 12px;
    }
    
    .nav-links,
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    
    .nav-links a,
    .main-nav a {
        padding: 6px 12px;
        font-size: 0.88rem;
    }
    
    .hero {
        padding: 48px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .container {
        padding: 24px 16px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .card {
        padding: 20px;
    }
    
    .article-list {
        gap: 12px;
    }
    
    .article-item {
        padding: 16px;
        gap: 14px;
        flex-direction: column;
    }
    
    .article-date {
        width: 48px;
        height: 48px;
        font-size: 0.85rem;
    }
    
    .article-info h3 {
        font-size: 1rem;
    }
    
    .article-header {
        padding: 32px 24px 24px;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
    }
    
    .article-content {
        padding: 24px 20px;
    }
    
    .article-content h2 {
        font-size: 1.25rem;
        margin-top: 28px;
    }
    
    .article-content h3 {
        font-size: 1.1rem;
    }
    
    .toc {
        padding: 18px 20px;
    }
    
    .product-card {
        padding: 16px 18px;
    }
    
    .compare-table {
        font-size: 0.82rem;
    }
    
    .compare-table th,
    .compare-table td {
        padding: 10px 12px;
    }
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 8px 24px rgba(30,70,32,0.12);
    transform: translateY(-4px);
}

.project-logo {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.project-info {
    flex: 1;
}

.project-info h3 {
    color: #1e4620;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.project-info p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tags span {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    
    .project-logo {
        width: 80px;
        height: 80px;
    }
    
    .project-tags {
        justify-content: center;
    }
}

/* Content Page 通用内容页样式 */
.content-page {
    background: white;
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    margin-top: 40px;
    margin-bottom: 40px;
}

.content-page h1 {
    font-size: 1.8rem;
    color: #1e4620;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.4;
}

.content-page h2 {
    color: #1e4620;
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 700;
    padding-left: 16px;
    border-left: 4px solid #a8e063;
    line-height: 1.4;
}

.content-page h3 {
    color: #2d5a27;
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    padding-bottom: 6px;
    border-bottom: 2px solid #f0f7ec;
}

.content-page h4 {
    color: #3a7d32;
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 600;
}

.content-page p {
    margin-bottom: 14px;
    color: #444;
    line-height: 1.85;
    font-size: 1rem;
}

.content-page ul,
.content-page ol {
    margin-left: 24px;
    margin-bottom: 14px;
}

.content-page li {
    margin-bottom: 6px;
    color: #444;
    line-height: 1.75;
}

.content-page strong {
    color: #2d5a27;
    font-weight: 600;
}

/* 内容页表格样式 */
.content-page table {
    border-collapse: collapse;
    margin: 16px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.content-page table th {
    background: linear-gradient(135deg, #2d5a27 0%, #3a7d32 100%);
    color: white;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
}

.content-page table td {
    padding: 10px 16px;
    border-bottom: 1px solid #e8f0e6;
    color: #444;
}

.content-page table tbody tr:hover {
    background: #f0f7ec;
}

.content-page table tbody tr:nth-child(even) {
    background: #f8faf6;
}

.content-page table tbody tr:nth-child(even):hover {
    background: #eaf3e5;
}

@media (max-width: 768px) {
    .content-page {
        padding: 24px 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .content-page h1 {
        font-size: 1.5rem;
    }
    
    .content-page h2 {
        font-size: 1.2rem;
        margin-top: 28px;
    }
    
    .content-page h3 {
        font-size: 1.05rem;
    }
    
    .content-page table {
        font-size: 0.85rem;
    }
    
    .content-page table th,
    .content-page table td {
        padding: 8px 10px;
    }
}

/* 高清图源页面样式 */
.map-source {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
}

.map-source-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.map-source-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.rank {
    background: #28a745;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.tag {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag.free {
    background: #e8f5e9;
    color: #2e7d32;
}

.tag.official {
    background: #e3f2fd;
    color: #1565c0;
}

.tag.third-party {
    background: #fff3e0;
    color: #e65100;
}

.map-source-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
}

.code-block {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 12px 15px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
}

.code-block code {
    color: #4ec9b0;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #218838;
}

.copy-btn.copied {
    background: #6c757d;
}

.tutorial-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tutorial-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tutorial-section h3 {
    color: #333;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.step-list {
    padding-left: 20px;
    margin: 0;
}

.step-list li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.faq-item {
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.faq-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.warning-list {
    padding-left: 20px;
    margin: 0;
}

.warning-list li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

.highlight-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    margin: 15px 0;
    color: #856404;
}

.tip {
    background: #d1ecf1;
    color: #0c5460;
    padding: 10px 15px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 0.9rem;
}

.warn {
    background: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 0.9rem;
}

.hero.small {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #01579b 100%);
    color: white;
    text-align: center;
}

.hero.small h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero.small p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .hero.small h1 {
        font-size: 1.5rem;
    }
    
    .hero.small p {
        font-size: 0.95rem;
    }
    
    .map-source-meta {
        gap: 10px;
        font-size: 0.8rem;
    }
    
    .code-block {
        flex-direction: column;
        align-items: stretch;
    }
    
    .copy-btn {
        width: 100%;
        text-align: center;
    }
}
CSSEOF && echo 'CSS添加成功'


/* 高清图源页面样式 */
.map-source {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
}

.map-source-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.map-source-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.rank {
    background: #28a745;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.tag {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag.free {
    background: #e8f5e9;
    color: #2e7d32;
}

.tag.official {
    background: #e3f2fd;
    color: #1565c0;
}

.tag.third-party {
    background: #fff3e0;
    color: #e65100;
}

.map-source-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
}

.code-block {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 12px 15px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
}

.code-block code {
    color: #4ec9b0;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #218838;
}

.copy-btn.copied {
    background: #6c757d;
}

.tutorial-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tutorial-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tutorial-section h3 {
    color: #333;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.step-list {
    padding-left: 20px;
    margin: 0;
}

.step-list li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.faq-item {
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.faq-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.warning-list {
    padding-left: 20px;
    margin: 0;
}

.warning-list li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

.highlight-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    margin: 15px 0;
    color: #856404;
}

.tip {
    background: #d1ecf1;
    color: #0c5460;
    padding: 10px 15px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 0.9rem;
}

.warn {
    background: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 0.9rem;
}

.hero.small {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #01579b 100%);
    color: white;
    text-align: center;
}

.hero.small h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero.small p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .hero.small h1 {
        font-size: 1.5rem;
    }
    
    .hero.small p {
        font-size: 0.95rem;
    }
    
    .map-source-meta {
        gap: 10px;
        font-size: 0.8rem;
    }
    
    .code-block {
        flex-direction: column;
        align-items: stretch;
    }
    
    .copy-btn {
        width: 100%;
        text-align: center;
    }
}

/* 文章列表样式 */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #e8ede5;
}

.article-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #28a745;
}

.article-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 70px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 8px;
    flex-shrink: 0;
}

.article-date .date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.article-date .date-month {
    font-size: 0.85rem;
    opacity: 0.9;
}

.article-info {
    flex: 1;
    min-width: 0;
}

.article-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #2d3748;
    line-height: 1.5;
}

.article-item:hover .article-info h3 {
    color: #28a745;
}

.article-info p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .article-item {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .article-date {
        flex-direction: row;
        width: 100%;
        height: auto;
        padding: 8px 0;
        gap: 8px;
    }
    
    .article-date .date-day {
        font-size: 1.2rem;
    }
    
    .article-info h3 {
        font-size: 1rem;
    }
    
    .article-info p {
        font-size: 0.88rem;
    }
}

/* 行情报告页面样式 */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-left: 4px solid #28a745;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.highlight-box p {
    margin: 0;
    color: #2e7d32;
    font-weight: 500;
}

.tip-box {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.tip-box p {
    margin-bottom: 8px;
}

.tip-box p:last-child {
    margin-bottom: 0;
}

.warning-box {
    background: #fbe9e7;
    border-left: 4px solid #f44336;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.warning-box h4 {
    color: #c62828;
    margin-bottom: 10px;
    font-size: 1rem;
}

.warning-box ul {
    margin: 0;
    padding-left: 20px;
}

.warning-box li {
    margin-bottom: 6px;
    color: #5d4037;
}

.warning-box li:last-child {
    margin-bottom: 0;
}

.conclusion-box {
    background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.conclusion-box h3 {
    color: #1565c0;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.conclusion-box p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.conclusion-box p:last-child {
    margin-bottom: 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.95rem;
}

.data-table th {
    background: #28a745;
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #e8ede5;
}

.data-table tbody tr:hover {
    background: #f1f8e9;
}

/* 区域卡片网格 */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.region-card {
    background: #f8faf6;
    border: 1px solid #e8ede5;
    border-radius: 10px;
    padding: 18px;
    transition: all 0.3s ease;
}

.region-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #28a745;
    transform: translateY(-2px);
}

.region-card h4 {
    color: #2e7d32;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.region-card p {
    margin-bottom: 6px;
    font-size: 0.92rem;
    color: #555;
}

.region-card p:last-child {
    margin-bottom: 0;
}

.region-card strong {
    color: #333;
}

.checklist {
    background: #f8faf6;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 16px 0;
}

.checklist p {
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 8px;
}

.checklist ul {
    margin-left: 20px;
    margin-bottom: 0;
}

.checklist li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* 目录样式 */
.toc {
    background: #f8faf6;
    border: 1px solid #e8ede5;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 20px 0 30px;
}

.toc h3 {
    color: #2e7d32;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc li {
    margin-bottom: 8px;
}

.toc li:last-child {
    margin-bottom: 0;
}

.toc a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.toc a:hover {
    color: #28a745;
}

@media (max-width: 768px) {
    .region-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-box,
    .tip-box,
    .warning-box {
        padding: 12px 16px;
    }
    
    .conclusion-box {
        padding: 16px;
    }
    
    .data-table {
        font-size: 0.85rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 8px 10px;
    }
    
    .toc {
        padding: 16px;
    }
}
