﻿:root {
            --primary: rgb(101,163,13);
            --primary-dark: #4d7c0f;
            --primary-light: #ecfccb;
            --text-main: #1f2937;
            --text-muted: #6b7280;
            --bg-body: #f3f4f6;
            --border-color: #e5e7eb;
            --header-h: 72px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; height: var(--header-h); }
        .header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 40px; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; color: var(--primary); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 24px; }
        .desktop-nav a { font-weight: 500; padding: 8px 12px; border-radius: 6px; }
        .desktop-nav a:hover { color: var(--primary); background: var(--primary-light); }
        .mobile-menu-btn { display: none; font-size: 24px; background: none; border: none; cursor: pointer; }
        
        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 1000; transition: 0.3s; display: flex; flex-direction: column; }
        .mobile-drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 24px; background: none; border: none; cursor: pointer; }
        .drawer-nav { padding: 20px; overflow-y: auto; }
        .drawer-nav a { display: block; padding: 12px 0; border-bottom: 1px dashed var(--border-color); }

        
        .page-banner { background: #fff; padding: 40px 0; border-bottom: 1px solid var(--border-color); }
        .breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
        .breadcrumb a { color: var(--text-main); }
        .breadcrumb a:hover { color: var(--primary); }
        .page-title { font-size: 32px; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 10px; }
        .page-title::before { content: ''; display: block; width: 6px; height: 32px; background: var(--primary); border-radius: 3px; }
        .page-desc { margin-top: 10px; color: var(--text-muted); font-size: 16px; }

        
        .list-wrap { padding: 40px 0; display: flex; gap: 30px; }
        .main-content { flex: 1; min-width: 0; }
        .sidebar { width: 320px; flex-shrink: 0; }

        
        .article-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .list-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-color); transition: 0.3s; display: flex; flex-direction: column; }
        .list-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.06); border-color: var(--primary); }
        .list-img { height: 180px; overflow: hidden; }
        .list-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .list-card:hover .list-img img { transform: scale(1.05); }
        .list-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .list-info h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .list-info h3 a:hover { color: var(--primary); }
        .list-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .list-meta { display: flex; justify-content: space-between; font-size: 12px; color: #9ca3af; border-top: 1px solid var(--border-color); padding-top: 12px; }
        .list-tags { color: var(--primary); }

        
        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 12px; background: #fff; border: 1px solid var(--border-color); border-radius: 6px; font-size: 14px; }
        .pagination a:hover { border-color: var(--primary); color: var(--primary); }
        .pagination .current, .pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }
        
        
        .widget { background: #fff; border-radius: 10px; border: 1px solid var(--border-color); padding: 20px; margin-bottom: 24px; }
        .widget-title { font-size: 18px; font-weight: bold; border-bottom: 2px solid var(--primary-light); padding-bottom: 10px; margin-bottom: 15px; position: relative; }
        .widget-title::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 40px; height: 2px; background: var(--primary); }

        
        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; margin-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand p { margin-top: 16px; font-size: 14px; color: #9ca3af; }
        .footer-title { color: #fff; font-size: 16px; font-weight: bold; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; font-size: 14px; display: flex; justify-content: space-between;}
        .footer-bottom a { margin-left: 15px; }

        @media (max-width: 992px) {
            .list-wrap { flex-direction: column; }
            .sidebar { width: 100%; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .article-list { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; gap: 10px; }
        }