﻿:root {
            --primary: rgb(220,38,38);
            --primary-hover: rgb(185,28,28);
            --primary-light: rgba(220,38,38,0.1);
            --text-main: #1f2937;
            --text-muted: #6b7280;
            --bg-body: #f9fafb;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            --transition: all 0.3s ease;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .header { background: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 50; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .nav-links { display: none; }
        .nav-links a { font-size: 16px; font-weight: 500; padding: 10px 15px; color: var(--text-main); border-radius: 6px; }
        .nav-links a:hover { color: var(--primary); background: var(--primary-light); }
        .menu-btn { display: block; background: none; border: none; cursor: pointer; padding: 5px; color: var(--text-main); }
        .menu-btn svg { width: 28px; height: 28px; }
        @media (min-width: 768px) { .nav-links { display: flex; align-items: center; gap: 10px; } .menu-btn { display: none; } }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 90; opacity: 0; visibility: hidden; transition: var(--transition); }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 280px; background: var(--bg-white); z-index: 100; transition: var(--transition); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; }
        .drawer-close { background: none; border: none; cursor: pointer; color: var(--text-muted); }
        .drawer-close svg { width: 24px; height: 24px; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border-color); }
        .drawer-nav a:hover { color: var(--primary); padding-left: 10px; }
        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; margin-top: 60px;}
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
        .footer-brand .logo span { color: white; }
        .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.8; color: #9ca3af; max-width: 300px; }
        .footer-title { color: white; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; color: #9ca3af; transition: var(--transition); }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; display: flex; flex-direction: column; gap: 15px; align-items: center; font-size: 14px; color: #6b7280; }
        @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

        
        .page-banner { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80') center/cover; padding: 60px 0; text-align: center; color: white; margin-bottom: 40px; }
        .page-banner h1 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
        .breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 14px; color: #e5e7eb; }
        .breadcrumb a:hover { color: var(--primary); }

        .list-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
        @media (min-width: 1024px) { .list-layout { grid-template-columns: 1fr 300px; } }
        
        .list-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
        @media (min-width: 600px) { .list-grid { grid-template-columns: repeat(2, 1fr); } }
        
        .article-card { background: var(--bg-white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-color); display: flex; flex-direction: column; height: 100%; }
        .article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
        .ac-img-wrap { position: relative; height: 200px; overflow: hidden; }
        .ac-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .article-card:hover .ac-img-wrap img { transform: scale(1.05); }
        .ac-tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 5px; z-index: 2; }
        .ac-tag { background: rgba(220,38,38,0.9); color: white; font-size: 12px; padding: 3px 8px; border-radius: 4px; }
        .ac-content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
        .ac-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .ac-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .ac-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); padding-top: 15px; font-size: 12px; color: var(--text-muted); }
        .ac-meta-item { display: flex; align-items: center; gap: 5px; }
        .ac-meta-item svg { width: 14px; height: 14px; }

        
        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; flex-wrap: wrap; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: 6px; background: var(--bg-white); border: 1px solid var(--border-color); color: var(--text-main); font-weight: 500; transition: var(--transition); }
        .pagination a:hover { border-color: var(--primary); color: var(--primary); }
        .pagination .current { background: var(--primary); color: white; border-color: var(--primary); }
        .pagination .disabled { opacity: 0.5; pointer-events: none; }

        
        .sidebar-widget { background: var(--bg-white); padding: 25px; border-radius: 12px; box-shadow: var(--shadow-sm); margin-bottom: 30px; border: 1px solid var(--border-color); }
        .widget-title { font-size: 18px; font-weight: 700; border-left: 4px solid var(--primary); padding-left: 15px; margin-bottom: 20px; color: #111; }
        .hot-list { display: flex; flex-direction: column; gap: 15px; }
        .hot-item { display: flex; gap: 15px; align-items: center; }
        .hot-item:hover .hot-title { color: var(--primary); }
        .hot-img { width: 70px; height: 50px; border-radius: 6px; object-fit: cover; }
        .hot-info { flex: 1; }
        .hot-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: var(--transition); }
        {block:list_sidebar}