﻿:root { --theme-color: rgb(255,184,108); --theme-color-hover: rgb(240,165,85); --bg-color: #f8fafc; --text-main: #1e293b; --text-muted: #64748b; --border-color: #e2e8f0; --white: #ffffff; --shadow-sm: 0 1px 3px rgba(0,0,0,0.1); --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1); --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1); --radius: 12px; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .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: 22px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; align-items: center; gap: 32px; }
        .desktop-nav a { font-weight: 500; transition: color 0.3s; }
        .desktop-nav a:hover { color: var(--theme-color); }
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 8px; font-weight: 600; transition: all 0.3s; border: none; }
        .btn-primary { background: var(--theme-color); color: #fff; }
        .btn-outline { border: 1px solid var(--theme-color); color: var(--theme-color); }
        .mobile-menu-btn { display: none; font-size: 24px; background: none; border: none; cursor: pointer; }
        .drawer-mask { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; backdrop-filter: blur(2px); }
        .drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: var(--white); z-index: 999; transition: left 0.3s ease; overflow-y: auto; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
        .drawer-nav a { display: block; padding: 12px 16px; border-radius: 8px; font-weight: 500; background: var(--bg-color); }

        
        .page-header { background: #fff; padding: 40px 0; border-bottom: 1px solid var(--border-color); margin-bottom: 40px; }
        .breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
        .breadcrumb a { color: var(--theme-color); }
        .page-title { font-size: 32px; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
        .page-desc { color: var(--text-muted); font-size: 16px; }

        .list-layout { display: grid; grid-template-columns: 3fr 1fr; gap: 40px; margin-bottom: 80px; }
        .article-list { display: flex; flex-direction: column; gap: 30px; }
        .list-card { display: flex; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s; }
        .list-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
        .lc-img { width: 280px; flex-shrink: 0; }
        .lc-img img { width: 100%; height: 100%; object-fit: cover; }
        .lc-content { padding: 24px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
        .lc-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .lc-title a:hover { color: var(--theme-color); }
        .lc-desc { color: var(--text-muted); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .lc-meta { font-size: 13px; color: #94a3b8; display: flex; gap: 16px; align-items: center; }
        .lc-tags span { background: rgba(255,184,108,0.1); color: #e68a2e; padding: 2px 8px; border-radius: 4px; margin-right: 6px; }

        .sidebar { display: flex; flex-direction: column; gap: 30px; }
        .widget { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
        .widget-title { font-size: 18px; font-weight: 700; border-left: 4px solid var(--theme-color); padding-left: 12px; margin-bottom: 20px; }
        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
        .pagination a { padding: 8px 16px; background: #fff; border: 1px solid var(--border-color); border-radius: 6px; transition: 0.3s; }
        .pagination a:hover, .pagination a.active { background: var(--theme-color); color: #fff; border-color: var(--theme-color); }

        
        .footer { background: #0f172a; color: #94a3b8; padding: 80px 0 30px; margin-top: auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
        .footer-brand .logo span { color: #fff; }
        .footer-desc { margin-top: 20px; font-size: 14px; }
        .footer-title { color: #fff; font-size: 18px; margin-bottom: 24px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; }

        @media (max-width: 992px) {
            .desktop-nav, .header-actions { display: none; }
            .mobile-menu-btn { display: block; }
            .list-layout { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .list-card { flex-direction: column; }
            .lc-img { width: 100%; height: 200px; }
            .footer-grid { grid-template-columns: 1fr; }
        }