﻿:root {
            --primary: rgb(234,67,53);
            --primary-hover: rgba(234,67,53,0.9);
            --primary-light: rgba(234,67,53,0.1);
            --dark: #0f172a;
            --dark-sub: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --border: #e2e8f0;
            --shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
            --radius: 12px;
            --font: system-ui, -apple-system, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: var(--font); color: var(--dark); background: var(--light); line-height: 1.6; overflow-x: hidden; }
        a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
        
        
        header { background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
        .nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 38px; 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: #fff; white-space: nowrap; letter-spacing: -0.5px; }
        .logo span strong { color: var(--primary); }
        .nav-menu { display: flex; align-items: center; gap: 32px; list-style: none; }
        .nav-menu a { color: #cbd5e1; font-size: 15px; font-weight: 500; padding: 8px 0; border-bottom: 2px solid transparent; }
        .nav-menu a:hover { color: var(--primary); border-bottom-color: var(--primary); }
        .nav-btn { background: var(--primary); color: #fff; padding: 10px 24px; border-radius: 30px; font-size: 14px; font-weight: 600; box-shadow: 0 4px 15px rgba(234,67,53,0.3); }
        .nav-btn:hover { background: var(--primary-hover); transform: translateY(-2px); }
        .nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 4px; }
        .nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s; }

        
        .drawer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 1001; }
        .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: var(--dark); z-index: 1002; transition: 0.3s ease-out; display: flex; flex-direction: column; padding: 30px 24px; box-shadow: 5px 0 25px rgba(0,0,0,0.5); }
        .drawer.active { left: 0; }
        .drawer-overlay.active { display: block; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
        .drawer-close { background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
        .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
        .drawer-nav a { color: #cbd5e1; font-size: 16px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .drawer-nav a:hover { color: var(--primary); }
        .drawer-footer { margin-top: auto; color: var(--gray); font-size: 12px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }

        
        .page-banner { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); color: #fff; padding: 60px 20px; text-align: center; }
        .page-banner-content { max-width: 800px; margin: 0 auto; }
        .breadcrumbs { font-size: 14px; color: #94a3b8; }
        .breadcrumbs a { color: #cbd5e1; }
        .breadcrumbs a:hover { color: var(--primary); }

        
        .article-layout { max-width: 1200px; margin: 60px auto; padding: 0 20px; display: grid; grid-template-columns: 2.5fr 1fr; gap: 40px; }
        .article-main { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 40px; box-shadow: var(--shadow); }
        
        .article-header { border-bottom: 1px solid var(--border); padding-bottom: 30px; margin-bottom: 30px; }
        .article-headline { font-size: 32px; font-weight: 800; line-height: 1.3; margin-bottom: 20px; color: var(--dark); }
        .article-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; color: var(--gray); }
        .meta-item { display: flex; align-items: center; gap: 6px; }

        .article-content { font-size: 16px; line-height: 1.8; color: #334155; }
        .article-content p { margin-bottom: 25px; }
        .article-content h2 { font-size: 24px; font-weight: 800; margin: 40px 0 20px; color: var(--dark); }
        .article-content img { max-width: 100%; border-radius: 8px; margin: 20px 0; }

        
        .post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 30px 0; margin: 40px 0; }
        .post-nav-box { display: flex; flex-direction: column; gap: 8px; }
        .post-nav-label { font-size: 12px; color: var(--gray); font-weight: bold; text-transform: uppercase; }
        .post-nav-title { font-weight: 700; font-size: 15px; }
        .post-nav-title:hover { color: var(--primary); }

        
        .like-section { margin-top: 50px; }
        .like-title { font-size: 20px; font-weight: 800; margin-bottom: 25px; }
        .like-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .like-card { background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 20px; display: flex; gap: 15px; }
        .like-card-img { width: 100px; height: 80px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #e2e8f0; }
        .like-card-img img { width: 100%; height: 100%; object-fit: cover; }
        .like-card-info h4 { font-size: 14px; font-weight: 700; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
        .like-card-info h4 a:hover { color: var(--primary); }
        .like-card-date { font-size: 12px; color: var(--gray); }

        
        .sidebar { display: flex; flex-direction: column; gap: 30px; }
        .widget { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 30px; box-shadow: var(--shadow); }
        .widget-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
        .widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--primary); }
        .hot-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
        .hot-item { display: flex; gap: 12px; align-items: center; }
        .hot-num { width: 24px; height: 24px; background: var(--light); color: var(--gray); border-radius: 50%; font-size: 12px; font-weight: bold; display: flex; align-items: center; justify-content: center; }
        .hot-item:nth-child(-n+3) .hot-num { background: var(--primary); color: #fff; }
        .hot-link { font-size: 14px; font-weight: 600; flex-grow: 1; }
        .hot-link:hover { color: var(--primary); }

        
        footer { background: #0f172a; color: #94a3b8; padding: 80px 20px 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
        .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
        .footer-desc p { font-size: 14px; line-height: 1.7; margin-top: 15px; }
        .footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 25px; position: relative; }
        .footer-col h4::after { content: ''; display: block; width: 30px; height: 2px; background: var(--primary); margin-top: 10px; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 15px; }
        .footer-links a { color: #cbd5e1; font-size: 14px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-contact p { font-size: 14px; margin-bottom: 15px; }
        .footer-contact strong { color: #fff; }
        .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); text-align: center; font-size: 12px; line-height: 1.8; }
        .footer-bottom p { margin-bottom: 10px; }
        .footer-map-links { margin-bottom: 15px; }
        .footer-map-links a { color: #cbd5e1; margin: 0 10px; }

        @media (max-width: 1024px) {
            .article-layout { grid-template-columns: 1fr; }
            .footer-container { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-menu, .nav-btn { display: none; }
            .nav-toggle { display: flex; }
            .article-main { padding: 25px; }
            .like-grid { grid-template-columns: 1fr; }
            .footer-container { grid-template-columns: 1fr; }
        }