﻿:root { --primary: rgb(249,115,22); --primary-hover: #ea580c; --dark: #1f2937; --darker: #111827; --light: #f3f4f6; --white: #ffffff; --text-main: #374151; --text-muted: #6b7280; --border: #e5e7eb; --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --transition: all 0.3s ease; }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif; color: var(--text-main); background-color: var(--light); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul, li { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .site-header { background: var(--darker); padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; }
        .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(--white); white-space: nowrap; letter-spacing: 1px; }
        .main-nav { display: flex; gap: 30px; align-items: center; }
        .main-nav a { color: var(--light); font-size: 16px; font-weight: 500; padding: 8px 0; position: relative; }
        .main-nav a:hover { color: var(--primary); }
        .main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
        .main-nav a:hover::after { width: 100%; }
        .menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }
        
        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
        .drawer-nav { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--darker); z-index: 1000; box-shadow: 2px 0 10px rgba(0,0,0,0.5); transition: transform 0.3s ease; display: flex; flex-direction: column; }
        .drawer-nav.active { transform: translateX(300px); }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
        .drawer-menu { padding: 20px 0; overflow-y: auto; flex-grow: 1; }
        .drawer-menu a { display: block; padding: 12px 25px; color: var(--light); font-size: 16px; border-left: 3px solid transparent; }
        .drawer-menu a:hover { background: rgba(255,255,255,0.05); color: var(--primary); border-left-color: var(--primary); }

        
        .page-banner { background: var(--darker) url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?auto=format&fit=crop&w=1920&q=80') center/cover; position: relative; padding: 80px 0; text-align: center; color: var(--white); }
        .page-banner::before { content: ''; position: absolute; inset: 0; background: rgba(17,24,39,0.85); }
        .page-banner-content { position: relative; z-index: 1; }
        .page-title { font-size: 36px; font-weight: bold; margin-bottom: 15px; color: var(--primary); }
        
        
        .breadcrumb { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 14px; color: #d1d5db; position: relative; z-index: 1; }
        .breadcrumb a { color: var(--white); }
        .breadcrumb a:hover { color: var(--primary); }
        .breadcrumb span { color: var(--primary); }

        
        .main-content { padding: 60px 0; background: var(--light); }
        .layout-wrapper { display: grid; grid-template-columns: 1fr; gap: 30px; }
        
        
        .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .article-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
        .article-card:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); transform: translateY(-3px); border-bottom: 3px solid var(--primary); }
        .article-img { width: 100%; height: 220px; object-fit: cover; }
        .article-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
        .article-tags { margin-bottom: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
        .article-tags span { background: rgba(249,115,22,0.1); color: var(--primary); font-size: 12px; padding: 4px 10px; border-radius: 4px; font-weight: 500; }
        .article-title { font-size: 20px; font-weight: bold; color: var(--darker); margin-bottom: 12px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-summary { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }
        .article-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #9ca3af; border-top: 1px solid var(--border); padding-top: 15px; }

        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--white); border: 1px solid var(--border); border-radius: 4px; color: var(--text-main); font-weight: 500; transition: var(--transition); }
        .pagination a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
        .pagination .current { background: var(--primary); color: var(--white); border-color: var(--primary); }
        
        
        .site-footer { background: var(--darker); color: #9ca3af; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-logo { margin-bottom: 20px; }
        .site-footer .logo span { color: var(--white); }
        .footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
        .footer-widget h4 { color: var(--white); font-size: 18px; font-weight: bold; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
        .footer-widget h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--primary); }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; display: inline-block; }
        .footer-links a:hover { color: var(--primary); transform: translateX(5px); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
        .footer-bottom-links { display: flex; gap: 20px; }

        @media (max-width: 1024px) {
            .article-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .main-nav { display: none; }
            .menu-toggle { display: block; }
            .article-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
        }