﻿:root {
            --primary-color: rgb(90,200,250);
            --primary-hover: rgb(60,180,230);
            --primary-light: rgba(90,200,250,0.1);
            --text-dark: #1e293b;
            --text-normal: #475569;
            --text-light: #94a3b8;
            --bg-body: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background-color: var(--bg-body); color: var(--text-normal); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background-color: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
        .header .container { display: flex; justify-content: space-between; align-items: center; 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-dark); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; }
        .nav-desktop a { font-weight: 500; color: var(--text-dark); position: relative; padding: 5px 0; }
        .nav-desktop a:hover { color: var(--primary-color); }
        .menu-btn { display: none; font-size: 24px; background: none; border: none; cursor: pointer; color: var(--text-dark); }
        
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 999; transition: all 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .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; color: var(--text-light); }
        .drawer-nav { padding: 20px 0; overflow-y: auto; }
        .drawer-nav a { display: block; padding: 15px 20px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border-color); }

        
        .page-banner { background: var(--bg-white); padding: 40px 0; border-bottom: 1px solid var(--border-color); margin-bottom: 40px; }
        .breadcrumb { font-size: 14px; color: var(--text-light); margin-bottom: 15px; }
        .breadcrumb a { color: var(--text-dark); }
        .breadcrumb a:hover { color: var(--primary-color); }
        .page-title { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
        .page-desc { font-size: 16px; color: var(--text-normal); max-width: 800px; }

        
        .list-layout { display: flex; gap: 30px; margin-bottom: 60px; }
        .main-content { flex: 1; }
        .sidebar { width: 300px; }

        
        .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .article-card { background: var(--bg-white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; border: 1px solid var(--border-color); transition: transform 0.3s; }
        .article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-color); }
        .article-img { height: 160px; background: #e2e8f0; overflow: hidden; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; }
        .article-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
        .article-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-desc { font-size: 13px; color: var(--text-light); margin-bottom: 15px; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-meta { display: flex; justify-content: space-between; font-size: 12px; color: #cbd5e1; border-top: 1px dashed var(--border-color); padding-top: 12px; }

        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 6px; font-weight: 500; color: var(--text-dark); }
        .pagination a:hover { border-color: var(--primary-color); color: var(--primary-color); }
        .pagination .active { background: var(--primary-color); color: white; border-color: var(--primary-color); }

        
        .widget { background: var(--bg-white); border-radius: 8px; border: 1px solid var(--border-color); padding: 20px; margin-bottom: 30px; }
        .widget-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-light); position: relative; }
        .widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--primary-color); }
        
        
        .footer { background: #0f172a; color: #94a3b8; padding: 60px 0 20px; margin-top: auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-about .logo span { color: white; }
        .footer-desc { margin-top: 20px; font-size: 14px; }
        .footer-title { color: white; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 10px; }
        .footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }
        .footer-meta-links { display: flex; gap: 15px; }

        @media (max-width: 1024px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) {
            .nav-desktop { display: none; } .menu-btn { display: block; }
            .list-layout { flex-direction: column; } .sidebar { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
        }
        @media (max-width: 480px) { .article-grid { grid-template-columns: 1fr; } }