@charset "utf-8";
/* CSS Document */

        :root {
            --primary-color: #0b2545;
            --accent-color: #134074;
            --highlight-color: #0077b6;
            --text-dark: #1d2d44;
            --text-muted: #64748b;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --border-color: #e2e8f0;
            --footer-bg: #07192f;
            --badge-company: #d97706;
            --badge-policy: #1d4ed8;
            --badge-cases: #7c3aed;
            --transition: all 0.3s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        body {
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.7;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }


        /* 面包屑导航 Breadcrumb */
        .breadcrumb-box {
            padding: 20px 0;
            font-size: 13.5px;
            color: var(--text-muted);
        }

        .breadcrumb-box a { transition: var(--transition); }
        .breadcrumb-box a:hover { color: var(--highlight-color); }
        .breadcrumb-box span { margin: 0 8px; color: #cbd5e1; }

        /* 布局 Grid */
        .article-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 35px;
            margin-bottom: 60px;
        }

        /* 主正文卡片 Main Article Container */
        .article-card {
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            padding: 40px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
        }

        .article-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 4px;
            color: var(--white);
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .article-badge.company { background: var(--badge-company); }
        .article-badge.policy { background: var(--badge-policy); }

        .article-main-title {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1.35;
            margin-bottom: 20px;
        }

        .article-meta-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .meta-info {
            display: flex;
            gap: 20px;
        }

        .meta-info span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .share-icons {
            display: flex;
            gap: 12px;
            font-size: 15px;
        }

        .share-icons a {
            color: var(--text-muted);
            transition: var(--transition);
        }

        .share-icons a:hover { color: var(--highlight-color); }

        .featured-img-box {
            width: 100%;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .featured-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 正文排版 */
        .article-body {
            font-size: 15.5px;
            color: var(--text-dark);
            line-height: 1.8;
        }

        .article-body p {
            margin-bottom: 22px;
        }

        .article-body h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 35px 0 15px;
            padding-left: 12px;
            border-left: 4px solid var(--highlight-color);
        }

        .quote-box {
            background: #f0f9ff;
            border-left: 4px solid var(--highlight-color);
            padding: 20px 24px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
            font-style: italic;
            color: var(--accent-color);
            font-size: 15px;
        }

        .quote-box i {
            font-size: 20px;
            color: var(--highlight-color);
            margin-right: 8px;
        }

        .article-body ul {
            margin-bottom: 22px;
            padding-left: 20px;
            list-style: disc;
        }

        .article-body li {
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        /* 上一篇 / 下一篇 Navigation */
        .article-nav {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .nav-item {
            flex: 1;
            padding: 16px;
            background: var(--bg-light);
            border-radius: 8px;
            transition: var(--transition);
        }

        .nav-item:hover {
            background: #e2e8f0;
        }

        .nav-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 4px;
            font-weight: 600;
        }

        .nav-title-text {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-color);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* 正文底部 CTA 卡片 */
        .article-cta {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--white);
            border-radius: 8px;
            padding: 30px;
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cta-text h4 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .cta-text p {
            font-size: 13px;
            color: #cbd5e1;
        }

        .btn-cta {
            background: var(--highlight-color);
            color: var(--white);
            padding: 10px 22px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 14px;
            white-space: nowrap;
            transition: var(--transition);
        }

        .btn-cta:hover { background: #0284c7; }

        /* 侧边栏 Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .widget-box {
            background: var(--white);
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 22px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }

        .widget-title {
            font-size: 15px;
            font-weight: 800;
            color: var(--primary-color);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--bg-light);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .widget-title i { color: var(--highlight-color); }

        .related-item {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            cursor: pointer;
        }

        .related-item:last-child { margin-bottom: 0; }

        .related-img {
            width: 70px;
            height: 55px;
            border-radius: 4px;
            object-fit: cover;
        }

        .related-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .related-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.35;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: var(--transition);
        }

        .related-item:hover .related-title { color: var(--highlight-color); }

        .related-date {
            font-size: 11.5px;
            color: #94a3b8;
            margin-top: 4px;
        }

        /* 页脚 Footer */
        footer {
            background-color: var(--footer-bg);
            color: #cbd5e1;
            padding: 40px 0 20px;
            font-size: 13.5px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        @media (max-width: 992px) {
            .article-layout { grid-template-columns: 1fr; }
            .article-card { padding: 25px; }
            .article-cta { flex-direction: column; gap: 20px; text-align: center; }
            .featured-img-box { height: 260px; }
        }

