﻿:root {
      --primary-color: rgb(52,168,83);
      --primary-hover: rgb(43,145,71);
      --dark-bg: #0A1128;
      --glacier-blue: #1D7BFF;
      --ice-silver: #F4F7FC;
      --text-main: #333333;
      --text-muted: #666666;
      --border-color: #E2E8F0;
      --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text-main); background: #FAFBFD; }
    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
    
    
    .site-header { background: #FFFFFF; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
    .header-container { max-width: 1200px; margin: 0 auto; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; }
    .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(--dark-bg); white-space: nowrap; }
    
    .desktop-nav { display: flex; align-items: center; gap: 24px; }
    .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-main); padding: 6px 12px; border-radius: 4px; }
    .desktop-nav a:hover { color: var(--glacier-blue); background: var(--ice-silver); }
    
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 5px; }
    .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; }
    
    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; pointer-events: none; transition: 0.3s; }
    .drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: #FFFFFF; z-index: 999; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 5px 0 20px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
    .drawer.active { left: 0; }
    .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-muted); }
    .drawer-content { flex: 1; overflow-y: auto; padding: 20px; }
    .drawer-nav { display: flex; flex-direction: column; gap: 15px; }
    .drawer-nav a { font-size: 16px; font-weight: 600; padding: 10px 15px; border-radius: 6px; color: var(--text-main); }
    .drawer-nav a:hover { background: var(--ice-silver); color: var(--glacier-blue); }

    
    .breadcrumb-section { background: var(--ice-silver); padding: 15px 20px; border-bottom: 1px solid var(--border-color); }
    .breadcrumb-container { max-width: 1200px; margin: 0 auto; font-size: 14px; color: var(--text-muted); }
    .breadcrumb-container a { color: var(--glacier-blue); }
    .breadcrumb-container a:hover { text-decoration: underline; }

    
    .main-container { max-width: 1200px; margin: 50px auto; padding: 0 20px; display: grid; grid-template-columns: 2.8fr 1.2fr; gap: 40px; }
    
    
    .list-header { border-bottom: 2px solid var(--primary-color); padding-bottom: 15px; margin-bottom: 30px; }
    .list-header h1 { font-size: 26px; font-weight: 800; color: var(--dark-bg); }
    .list-header h1 span { color: var(--primary-color); }
    .list-header p { font-size: 14px; color: var(--text-muted); margin-top: 5px; }

    
    .list-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
    .article-card { background: #FFFFFF; border-radius: 12px; overflow: hidden; box-shadow: var(--card-shadow); border: 1px solid var(--border-color); display: flex; gap: 20px; transition: 0.3s; }
    .article-card:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0,0,0,0.08); }
    .article-image { width: 220px; height: 160px; background: #E2E8F0; flex-shrink: 0; position: relative; }
    .article-image img { width: 100%; height: 100%; object-fit: cover; }
    .article-tag { position: absolute; top: 10px; left: 10px; background: var(--primary-color); color: #FFFFFF; padding: 3px 8px; border-radius: 3px; font-size: 10px; font-weight: bold; }
    .article-body { padding: 20px 20px 20px 0; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
    .article-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 15px; margin-bottom: 8px; }
    .article-title { font-size: 18px; font-weight: 700; color: var(--dark-bg); line-height: 1.4; margin-bottom: 10px; }
    .article-summary { font-size: 13px; color: var(--text-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; }
    .read-more { font-size: 13px; font-weight: 600; color: var(--primary-color); }

    
    .pagination-container { margin-top: 40px; display: flex; justify-content: center; gap: 10px; }
    .pagination-container a, .pagination-container span { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 10px; border-radius: 6px; border: 1px solid var(--border-color); background: #FFFFFF; color: var(--text-main); font-weight: 600; font-size: 14px; }
    .pagination-container a:hover { background: var(--primary-color); color: #FFFFFF; border-color: var(--primary-color); }
    .pagination-container .current { background: var(--primary-color); color: #FFFFFF; border-color: var(--primary-color); }
    .pagination-container .disabled { opacity: 0.5; pointer-events: none; }

    
    .sidebar { display: flex; flex-direction: column; gap: 30px; }
    .widget { background: #FFFFFF; border-radius: 12px; padding: 25px; border: 1px solid var(--border-color); box-shadow: var(--card-shadow); }
    .widget-title { font-size: 18px; font-weight: 700; color: var(--dark-bg); margin-bottom: 20px; border-left: 4px solid var(--primary-color); padding-left: 10px; }
    
    .sidebar-list { list-style: none; }
    .sidebar-list li { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed var(--border-color); display: flex; gap: 10px; }
    .sidebar-list li:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
    .sidebar-list-num { font-size: 14px; font-weight: bold; color: var(--primary-color); background: rgba(52,168,83,0.1); width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
    .sidebar-list-content h4 { font-size: 13px; font-weight: 700; color: var(--dark-bg); line-height: 1.4; margin-bottom: 4px; }
    .sidebar-list-content span { font-size: 11px; color: var(--text-muted); }

    .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-cloud a { background: var(--ice-silver); border: 1px solid var(--border-color); padding: 5px 12px; border-radius: 20px; font-size: 12px; color: var(--text-muted); }
    .tag-cloud a:hover { background: var(--primary-color); color: #FFFFFF; border-color: var(--primary-color); }

    
    .site-footer { background: #0A1128; color: #A0AEC0; padding: 80px 20px 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
    .footer-brand .logo span { color: #FFFFFF; }
    .footer-desc { font-size: 14px; line-height: 1.7; margin-top: 20px; color: #718096; }
    .footer-group h4 { font-size: 16px; font-weight: 700; color: #FFFFFF; margin-bottom: 25px; position: relative; }
    .footer-group h4::after { content: ''; display: block; width: 30px; height: 2px; background: var(--primary-color); margin-top: 8px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 14px; }
    .footer-links a:hover { color: #FFFFFF; padding-left: 5px; }
    .footer-info p { font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
    .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: 13px; color: #4A5568; }

    @media (max-width: 1024px) {
      .main-container { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .desktop-nav { display: none; }
      .nav-toggle { display: flex; }
      .article-card { flex-direction: column; }
      .article-image { width: 100%; height: 180px; }
      .article-body { padding: 20px; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
    }