﻿:root {
            --primary-color: rgb(37,99,235);
            --primary-hover: rgb(29,78,216);
            --primary-light: rgba(37,99,235,0.1);
            --text-main: #1e293b;
            --text-muted: #64748b;
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --border-color: #e2e8f0;
            --container-width: 1200px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: var(--container-width); 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; text-decoration: none; }
        .logo img { display: block; height: 36px; 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; }
        .desktop-nav ul { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; font-size: 15px; color: var(--text-main); transition: color 0.3s; }
        .desktop-nav a:hover { color: var(--primary-color); }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .btn-primary { background: var(--primary-color); color: #fff; padding: 10px 24px; border-radius: 6px; font-weight: 600; display: inline-block; }
        .btn-outline { border: 1px solid var(--primary-color); color: var(--primary-color); padding: 10px 24px; border-radius: 6px; font-weight: 600; display: inline-block; }
        .menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-main); }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-menu { position: fixed; top: 0; left: -300px; bottom: 0; width: 280px; background: #fff; z-index: 1000; transition: 0.3s; box-shadow: 2px 0 8px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
        .drawer-menu.active { left: 0; }
        .drawer-header { padding: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav li { margin-bottom: 15px; }
        .drawer-nav a { display: block; font-size: 16px; font-weight: 500; color: var(--text-main); padding: 8px 0; border-bottom: 1px dashed var(--border-color); }

        
        .page-banner { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); color: #fff; padding: 60px 0; text-align: center; }
        .page-banner h1 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
        .page-banner p { font-size: 16px; color: #94a3b8; max-width: 600px; margin: 0 auto; }
        
        
        .breadcrumb { padding: 20px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border-color); background: #fff; }
        .breadcrumb a { color: var(--text-main); transition: color 0.2s; }
        .breadcrumb a:hover { color: var(--primary-color); }
        .breadcrumb span { margin: 0 8px; color: #cbd5e1; }

        
        .layout-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 40px 0 80px; }
        
        
        .list-container { display: flex; flex-direction: column; gap: 24px; }
        .list-card { display: flex; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); transition: box-shadow 0.3s; }
        .list-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
        .list-thumb { width: 280px; flex-shrink: 0; position: relative; }
        .list-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .list-content { padding: 24px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
        .list-tag { font-size: 12px; font-weight: 600; color: var(--primary-color); background: var(--primary-light); padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 12px; align-self: flex-start; }
        .list-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
        .list-title a:hover { color: var(--primary-color); }
        .list-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .list-meta { display: flex; align-items: center; gap: 20px; font-size: 13px; color: #94a3b8; }
        
        
        .sidebar-widget { background: #fff; border-radius: 12px; border: 1px solid var(--border-color); padding: 24px; margin-bottom: 30px; }
        .sidebar-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-light); position: relative; }
        .sidebar-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--primary-color); }
        .hot-list li { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed var(--border-color); }
        .hot-list li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
        .hot-list a { font-size: 15px; font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s; }
        .hot-list a:hover { color: var(--primary-color); }
        
        
        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
        .page-item { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; background: #fff; border: 1px solid var(--border-color); border-radius: 6px; font-size: 15px; font-weight: 500; transition: all 0.2s; }
        .page-item:hover { border-color: var(--primary-color); color: var(--primary-color); }
        .page-item.active { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
        .page-item.disabled { opacity: 0.5; pointer-events: none; }

        .site-footer { background: #0f172a; color: #cbd5e1; padding: 60px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-desc { margin-top: 20px; font-size: 14px; line-height: 1.8; color: #94a3b8; max-width: 300px; }
        .footer-widget h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { font-size: 14px; color: #94a3b8; transition: color 0.3s; }
        .footer-links a:hover { color: var(--primary-color); }
        .footer-bottom { border-top: 1px solid #1e293b; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: #64748b; }

        @media (max-width: 1024px) {
            .layout-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .desktop-nav, .header-actions { display: none; }
            .menu-toggle { display: block; }
            .list-card { flex-direction: column; }
            .list-thumb { width: 100%; height: 200px; }
            .footer-grid { grid-template-columns: 1fr; }
        }