﻿:root {
            --primary-color: #e63946; 
            --bg-base: rgb(255,255,255); 
            --bg-alt: #f8f9fa;
            --text-main: #2b2d42;
            --text-muted: #6c757d;
            --border-color: #e9ecef;
            --radius-md: 8px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif; background-color: var(--bg-alt); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .site-header { background-color: var(--bg-base); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .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: 22px; font-weight: 800; line-height: 1; color: var(--primary-color); white-space: nowrap; }
        .desktop-nav { display: none; }
        .desktop-nav ul { list-style: none; display: flex; gap: 30px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; color: var(--text-main); position: relative; padding: 5px 0; }
        .desktop-nav a:hover { color: var(--primary-color); }
        .menu-toggle { display: block; background: none; border: none; font-size: 24px; color: var(--text-main); cursor: pointer; }
        @media (min-width: 992px) { .desktop-nav { display: block; } .menu-toggle { display: none; } }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 998; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-base); z-index: 999; transition: left 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 { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-nav { padding: 20px 0; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 12px 20px; font-size: 16px; border-bottom: 1px solid #f0f0f0; }

        
        .page-header { background: var(--bg-base); padding: 40px 0; border-bottom: 1px solid var(--border-color); margin-bottom: 40px; }
        .breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
        .breadcrumb a { color: var(--text-main); }
        .breadcrumb a:hover { color: var(--primary-color); }
        .page-title { font-size: 32px; font-weight: 700; color: var(--primary-color); }
        
        .list-layout { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
        .article-list { display: flex; flex-direction: column; gap: 20px; }
        .list-card { display: flex; flex-direction: column; background: var(--bg-base); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-color); transition: transform 0.3s; }
        .list-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--primary-color); }
        @media (min-width: 768px) { .list-card { flex-direction: row; } }
        .list-img { width: 100%; height: 200px; object-fit: cover; }
        @media (min-width: 768px) { .list-img { width: 280px; height: auto; } }
        .list-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
        .list-title { font-size: 20px; margin-bottom: 12px; font-weight: 600; line-height: 1.4; }
        .list-title a:hover { color: var(--primary-color); }
        .list-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
        .list-meta { display: flex; flex-wrap: wrap; gap: 15px; font-size: 13px; color: #888; align-items: center; }
        .list-meta span { display: inline-flex; align-items: center; gap: 4px; }
        .list-tags { display: flex; gap: 8px; }
        .tag-badge { background: #f0f0f0; padding: 2px 8px; border-radius: 4px; font-size: 12px; color: var(--text-main); }

        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; background: var(--bg-base); border: 1px solid var(--border-color); border-radius: 4px; font-size: 14px; }
        .pagination a:hover { border-color: var(--primary-color); color: var(--primary-color); }
        .pagination .current { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

        
        .site-footer { background: #111; color: #ccc; padding: 60px 0 20px; margin-top: 60px;}
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.8; color: #888; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 20px; }
        .footer-links list-style { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #aaa; font-size: 14px; }
        .footer-links a:hover { color: var(--primary-color); }
        .footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 13px; color: #666; display: flex; flex-direction: column; gap: 10px; align-items: center; }
        @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
        .footer-legal a { margin: 0 10px; }