﻿:root { --primary: rgb(255,204,0); --primary-hover: rgb(255, 220, 50); --bg-dark: #0b0c10; --bg-card: #151821; --bg-lighter: #1e222d; --text-main: #ffffff; --text-muted: #9499a8; --border-color: rgba(255,204,0,0.15); }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'PingFang SC', sans-serif; background: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .site-header { background: rgba(11, 12, 16, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); }
        .header-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(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-muted); position: relative; }
        .desktop-nav a:hover { color: var(--primary); }
        .header-actions { display: flex; gap: 15px; }
        .btn-entry { background: var(--primary); color: #111; padding: 8px 20px; border-radius: 4px; font-weight: bold; font-size: 14px; }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
        .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-card); z-index: 1000; transition: 0.4s; border-right: 1px solid var(--border-color); }
        .mobile-drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); 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-nav a { display: block; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.02); }
        
        .site-footer { background: #07080a; padding: 60px 0 20px; border-top: 1px solid rgba(255,204,0,0.1); margin-top: 80px;}
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { font-size: 18px; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block;}
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: var(--text-muted); font-size: 14px; }
        .footer-col ul li a:hover { color: var(--primary); }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #555; font-size: 13px; }

        
        .page-header { padding: 60px 0; background: linear-gradient(to right, #151821, #0b0c10); border-bottom: 1px solid var(--border-color); text-align: center; }
        .breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
        .breadcrumb a { color: var(--primary); }
        .page-title { font-size: 36px; margin-bottom: 10px; }
        .page-desc { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }
        
        .list-content { padding: 50px 0; display: grid; grid-template-columns: 3fr 1fr; gap: 40px; }
        
        .article-list { display: flex; flex-direction: column; gap: 30px; }
        .list-item { display: flex; background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid transparent; transition: 0.3s; }
        .list-item:hover { border-color: var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.3); transform: translateY(-3px); }
        .item-img { width: 280px; flex-shrink: 0; position: relative; overflow: hidden; }
        .item-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .list-item:hover .item-img img { transform: scale(1.05); }
        .item-body { padding: 30px; display: flex; flex-direction: column; justify-content: center; flex-grow: 1; }
        .item-title { font-size: 22px; margin-bottom: 15px; }
        .item-title a:hover { color: var(--primary); }
        .item-summary { color: var(--text-muted); margin-bottom: 20px; font-size: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .item-meta { display: flex; gap: 20px; font-size: 13px; color: #777; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; }
        .item-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-right: auto; }
        .item-tags a { background: rgba(255,204,0,0.1); color: var(--primary); padding: 3px 10px; border-radius: 4px; }
        
        
        .sidebar-widget { background: var(--bg-card); padding: 25px; border-radius: 12px; margin-bottom: 30px; border: 1px solid var(--border-color); }
        .widget-title { font-size: 18px; margin-bottom: 20px; padding-left: 15px; border-left: 4px solid var(--primary); }
        .hot-list { list-style: none; }
        .hot-list li { margin-bottom: 15px; border-bottom: 1px dashed rgba(255,255,255,0.05); padding-bottom: 15px; }
        .hot-list li:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
        .hot-list a { font-size: 14px; display: block; line-height: 1.5; color: var(--text-main); }
        .hot-list a:hover { color: var(--primary); }
        .hot-date { font-size: 12px; color: var(--text-muted); margin-top: 5px; display: block; }
        
        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
        .pagination a, .pagination span { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; font-size: 14px; }
        .pagination a:hover { border-color: var(--primary); color: var(--primary); }
        .pagination .current { background: var(--primary); color: #111; border-color: var(--primary); font-weight: bold; }
        
        @media (max-width: 992px) {
            .list-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .desktop-nav, .header-actions { display: none; }
            .menu-toggle { display: flex; }
            .list-item { flex-direction: column; }
            .item-img { width: 100%; height: 200px; }
            .footer-grid { grid-template-columns: 1fr; }
        }