﻿:root { --primary: rgb(225,112,85); --primary-hover: rgb(200, 90, 65); --primary-light: rgba(225,112,85, 0.1); --text-dark: #2d3436; --text-gray: #636e72; --bg-body: #f8f9fa; --bg-white: #ffffff; --border: #eaedf1; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'PingFang SC', sans-serif; background: var(--bg-body); color: var(--text-dark); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        
        .site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { font-size: 20px; font-weight: 800; color: #111; white-space: nowrap; }
        .desktop-nav ul { display: flex; gap: 24px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; }
        .desktop-nav a:hover { color: var(--primary); }
        .header-actions { display: flex; gap: 12px; align-items: center; }
        .btn { padding: 10px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.3s; display: inline-block; }
        .btn-primary { background: var(--primary); color: #fff; border: 1px solid var(--primary); }
        .btn-primary:hover { background: var(--primary-hover); }
        .btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        
        .mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; z-index: 999; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 1000; transition: 0.3s; display: flex; flex-direction: column; }
        .mobile-drawer.active { left: 0; }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border); }
        .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; }
        .drawer-body { padding: 20px; overflow-y: auto; flex-grow: 1; }
        .mobile-nav li { margin-bottom: 16px; font-weight: 500; }
        .drawer-footer { padding: 20px; border-top: 1px solid var(--border); }

        .site-footer { background: #1e272e; color: #d2dae2; padding: 70px 0 20px; font-size: 14px; margin-top: 60px; }
        .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
        .brand-col .logo { background: #fff; padding: 8px 16px; border-radius: 8px; margin-bottom: 20px; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li, .footer-contact li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }

        
        .breadcrumb-wrap { padding: 20px 0; font-size: 14px; color: var(--text-gray); border-bottom: 1px solid var(--border); margin-bottom: 40px; background: #fff; }
        .breadcrumb-wrap a { color: var(--text-dark); }
        .breadcrumb-wrap a:hover { color: var(--primary); }

        .article-layout { display: flex; gap: 40px; }
        .article-main { flex: 1; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
        .article-sidebar { width: 320px; }

        .article-header { border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 30px; }
        .article-title { font-size: 32px; font-weight: 800; color: #111; margin-bottom: 16px; line-height: 1.4; }
        .article-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; color: var(--text-gray); align-items: center; }
        .meta-item { display: inline-flex; align-items: center; gap: 6px; }
        .article-tags a { background: var(--primary-light); color: var(--primary); padding: 4px 10px; border-radius: 4px; font-size: 13px; margin-right: 6px; }

        .article-content { font-size: 16px; line-height: 1.8; color: #333; }
        .article-content h2, .article-content h3 { margin: 30px 0 15px; color: #111; }
        .article-content p { margin-bottom: 20px; text-align: justify; }
        .article-content img { margin: 20px auto; }
        .article-content blockquote { border-left: 4px solid var(--primary); padding: 15px 20px; background: var(--bg-body); color: var(--text-gray); margin-bottom: 20px; border-radius: 4px; }

        .article-nav { display: flex; justify-content: space-between; padding: 30px 0; margin-top: 40px; border-top: 1px solid var(--border); font-size: 15px; }
        .nav-prev, .nav-next { max-width: 48%; }
        .nav-prev span, .nav-next span { color: var(--text-gray); display: block; margin-bottom: 5px; font-size: 13px; }
        .nav-prev a, .nav-next a { color: var(--primary); font-weight: 600; }

        .related-section { margin-top: 50px; }
        .related-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: #111; border-left: 4px solid var(--primary); padding-left: 12px; }
        .related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .article-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: 0.3s; }
        .article-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); transform: translateY(-3px); }
        .card-thumb { height: 160px; overflow: hidden; position: relative; display: block; }
        .card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .article-card:hover .card-thumb img { transform: scale(1.05); }
        .card-content { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
        .card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .widget { background: #fff; padding: 24px; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); border: 1px solid var(--border); }
        .widget-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-light); color: #111; }
        .service-hint { background: var(--primary-light); padding: 15px; border-radius: 8px; font-size: 14px; color: var(--primary); font-weight: 600; line-height: 1.6; }

        @media (max-width: 992px) {
            .desktop-nav, .header-actions.desktop-only { display: none; }
            .mobile-toggle { display: block; }
            .article-layout { flex-direction: column; }
            .article-sidebar { width: 100%; }
            .article-main { padding: 20px; }
            .footer-top { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .related-grid { grid-template-columns: 1fr; }
            .article-nav { flex-direction: column; gap: 15px; }
            .nav-prev, .nav-next { max-width: 100%; }
        }