  /* ===== 全局重置 & 基础 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f7fa;
            color: #1e2a3a;
            line-height: 1.6;
            padding-top: 76px;
            /* 为固定导航留空间 */;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
        }
        ul {
            list-style: none;
        }

        /* ===== 容器 ===== */
        .container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 1600px 正常 */
        @media (min-width: 1680px) {
            .container {
                max-width: 1600px;
            }
        }
        /* 1680px 以下 → 1400px */
        @media (min-width: 1440px) and (max-width: 1679px) {
            .container {
                max-width: 1400px;
            }
        }
        /* 1440px 以下 → 1200px */
        @media (min-width: 1024px) and (max-width: 1439px) {
            .container {
                max-width: 1200px;
            }
        }
        /* 平板及以下 100% */
        @media (max-width: 1023px) {
            .container {
                max-width: 100%;
                padding: 0 24px;
            }
        }

        /* ===== 响应式字体 ===== */
        html {
            font-size: 16px;
        }
        @media (min-width: 1680px) {
            html {
                font-size: 18px;
            }
        }
        @media (min-width: 1440px) and (max-width: 1679px) {
            html {
                font-size: 17px;
            }
        }
        @media (min-width: 1024px) and (max-width: 1439px) {
            html {
                font-size: 16px;
            }
        }
        @media (min-width: 768px) and (max-width: 1023px) {
            html {
                font-size: 15px;
            }
        }
        @media (max-width: 767px) {
            html {
                font-size: 14px;
            }
        }

        /* ===== 顶部导航 ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(13, 27, 62, 0.96);
            backdrop-filter: blur(8px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
            transition: all 0.3s;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            flex-shrink: 0;
        }
        .logo span {
            color: #f39c12;
        }
        .logo i {
            color: #4a90d9;
            margin-right: 6px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav-links a {
            color: rgba(255, 255, 255, 0.80);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: #f39c12;
            transition: width 0.3s;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .btn-consult {
            background: #f39c12;
            color: #0d1b3e !important;
            padding: 8px 22px;
            border-radius: 30px;
            font-weight: 600 !important;
            font-size: 0.9rem !important;
            transition: background 0.3s, transform 0.2s;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-consult:hover {
            background: #e67e22;
            transform: scale(1.04);
        }
        .btn-consult i {
            font-size: 0.9rem;
        }

        /* 移动端汉堡 */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            background: none;
            border: none;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: 0.3s;
        }

        /* ===== Hero ===== */
        .hero {
            background: linear-gradient(135deg, #0d1b3e 0%, #1a3a7a 60%, #2a5a9a 100%);
            color: #fff;
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(243, 156, 18, 0.08);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(74, 144, 217, 0.06);
            pointer-events: none;
        }
        .hero .container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        .hero-text {
            flex: 1 1 50%;
            min-width: 280px;
        }
        .hero-text h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 18px;
        }
        .hero-text h1 .highlight {
            color: #f39c12;
        }
        .hero-text p {
            font-size: clamp(1rem, 1.4vw, 1.3rem);
            opacity: 0.9;
            max-width: 520px;
            margin-bottom: 28px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(243, 156, 18, 0.20);
            border: 2px solid #f39c12;
            color: #f39c12;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: clamp(1.1rem, 1.6vw, 1.6rem);
            letter-spacing: 1px;
            backdrop-filter: blur(4px);
            animation: pulse-badge 2.4s infinite;
        }
        .hero-badge i {
            margin-right: 10px;
        }

        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.3);
            }
            50% {
                box-shadow: 0 0 0 16px rgba(243, 156, 18, 0);
            }
        }

        .hero-image {
            flex: 1 1 45%;
            min-width: 240px;
            text-align: center;
        }
        .hero-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
        }

        /* ===== 通用标题 ===== */
        .section-title {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-title h2 {
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            font-weight: 700;
            color: #0d1b3e;
            position: relative;
            display: inline-block;
        }
        .section-title h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #f39c12;
            margin: 10px auto 0;
            border-radius: 4px;
        }
        .section-title p {
            color: #5a6a7a;
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            margin-top: 12px;
        }

        /* ===== 版块间距 ===== */
        .section {
            padding: 70px 0;
        }
        .section-light {
            background: #fff;
        }
        .section-gray {
            background: #f5f7fa;
        }

        /* ===== 关于我们 ===== */
        .about-grid {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }
        .about-grid .about-text {
            flex: 1 1 50%;
            min-width: 260px;
        }
        .about-grid .about-text h3 {
            font-size: clamp(1.3rem, 2vw, 2rem);
            color: #0d1b3e;
            margin-bottom: 16px;
        }
        .about-grid .about-text p {
            color: #3d4d5d;
            font-size: clamp(0.95rem, 1.1vw, 1.1rem);
            margin-bottom: 14px;
        }
        .about-grid .about-text .btn-outline {
            display: inline-block;
            border: 2px solid #0d1b3e;
            color: #0d1b3e;
            padding: 10px 32px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 6px;
        }
        .about-grid .about-text .btn-outline:hover {
            background: #0d1b3e;
            color: #fff;
        }
        .about-grid .about-image {
            flex: 1 1 40%;
            min-width: 220px;
            text-align: center;
        }
        .about-grid .about-image img {
            border-radius: 16px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
            width: 100%;
            max-width: 440px;
            margin: 0 auto;
        }

        /* ===== 我们的服务 ===== */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
        }
        .service-card {
            background: #fff;
            padding: 36px 28px 32px;
            border-radius: 16px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
            text-align: center;
            transition: transform 0.35s, box-shadow 0.35s;
            border-bottom: 4px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
            border-bottom-color: #f39c12;
        }
        .service-card .icon-wrap {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: #eef3fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: #1a3a7a;
            transition: background 0.3s, color 0.3s;
        }
        .service-card:hover .icon-wrap {
            background: #0d1b3e;
            color: #f39c12;
        }
        .service-card h3 {
            font-size: clamp(1.1rem, 1.3vw, 1.4rem);
            margin-bottom: 10px;
            color: #0d1b3e;
        }
        .service-card p {
            color: #5a6a7a;
            font-size: clamp(0.85rem, 1vw, 1rem);
        }
        .service-card a {
            display: block;
        }

        /* ===== 客户案例 ===== */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
        }
        .case-item {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
            transition: transform 0.35s, box-shadow 0.35s;
        }
        .case-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
        }
        .case-item .case-img {
            width: 100%;
            /*height: 200px;*/
            object-fit: cover;
            background: #dce3ed;
        }
        .case-item .case-body {
            padding: 18px 20px 22px;
        }
        .case-item .case-body h4 {
            font-size: clamp(1rem, 1.1vw, 1.2rem);
            color: #0d1b3e;
            margin-bottom: 4px;
        }
        .case-item .case-body p {
            color: #6a7a8a;
            font-size: clamp(0.8rem, 0.9vw, 0.95rem);
        }
        .case-item a {
            display: block;
        }

        /* ===== 网站知识 (新样式：左图右文) ===== */
        .knowledge-grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .knowledge-item {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s, box-shadow 0.3s;
            overflow: hidden;
            border-left: 4px solid transparent;
        }
        .knowledge-item:hover {
            transform: translateX(6px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-left-color: #f39c12;
        }
        .knowledge-row {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 16px 24px 16px 20px;
        }
        .knowledge-item .knowledge-img {
            flex: 0 0 160px;
            height: 110px;
            object-fit: cover;
            border-radius: 10px;
            background: #dce3ed;
        }
        .knowledge-item .knowledge-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
        }
        .knowledge-item .knowledge-body h4 {
            font-size: clamp(1rem, 1.1vw, 1.2rem);
            color: #0d1b3e;
            margin-bottom: 2px;
            transition: color 0.2s;
        }
        .knowledge-item:hover .knowledge-body h4 {
            color: #1a3a7a;
        }
        .knowledge-item .knowledge-body p {
            color: #6a7a8a;
            font-size: clamp(0.8rem, 0.9vw, 0.95rem);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .knowledge-item .knowledge-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 6px;
            font-size: 0.75rem;
            color: #8a9aaa;
        }
        .knowledge-item .knowledge-meta i {
            margin-right: 4px;
        }
        .knowledge-item .knowledge-meta .tag {
            background: #eef3fa;
            padding: 2px 12px;
            border-radius: 20px;
            color: #1a3a7a;
            font-weight: 500;
        }

        .knowledge-item a {
            display: block;
        }

        /* ===== 查看更多按钮 ===== */
        .more-wrap {
            text-align: center;
            margin-top: 40px;
        }
        .btn-more {
            display: inline-block;
            background: transparent;
            border: 2px solid #0d1b3e;
            color: #0d1b3e;
            padding: 10px 42px;
            border-radius: 30px;
            font-weight: 600;
            font-size: clamp(0.9rem, 1vw, 1rem);
            transition: all 0.3s;
        }
        .btn-more:hover {
            background: #0d1b3e;
            color: #fff;
        }
        .btn-more i {
            margin-left: 8px;
        }

        /* ===== 底部 ===== */
        .footer {
            background: #0d1b3e;
            color: rgba(255, 255, 255, 0.85);
            padding: 50px 0 30px;

        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-grid .col h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 14px;
            position: relative;
        }
        .footer-grid .col h4::after {
            content: '';
            display: block;
            width: 32px;
            height: 3px;
            background: #f39c12;
            margin-top: 6px;
            border-radius: 3px;
        }
        .footer-grid .col p,
        .footer-grid .col li {
            font-size: clamp(0.85rem, 0.95vw, 1rem);
            margin-bottom: 8px;
            opacity: 0.85;
        }
        .footer-grid .col a {
            opacity: 0.85;
            transition: opacity 0.3s, color 0.3s;
        }
        .footer-grid .col a:hover {
            opacity: 1;
            color: #f39c12;
        }
        .footer-grid .col .qr-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 6px;
            flex-wrap: wrap;
        }
        .footer-grid .col .qr-wrap img {
            width: 120px;
            height: 120px;
            border: 3px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            background: #fff;
            padding: 4px;
        }
        .footer-grid .col .qr-wrap .qr-text {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            text-align: center;
            font-size: clamp(0.75rem, 0.85vw, 0.9rem);
            opacity: 0.7;
        }

        /* ===== 右侧浮动侧边栏 ===== */
        .side-float {
            position: fixed;
            right: 20px;
            bottom: 140px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .side-float .side-item {
            width: 52px;
            height: 52px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #0d1b3e;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            border: none;
        }
        .side-float .side-item:hover {
            transform: scale(1.10);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
        }
        .side-float .side-item .tooltip {
            position: absolute;
            right: 64px;
            top: 50%;
            transform: translateY(-50%);
            background: #0d1b3e;
            color: #fff;
            padding: 6px 16px;
            border-radius: 8px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .side-float .side-item:hover .tooltip {
            opacity: 1;
        }
        .side-float .side-item .tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 6px solid #0d1b3e;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

        /* 微信浮窗 (popover) */
        .side-float .side-item .popover {
            position: absolute;
            right: 66px;
            top: 50%;
            transform: translateY(-50%);
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
            padding: 16px 18px;
            width: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
            transform: translateY(-50%) scale(0.95);
            border: 1px solid rgba(0,0,0,0.04);
            z-index: 100;
        }
        .side-float .side-item:hover .popover {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(-50%) scale(1);
        }
        .side-float .side-item .popover::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 8px solid #ffffff;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            filter: drop-shadow(2px 0 4px rgba(0,0,0,0.06));
        }
        .side-float .side-item .popover img {
            width: 120px;
            height: 120px;
            border-radius: 10px;
            border: 2px solid #eef3fa;
            background: #fff;
            padding: 3px;
        }
        .side-float .side-item .popover p {
            font-size: 0.8rem;
            color: #0d1b3e;
            font-weight: 600;
            margin: 0;
            white-space: nowrap;
        }
        .side-float .side-item .popover p small {
            font-weight: 400;
            color: #6a7a8a;
            font-size: 0.7rem;
            margin-left: 4px;
        }

        .side-float .side-item .badge-dot {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 12px;
            height: 12px;
            background: #e74c3c;
            border-radius: 50%;
            border: 2px solid #fff;
        }
        .side-float .side-item .badge-dot.online {
            background: #2ecc71;
        }
        .side-float .back-top {
            background: #0d1b3e;
            color: #fff;
            font-size: 1.1rem;
        }
        .side-float .back-top:hover {
            background: #f39c12;
            color: #0d1b3e;
        }

        /* ===== 弹窗 (Modal) ===== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-overlay.active {
            display: flex;
        }
        .modal-box {
            background: #fff;
            border-radius: 24px;
            max-width: 500px;
            width: 100%;
            padding: 40px 36px 36px;
            position: relative;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.30);
            animation: modalFadeIn 0.35s ease;
        }
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.92) translateY(30px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        .modal-box .modal-close {
            position: absolute;
            top: 16px;
            right: 20px;
            font-size: 1.8rem;
            color: #8a9aaa;
            cursor: pointer;
            background: none;
            border: none;
            transition: color 0.3s, transform 0.3s;
        }
        .modal-box .modal-close:hover {
            color: #0d1b3e;
            transform: rotate(90deg);
        }
        .modal-box h3 {
            font-size: 1.8rem;
            color: #0d1b3e;
            margin-bottom: 6px;
        }
        .modal-box .sub {
            color: #6a7a8a;
            margin-bottom: 24px;
            font-size: 0.95rem;
        }
        .modal-box .info-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid #f0f2f5;
            font-size: clamp(0.95rem, 1vw, 1.05rem);
        }
        .modal-box .info-row:last-of-type {
            border-bottom: none;
        }
        .modal-box .info-row i {
            width: 28px;
            color: #1a3a7a;
            font-size: 1.1rem;
        }
        .modal-box .info-row .label {
            color: #5a6a7a;
            min-width: 56px;
        }
        .modal-box .info-row .value {
            color: #0d1b3e;
            font-weight: 500;
        }
        .modal-box .info-row .value a {
            color: #1a3a7a;
        }
        .modal-box .info-row .value a:hover {
            color: #f39c12;
        }
        .modal-box .qr-row {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 12px 0 6px;
            flex-wrap: wrap;
        }
        .modal-box .qr-row img {
            width: 120px;
            height: 120px;
            border-radius: 12px;
            border: 2px solid #eef3fa;
            background: #fff;
            padding: 4px;
        }
        .modal-box .qr-row .qr-info {
            font-size: 0.95rem;
            color: #3d4d5d;
        }
        .modal-box .qr-row .qr-info strong {
            color: #0d1b3e;
        }
        .btn-copy {
            background: #0d1b3e;
            color: #fff;
            border: none;
            padding: 8px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-copy:hover {
            background: #1a3a7a;
            transform: scale(1.03);
        }
        .btn-copy.copied {
            background: #27ae60;
        }

        /* ===== 手机底部固定导航 ===== */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            background: #0d1b3e;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.20);
            padding: 6px 0 env(safe-area-inset-bottom, 6px);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .mobile-bottom-nav .nav-inner {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        .mobile-bottom-nav .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: rgba(255, 255, 255, 0.60);
            font-size: 0.6rem;
            transition: color 0.3s;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 8px;
            min-width: 56px;
        }
        .mobile-bottom-nav .nav-item i {
            font-size: 1.4rem;
            margin-bottom: 2px;
        }
        .mobile-bottom-nav .nav-item span {
            font-size: 0.55rem;
            letter-spacing: 0.3px;
        }
        .mobile-bottom-nav .nav-item.active,
        .mobile-bottom-nav .nav-item:hover {
            color: #f39c12;
        }
        .mobile-bottom-nav .nav-item .badge {
            background: #e74c3c;
            color: #fff;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -4px;
            right: -10px;
        }
        .mobile-bottom-nav .nav-item {
            position: relative;
        }

        /* ===== 响应式：平板及以下 ===== */
        @media (max-width: 1023px) {
            body {
                padding-top: 68px;
            }
            .header .container {
                height: 68px;
            }
            .logo {
                font-size: 1.3rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 68px;
                left: 0;
                width: 100%;
                background: rgba(13, 27, 62, 0.98);
                padding: 20px 24px 30px;
                gap: 14px;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                font-size: 1rem;
                padding: 6px 0;
            }
            .nav-links .btn-consult {
                margin-top: 6px;
                align-self: flex-start;
            }
            .hamburger {
                display: flex;
            }
            .hero {
                padding: 50px 0 70px;
            }
            .hero-text h1 {
                font-size: clamp(1.8rem, 6vw, 2.6rem);
            }
            .section {
                padding: 50px 0;
            }
            
            /* ===== 手机端隐藏右侧浮动侧边栏 ===== */
            .side-float {
                display: none !important;
            }

            /* 移动端popover调整（已隐藏，无需调整） */
            .mobile-bottom-nav {
                display: block;
            }
            .footer {
                padding-bottom: 80px;
            }
            /* 知识列表响应式 */
            .knowledge-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px;
            }
            .knowledge-item .knowledge-img {
                flex: unset;
                width: 100%;
                height: 140px;
            }
        }

        @media (max-width: 767px) {
            .container {
                padding: 0 16px;
            }
            .hero {
                padding: 36px 0 50px;
            }
            .hero-text h1 {
                font-size: clamp(1.6rem, 7vw, 2.2rem);
            }
            .hero-badge {
                font-size: clamp(0.9rem, 4vw, 1.2rem);
                padding: 6px 18px;
            }
            .section {
                padding: 36px 0;
            }
            .section-title {
                margin-bottom: 30px;
            }
            .section-title h2 {
                font-size: clamp(1.4rem, 5vw, 1.8rem);
            }
            .service-grid,
            .case-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .service-card {
                padding: 24px 16px 20px;
            }
            .service-card .icon-wrap {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
            .case-item .case-img {
                height: 140px;
            }
            .about-grid {
                flex-direction: column;
                gap: 24px;
            }
            .about-grid .about-image img {
                max-width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-grid .col .qr-wrap img {
                width: 100px;
                height: 100px;
            }
            .modal-box {
                padding: 28px 20px 24px;
            }
            .modal-box h3 {
                font-size: 1.4rem;
            }
            .modal-box .qr-row img {
                width: 100px;
                height: 100px;
            }
            .mobile-bottom-nav .nav-item i {
                font-size: 1.2rem;
            }
            .mobile-bottom-nav .nav-item span {
                font-size: 0.5rem;
            }
            .knowledge-item .knowledge-img {
                height: 120px;
            }
        }

        @media (max-width: 480px) {
            .service-grid,
            .case-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .service-card {
                padding: 18px 12px 16px;
            }
            .service-card .icon-wrap {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
                margin-bottom: 12px;
            }
            .case-item .case-img {
                height: 110px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .modal-box .qr-row {
                flex-direction: column;
                align-items: flex-start;
            }
            .knowledge-item .knowledge-img {
                height: 100px;
            }
        }

        /* ===== 辅助 ===== */
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
		
		
		
		
		
		  /* ================================================================
           ===== 客户案例列表页专用样式（与首页类名完全区分） =====
           ================================================================ */

        /* ---- 页面标题区域 ---- */
        .case-list-header {
            background: linear-gradient(135deg, #0d1b3e 0%, #1a3a7a 60%, #2a5a9a 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .case-list-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(243, 156, 18, 0.06);
        }
        .case-list-header .container {
            position: relative;
            z-index: 2;
        }
        .case-list-header h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 10px;
        }
        .case-list-header h1 i {
            color: #f39c12;
            margin-right: 12px;
        }
        .case-list-header p {
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            opacity: 0.85;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ---- 面包屑 ---- */
        .case-list-breadcrumb {
            background: #f5f7fa;
            padding: 14px 0;
            border-bottom: 1px solid #e9edf2;
        }
        .case-list-breadcrumb .breadcrumb-inner {
            font-size: 0.9rem;
            color: #5a6a7a;
        }
        .case-list-breadcrumb .breadcrumb-inner a {
            color: #1a3a7a;
            transition: color 0.2s;
        }
        .case-list-breadcrumb .breadcrumb-inner a:hover {
            color: #f39c12;
        }
        .case-list-breadcrumb .breadcrumb-inner .sep {
            margin: 0 8px;
            color: #b0bec5;
        }
        .case-list-breadcrumb .breadcrumb-inner .current {
            color: #0d1b3e;
            font-weight: 600;
        }

        /* ---- 案例列表主体 ----
             修改：采用 Grid 布局，每行 3 列
        ---- */
        .case-list-main {
            padding: 60px 0 80px;
            background: #f5f7fa;
        }

        /* 案例列表网格容器 */
        .case-list-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 案例卡片项（纵向布局） */
        .case-list-item {
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: none;
           /* border-top: 5px solid transparent;*/
        }
        .case-list-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
            border-top-color: #f39c12;
        }

        /* 图片区域 */
        .case-list-item .case-img-wrap {
            flex: none;
            width: 100%;
           /* height: 200px;*/
            overflow: hidden;
            background: #dce3ed;
        }
        .case-list-item .case-img-wrap img {
            max-width: 100%;
            /*height: 100%;
            object-fit: cover;*/
            transition: transform 0.4s;
        }
        .case-list-item:hover .case-img-wrap img {
            transform: scale(1.04);
        }

        /* 内容区域 */
        .case-list-item .case-content {
            padding: 20px 22px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .case-list-item .case-content .case-tag {
            display: inline-block;
            background: #eef3fa;
            color: #1a3a7a;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 14px;
            border-radius: 20px;
            margin-bottom: 10px;
            align-self: flex-start;
            letter-spacing: 0.5px;
        }
        .case-list-item .case-content h3 {
            font-size: clamp(1rem, 1.1vw, 1.2rem);
            color: #0d1b3e;
            margin-bottom: 8px;
            transition: color 0.2s;
        }
        .case-list-item:hover .case-content h3 {
            color: #1a3a7a;
        }
        .case-list-item .case-content p {
            color: #5a6a7a;
            font-size: clamp(0.85rem, 0.9vw, 0.95rem);
            line-height: 1.6;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        .case-list-item .case-content .case-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #8a9aaa;
            margin-top: auto;
            border-top: 1px solid #f0f2f5;
            padding-top: 12px;
        }
        .case-list-item .case-content .case-meta .more-link {
            color: #1a3a7a;
            font-weight: 600;
            transition: color 0.2s;
        }
        .case-list-item .case-content .case-meta .more-link:hover {
            color: #f39c12;
        }

        /* ---- 分页 ---- */
        .case-list-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        .case-list-pagination a,
        .case-list-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #1a3a7a;
            background: #fff;
            border: 1px solid #e9edf2;
            transition: all 0.25s;
            cursor: pointer;
        }
        .case-list-pagination a:hover {
            background: #0d1b3e;
            color: #fff;
            border-color: #0d1b3e;
        }
        .case-list-pagination .active-page {
            background: #0d1b3e;
            color: #fff;
            border-color: #0d1b3e;
        }
        .case-list-pagination .disabled {
            opacity: 0.4;
            pointer-events: none;
        }


        /* ===== 响应式：案例列表（3列 → 2列 → 1列） ===== */
        @media (max-width: 1023px) {
            .case-list-wrapper {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .case-list-item .case-img-wrap {
                height: 160px;
            }
            .case-list-item .case-content {
                padding: 16px 18px 20px;
            }
        }

        @media (max-width: 767px) {
            .case-list-header {
                padding: 40px 0 30px;
            }
            .case-list-main {
                padding: 40px 0 60px;
            }
            .case-list-wrapper {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .case-list-item .case-img-wrap {
                height: 140px;
            }
            .case-list-item .case-content {
                padding: 14px 16px 18px;
            }
            .case-list-item .case-content .case-meta {
                flex-wrap: wrap;
                gap: 6px;
            }
            .case-list-pagination a,
            .case-list-pagination span {
                min-width: 34px;
                height: 34px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .case-list-item .case-img-wrap {
                height: 110px;
            }
            .case-list-item .case-content h3 {
                font-size: 1.1rem;
            }
            .case-list-item .case-content p {
                font-size: 0.85rem;
                -webkit-line-clamp: 2;
            }
        }
		
		
		
		
		
		
        /* ================================================================
           ===== 客户案例详情页专用样式（与首页类名完全区分） =====
           ================================================================ */

        /* ---- 页面头部（Banner） ---- */
        .case-detail-header {
            background: linear-gradient(135deg, #0d1b3e 0%, #1a3a7a 60%, #2a5a9a 100%);
            color: #fff;
            padding: 50px 0 40px;
            position: relative;
            overflow: hidden;
        }
        .case-detail-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: rgba(243, 156, 18, 0.06);
            pointer-events: none;
        }
        .case-detail-header .container {
            position: relative;
            z-index: 2;
        }

        .case-detail-breadcrumb {
            font-size: 0.85rem;
            opacity: 0.75;
            margin-bottom: 12px;
        }
        .case-detail-breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            transition: color 0.2s;
        }
        .case-detail-breadcrumb a:hover {
            color: #f39c12;
        }
        .case-detail-breadcrumb .sep {
            margin: 0 8px;
            color: rgba(255, 255, 255, 0.4);
        }
        .case-detail-breadcrumb .current {
            color: #fff;
            font-weight: 500;
        }

        .case-detail-header h1 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 12px;
        }
        .case-detail-header .case-detail-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px 30px;
            font-size: 0.9rem;
            opacity: 0.85;
        }
        .case-detail-header .case-detail-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .case-detail-header .case-detail-meta i {
            color: #f39c12;
        }
        .case-detail-header .case-detail-tag {
            display: inline-block;
            background: rgba(243, 156, 18, 0.25);
            color: #f39c12;
            padding: 2px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: 1px solid rgba(243, 156, 18, 0.3);
        }

        /* ---- 面包屑（独立条） ---- */
        .case-detail-breadcrumb-bar {
            background: #f5f7fa;
            padding: 12px 0;
            border-bottom: 1px solid #e9edf2;
        }
        .case-detail-breadcrumb-bar .breadcrumb-inner {
            font-size: 0.85rem;
            color: #5a6a7a;
        }
        .case-detail-breadcrumb-bar .breadcrumb-inner a {
            color: #1a3a7a;
            transition: color 0.2s;
        }
        .case-detail-breadcrumb-bar .breadcrumb-inner a:hover {
            color: #f39c12;
        }
        .case-detail-breadcrumb-bar .breadcrumb-inner .sep {
            margin: 0 8px;
            color: #b0bec5;
        }
        .case-detail-breadcrumb-bar .breadcrumb-inner .current {
            color: #0d1b3e;
            font-weight: 600;
        }

        /* ---- 详情主体 ---- */
        .case-detail-main {
            padding: 50px 0 70px;
            background: #f5f7fa;
        }

        .case-detail-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ---- 左栏：内容 ---- */
        .case-detail-content {
            background: #fff;
            border-radius: 16px;
            padding: 40px 44px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .case-detail-content .featured-image {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
            background: #dce3ed;
        }
        .case-detail-content .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .case-detail-content .content-body h2 {
            font-size: clamp(1.3rem, 1.8vw, 1.8rem);
            color: #0d1b3e;
            margin: 30px 0 14px;
        }
        .case-detail-content .content-body h2:first-of-type {
            margin-top: 0;
        }
        .case-detail-content .content-body p {
            color: #3d4d5d;
            font-size: clamp(0.95rem, 1.05vw, 1.05rem);
            line-height: 1.8;
            margin-bottom: 18px;
        }
        .case-detail-content .content-body ul {
            list-style: disc;
            padding-left: 24px;
            margin-bottom: 18px;
        }
        .case-detail-content .content-body ul li {
            color: #3d4d5d;
            font-size: clamp(0.95rem, 1.05vw, 1.05rem);
            line-height: 1.8;
            margin-bottom: 6px;
        }
        .case-detail-content .content-body .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 30px;
            background: #f5f7fa;
            border-radius: 12px;
            padding: 20px 28px;
            margin: 24px 0 20px;
        }
        .case-detail-content .content-body .info-grid .item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #1a2a3a;
        }
        .case-detail-content .content-body .info-grid .item i {
            color: #f39c12;
            width: 20px;
            font-size: 1rem;
        }
        .case-detail-content .content-body .info-grid .item strong {
            color: #0d1b3e;
        }

        /* ---- 分享与操作 ---- */
        .case-detail-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            padding-top: 28px;
            margin-top: 30px;
            border-top: 1px solid #e9edf2;
        }
        .case-detail-actions .share-links {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #5a6a7a;
        }
        .case-detail-actions .share-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #eef3fa;
            color: #1a3a7a;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        .case-detail-actions .share-links a:hover {
            background: #0d1b3e;
            color: #fff;
            transform: translateY(-2px);
        }
        .case-detail-actions .btn-back-list {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 2px solid #0d1b3e;
            color: #0d1b3e;
            padding: 8px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        .case-detail-actions .btn-back-list:hover {
            background: #0d1b3e;
            color: #fff;
        }

        /* ---- 上一篇/下一篇导航 ---- */
        .case-detail-pagination {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            margin-top: 32px;
            padding-top: 28px;
            border-top: 1px solid #e9edf2;
        }
        .case-detail-pagination .prev,
        .case-detail-pagination .next {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #1a3a7a;
            transition: color 0.2s;
            max-width: 45%;
        }
        .case-detail-pagination .prev:hover,
        .case-detail-pagination .next:hover {
            color: #f39c12;
        }
        .case-detail-pagination .prev .label,
        .case-detail-pagination .next .label {
            font-size: 0.7rem;
            color: #8a9aaa;
            display: block;
        }
        .case-detail-pagination .prev .title,
        .case-detail-pagination .next .title {
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .case-detail-pagination .prev {
            text-align: left;
        }
        .case-detail-pagination .next {
            text-align: right;
        }
        .case-detail-pagination .next {
            margin-left: auto;
        }

        /* ---- 右栏：侧边信息 ---- */
        .case-detail-sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .case-detail-sidebar .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 26px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .case-detail-sidebar .sidebar-card h4 {
            font-size: 1rem;
            color: #0d1b3e;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 10px;
        }
        .case-detail-sidebar .sidebar-card h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 36px;
            height: 3px;
            background: #f39c12;
            border-radius: 3px;
        }

        /* 项目信息 */
        .case-detail-sidebar .info-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .case-detail-sidebar .info-list .info-item {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f2f5;
        }
        .case-detail-sidebar .info-list .info-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .case-detail-sidebar .info-list .info-item .label {
            color: #6a7a8a;
        }
        .case-detail-sidebar .info-list .info-item .value {
            color: #0d1b3e;
            font-weight: 500;
            text-align: right;
        }

        /* 相关案例 */
        .case-detail-sidebar .related-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .case-detail-sidebar .related-list .related-item {
            display: flex;
            gap: 14px;
            align-items: center;
            transition: transform 0.2s;
        }
        .case-detail-sidebar .related-list .related-item:hover {
            transform: translateX(4px);
        }
        .case-detail-sidebar .related-list .related-item img {
            width: 70px;
            height: 56px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
            background: #dce3ed;
        }
        .case-detail-sidebar .related-list .related-item .related-title {
            font-size: 0.85rem;
            color: #1a2a3a;
            line-height: 1.4;
            font-weight: 500;
            transition: color 0.2s;
        }
        .case-detail-sidebar .related-list .related-item:hover .related-title {
            color: #f39c12;
        }

        /* 咨询卡片 */
        .case-detail-sidebar .consult-card {
            background: linear-gradient(135deg, #0d1b3e, #1a3a7a);
            color: #fff;
            text-align: center;
            padding: 30px 24px;
        }
        .case-detail-sidebar .consult-card h4 {
            color: #fff;
            margin-bottom: 8px;

        }
        .case-detail-sidebar .consult-card h4::after {
            background: #f39c12;
        }
        .case-detail-sidebar .consult-card p {
            font-size: 0.9rem;
            opacity: 0.85;
            margin-bottom: 18px;
        }
        .case-detail-sidebar .consult-card .btn-consult-side {
            display: inline-block;
            background: #f39c12;
            color: #0d1b3e;
            padding: 10px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            transition: background 0.3s, transform 0.2s;
            border: none;
            cursor: pointer;
        }
        .case-detail-sidebar .consult-card .btn-consult-side:hover {
            background: #e67e22;
            transform: scale(1.04);
        }


        /* ===== 案例详情页响应式 ===== */
        @media (max-width: 1023px) {
            .case-detail-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .case-detail-content {
                padding: 28px 24px;
            }
            .case-detail-sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .case-detail-sidebar .consult-card {
                grid-column: 1 / -1;
            }
            .case-detail-content .content-body .info-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            .case-detail-header {
                padding: 34px 0 28px;
            }
            .case-detail-header h1 {
                font-size: 1.6rem;
            }
            .case-detail-header .case-detail-meta {
                gap: 12px 20px;
                font-size: 0.8rem;
            }
            .case-detail-main {
                padding: 30px 0 50px;
            }
            .case-detail-content {
                padding: 20px 16px;
            }
            .case-detail-content .featured-image {
                margin-bottom: 20px;
            }
            .case-detail-content .content-body h2 {
                font-size: 1.3rem;
                margin-top: 22px;
            }
            .case-detail-content .content-body p,
            .case-detail-content .content-body ul li {
                font-size: 0.95rem;
            }
            .case-detail-content .content-body .info-grid {
                padding: 16px 18px;
            }
            .case-detail-sidebar {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .case-detail-sidebar .sidebar-card {
                padding: 18px 20px;
            }
            .case-detail-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 14px;
            }
            .case-detail-actions .share-links {
                justify-content: center;
            }
            .case-detail-actions .btn-back-list {
                justify-content: center;
            }
            .case-detail-pagination {
                flex-direction: column;
                gap: 12px;
            }
            .case-detail-pagination .prev,
            .case-detail-pagination .next {
                max-width: 100%;
                justify-content: center;
            }
            .case-detail-pagination .next {
                margin-left: 0;
            }
            .case-detail-breadcrumb-bar {
                display: none;
            }
            /* 头部面包屑保留 */
        }

        @media (max-width: 480px) {
            .case-detail-content {
                padding: 16px 12px;
            }
            .case-detail-content .content-body .info-grid .item {
                font-size: 0.85rem;
            }
            .case-detail-sidebar .related-list .related-item img {
                width: 56px;
                height: 44px;
            }
            .case-detail-sidebar .related-list .related-item .related-title {
                font-size: 0.8rem;
            }
        }
		
		
		
		
		/* ================================================================
           ===== 网站知识列表页专用样式（与首页类名完全区分） =====
           ================================================================ */

        /* ---- 页面标题区域 ---- */
        .knowledge-article-header {
            background: linear-gradient(135deg, #0d1b3e 0%, #1a3a7a 60%, #2a5a9a 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .knowledge-article-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(243, 156, 18, 0.06);
        }
        .knowledge-article-header .container {
            position: relative;
            z-index: 2;
        }
        .knowledge-article-header h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 10px;
        }
        .knowledge-article-header h1 i {
            color: #f39c12;
            margin-right: 12px;
        }
        .knowledge-article-header p {
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            opacity: 0.85;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ---- 面包屑 ---- */
        .knowledge-article-breadcrumb {
            background: #f5f7fa;
            padding: 14px 0;
            border-bottom: 1px solid #e9edf2;
        }
        .knowledge-article-breadcrumb .breadcrumb-inner {
            font-size: 0.9rem;
            color: #5a6a7a;
        }
        .knowledge-article-breadcrumb .breadcrumb-inner a {
            color: #1a3a7a;
            transition: color 0.2s;
        }
        .knowledge-article-breadcrumb .breadcrumb-inner a:hover {
            color: #f39c12;
        }
        .knowledge-article-breadcrumb .breadcrumb-inner .sep {
            margin: 0 8px;
            color: #b0bec5;
        }
        .knowledge-article-breadcrumb .breadcrumb-inner .current {
            color: #0d1b3e;
            font-weight: 600;
        }

        /* ---- 文章列表主体 ---- */
        .knowledge-article-main {
            padding: 60px 0 80px;
            background: #f5f7fa;
        }

        .knowledge-article-wrapper {
            display: flex;
            flex-direction: column;
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* 文章条目（左图右文） */
        .knowledge-article-item {
            display: flex;
            align-items: stretch;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 5px solid transparent;
        }
        .knowledge-article-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
            border-left-color: #f39c12;
        }

        .knowledge-article-item .article-img-wrap {
            flex: 0 0 280px;
            min-height: 180px;
            background: #dce3ed;
            overflow: hidden;
        }
        .knowledge-article-item .article-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .knowledge-article-item:hover .article-img-wrap img {
            transform: scale(1.04);
        }

        .knowledge-article-item .article-content {
            flex: 1;
            padding: 24px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .knowledge-article-item .article-content .article-tag {
            display: inline-block;
            background: #eef3fa;
            color: #1a3a7a;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 14px;
            border-radius: 20px;
            margin-bottom: 10px;
            align-self: flex-start;
            letter-spacing: 0.5px;
        }
        .knowledge-article-item .article-content h3 {
            font-size: clamp(1.2rem, 1.4vw, 1.6rem);
            color: #0d1b3e;
            margin-bottom: 8px;
            transition: color 0.2s;
        }
        .knowledge-article-item:hover .article-content h3 {
            color: #1a3a7a;
        }
        .knowledge-article-item .article-content p {
            color: #5a6a7a;
            font-size: clamp(0.9rem, 1vw, 1rem);
            line-height: 1.7;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .knowledge-article-item .article-content .article-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 0.8rem;
            color: #8a9aaa;
            flex-wrap: wrap;
        }
        .knowledge-article-item .article-content .article-meta i {
            margin-right: 4px;
        }
        .knowledge-article-item .article-content .article-meta .more-link {
            color: #1a3a7a;
            font-weight: 600;
            transition: color 0.2s;
            margin-left: auto;
        }
        .knowledge-article-item .article-content .article-meta .more-link:hover {
            color: #f39c12;
        }

        /* ---- 分页 ---- */
        .knowledge-article-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        .knowledge-article-pagination a,
        .knowledge-article-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #1a3a7a;
            background: #fff;
            border: 1px solid #e9edf2;
            transition: all 0.25s;
            cursor: pointer;
        }
        .knowledge-article-pagination a:hover {
            background: #0d1b3e;
            color: #fff;
            border-color: #0d1b3e;
        }
        .knowledge-article-pagination .active-page {
            background: #0d1b3e;
            color: #fff;
            border-color: #0d1b3e;
        }
        .knowledge-article-pagination .disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* ---- 响应式：文章列表 ---- */
        @media (max-width: 1023px) {
            .knowledge-article-item {
                flex-direction: column;
                border-left-width: 0;
                border-top: 5px solid transparent;
            }
            .knowledge-article-item:hover {
                border-top-color: #f39c12;
                border-left-color: transparent;
            }
            .knowledge-article-item .article-img-wrap {
                flex: unset;
                height: 200px;
                min-height: unset;
            }
            .knowledge-article-item .article-content {
                padding: 20px 22px;
            }
            .knowledge-article-item .article-content .article-meta .more-link {
                margin-left: 0;
            }
        }

        @media (max-width: 767px) {
            .knowledge-article-header {
                padding: 40px 0 30px;
            }
            .knowledge-article-main {
                padding: 40px 0 60px;
            }
            .knowledge-article-wrapper {
                gap: 24px;
            }
            .knowledge-article-item .article-img-wrap {
                height: 160px;
            }
            .knowledge-article-item .article-content {
                padding: 16px 18px;
            }
            .knowledge-article-item .article-content .article-meta {
                flex-wrap: wrap;
                gap: 10px;
            }
            .knowledge-article-pagination a,
            .knowledge-article-pagination span {
                min-width: 34px;
                height: 34px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .knowledge-article-item .article-img-wrap {
                height: 130px;
            }
            .knowledge-article-item .article-content h3 {
                font-size: 1.1rem;
            }
        }
		
		
		
		
		
		  /* ================================================================
           ===== 网站知识详情页 v2 —— 全新样式（与案例详情页区分） =====
           ================================================================ */

        /* ---- 顶部：使用更简洁的头部，带装饰线 ---- */
        .knowledge-detail-header-v2 {
            background: #ffffff;
            padding: 32px 0 28px;
            border-bottom: 3px solid #f39c12;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }

        .knowledge-detail-header-v2 .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px 20px;
            margin-bottom: 10px;
        }

        .knowledge-detail-header-v2 .breadcrumb-row {
            font-size: 0.85rem;
            color: #6a7a8a;
        }
        .knowledge-detail-header-v2 .breadcrumb-row a {
            color: #1a3a7a;
            transition: color 0.2s;
        }
        .knowledge-detail-header-v2 .breadcrumb-row a:hover {
            color: #f39c12;
        }
        .knowledge-detail-header-v2 .breadcrumb-row .sep {
            margin: 0 8px;
            color: #b0bec5;
        }
        .knowledge-detail-header-v2 .breadcrumb-row .current {
            color: #0d1b3e;
            font-weight: 600;
        }

        .knowledge-detail-header-v2 .header-tag {
            display: inline-block;
            background: #f39c12;
            color: #fff;
            padding: 2px 18px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .knowledge-detail-header-v2 h1 {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 700;
            color: #0d1b3e;
            line-height: 1.3;
            margin: 6px 0 12px;
        }

        .knowledge-detail-header-v2 .meta-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 18px 28px;
            font-size: 0.85rem;
            color: #6a7a8a;
        }
        .knowledge-detail-header-v2 .meta-row span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .knowledge-detail-header-v2 .meta-row i {
            color: #f39c12;
            width: 16px;
        }

        /* ---- Tags 标签列表（已移至文章内容下方，此处样式保留用于新位置） ---- */
        .knowledge-detail-tags-v2 {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 14px;
            padding-top: 16px;
            margin-top: 10px;
            border-top: 1px solid #e9edf2;
        }
        .knowledge-detail-tags-v2 .tags-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #0d1b3e;
            margin-right: 4px;
        }
        .knowledge-detail-tags-v2 .tags-label i {
            color: #f39c12;
            margin-right: 4px;
        }
        .knowledge-detail-tags-v2 a {
            display: inline-block;
            background: #eef3fa;
            color: #1a3a7a;
            padding: 4px 18px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.25s;
            border: 1px solid transparent;
        }
        .knowledge-detail-tags-v2 a:hover {
            background: #0d1b3e;
            color: #fff;
            border-color: #0d1b3e;
            transform: translateY(-1px);
        }

        /* ---- 正文主体：全宽布局，侧边栏右置但风格不同 ---- */
        .knowledge-detail-main-v2 {
            padding: 40px 0 70px;
            background: #f5f7fa;
        }

        .knowledge-detail-wrapper-v2 {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ---- 左栏：内容（更清爽的排版） ---- */
        .knowledge-detail-content-v2 {
            background: #fff;
            border-radius: 12px;
            padding: 40px 44px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        }

        .knowledge-detail-content-v2 .featured-image {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 28px;
            background: #dce3ed;
        }
        .knowledge-detail-content-v2 .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 正文样式：更宽松的阅读体验 */
        .knowledge-detail-content-v2 .content-body-v2 h2 {
            font-size: clamp(1.2rem, 1.6vw, 1.7rem);
            color: #0d1b3e;
            margin: 32px 0 12px;
            padding-left: 16px;
            border-left: 4px solid #f39c12;
        }
        .knowledge-detail-content-v2 .content-body-v2 h2:first-of-type {
            margin-top: 0;
        }
        .knowledge-detail-content-v2 .content-body-v2 p {
            color: #3d4d5d;
            font-size: clamp(0.95rem, 1.05vw, 1.05rem);
            line-height: 1.9;
            margin-bottom: 18px;
        }
        .knowledge-detail-content-v2 .content-body-v2 ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        .knowledge-detail-content-v2 .content-body-v2 ul li {
            color: #3d4d5d;
            font-size: clamp(0.95rem, 1.05vw, 1.05rem);
            line-height: 1.8;
            padding: 6px 0 6px 28px;
            position: relative;
            border-bottom: 1px solid #f5f7fa;
        }
        .knowledge-detail-content-v2 .content-body-v2 ul li::before {
            content: '\f0da';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #f39c12;
            position: absolute;
            left: 4px;
            top: 6px;
            font-size: 0.9rem;
        }
        .knowledge-detail-content-v2 .content-body-v2 ul li:last-child {
            border-bottom: none;
        }

        /* 引用块 */
        .knowledge-detail-content-v2 .content-body-v2 .tip-box {
            background: #fef9f0;
            border-left: 4px solid #f39c12;
            padding: 16px 22px;
            border-radius: 0 8px 8px 0;
            margin: 24px 0;
        }
        .knowledge-detail-content-v2 .content-body-v2 .tip-box p {
            margin-bottom: 0;
            color: #5a4a3a;
        }
        .knowledge-detail-content-v2 .content-body-v2 .tip-box i {
            color: #f39c12;
            margin-right: 8px;
        }

        /* 信息网格 */
        .knowledge-detail-content-v2 .content-body-v2 .info-grid-v2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
            background: #f8faff;
            border-radius: 10px;
            padding: 18px 24px;
            margin: 22px 0 20px;
            border: 1px solid #e9edf4;
        }
        .knowledge-detail-content-v2 .content-body-v2 .info-grid-v2 .item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #1a2a3a;
            padding: 4px 0;
        }
        .knowledge-detail-content-v2 .content-body-v2 .info-grid-v2 .item i {
            color: #f39c12;
            width: 20px;
            font-size: 0.95rem;
        }
        .knowledge-detail-content-v2 .content-body-v2 .info-grid-v2 .item strong {
            color: #0d1b3e;
        }

        /* ---- 分享与操作 ---- */
        .knowledge-detail-actions-v2 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            padding-top: 24px;
            margin-top: 28px;
            border-top: 1px solid #e9edf2;
        }
        .knowledge-detail-actions-v2 .share-links {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #5a6a7a;
        }
        .knowledge-detail-actions-v2 .share-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #eef3fa;
            color: #1a3a7a;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        .knowledge-detail-actions-v2 .share-links a:hover {
            background: #0d1b3e;
            color: #fff;
            transform: translateY(-2px);
        }
        .knowledge-detail-actions-v2 .btn-back-list {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 2px solid #0d1b3e;
            color: #0d1b3e;
            padding: 8px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        .knowledge-detail-actions-v2 .btn-back-list:hover {
            background: #0d1b3e;
            color: #fff;
        }

        /* ---- 上一篇/下一篇导航 ---- */
        .knowledge-detail-pagination-v2 {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid #e9edf2;
        }
        .knowledge-detail-pagination-v2 .prev,
        .knowledge-detail-pagination-v2 .next {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #1a3a7a;
            transition: color 0.2s;
            max-width: 45%;
        }
        .knowledge-detail-pagination-v2 .prev:hover,
        .knowledge-detail-pagination-v2 .next:hover {
            color: #f39c12;
        }
        .knowledge-detail-pagination-v2 .prev .label,
        .knowledge-detail-pagination-v2 .next .label {
            font-size: 0.7rem;
            color: #8a9aaa;
            display: block;
        }
        .knowledge-detail-pagination-v2 .prev .title,
        .knowledge-detail-pagination-v2 .next .title {
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .knowledge-detail-pagination-v2 .prev {
            text-align: left;
        }
        .knowledge-detail-pagination-v2 .next {
            text-align: right;
            margin-left: auto;
        }

        /* ---- 右栏：侧边（风格与案例详情不同） ---- */
        .knowledge-detail-sidebar-v2 {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .knowledge-detail-sidebar-v2 .sidebar-card-v2 {
            background: #fff;
            border-radius: 12px;
            padding: 22px 24px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            border-top: 3px solid transparent;
            transition: border-color 0.3s;
        }
        .knowledge-detail-sidebar-v2 .sidebar-card-v2:hover {
            border-top-color: #f39c12;
        }

        .knowledge-detail-sidebar-v2 .sidebar-card-v2 h4 {
            font-size: 0.95rem;
            color: #0d1b3e;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .knowledge-detail-sidebar-v2 .sidebar-card-v2 h4 i {
            color: #f39c12;
        }

        /* 相关文章 */
        .knowledge-detail-sidebar-v2 .related-list-v2 {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .knowledge-detail-sidebar-v2 .related-list-v2 .related-item {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 6px 0;
            border-bottom: 1px solid #f5f7fa;
            transition: transform 0.2s;
        }
        .knowledge-detail-sidebar-v2 .related-list-v2 .related-item:last-child {
            border-bottom: none;
        }
        .knowledge-detail-sidebar-v2 .related-list-v2 .related-item:hover {
            transform: translateX(4px);
        }
        /* 相关文章序号 */
        .knowledge-detail-sidebar-v2 .related-list-v2 .related-item .num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #eef3fa;
            color: #1a3a7a;
            font-size: 0.7rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        /* 客户案例缩略图 */
        .knowledge-detail-sidebar-v2 .related-list-v2 .related-item .case-thumb {
            width: 60px;
            height: 48px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
            background: #dce3ed;
        }
        .knowledge-detail-sidebar-v2 .related-list-v2 .related-item .related-title {
            font-size: 0.85rem;
            color: #1a2a3a;
            line-height: 1.4;
            font-weight: 500;
            transition: color 0.2s;
        }
        .knowledge-detail-sidebar-v2 .related-list-v2 .related-item:hover .related-title {
            color: #f39c12;
        }

        /* 咨询卡片（风格不同） */
        .knowledge-detail-sidebar-v2 .consult-card-v2 {
            background: linear-gradient(135deg, #0d1b3e 0%, #1a3a7a 100%);
            color: #fff;
            text-align: center;
            padding: 28px 20px;
            border-radius: 12px;
            border-top: none;
        }
        .knowledge-detail-sidebar-v2 .consult-card-v2 h4 {
            color: #fff;
            justify-content: center;
        }
        .knowledge-detail-sidebar-v2 .consult-card-v2 h4 i {
            color: #f39c12;
        }
        .knowledge-detail-sidebar-v2 .consult-card-v2 p {
            font-size: 0.85rem;
            opacity: 0.85;
            margin-bottom: 16px;
        }
        .knowledge-detail-sidebar-v2 .consult-card-v2 .btn-consult-side-v2 {
            display: inline-block;
            background: #f39c12;
            color: #0d1b3e;
            padding: 10px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            transition: background 0.3s, transform 0.2s;
            border: none;
            cursor: pointer;
        }
        .knowledge-detail-sidebar-v2 .consult-card-v2 .btn-consult-side-v2:hover {
            background: #e67e22;
            transform: scale(1.04);
        }


        /* ===== 响应式：知识详情 v2 ===== */
        @media (max-width: 1023px) {
            .knowledge-detail-wrapper-v2 {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .knowledge-detail-content-v2 {
                padding: 28px 24px;
            }
            .knowledge-detail-sidebar-v2 {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .knowledge-detail-sidebar-v2 .consult-card-v2 {
                grid-column: 1 / -1;
            }
            .knowledge-detail-content-v2 .content-body-v2 .info-grid-v2 {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            .knowledge-detail-header-v2 {
                padding: 22px 0 18px;
            }
            .knowledge-detail-header-v2 .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .knowledge-detail-header-v2 h1 {
                font-size: 1.4rem;
            }
            .knowledge-detail-header-v2 .meta-row {
                gap: 10px 16px;
                font-size: 0.8rem;
            }
            .knowledge-detail-main-v2 {
                padding: 24px 0 50px;
            }
            .knowledge-detail-content-v2 {
                padding: 18px 14px;
            }
            .knowledge-detail-content-v2 .featured-image {
                margin-bottom: 18px;
            }
            .knowledge-detail-content-v2 .content-body-v2 h2 {
                font-size: 1.2rem;
                padding-left: 12px;
                margin-top: 22px;
            }
            .knowledge-detail-content-v2 .content-body-v2 p,
            .knowledge-detail-content-v2 .content-body-v2 ul li {
                font-size: 0.95rem;
            }
            .knowledge-detail-content-v2 .content-body-v2 .info-grid-v2 {
                padding: 14px 16px;
            }
            .knowledge-detail-sidebar-v2 {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .knowledge-detail-sidebar-v2 .sidebar-card-v2 {
                padding: 16px 18px;
            }
            .knowledge-detail-actions-v2 {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }
            .knowledge-detail-actions-v2 .share-links {
                justify-content: center;
            }
            .knowledge-detail-actions-v2 .btn-back-list {
                justify-content: center;
            }
            .knowledge-detail-pagination-v2 {
                flex-direction: column;
                gap: 10px;
            }
            .knowledge-detail-pagination-v2 .prev,
            .knowledge-detail-pagination-v2 .next {
                max-width: 100%;
                justify-content: center;
            }
            .knowledge-detail-pagination-v2 .next {
                margin-left: 0;
            }
            .knowledge-detail-tags-v2 {
                gap: 6px 10px;
                padding-top: 12px;
                margin-top: 8px;
            }
            .knowledge-detail-tags-v2 a {
                font-size: 0.7rem;
                padding: 3px 12px;
            }
        }

        @media (max-width: 480px) {
            .knowledge-detail-content-v2 {
                padding: 14px 10px;
            }
            .knowledge-detail-content-v2 .content-body-v2 .info-grid-v2 .item {
                font-size: 0.85rem;
            }
            .knowledge-detail-sidebar-v2 .related-list-v2 .related-item .related-title {
                font-size: 0.8rem;
            }
            .knowledge-detail-header-v2 .meta-row span {
                font-size: 0.75rem;
            }
        }
		
		
		
		 .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 14px;
  padding: 8px 12px;
  margin: 0 5px;
  border-radius: 3px;
}
.pagination span {
    color: #333;
    font-size: 14px;
    padding: 8px 2px;
    margin: 0 5px;
    border-radius: 3px;
}
.pagination a:hover {
  color: #0d1b3e;
  border: 1px solid #0d1b3e;
}
.pagination a.page-num-current {
  color: #fff;
  background: #0d1b3e;
  border: 1px solid #0d1b3e;
}