﻿:root { --primary: rgb(14,116,144); --primary-light: rgba(14,116,144,0.08); --text-main: #1e293b; --text-muted: #64748b; --bg-body: #f8fafc; --border-color: #e2e8f0; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 45px; max-width: 180px; object-fit: contain; flex-shrink: 0; }
        .logo span { font-size: 22px; font-weight: 800; color: var(--primary); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; padding: 8px 12px; border-radius: 6px; }
        .desktop-nav a:hover { color: var(--primary); background: var(--primary-light); }
        .menu-toggle { display: none; font-size: 24px; color: var(--primary); cursor: pointer; }
        
        .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 { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 1000; transition: 0.3s; display: flex; flex-direction: column; }
        .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 { font-size: 28px; cursor: pointer; color: var(--text-muted); }
        .drawer-nav { padding: 20px 0; }
        .drawer-nav a { display: block; padding: 15px 25px; border-bottom: 1px solid var(--border-color); font-weight: 500; }

        
        .page-banner { background: var(--primary); color: #fff; padding: 60px 0; text-align: center; }
        .page-banner h1 { font-size: 36px; margin-bottom: 15px; }
        .page-banner p { font-size: 16px; opacity: 0.9; max-width: 600px; margin: 0 auto; }
        
        .tag-wrap { padding: 60px 0 100px; }
        .tag-guide { text-align: center; margin-bottom: 50px; background: #fff; padding: 30px; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
        .tag-guide h2 { color: var(--primary); font-size: 24px; margin-bottom: 10px; }
        .tag-guide p { color: var(--text-muted); font-size: 15px; }

        .tag-cloud { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .tag-item { display: inline-flex; align-items: center; background: #fff; border: 1px solid var(--border-color); padding: 12px 25px; border-radius: 30px; font-size: 16px; font-weight: 500; color: var(--text-main); transition: 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
        .tag-item:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 15px rgba(14,116,144,0.2); }
        .tag-count { margin-left: 8px; font-size: 13px; color: #94a3b8; background: var(--bg-body); padding: 2px 8px; border-radius: 10px; transition: 0.3s; }
        .tag-item:hover .tag-count { background: rgba(255,255,255,0.2); color: #fff; }

        .footer { background: #1e293b; color: #94a3b8; padding: 60px 0 20px; margin-top: auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .foot-about .logo span, .foot-title { color: #fff; }
        .foot-links li { margin-bottom: 12px; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

        @media(max-width: 768px) { .desktop-nav { display: none; } .menu-toggle { display: block; } .footer-grid { grid-template-columns: 1fr; } .tag-item { font-size: 14px; padding: 10px 20px; } }