﻿:root { --primary-color: rgb(0,0,0); --primary-hover: #333; --bg-light: #f5f5f7; --bg-white: #ffffff; --text-main: #1d1d1f; --text-muted: #86868b; --border-color: #e5e5ea; --accent-gold: #c5a977; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; color: var(--text-main); line-height: 1.6; background: var(--bg-light); }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        header { background: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .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(--primary-color); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-weight: 500; font-size: 15px; color: var(--text-main); transition: color 0.3s; }
        .desktop-nav a:hover { color: var(--accent-gold); }
        .header-actions { display: flex; gap: 15px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 6px; font-weight: 600; font-size: 14px; transition: all 0.3s; cursor: pointer; }
        .btn-primary { background: var(--primary-color); color: #fff; border: 1px solid var(--primary-color); }
        .btn-outline { background: transparent; color: var(--primary-color); border: 1px solid var(--primary-color); }
        .mobile-menu-btn { display: none; font-size: 24px; cursor: pointer; background: none; border: none; color: var(--primary-color); }

        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 998; backdrop-filter: blur(4px); }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 999; transition: left 0.3s ease; display: flex; flex-direction: column; box-shadow: 2px 0 12px rgba(0,0,0,0.1); }
        .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: 24px; background: none; border: none; 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 solid var(--bg-light); }
        
        footer { background: #111; color: #888; padding: 60px 0 30px; margin-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.6; }
        .footer-col h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; }

        
        .article-layout { max-width: 900px; margin: 40px auto; background: var(--bg-white); padding: 50px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
        .breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; }
        .breadcrumb a { color: var(--primary-color); }
        
        .article-head { text-align: center; border-bottom: 1px solid var(--border-color); padding-bottom: 30px; margin-bottom: 30px; }
        .article-title { font-size: 32px; font-weight: 800; color: var(--primary-color); margin-bottom: 20px; line-height: 1.4; }
        .article-meta-info { display: flex; justify-content: center; gap: 20px; font-size: 14px; color: var(--text-muted); flex-wrap: wrap; }
        .article-meta-info span { display: inline-flex; align-items: center; gap: 5px; }

        .article-body { font-size: 16px; line-height: 1.8; color: #333; }
        .article-body p { margin-bottom: 20px; }
        .article-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
        .article-body h2, .article-body h3 { color: var(--primary-color); margin: 30px 0 15px; font-weight: 700; }

        .article-tags-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border-color); }
        .article-tags-bottom span { font-weight: bold; margin-right: 10px; }
        .article-tags-bottom a { display: inline-block; background: var(--bg-light); padding: 5px 12px; border-radius: 4px; font-size: 13px; margin-right: 8px; color: var(--primary-color); }

        .article-nav { display: flex; justify-content: space-between; margin-top: 40px; font-size: 14px; background: var(--bg-light); padding: 20px; border-radius: 8px; }
        .article-nav a { color: var(--primary-color); font-weight: 600; display: block; max-width: 45%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .related-box { margin-top: 50px; }
        .related-title { font-size: 20px; font-weight: 800; margin-bottom: 20px; border-left: 4px solid var(--primary-color); padding-left: 10px; }
        .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .related-card { background: var(--bg-light); border-radius: 8px; overflow: hidden; padding: 15px; border: 1px solid var(--border-color); }
        .related-card img { width: 100%; height: 120px; object-fit: cover; border-radius: 4px; margin-bottom: 10px; }
        .related-card h4 { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 5px; height: 42px; overflow: hidden; }
        .related-card .r-meta { font-size: 12px; color: #999; }

        @media (max-width: 992px) {
            .desktop-nav, .header-actions { display: none; }
            .mobile-menu-btn { display: block; }
            .article-layout { margin: 20px; padding: 30px; }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .article-title { font-size: 24px; }
            .article-nav { flex-direction: column; gap: 15px; }
            .article-nav a { max-width: 100%; }
            .related-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }