﻿:root { --primary: rgb(15,157,88); --text-main: #333333; --bg-body: #f8f9fa; --bg-white: #ffffff; --border-color: #eaeaea; }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: sans-serif; color: var(--text-main); background-color: var(--bg-body); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        ul, li { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .site-header { background: var(--bg-white); box-shadow: 0 2px 8px 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: 72px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { display: block; height: 36px; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; }
        .desktop-nav { display: flex; gap: 30px; }
        .mobile-menu-toggle { display: none; font-size: 24px; border:none; background:none;}
        
        .mobile-drawer { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; visibility: hidden; }
        .mobile-drawer.active { visibility: visible; }
        .drawer-overlay { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
        .drawer-content { position: absolute; left: -300px; width: 280px; height: 100%; background: #fff; transition: left 0.3s; display: flex; flex-direction: column;}
        .mobile-drawer.active .drawer-content { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between;}
        .drawer-nav a { display: block; padding: 15px; border-bottom: 1px solid #eee; }

        .tag-header { background: var(--bg-white); padding: 40px 0; border-bottom: 1px solid var(--border-color); margin-bottom: 40px; text-align: center; }
        .tag-title { font-size: 32px; margin-bottom: 10px; }
        .tag-title span { color: var(--primary); }
        .tag-desc { color: #666; }

        .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px;}
        .article-card { background: var(--bg-white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.03); display: flex; flex-direction: column; }
        .article-img-wrap { height: 180px; overflow: hidden; }
        .article-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .article-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
        .article-title { font-size: 18px; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;}
        .article-summary { font-size: 14px; color: #666; margin-bottom: 15px; flex-grow: 1;}
        .article-meta { display: flex; justify-content: space-between; font-size: 12px; color: #999; border-top: 1px solid #eee; padding-top: 10px;}

        .pagination { display: flex; justify-content: center; gap: 8px; margin-bottom: 80px;}
        .pagination a, .pagination span { padding: 8px 16px; border: 1px solid var(--border-color); border-radius: 4px; background: var(--bg-white); }
        .pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

        .site-footer { background: #1a1a1a; color: #999; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }

        @media (max-width: 992px) {
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: block; }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .news-grid { grid-template-columns: 1fr; }
        }