﻿:root {
      --primary-color: #1D7BFF;
      --accent-color: #38BDF8;
      --bg-dark: #0F172A;
      --bg-light: #F8FAFC;
      --text-main: #1E293B;
      --text-muted: #64748B;
      --border-color: #E2E8F0;
      --glass-border: rgba(255, 255, 255, 0.1);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, sans-serif;
      color: var(--text-main);
      background-color: var(--bg-light);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    
    
    .header {
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 100;
      padding: 15px 0;
      border-bottom: 1px solid var(--border-color);
      background: #ffffff;
    }
    .header-wrapper { display: flex; align-items: center; justify-content: space-between; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { height: 40px; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: var(--bg-dark); }
    .nav-menu { display: flex; align-items: center; gap: 32px; }
    .nav-menu a { color: var(--text-main); font-weight: 500; font-size: 15px; }
    .nav-menu a:hover { color: var(--primary-color); }
    .menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--bg-dark); }

    
    .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--bg-dark); z-index: 1000; transition: left 0.3s ease; padding: 30px 24px; display: flex; flex-direction: column; gap: 30px; }
    .drawer.open { left: 0; }
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 999; display: none; }
    .drawer-overlay.show { display: block; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-header .logo span { color: #fff; }
    .drawer-close { background: none; border: none; color: #fff; font-size: 28px; }

    
    .banner-sub {
      background: radial-gradient(circle at 50% 30%, #1e293b 0%, var(--bg-dark) 100%);
      color: #fff;
      padding: 60px 0;
      text-align: center;
    }
    .banner-title { font-size: 32px; font-weight: 800; margin-bottom: 10px; }

    
    .list-wrapper { padding: 60px 0; display: grid; grid-template-columns: 8fr 4fr; gap: 40px; }
    .list-container { display: flex; flex-direction: column; gap: 30px; }
    
    .article-item {
      background: #fff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 4fr 8fr;
      transition: all 0.3s ease;
    }
    .article-item:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .article-img { height: 100%; min-height: 200px; background: #e2e8f0; overflow: hidden; }
    .article-img img { width: 100%; height: 100%; object-fit: cover; }
    .article-info { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
    .article-meta { display: flex; gap: 15px; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
    .article-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
    .article-summary { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

    
    .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
    .pagination a, .pagination span { padding: 8px 16px; border: 1px solid var(--border-color); border-radius: 6px; background: #fff; font-weight: 600; }
    .pagination .active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

    
    .sidebar { display: flex; flex-direction: column; gap: 40px; }
    .widget { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; }
    .widget-title { font-size: 18px; font-weight: 700; border-left: 4px solid var(--primary-color); padding-left: 12px; margin-bottom: 20px; color: var(--bg-dark); }
    .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; display: flex; align-items: center; justify-content: center; background: #e2e8f0; font-weight: 700; border-radius: 4px; font-size: 12px; }
    .hot-title { font-size: 14px; font-weight: 600; }

    
    .footer { background-color: var(--bg-dark); color: #94a3b8; padding: 80px 0 30px 0; border-top: 1px solid var(--glass-border); font-size: 14px; }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; margin-bottom: 60px; }
    .footer-brand p { margin-top: 20px; line-height: 1.8; }
    .footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 24px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }

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