﻿:root { --primary-color: rgb(30,64,175); --primary-light: rgba(30,64,175,0.1); --text-main: #333333; --text-muted: #666666; --bg-body: #f8f9fa; --bg-white: #ffffff; --border-color: #e5e7eb; --radius-md: 8px; --transition: all 0.3s ease; }
        * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: sans-serif; line-height: 1.6; color: var(--text-main); background: var(--bg-body); }
        a { text-decoration: none; color: inherit; } ul { list-style: none; } img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: var(--bg-white); box-shadow: 0 1px 3px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .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: 700; color: var(--primary-color); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; }
        .nav-desktop a { font-weight: 500; } .nav-desktop a:hover { color: var(--primary-color); }
        .btn-mobile-menu { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; visibility: hidden; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-nav { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 1002; transition: var(--transition); overflow-y: auto; }
        .drawer-nav.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .btn-close-drawer { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-menu a { display: block; padding: 12px 20px; border-bottom: 1px solid var(--border-color); }
        @media (max-width: 768px) { .nav-desktop { display: none; } .btn-mobile-menu { display: block; } }

        
        .page-banner { background: linear-gradient(135deg, var(--primary-color), #0f172a); color: white; padding: 60px 0; text-align: center; }
        .page-banner h1 { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
        .breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 14px; opacity: 0.8; }
        .breadcrumb a:hover { color: white; text-decoration: underline; }

        
        .list-container { padding: 60px 0; display: grid; grid-template-columns: 3fr 1fr; gap: 40px; }
        @media (max-width: 992px) { .list-container { grid-template-columns: 1fr; } }
        
        .list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
        @media (max-width: 768px) { .list-grid { grid-template-columns: 1fr; } }
        
        .list-card { background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); transition: var(--transition); display: flex; flex-direction: column; }
        .list-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .list-card-img { width: 100%; height: 220px; object-fit: cover; }
        .list-card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
        .list-card-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
        .list-card-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .list-card-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); padding-top: 15px; font-size: 13px; color: #888; }
        .list-tags { display: flex; gap: 5px; }
        .list-tag { background: var(--primary-light); color: var(--primary-color); padding: 2px 6px; border-radius: 4px; font-size: 12px; }

        
        .sidebar-widget { background: var(--bg-white); border-radius: var(--radius-md); padding: 25px; margin-bottom: 30px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
        .sidebar-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border-color); position: relative; }
        .sidebar-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 30px; height: 2px; background: var(--primary-color); }
        .hot-links { display: flex; flex-direction: column; gap: 15px; }
        .hot-link { font-size: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: var(--transition); }
        .hot-link:hover { color: var(--primary-color); }

        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; grid-column: 1 / -1; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 15px; background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 4px; font-weight: 500; transition: var(--transition); }
        .pagination a:hover { background: var(--primary-light); color: var(--primary-color); border-color: var(--primary-color); }
        .pagination .current { background: var(--primary-color); color: white; border-color: var(--primary-color); }
        
        
        .footer { background: #111827; color: rgba(255,255,255,0.7); padding: 60px 0 30px; margin-top: auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-title { color: white; margin-bottom: 20px; font-size: 16px; font-weight: 600; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a:hover { color: white; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }
        @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 15px; text-align: center; } }