﻿:root { --primary-color: rgb(15,118,110); --primary-hover: rgb(13,100,93); --primary-light: rgba(15,118,110,0.05); --text-main: #1f2937; --text-muted: #6b7280; --bg-body: #f9fafb; --bg-card: #ffffff; --border-color: #e5e7eb; --header-h: 72px; }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'PingFang SC', sans-serif; color: var(--text-main); background: var(--bg-body); line-height: 1.6; }
        a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 6px; font-weight: 500; cursor: pointer; transition: all 0.3s; }
        .btn-primary { background: var(--primary-color); color: #fff; }
        
        
        .header { position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 1px 3px rgba(0,0,0,0.05); z-index: 100; height: var(--header-h); }
        .header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
        .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(--primary-color); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; position: relative; padding: 5px 0; }
        .desktop-nav a:hover { color: var(--primary-color); }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .menu-toggle { display: none; font-size: 24px; cursor: pointer; }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 1000; transition: all 0.3s; display: flex; flex-direction: column; }
        .drawer-active .drawer-overlay { opacity: 1; visibility: visible; }
        .drawer-active .drawer { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 24px; cursor: pointer; color: var(--text-muted); }
        .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 dashed var(--border-color); }

        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-logo span { color: #fff; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--primary-color); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; opacity: 0.6; }
        
        
        .page-header { background: var(--primary-color); padding: 60px 0; color: #fff; text-align: center; margin-bottom: 40px; }
        .page-title { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
        .breadcrumb { font-size: 14px; opacity: 0.8; }
        .breadcrumb a { color: #fff; text-decoration: underline; margin: 0 5px; }
        
        .list-layout { display: flex; gap: 30px; margin-bottom: 60px; }
        .list-main { flex: 1; }
        .list-sidebar { width: 300px; display: flex; flex-direction: column; gap: 30px; }
        
        .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .article-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
        .article-img { height: 180px; overflow: hidden; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
        .article-card:hover .article-img img { transform: scale(1.05); }
        .article-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .article-tag { font-size: 12px; color: var(--primary-color); background: var(--primary-light); padding: 2px 8px; border-radius: 4px; display: inline-block; margin-bottom: 10px; }
        .article-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
        .article-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; flex: 1; }
        .article-meta { display: flex; justify-content: space-between; font-size: 12px; color: #9ca3af; border-top: 1px solid var(--border-color); padding-top: 15px; }
        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
        .pagination a, .pagination span { padding: 8px 16px; background: #fff; border: 1px solid var(--border-color); border-radius: 6px; font-size: 14px; }
        .pagination a:hover, .pagination .current { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
        
        
        .widget { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
        .widget-title { font-size: 18px; font-weight: 600; border-bottom: 2px solid var(--primary-light); padding-bottom: 10px; margin-bottom: 20px; position: relative; }
        .widget-title::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 40px; height: 2px; background: var(--primary-color); }
        
        @media (max-width: 992px) {
            .list-layout { flex-direction: column; }
            .list-sidebar { width: 100%; }
            .article-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav, .header-actions .btn { display: none; }
            .menu-toggle { display: block; }
            .article-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; gap:10px; }
        }