﻿:root { --primary: rgb(101,163,13); --bg-body: #f3f4f6; --text-main: #1f2937; --text-muted: #6b7280; --border: #e5e7eb; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.8; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; display: block; height: auto; border-radius: 8px; }
        .container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
        
        .site-header { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; color: var(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 24px; }
        .mobile-toggle { display: none; cursor: pointer; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; display: none; }
        .drawer-overlay.active { display: block; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 1000; transition: 0.3s; padding: 20px; }
        .mobile-drawer.active { left: 0; }

        .article-wrap { background: #fff; padding: 50px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin: 40px auto; }
        .breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
        .breadcrumb a:hover { color: var(--primary); }
        .art-title { font-size: 32px; font-weight: 800; margin-bottom: 20px; line-height: 1.4; }
        .art-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 30px; }
        .art-meta span { display: flex; align-items: center; gap: 6px; }
        
        .art-content { font-size: 16px; color: #374151; }
        .art-content h2 { margin: 30px 0 15px; font-size: 24px; color: var(--primary); }
        .art-content p { margin-bottom: 20px; }
        .art-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
        .art-content th, .art-content td { border: 1px solid var(--border); padding: 10px; }
        
        .art-tags { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); }
        .art-tags span { display: inline-block; background: #f3f4f6; padding: 6px 12px; border-radius: 4px; font-size: 14px; margin-right: 10px; }
        
        .art-nav { display: flex; justify-content: space-between; margin-top: 40px; font-size: 14px; }
        .art-nav a { color: var(--primary); font-weight: 600; }

        .related-sec { margin-bottom: 60px; }
        .related-sec h3 { font-size: 22px; margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .rel-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
        .rel-card img { width: 100%; height: 160px; object-fit: cover; }
        .rel-info { padding: 15px; }
        .rel-info h4 { font-size: 15px; margin-bottom: 8px; }
        
        .site-footer { background: #1f2937; color: #e5e7eb; padding: 60px 0 0; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-bottom { background: #111827; padding: 20px 0; text-align: center; font-size: 14px; }

        @media(max-width:768px) {
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .article-wrap { padding: 20px; }
            .art-title { font-size: 24px; }
            .related-grid, .footer-grid { grid-template-columns: 1fr; }
            .art-nav { flex-direction: column; gap: 15px; }
        }