﻿:root { --primary: rgb(253,121,168); --primary-light: rgba(253,121,168, 0.1); --text-main: #1e293b; --text-muted: #64748b; --bg-body: #f8fafc; --bg-card: #ffffff; --border-color: #e2e8f0; --shadow-md: 0 4px 15px rgba(253,121,168, 0.15); }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'PingFang SC', sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .site-header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo img { display: block; height: 36px; width: auto; max-width: 150px; 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: 25px; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-main); position: relative; padding: 5px 0; }
        .desktop-nav a:hover { color: var(--primary); }
        .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--primary); transition: all 0.3s; transform: translateX(-50%); }
        .desktop-nav a:hover::after { width: 100%; }
        .mobile-btn { display: none; font-size: 24px; cursor: pointer; color: var(--text-main); background: none; border: none; }
        
        
        .drawer-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer-mask.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-card); z-index: 1000; transition: all 0.3s; box-shadow: 2px 0 10px 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: 24px; color: var(--text-muted); cursor: pointer; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid #f1f5f9; }

        
        .page-header { background: var(--bg-card); padding: 40px 0; text-align: center; border-bottom: 1px solid var(--border-color); }
        .page-title { font-size: 32px; font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
        .breadcrumb { font-size: 14px; color: var(--text-muted); }
        .breadcrumb a { color: var(--text-main); }
        .breadcrumb a:hover { color: var(--primary); }

        .list-wrap { padding: 50px 0; display: flex; gap: 30px; }
        .main-content { flex: 1; }
        .sidebar { width: 300px; display: none; } 
        
        @media (min-width: 1024px) { .sidebar { display: block; } }

        
        .art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 40px; }
        .art-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
        .art-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
        .art-img { width: 100%; height: 180px; object-fit: cover; }
        .art-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .art-tags span { display: inline-block; font-size: 12px; color: var(--primary); background: var(--primary-light); padding: 2px 8px; border-radius: 4px; margin-bottom: 10px; }
        .art-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text-main); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .art-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; flex: 1; }
        .art-meta { display: flex; justify-content: space-between; font-size: 12px; color: #94a3b8; border-top: 1px solid var(--border-color); padding-top: 15px; }

        
        .pagination { display: flex; justify-content: center; gap: 10px; }
        .page-item { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-main); font-weight: 500; transition: all 0.3s; }
        .page-item:hover, .page-item.active { background: var(--primary); color: #fff; border-color: var(--primary); }

        
        .widget { background: var(--bg-card); border-radius: 12px; padding: 25px; margin-bottom: 30px; border: 1px solid var(--border-color); }
        .widget-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-left: 12px; border-left: 4px solid var(--primary); color: var(--text-main); }
        
        
        .site-footer { background: #0f172a; color: #e2e8f0; padding: 60px 0 20px; margin-top: 50px;}
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; list-style: none; }
        .footer-links a { font-size: 14px; color: #cbd5e1; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 13px; color: #64748b; }

        @media (max-width: 992px) { .art-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 768px) { .desktop-nav { display: none; } .mobile-btn { display: block; } .art-grid, .footer-grid { grid-template-columns: 1fr; } }