﻿: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: 0.3s; }
        img { max-width: 100%; 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; }
        .logo span { font-size: 20px; font-weight: 800; 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; 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: 0.3s; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 1000; transition: 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; }
        .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; border-bottom: 1px dashed var(--border-color); }

        
        .page-header { background: linear-gradient(135deg, var(--primary-color), #09504a); padding: 60px 0; color: #fff; text-align: center; }
        .page-title { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
        .page-desc { font-size: 16px; opacity: 0.9; max-width: 600px; margin: 0 auto; }
        
        .tag-cloud-section { padding: 60px 0; background: #fff; min-height: 50vh; }
        .tag-container { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .tag-item { display: inline-flex; align-items: center; justify-content: space-between; padding: 12px 24px; background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 30px; font-size: 16px; font-weight: 500; transition: all 0.3s; color: var(--text-main); }
        .tag-item:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(15,118,110,0.2); }
        .tag-count { background: rgba(0,0,0,0.05); padding: 2px 8px; border-radius: 12px; font-size: 12px; margin-left: 10px; }
        .tag-item:hover .tag-count { background: rgba(255,255,255,0.2); }

        
        .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; padding-bottom: 10px; border-bottom: 2px solid var(--primary-color); display: inline-block; }
        .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; }

        @media (max-width: 992px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav, .header-actions .btn { display: none; }
            .menu-toggle { display: block; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
        }