﻿:root { --primary: rgb(249,115,22); --text-main: #0f172a; --text-sub: #475569; --bg-main: #f8fafc; --bg-card: #ffffff; --border-color: #e2e8f0; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        ul, li { list-style: none; }
        
        
        .header { position: sticky; top: 0; left: 0; right: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid var(--border-color); }
        .header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
        .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; }
        .nav-desktop { display: flex; align-items: center; gap: 32px; }
        .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-sub); }
        .nav-desktop a:hover { color: var(--primary); }
        .menu-btn { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
        .menu-btn span { width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 280px; background: var(--bg-card); z-index: 1002; transition: 0.4s; display: flex; flex-direction: column; }
        .drawer.active { transform: translateX(300px); }
        .drawer-header { padding: 24px 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--bg-main); border-radius: 50%; cursor: pointer; }
        .drawer-body { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav { display: flex; flex-direction: column; gap: 16px; }
        .drawer-nav a { display: block; font-size: 16px; padding: 10px 16px; background: var(--bg-main); border-radius: 8px; }

        
        .page-header { background: #fff; padding: 50px 20px; border-bottom: 1px solid var(--border-color); text-align: center; }
        .tag-badge { display: inline-block; padding: 6px 16px; background: var(--primary-light, rgba(249,115,22,0.1)); color: var(--primary); border-radius: 20px; font-weight: 700; font-size: 14px; margin-bottom: 16px; }
        .page-header h1 { font-size: 32px; color: var(--text-main); margin-bottom: 12px; }
        .page-header p { font-size: 15px; color: var(--text-sub); }
        
        .container { max-width: 1200px; margin: 40px auto; padding: 0 20px; min-height: 400px; }
        .list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .article-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.05); display: flex; flex-direction: column; border: 1px solid var(--border-color); transition: 0.3s; }
        .article-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px -5px rgba(0,0,0,0.08); }
        .article-img { position: relative; padding-top: 56.25%; overflow: hidden; }
        .article-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
        .article-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .article-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
        .article-desc { font-size: 14px; color: var(--text-sub); margin-bottom: 20px; flex: 1; }
        .article-meta { display: flex; justify-content: space-between; font-size: 13px; color: #94a3b8; border-top: 1px solid var(--border-color); padding-top: 16px; }
        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
        .pagination a, .pagination span { padding: 10px 16px; border-radius: 6px; background: #fff; border: 1px solid var(--border-color); font-size: 14px; }
        .pagination a:hover, .pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }
        
        
        .footer { background: #fff; padding: 60px 20px 20px; border-top: 1px solid var(--border-color); margin-top: 60px; }
        .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-title { font-size: 16px; font-weight: 700; margin-bottom: 24px; color: var(--text-main); }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: var(--text-sub); font-size: 14px; }
        .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; color: #94a3b8; font-size: 14px; }
        
        @media (max-width: 1024px) {
            .list-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .menu-btn { display: flex; }
            .list-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }