        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
            background: linear-gradient(180deg, #fafbfc 0%, #f0f2f5 100%);
            color: #1a1a1a;
            overflow-x: hidden;
            font-size: 14px;
        }

        /* 顶部横幅 - 精致设计 */
        .header {
            background: linear-gradient(135deg, #0c1f3c 0%, #1a365d 30%, #0c1f3c 100%);
            color: white;
            padding: 28px 0;
            position: relative;
            overflow: hidden;
            z-index: 1001; /* 确保header在移动菜单之上，避免被覆盖但保持可见 */
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 60px,
                rgba(255,255,255,0.015) 60px,
                rgba(255,255,255,0.015) 61px
            );
            pointer-events: none;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg,
                transparent 0%,
                #c9a227 20%,
                #d4af37 50%,
                #c9a227 80%,
                transparent 100%
            );
        }

        .header-top {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #d4af37 0%, #e8c547 50%, #d4af37 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #0c1f3c;
            font-weight: 500;
            box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25),
                        inset 0 1px 0 rgba(255,255,255,0.4);
            border: 2px solid rgba(255,255,255,0.2);
        }

        .logo-text {
            display: flex;
            align-items: center;
            gap: 14px;
            height: 64px;
        }

        .logo-name {
            font-size: 30px;
            font-weight: 500;
            letter-spacing: 3px;
            color: #ffffff;
            line-height: 1;
        }

        .location {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            letter-spacing: 1.5px;
        }

        .location-line {
            width: 1px;
            background: rgba(255,255,255,0.25);
            margin-right: 14px;
            height: 16px;
            margin-top: 1px;
            display: none;
        }

        .location-text {
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            font-weight: 400;
            line-height: 1.5;
            padding-left: 14px;
            position: relative;
        }

        .location-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 16px;
            background: rgba(255,255,255,0.25);
        }

        .location-text:last-of-type {
            margin-top: 4px;
        }

        .contact-info {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 22px;
            background: rgba(255,255,255,0.1);
            border-radius: 6px;
            font-size: 15px;
            color: rgba(255,255,255,0.95);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-2px);
        }

        .contact-item .icon {
            font-size: 17px;
            opacity: 0.9;
        }

        .contact-item .text {
            font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
            font-weight: 400;
            letter-spacing: 1px;
        }

        /* 导航栏 - 全新设计 */
        .nav {
            background: linear-gradient(135deg, #1a365d 0%, #0c1f3c 100%);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            border-bottom: 1px solid transparent;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            position: relative;
        }

        /* 导航菜单 - PC端显示为flex行布局 */
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 8px;
            flex-direction: row;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 18px 34px;
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            position: relative;
            letter-spacing: 1px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        /* 移动端菜单按钮 - PC端默认隐藏 */
        .mobile-menu-btn {
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: #ffffff;
            font-size: 28px;
            cursor: pointer;
            padding: 10px 18px;
            border-radius: 8px;
            font-weight: 400;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            line-height: 1;
            width: auto;
            min-width: 56px;
            height: 48px;
        }

        .mobile-menu-btn:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.4);
            transform: scale(1.02);
        }

        .mobile-menu-btn.active {
            background: rgba(212, 175, 55, 0.3);
            border-color: #d4af37;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: calc(100% + 20px);
            height: 3px;
            background: #d4af37;
            border-radius: 2px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link span {
            position: relative;
            z-index: 1;
        }

        .nav-link:hover {
            color: #ffffff;
        }

        .nav-link:hover::before {
            opacity: 0;
        }

        .nav-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .nav-link.active {
            color: #ffffff;
        }

        /* 响应式设计 - 关键修复点：确保电脑端导航可见，移动端显示汉堡菜单 */
        @media (max-width: 1200px) {
            .two-column-section {
                gap: 24px;
            }
            .header-top,
            .nav-container {
                padding-left: 40px;
                padding-right: 40px;
            }

            .nav-link {
                padding: 16px 28px;
                font-size: 15px;
                letter-spacing: 0.5px;
            }
        }

        @media (max-width: 992px) {
            .two-column-section {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-logo {
                justify-content: center;
            }

            .footer-contact-info {
                align-items: center;
            }

            .footer-qrcode-img {
                margin: 0 auto 12px;
            }
            
            .contact-info {
                gap: 16px;
            }

            .contact-item {
                padding: 8px 18px;
                font-size: 14px;
            }

            .logo-icon {
                width: 56px;
                height: 56px;
                font-size: 28px;
            }

            .logo-text {
                gap: 12px;
            }

            .logo-name {
                font-size: 26px;
                letter-spacing: 2px;
            }

            .location {
                font-size: 14px;
                padding-left: 12px;
            }

            .nav-link {
                padding: 16px 26px;
                font-size: 15px;
            }

            .nav-list {
                gap: 6px;
            }
        }

        /* 移动端样式：当屏幕宽度小于等于768px时，隐藏PC导航菜单，显示汉堡按钮 + 优雅侧滑/全屏菜单 */
        @media (max-width: 768px) {
            body {
                padding-top: 82px; /* 防止内容被固定在顶部的header遮挡 */
            }

            .main {
                padding: 40px 24px;
            }

            .banner {
                margin-bottom: 40px;
            }

            .footer-content {
                padding: 40px 24px 0;
            }

            .footer-main {
                gap: 28px;
                padding-bottom: 36px;
            }

            .footer-bottom {
                padding: 20px 24px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            /* 移动端核心调整：隐藏PC端横排导航，显示汉堡按钮，菜单变成全屏浮层 */
            .mobile-menu-btn {
                display: block;
            }

            .header {
                padding: 16px 0;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1100; /* 确保header在移动菜单之上不被覆盖内容，同时保持可见 */
                background: linear-gradient(135deg, #0c1f3c 0%, #1a365d 30%, #0c1f3c 100%);
            }

            .header-top {
                padding-left: 20px;
                padding-right: 20px;
            }

            .logo {
                gap: 12px;
            }

            .logo-icon {
                width: 48px;
                height: 48px;
                font-size: 24px;
            }

            .logo-text {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
                height: auto;
            }

            .logo-name {
                font-size: 20px;
                letter-spacing: 1px;
            }

            .location {
                font-size: 12px;
                padding-left: 0;
                border-left: none;
                color: rgba(255,255,255,0.9); /* 保证可见性 */
            }

            /* 隐藏桌面版的常规导航菜单，改用移动端全屏菜单 */
            .nav-list {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, #0c1f3c 0%, #1a365d 100%);
                flex-direction: column;
                display: none;  /* 默认隐藏 */
                justify-content: flex-start;
                padding-top: 120px; /* 增加顶部留白，避免覆盖logo区域但实际header在上方不会被遮住 */
                overflow-y: auto;
                z-index: 1050;
                gap: 0;
                margin: 0;
                box-shadow: 0 0 40px rgba(0,0,0,0.3);
            }

            .nav-list.active {
                display: flex;
            }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .nav-link {
                padding: 20px 30px;
                font-size: 18px;
                text-align: left;
                border-radius: 0;
                background: transparent !important;
            }

            .nav-link::before,
            .nav-link::after {
                display: none;
            }

            .nav-link.active {
                background: rgba(212, 175, 55, 0.15) !important;
                color: #d4af37;
            }

            /* 移动端为了简洁隐藏联系方式，避免拥挤，不干扰菜单关闭/打开 */
            .contact-info {
                display: none;
            }
            
            /* 修复：确保汉堡按钮旁边原有的头部内容不会被覆盖或者消失，因为.header的z-index高于菜单，所以始终可见 */
            .header {
                background: linear-gradient(135deg, #0c1f3c 0%, #1a365d 30%, #0c1f3c 100%);
            }
            
            /* 可选: 菜单打开时，让body固定防止滚动穿透 */
            body.menu-open {
                overflow: hidden;
            }
        }

        /* 主内容区域 - 三栏布局 */
        .main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 50px;
            min-height: 700px;
        }

        /* Banner区域 */
        .banner {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin: 0 0 50px;
            box-shadow: 0 15px 50px rgba(128, 128, 128, 0.3);
            background: #0c1f3c;
        }

        .banner img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 导航栏下方的分隔线 */
        .nav-separator {
            width: 100%;
            height: 1px;
            background: #595959;
        }

        /* 二栏区域 - 案件进展 + 检察院法院地址 */
        .two-column-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 50px;
            margin-bottom: 45px;
        }

        /* 案件进展卡片 */
        .case-progress {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
            overflow: hidden;
            position: relative;
            padding-bottom: 48px;
        }

        .case-progress::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0c1f3c 0%, #d4af37 50%, #0c1f3c 100%);
            background-size: 200% 100%;
            animation: gradientMove 3s ease infinite;
        }

        .case-header {
            padding: 28px 32px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

        .case-title {
            font-size: 18px;
            font-weight: 600;
            color: #0c1f3c;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .case-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: linear-gradient(180deg, #d4af37 0%, #c9a227 100%);
            border-radius: 2px;
        }

        .case-list {
            height: 320px;
            overflow: hidden;
            position: relative;
            padding: 0 32px;
        }

        .case-scroll-wrapper {
            animation: scrollUp 20s linear infinite;
        }

        .case-scroll-wrapper:hover {
            animation-play-state: paused;
        }

        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        .case-item {
            padding: 16px 0;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .case-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #0c1f3c;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .case-content {
            flex: 1;
        }

        .case-title-text {
            font-size: 15px;
            color: #1a202c;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 4px;
        }

        .case-date {
            font-size: 13px;
            color: #a0aec0;
            font-weight: 400;
        }

        /* 检察院法院地址 */
        .court-address {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
            overflow: hidden;
            position: relative;
            padding-bottom: 48px;
        }

        .court-address::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0c1f3c 0%, #d4af37 50%, #0c1f3c 100%);
            background-size: 200% 100%;
            animation: gradientMove 3s ease infinite;
        }

        .court-header {
            padding: 28px 32px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

        .court-title {
            font-size: 18px;
            font-weight: 600;
            color: #0c1f3c;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .court-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: linear-gradient(180deg, #d4af37 0%, #c9a227 100%);
            border-radius: 2px;
        }

        .court-list {
            height: 320px;
            overflow-y: auto;
            padding: 0 32px;
        }

        .court-extra-btn {
            display: inline-block;
            padding: 16px 24px;
            background: linear-gradient(180deg, #e5c048 0%, #d4af37 30%, #c9a227 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-size: 16px;
            margin-top: 20px;
            margin-bottom: 10px;
            font-weight: 600;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.4);
            border: 2px solid #b8921f;
        }

        .court-extra-btn:hover {
            background: linear-gradient(180deg, #d4af37 0%, #c9a227 30%, #b8921f 100%);
            box-shadow: 0 6px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
        }

        .court-list::-webkit-scrollbar {
            width: 10px;
        }

        .court-list::-webkit-scrollbar-track {
            background: rgba(0,0,0,0.08);
            border-radius: 5px;
        }

        .court-list::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #d4af37 0%, #c9a227 100%);
            border-radius: 5px;
        }

        .court-item {
            padding: 18px 0;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

        .court-item:last-child {
            border-bottom: none;
        }

        .court-name {
            font-size: 15px;
            color: #0c1f3c;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .court-address-text {
            font-size: 14px;
            color: #4a5568;
            line-height: 1.8;
            display: flex;
            gap: 8px;
        }

        .court-address-text::before {
            content: '📍';
            font-size: 12px;
            margin-top: 2px;
        }

        .court-phone {
            font-size: 13px;
            color: #718096;
            margin-top: 4px;
            display: flex;
            gap: 6px;
        }

        .court-phone::before {
            content: '📞';
            font-size: 12px;
        }

        /* 三栏卡片布局 - 简介+新闻+联系我们 */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 32px;
            margin-top: -20px;
        }

        .card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0c1f3c 0%, #d4af37 50%, #0c1f3c 100%);
            background-size: 200% 100%;
            animation: gradientMove 3s ease infinite;
        }

        @keyframes gradientMove {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .card:hover {
            box-shadow: 0 12px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(212, 175, 55, 0.2);
            transform: translateY(-8px);
        }

        .card-header {
            padding: 0;
        }

        .card-title {
            padding: 32px 36px 20px;
            font-size: 18px;
            font-weight: 600;
            color: #0c1f3c;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 0;
        }

        .card-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: linear-gradient(180deg, #d4af37 0%, #c9a227 100%);
            border-radius: 2px;
        }

        .card-body {
            padding: 0 36px 36px;
        }

        .intro-content {
            font-size: 15px;
            line-height: 1.9;
            color: #4a5568;
            margin-bottom: 36px;
            margin-top: -7px;
        }

        .intro-content p {
            margin-bottom: 8px;
            text-align: justify;
        }

        .intro-content .section-title {
            font-size: 16px;
            font-weight: 600;
            color: #0c1f3c;
            margin-top: 16px;
            margin-bottom: 8px;
            padding-bottom: 6px;
            border-bottom: 2px solid #d4af37;
        }

        .intro-content p:first-child {
            color: #2d3748;
            font-weight: 500;
        }

        .video-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 36px;
            background: linear-gradient(135deg, #0c1f3c 0%, #1a365d 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 2px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(12, 31, 60, 0.3);
            margin-top: -16px;
        }

        .news-list {
            list-style: none;
        }

        .news-item {
            position: relative;
            padding: 14px 0;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            display: flex;
            gap: 12px;
        }

        .news-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .news-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: #d4af37;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.4s ease;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .news-item:hover::before {
            opacity: 1;
            left: -20px;
        }

        .news-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #0c1f3c;
            margin-top: 2px;
            transition: all 0.3s ease;
        }

        .news-item:hover .news-icon {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .news-content {
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }

        .news-title {
            font-size: 15px;
            color: #1a202c;
            text-decoration: none;
            display: block;
            line-height: 1.6;
            transition: all 0.3s ease;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            margin-top: -4px;
        }

        .news-title:hover {
            color: #0c1f3c;
            padding-left: 8px;
        }

        .news-date {
            display: block;
            margin-top: 4px;
            font-size: 13px;
            color: #a0aec0;
        }

        .contact-qrcodes {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 28px;
        }

        .qrcode-row-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .qrcode-row-bottom {
            display: flex;
            justify-content: center;
            margin-top: 0;
        }

        .qrcode-row-bottom .qrcode-label {
            margin-bottom: -8px;
        }

        .qrcode-item {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .qrcode-img {
            width: 100%;
            max-width: 140px;
            aspect-ratio: 1;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            border: 2px solid rgba(0,0,0,0.04);
            transition: all 0.4s ease;
            cursor: pointer;
            flex-direction: column;
            gap: 8px;
        }

        .qrcode-icon {
            font-size: 32px;
        }

        .qrcode-label {
            font-size: 12px;
            color: #718096;
            font-weight: 500;
        }

        .map-img {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-top: 8px;
            margin-bottom: 24px;
            border: 2px solid rgba(0,0,0,0.04);
            transition: all 0.4s ease;
            cursor: pointer;
            gap: 12px;
        }

        .map-icon {
            font-size: 48px;
        }

        .map-label {
            font-size: 13px;
            color: #718096;
        }

        .contact-phone {
            text-align: center;
            padding: 25px 20px;
            background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
            border-radius: 12px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 20px;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
            line-height: 1.6;
        }

        .contact-phone .phone-icon {
            font-size: 24px;
            filter: grayscale(1) brightness(2);
            line-height: 1;
        }

        .contact-phone .phone-number {
            font-size: 20px;
            color: #0c1f3c;
            font-weight: 700;
            letter-spacing: 2px;
            white-space: nowrap;
            flex-shrink: 0;
            line-height: 1;
        }

        /* 友情链接 - 时尚设计 */
        .friends-links-section {
            margin-top: 45px;
            margin-bottom: 40px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 5px;
        }

        .friends-links-header {
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .friends-links-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            border-radius: 2px;
        }

        .friends-links-title {
            font-size: 28px;
            font-weight: 700;
            color: #0c1f3c;
            margin: 0 0 2px;
            letter-spacing: 2px;
        }

        .friends-links-subtitle {
            font-size: 13px;
            color: #888;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 400;
            margin-bottom: 5px;
        }

        .friends-links-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .friend-link-item {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: block;
            position: relative;
        }

        .friend-link-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .friend-link-img-wrapper {
            position: relative;
            width: 100%;
            height: 130px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .friend-link-img {
            width: 100%;
            height: 130px;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .friend-link-item:hover .friend-link-img {
            transform: scale(1.1);
        }

        .friend-link-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(12, 31, 60, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .friend-link-item:hover .friend-link-overlay {
            opacity: 1;
        }

        .friend-link-icon {
            font-size: 40px;
            color: #d4af37;
        }

        .friend-link-info {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .friend-link-name {
            font-size: 18px;
            font-weight: 700;
            color: #0c1f3c;
            margin: 0;
            line-height: 80px;
            text-align: center;
        }

        .friend-link-desc {
            font-size: 13px;
            color: #666;
            margin: 0;
            line-height: 1.6;
        }

        /* Footer 新样式简洁保留 */
        .lawyer-footer {
            background: linear-gradient(135deg, #0c1f3c 0%, #1a365d 100%);
            color: #ffffff;
            width: 100%;
            margin-top: 30px;
        }

        .lawyer-footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .lawyer-footer-top {
            padding: 70px 0 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .lawyer-footer-grid {
            display: grid;
            grid-template-columns: 400px minmax(0, 1fr) 280px;
            gap: 60px;
            align-items: start;
        }

        .lawyer-footer-brand {
            display: flex;
            flex-direction: column;
        }

        .lawyer-footer-logo {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 32px;
        }

        .lawyer-footer-logo-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
        }

        .lawyer-footer-logo-text {
            display: flex;
            flex-direction: column;
        }

        .lawyer-footer-logo-name {
            font-size: 26px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .lawyer-footer-logo-tagline {
            font-size: 13px;
            color: #d4af37;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .lawyer-footer-intro {
            font-size: 14px;
            color: #b8c5d6;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .lawyer-footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .lawyer-footer-contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 14px;
            color: #b8c5d6;
        }

        .lawyer-footer-contact-icon {
            font-size: 20px;
            width: 28px;
            text-align: center;
            color: #d4af37;
        }

        .lawyer-footer-links {
            display: flex;
            margin-left: 100px;
            width: 100%;
            max-width: 500px;
        }

        .lawyer-footer-links-group {
            display: flex;
            flex-direction: column;
            margin-left: 370px;
            min-width: 200px;
            flex-shrink: 0;
        }

        .lawyer-footer-links-title {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 28px;
            padding-bottom: 12px;
            position: relative;
            letter-spacing: 0.5px;
        }

            .lawyer-footer-links-title::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 40px;
                height: 2px;
                background: linear-gradient(90deg, #d4af37, transparent);
            }

        .lawyer-footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .lawyer-footer-link {
            color: #b8c5d6;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .lawyer-footer-link::before {
            content: '';
            width: 0;
            height: 1px;
            background: #d4af37;
            margin-right: 0;
            transition: all 0.3s ease;
        }

        .lawyer-footer-link:hover {
            color: #ffffff;
            padding-left: 8px;
        }

        .lawyer-footer-link:hover::before {
            width: 12px;
            margin-right: 8px;
        }

        .lawyer-footer-qrcode {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .lawyer-footer-qrcode-title {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 20px;
            padding-bottom: 12px;
            position: relative;
            width: 100%;
            text-align: right;
        }

        .lawyer-footer-qrcode-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #d4af37);
        }

        .lawyer-footer-qrcode-box {
            width: 150px;
            height: 150px;
            background: #ffffff;
            border-radius: 16px;
            padding: 8px;
            margin-bottom: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .lawyer-footer-qrcode-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #c9a227, #d4af37);
        }

        .lawyer-footer-qrcode-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .lawyer-footer-qrcode-text {
            font-size: 13px;
            color: #b8c5d6;
            text-align: center;
            margin: 0;
        }

        .lawyer-footer-bottom {
            padding: 30px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lawyer-footer-copyright {
            font-size: 13px;
            color: #b8c5d6;
            margin: 0;
        }

        @media (max-width: 1200px) {
            .lawyer-footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .lawyer-footer-qrcode {
                grid-column: 2;
                grid-row: 1 / span 2;
            }
        }

        @media (max-width: 768px) {
            .lawyer-footer-container {
                padding: 0 20px;
            }
            .lawyer-footer-top {
                padding: 50px 0 40px;
            }
            .lawyer-footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .lawyer-footer-brand {
                text-align: center;
            }
            .lawyer-footer-logo {
                justify-content: center;
                margin-bottom: 24px;
            }
            .lawyer-footer-logo-icon {
                width: 60px;
                height: 60px;
                font-size: 30px;
            }
            .lawyer-footer-logo-name {
                font-size: 22px;
            }
            .lawyer-footer-logo-tagline {
                font-size: 12px;
            }
            .lawyer-footer-intro {
                text-align: center;
                line-height: 1.8;
                margin-bottom: 24px;
            }
            .lawyer-footer-contact-list {
                align-items: center;
            }
            .lawyer-footer-contact-item {
                justify-content: center;
                font-size: 14px;
            }
            .lawyer-footer-links {
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-left: 0;
                text-align: center;
            }
            .lawyer-footer-links-group {
                align-items: center;
                margin-left: 0;
                text-align: center;
            }
            .lawyer-footer-links-list {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            .lawyer-footer-link {
                font-size: 15px;
                padding: 0;
            }
            .lawyer-footer-link:hover {
                padding-left: 0;
            }
            .lawyer-footer-qrcode {
                align-items: center;
                grid-column: 1;
            }
            .lawyer-footer-qrcode-title {
                text-align: center;
            }
            .lawyer-footer-qrcode-title::after {
                left: 50%;
                transform: translateX(-50%);
                right: auto;
            }
            .lawyer-footer-qrcode-box {
                width: 160px;
                height: 160px;
            }
            .lawyer-footer-qrcode-text {
                margin-top: 12px;
                font-size: 14px;
            }
            .lawyer-footer-bottom {
                padding: 25px 0;
            }
            .lawyer-footer-copyright {
                font-size: 12px;
                text-align: center;
            }
        }

        /* 地图弹窗 */
        .map-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .map-modal.active {
            display: flex;
        }

        .map-modal-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            animation: scaleIn 0.3s ease;
        }

        .map-modal-img {
            max-width: 100%;
            max-height: 90vh;
            display: block;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .map-modal-close {
            position: absolute;
            top: -16px;
            right: -16px;
            width: 40px;
            height: 40px;
            background: #ffffff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            color: #0c1f3c;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
            z-index: 10000;
        }

        .map-modal-close:hover {
            background: #d4af37;
            color: #ffffff;
            transform: scale(1.1);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .two-column-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .main {
                padding: 20px;
            }
            .card-title {
                padding: 24px 24px;
            }
            .card-body {
                padding: 0 24px 28px;
            }
        }
		
		
		/* 在现有的 @media (max-width: 768px) 样式块内添加以下规则 */

/* 友情链接 - 移动端适配：固定一行两个链接模块 */
@media (max-width: 768px) {
    .friends-links-section {
        margin-top: 35px;
        margin-bottom: 30px;
        padding: 0 16px;
    }

    .friends-links-header {
        margin-bottom: 20px;
    }

    .friends-links-title {
        font-size: 22px;
    }

    .friends-links-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .friends-links-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);  /* 固定一行两个 */
        gap: 16px;
    }

    .friend-link-item {
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .friend-link-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .friend-link-img-wrapper {
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 0;
    }

    .friend-link-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-top: 0;
        margin-bottom: 0;
        display: block;
    }

    .friend-link-info {
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .friend-link-name {
        font-size: 14px;
        margin: 0;
        line-height: 40px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .friend-link-desc {
        font-size: 11px;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .friend-link-icon {
        font-size: 28px;
    }
}

    /* 犯罪分类三级折叠式手风琴布局样式 - 使用 crime- 前缀避免冲突 */
    .crime-accordion-section {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0px 50px 40px 50px;
        padding-top: 0px;
    }

    .crime-accordion-title {
        font-size: 28px;
        font-weight: 700;
        color: #0c1f3c;
        margin-top: 0px;
        margin-bottom: 30px;
        padding-left: 20px;
        border-left: 5px solid #d4af37;
    }

    /* 一级折叠（犯罪分类） */
    .crime-accordion-list {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .crime-accordion-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .crime-accordion-item:last-child {
        border-bottom: none;
    }

    .crime-accordion-header {
        padding: 18px 24px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        background: #fff;
    }

    .crime-accordion-header:hover {
        background: #f8f9fa;
    }

    .crime-accordion-title-text {
        font-size: 16px;
        font-weight: 500;
        color: #1a1a1a;
        display: flex;
        align-items: center;
    }

    .crime-accordion-title-text::before {
        content: '●';
        font-size: 20px;
        color: #d4af37;
        margin-right: 10px;
        line-height: 1;
    }

    .crime-accordion-icon {
        font-size: 20px;
        color: #999;
        transition: transform 0.3s ease;
    }

    .crime-accordion-item.active .crime-accordion-icon {
        transform: rotate(180deg);
    }

    .crime-accordion-item.active .crime-accordion-header {
        background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    }

    .crime-accordion-item.active .crime-accordion-title-text {
        color: #0c1f3c;
        font-weight: normal;
    }

    .crime-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        background: #fafbfc;
    }

    .crime-accordion-item.active .crime-accordion-content {
        max-height: none;
    }

    .crime-accordion-sub-items {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .crime-accordion-sub-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .crime-accordion-sub-item:last-child {
        border-bottom: none;
    }

    /* 二级折叠（子分类） */
    .crime-accordion-sub-header {
        padding: 14px 20px 14px 60px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        background: #fafbfc;
    }

    .crime-accordion-sub-header:hover {
        background: #f0f2f5;
    }

    .crime-accordion-sub-title {
        font-size: 15px;
        font-weight: 500;
        color: #333;
        display: flex;
        align-items: center;
    }

    .crime-accordion-sub-title::before {
        content: '●';
        font-size: 8px;
        color: #d4af37;
        margin-right: 8px;
        line-height: 1;
    }

    .crime-accordion-sub-icon {
        font-size: 18px;
        color: #999;
        transition: transform 0.3s ease;
    }

    .crime-accordion-sub-item.active .crime-accordion-sub-icon {
        transform: rotate(180deg);
    }

    .crime-accordion-sub-item.active .crime-accordion-sub-header {
        background: #e8eef5;
    }

    .crime-accordion-sub-item.active .crime-accordion-sub-title {
        color: #0c1f3c;
        font-weight: normal;
    }

    .crime-accordion-sub-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        background: #fff;
    }

    .crime-accordion-sub-item.active .crime-accordion-sub-content {
        max-height: none;
    }

    /* 新闻列表样式 */
    .crime-news-list {
        padding: 16px 20px 16px 100px;
    }

    .crime-news-item {
        display: flex;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        gap: 12px;
    }

    .crime-news-item:last-child {
        border-bottom: none;
    }

    .crime-news-item-icon {
        font-size: 16px;
        flex-shrink: 0;
        width: 24px;
        text-align: center;
    }

    .crime-news-item-title {
        flex: 1;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        line-height: 1.5;
        transition: all 0.3s ease;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .crime-news-item-title:hover {
        color: #d4af37;
    }

    .crime-news-item-date {
        color: #999;
        font-size: 13px;
        flex-shrink: 0;
        white-space: nowrap;
    }

        @media (max-width: 768px) {
        .crime-accordion-section {
            padding: 0px 20px 30px 20px;
        }

        .crime-accordion-title {
            margin-top: 0px;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .crime-accordion-header {
            padding: 14px 18px;
        }

        .crime-accordion-title-text {
            font-size: 15px;
        }

        .crime-accordion-sub-header {
            padding: 12px 16px 12px 30px;
        }

        .crime-accordion-sub-title {
            font-size: 14px;
        }

        .crime-news-list {
            padding: 12px 16px 12px 20px;
        }

        .crime-news-item {
            padding: 10px 0;
            gap: 0px;
        }

        .crime-news-item-icon {
            font-size: 10px;
        }

        .crime-news-item-title {
            font-size: 13px;
        }

        .crime-news-item-date {
            font-size: 12px;
        }
    }
	
	
	    /* Blog Detail Page Styles */
    .blog-detail-page {
        padding: 20px 0 80px 0;
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 249, 250, 0.98) 50%,
            rgba(255, 255, 255, 0.95) 100%
        );
        position: relative;
        overflow: hidden;
    }

    .blog-detail-page::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(30, 74, 139, 0.02);
        pointer-events: none;
    }

    .blog-detail-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        position: relative;
        z-index: 1;
    }

    /* Page Header */
    .page-header {
        text-align: center;
        margin-bottom: 40px;
        margin-top: 0px;
    }

    .page-header h1 {
        font-size: 2.25rem;
        color: #1e4a8b;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    .page-header h1::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #1e4a8b);
        border-radius: 2px;
    }

    /* Breadcrumb */
    .breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 40px;
        flex-wrap: wrap;
        padding: 15px 25px;
        background: linear-gradient(135deg, rgba(30, 74, 139, 0.05) 0%, rgba(248, 249, 250, 0.8) 100%);
        border-radius: 12px;
        border: 1px solid rgba(30, 74, 139, 0.1);
    }

    .breadcrumb a,
    .breadcrumb span {
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .breadcrumb a:hover {
        color: #ff6b35;
    }

    .breadcrumb-separator {
        color: #999;
        font-size: 0.75rem;
        margin: 0 4px;
        display: flex;
        align-items: center;
    }

    .breadcrumb span.current-page {
        color: #1e4a8b;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .breadcrumb a.breadcrumb-link {
        position: relative;
    }

    .breadcrumb a.breadcrumb-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #ff6b35;
        transition: width 0.3s ease;
    }

    .breadcrumb a.breadcrumb-link:hover::after {
        width: 100%;
    }

    /* 面包屑导航新样式 */
    .breadcrumb-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 40px;
        flex-wrap: wrap;
        padding: 15px 25px;
        background: linear-gradient(135deg, rgba(30, 74, 139, 0.05) 0%, rgba(248, 249, 250, 0.8) 100%);
        border-radius: 12px;
        border: 1px solid rgba(30, 74, 139, 0.1);
    }

    .breadcrumb-link {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }

    .breadcrumb-link:hover {
        color: #ff6b35;
        transform: translateY(-1px);
    }

  

    /* 面包屑导航样式 */
    .breadcrumb-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        margin-bottom: 40px;
        flex-wrap: wrap;
        padding: 15px 25px;
        background: linear-gradient(135deg, rgba(30, 74, 139, 0.05) 0%, rgba(248, 249, 250, 0.8) 100%);
        border-radius: 12px;
        border: 1px solid rgba(30, 74, 139, 0.1);
    }

    .breadcrumb-link {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        font-weight: 400;
    }

    .breadcrumb-link:hover {
        color: #ff6b35;
        transform: translateY(-1px);
    }

    .breadcrumb-separator {
        color: #999;
        font-size: 0.7rem;
        display: flex;
        align-items: center;
    }

    .breadcrumb-text {
        color: #1e4a8b;
        font-weight: 600;
        font-size: 0.9rem;
    }

    /* Blog Detail Card */
    .blog-detail-card {
        background: #fff;
        border-radius: 24px;
        padding: 60px;
        box-shadow: 0 15px 50px rgba(30, 74, 139, 0.12);
        position: relative;
    }

    /* 子分类导航 */
    .subcategory-nav {
        display: flex;
        gap: 12px;
        margin-bottom: 30px;
        flex-wrap: wrap;
        align-items: center;
    }

    .subcategory-item {
        padding: 8px 20px;
        background: #f8f9fa;
        border: 2px solid #e9ecef;
        border-radius: 30px;
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .subcategory-item:hover {
        background: #e7f0ff;
        border-color: #1e4a8b;
        color: #1e4a8b;
        transform: translateY(-2px);
    }

    .subcategory-item.active {
        background: linear-gradient(135deg, #1e4a8b 0%, #2d5aa0 100%);
        border-color: #1e4a8b;
        color: #fff;
        font-weight: 600;
    }

    /* Article Meta */
    .article-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 2px solid #f0f0f0;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #6c757d;
        font-size: 0.95rem;
    }

    .meta-item i {
        color: #1e4a8b;
        font-size: 1.1rem;
    }

    .meta-item span {
        font-weight: 500;
    }
        overflow: hidden;
    }

    .blog-detail-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, #ff6b35, #1e4a8b);
    }

    /* Article Meta */
    .article-meta {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 35px;
        padding-bottom: 30px;
        border-bottom: 2px solid rgba(30, 74, 139, 0.1);
        flex-wrap: wrap;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #666;
        font-size: 0.95rem;
    }

    .meta-item i {
        color: #ff6b35;
        font-size: 1.1rem;
    }

    /* Article Title */
    .article-title {
        font-size: 2.0rem;
        color: #1e4a8b;
        font-weight: 700;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    /* Article Content */
    .article-content {
        color: #444;
        line-height: 1.9;
        font-size: 1.05rem;
    }

    /* 处理数据库中导入的div标签 */
    .article-content > div {
        margin-bottom: 20px;
        color: #444;
        line-height: 1.9;
        font-size: 1.05rem;
    }

    /* 图片处理 */
    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 20px 0;
    }

    /* 小图片居中 */
    .article-content > div:has(img) {
        text-align: center;
    }

    /* 大图片单独处理（占满宽度） */
    .article-content img.large-image {
        width: 100%;
        display: block;
        margin: 20px auto;
    }

    /* 上一篇/下一篇导航 */
    .article-nav {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-top: 50px;
        padding-top: 40px;
        border-top: 2px solid rgba(30, 74, 139, 0.1);
    }

    .article-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .article-nav-label {
        font-size: 0.9rem;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .article-nav-title {
        font-size: 1rem;
        color: #1e4a8b;
        font-weight: 600;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .article-nav-item:hover .article-nav-title {
        color: #ff6b35;
    }

    .article-nav-item.prev {
        align-items: flex-start;
    }

    .article-nav-item.next {
        align-items: flex-end;
        text-align: right;
    }

    /* Back Button */
    .blog-back-btn {
        text-align: center;
        margin-top: 50px;
    }

    .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #ff6b35, #ff8c5a);
        color: #ffffff !important;
        padding: 15px 40px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none !important;
        transition: all 0.4s ease;
        box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    }

    .back-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
        background: linear-gradient(135deg, #ff8c5a, #ff6b35);
        color: #ffffff !important;
        text-decoration: none !important;
        gap: 15px;
    }

    .back-btn i {
        transition: transform 0.3s ease;
        color: #ffffff !important;
    }

    .back-btn:hover i {
        transform: translateX(-5px);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .blog-detail-page {
            padding: 20px 0;
        }

        .page-header h1 {
            font-size: 2.5rem;
        }

        .blog-detail-card {
            padding: 45px;
        }

        .article-title {
            font-size: 1.7rem;
        }
    }

    @media (max-width: 768px) {
        .blog-detail-page {
            padding: 20px 0;

        }

        .blog-detail-container {
            padding: 0 20px;
        }

        .page-header {
            margin-bottom: 35px;
            margin-top: 0;
        }

        .page-header h1 {
            font-size: 2rem;
            margin-bottom: 8px;
        }

        .page-header h1::after {
            bottom: -6px;
        }

        .breadcrumb,
        .breadcrumb-nav {
            gap: 8px;
            margin-bottom: 30px;
            justify-content: flex-start;
        }

        .breadcrumb a,
        .breadcrumb span,
        .breadcrumb-nav .breadcrumb-link,
        .breadcrumb-nav .breadcrumb-text {
            font-size: 0.9rem;
        }

        .blog-detail-card {
            padding: 35px 25px;
            border-radius: 20px;
        }

        .article-meta {
            gap: 20px;
            padding-bottom: 25px;
            margin-bottom: 30px;
        }

        .meta-item {
            font-size: 0.9rem;
        }

        .article-title {
            font-size: 1.5rem;
        }

        .article-content {
            font-size: 1rem;
        }

        .article-nav {
            flex-direction: column;
            gap: 30px;
        }

        .article-nav-item {
            align-items: flex-start !important;
            text-align: left !important;
        }
    }

    @media (max-width: 480px) {
        .blog-detail-page {
            padding: 10px 0;

        }

        .blog-detail-container {
            padding: 0 15px;
        }

        .page-header h1 {
            font-size: 1.75rem;
        }

        .blog-detail-card {
            padding: 30px 20px;
        }

        .article-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .article-title {
            font-size: 1.3rem;
        }

        .article-description {
            font-size: 1rem;
            padding: 18px 15px;
        }

        .article-content {
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .back-btn {
            padding: 12px 30px;
            font-size: 0.95rem;
        }
    }
	.xidinggeactive{color:#dcb83e;}