﻿:root {
            --primary: rgb(8,145,178);
            --primary-hover: #067793;
            --primary-light: rgba(8,145,178,0.1);
            --text-main: #1f2937;
            --text-muted: #6b7280;
            --bg-body: #f9fafb;
            --bg-white: #ffffff;
            --border: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .header { background: var(--bg-white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .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(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 24px; align-items: center; }
        .desktop-nav a { font-size: 16px; font-weight: 500; color: var(--text-main); padding: 8px 12px; border-radius: 6px; }
        .desktop-nav a:hover { color: var(--primary); background: var(--primary-light); }
        .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--text-main); }
        
        .mobile-drawer { position: fixed; inset: 0; z-index: 999; pointer-events: none; }
        .drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s; }
        .drawer-content { position: absolute; top: 0; bottom: 0; left: -300px; width: 280px; background: var(--bg-white); transition: transform 0.3s ease; display: flex; flex-direction: column; }
        .mobile-drawer.active { pointer-events: auto; }
        .mobile-drawer.active .drawer-overlay { opacity: 1; }
        .mobile-drawer.active .drawer-content { transform: translateX(300px); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; cursor: pointer; color: var(--text-muted); }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
        .drawer-nav a { display: block; font-size: 16px; padding: 10px 15px; border-radius: 8px; font-weight: 500; }
        .drawer-nav a:hover { background: var(--primary-light); color: var(--primary); }

        .page-banner { background: var(--primary) url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&q=80') center/cover; padding: 80px 0; color: #fff; text-align: center; position: relative; }
        .page-banner::before { content: ''; position: absolute; inset: 0; background: rgba(8,145,178,0.85); }
        .page-banner-content { position: relative; z-index: 1; }
        .page-banner h1 { font-size: 36px; font-weight: bold; margin-bottom: 15px; }
        .page-banner p { font-size: 16px; opacity: 0.9; max-width: 600px; margin: 0 auto; }

        .tags-wrap { padding: 60px 0 100px; }
        .tags-intro { text-align: center; margin-bottom: 40px; color: var(--text-muted); }
        .cloud-grid { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .tag-item { display: inline-flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: var(--bg-white); border: 1px solid var(--border); border-radius: 30px; font-size: 16px; color: var(--text-main); transition: var(--transition); box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
        .tag-item:hover { border-color: var(--primary); background: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow); }
        .tag-item .count { background: var(--primary-light); color: var(--primary); font-size: 12px; padding: 2px 8px; border-radius: 12px; margin-left: 10px; }
        .tag-item:hover .count { background: rgba(255,255,255,0.2); color: #fff; }

        .footer { background: #111827; color: #9ca3af; padding: 60px 0 0; }
        .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; }
        .footer-links ul li { margin-bottom: 12px; }
        .footer-links ul li a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid #374151; padding: 20px 0; text-align: center; font-size: 14px; }

        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .footer-grid { grid-template-columns: 1fr; }
        }