    /* ===== BANNER ===== */
    .mkap-banner-wrapper { position: relative; width: 100%; height: 100vh; max-height: 460px; min-height: 300px; overflow: hidden; background: #f0f7ff; margin-top: -76px; }
    .mkap-banner-carousel { width: 100%; height: 100%; position: relative; }
    .mkap-banner-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; padding: 0 6rem; background-size: cover; background-position: center; }
    .mkap-banner-slide.active { opacity: 1; }
    .mkap-bg-pic { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.15; pointer-events: none; }
    .mkap-banner-svg-right { position: absolute; right: 10%; bottom: 4%; width: 50%; max-width: 500px; height: auto; z-index: 3; }
    .mkap-device-group svg { width: 100%; height: auto; }
    .mkap-banner-decor { position: absolute; right: 5%; bottom: 8%; width: 45%; max-width: 500px; height: 60%; background-size: contain; background-repeat: no-repeat; background-position: center; opacity: 0.2; z-index: 2; }
    .mkap-banner-content { position: relative; z-index: 5; max-width: 50%; color: #1e293b; text-shadow: 0 2px 4px rgba(255,255,255,0.5); left: 2%;top:2%; }
    .mkap-banner-content h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.5; }
    .mkap-banner-list { background: rgba(255,255,255,0.7); backdrop-filter: blur(1rem); border-radius: 3rem; padding: 2.5rem; margin: 2.5rem 0; border: 1px solid rgba(37,99,235,0.2); }
    .mkap-banner-list p { display: flex; gap: 1rem; margin: 1rem 0; font-size: 1.6rem; }
    .mkap-carousel-dots { position: absolute; bottom: 20%; left: 3%; transform: translateX(-50%); display: grid; gap: 1.2rem; z-index: 10; }
    .mkap-dot { width: 1.2rem; height: 1.2rem; border-radius: 50%; background: #94a3b8; cursor: pointer; }
    .mkap-dot.active { background: #2563eb; }
    .banner3-decor-svg { position: absolute; right: 8%; bottom: 4%; width: 45%; max-width: 500px; opacity: 0.7; z-index: 4; pointer-events: none; }
    .banner3-decor-svg svg { width: 100%; height: auto; filter: drop-shadow(0 10px 8px rgba(0,0,0,0.05)); }

    @media (max-width: 700px) {
      .mkap-banner-slide { padding: 0 2rem; }
      .mkap-banner-content { max-width: 80%; left: 0; }
      .mkap-banner-svg-right, .banner3-decor-svg { width: 70%; right: 0; bottom: 5%; }
    }
    /* 机器人眼睛 */
    @keyframes blinkEye {
      0%, 90%, 100% { transform: scaleY(1); }
      95% { transform: scaleY(0.2); }
    }
    @keyframes movePupil {
      0% { transform: translateX(0); }
      100% { transform: translateX(3px); }
    }
    .robot-pupil-left, .robot-pupil-right {
      animation: movePupil 1.8s infinite alternate ease-in-out;
    }
    .ai-text {
      fill: #a0b5d9;
      font-size: 38px;
      font-weight: 800;
      opacity: 0.65;
    }
    /* 火箭向上飞行 */
    @keyframes rocketFly {
      0% { transform: translateY(0px); }
      100% { transform: translateY(-20px); }
    }
    .rocket-group {
      animation: rocketFly 1.6s infinite alternate ease-in-out;
      transform-origin: center center;
    }
   /* 公告栏样式 */
    .mkap-notice-ticker {
    position: absolute;
    left: 22%;
    bottom: -15px;
    max-width: 66%;
    width: auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 30, 60, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 6px 16px 6px 16px;
    font-size: 1.4rem;
    transition: box-shadow 0.2s;
      overflow: hidden;
    }

    /* 滚动容器 */
    .notice-scroll-container {
      height: 40px;          
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 8px, black 90%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 8px, black 90%, transparent);
    }

    .notice-list {
      display: flex;
      flex-direction: column;
      transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
      will-change: transform;
    }

    .notice-item {
      height: 40px;         
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      padding: 0 4px;
      color: #1e293b;
      font-weight: 450;
    }

    /* 公告内SVG统一样式 */
    .notice-item svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: #2563eb;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .notice-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .notice-title {
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-right: 4px;
    }

    .notice-time {
      color: #5f6c84;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      gap: 1px;
    }

    .notice-time span {
      margin-left: 1px;
    }

    .notice-prefix {
      display: flex;
      align-items: center;
    }

    .mkap-carousel-dots {
      z-index: 20;
    }
    .mkap-banner-wrapper {
      position: relative;
    }

     /* ===== 首页 案例模块 ===== */
     
    .mkap-case-wrapper { background-color: #f5f5f5;max-width: 100%; padding: 3% 3%; background: linear-gradient(145deg, #eef2ff, #ffffff); }
    .mkap-section-title { font-size: 1.8rem; font-weight: 600; color: #2563eb; margin-bottom: 1rem; }
    .mkap-section-sub { font-size: 3.2rem; font-weight: 700; margin-bottom: 1rem; color: #0f1825; }
     
        .mkapanli-banner-second {
            position: relative;
            width: 100%;
            height: 560px;
            padding: 1rem 0;
            overflow: hidden;
            cursor: grab;
            touch-action: pan-y; 
        }

        .mkapanli-banner-second:active {
            cursor: grabbing;
        }

        .mkapanli-second-box {
            position: absolute;
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .mkapanli-gundong {
            height: auto;
            display: flex;
            margin-top: 1rem;
            transition: transform 0.3s ease;
            will-change: transform;
        }

        .mkapanli-second-box-item {
            width: 70vw;
            min-width: 800px;
            height: 90vw;
            min-height: 450px;
            max-height: 500px;
            margin: 0 1vw;
            padding-right: 60px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 2vw;
            color: #333;
            flex-shrink: 0;
            user-select: none;
        }

.mkapanli-item-color1 {
  background-color: #F1F3F4;
  background-image: linear-gradient(165deg, #F1F3F4, #E0E4E8);
}

.mkapanli-item-color2 {
  background-color: #EDF5FA;
  background-image: linear-gradient(165deg, #EDF5FA, #D9E6F2);
}

.mkapanli-item-color3 {
  background-color: #EFF6EA;
  background-image: linear-gradient(165deg, #EFF6EA, #DDEAD9);
}

.mkapanli-item-color4 {
  background-color: #FDF2F6;
  background-image: linear-gradient(165deg, #FDF2F6, #F2E0E8);
}

.mkapanli-item-color5 {
  background-color: #FDF0E3;
  background-image: linear-gradient(165deg, #FDF0E3, #F5E2D2);
}

        /* 淡蓝渐变卡片 */
        .mkapanli-item-gradient {
            background: linear-gradient(145deg, #b8e1ff, #3d7eff, #1a4b9e);
            background-size: 200% 200%;
            color: #fff;
        }

        .mkapanli-second-text {
            width: 40%;
            height: 100%;
            display: flex;
            justify-content: center;
        }

        .mkapanli-second-img {
            width: 60%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .mkapanli-second-img img {
            width: auto;
            height: 100%;
            position: absolute;
            object-fit: contain;
            pointer-events: none;
        }

        .mkapanli-PC1 {
            width: auto;
            height: 100%;
            transform: translate3d(90px, -60px, 0);
            transition: transform 1s ease;
        }

        .mkapanli-pc1Active {
            transform: translate3d(0, 0, 0);
        }

        .mkapanli-second-box-img {
            width: 230px;
            height: 80px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .mkapanli-second-box-img img {
            max-width: 100%;
            height: auto;
        }

        /* 按钮样式 */
        .mkapanli-second-but {
            padding: 5px;
            width: 140px;
            height: 38px;
            display: flex;
            justify-content: right;
            gap: 20px;
            align-items: center;
            border: 1px solid #001730;
            color: #001730;
            border-radius: 30px;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-decoration: none;
            background: transparent;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .mkapanli-second-but:hover {
            background-color: #001730;
            color: #fff;
            box-shadow: 0 4px 12px rgba(0, 23, 48, 0.25);
            border-color: #001730;
        }

        .mkapanli-second-but:hover .mkapanli-jian-btn {
            background-color: #fff;
            color: #001730;
            transform: translateX(-100px);
            box-shadow: 0 2px 6px rgba(0, 23, 48, 0.2);
        }

        .mkapanli-second-but:hover .mkapanli-but-text {
            transform: translateX(30px);
        }
 

        .mkapanli-jian-btn {
            color: #fff;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #001730;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }


        .mkapanli-but-text {
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* 导航进度条 */
        .mkapanli-second-daohang {
            position: absolute;
            top: 9vh;
            left: 75px;
            width: 176px;
            height: 3px;
            background-color: #ccc;
            border-radius: 3px;
            z-index: 9;
            pointer-events: none;
        }

        .mkapanli-daohang {
            width: 22px;
            height: 100%;
            border-radius: 3px;
            background-color: #001730;
            transition: width 0.3s ease;
        }

        .mkapanli-jiantou {
            position: absolute;
            bottom: 7vh;
            left: 75px;
            z-index: 9;
            width: 120px;
            height: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mkapanli-jian {
            padding: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #001730;
            border-radius: 10px;
            cursor: pointer;
            transition: background-color 0.4s;
            background-color: rgba(255,255,255,0.8);
            color: #001730;
        }


        .mkapanli-jian:hover {
            background-color: #001730;color: #fff;
        }


        .mkapanli-second-text h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 40px;
            margin-top: 20px;
            line-height: 40px;
        }
        .mkapanli-jian svg {
            display: block;
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .mkapanli-jian-btn svg {
            display: block;
            width: 18px;
            height: 18px;
            fill: currentColor;
        }
        /* 查看更多卡片内部样式（适配渐变背景） */
        .mkapanli-more-content {
            text-align: center;
            color: #0a1a3a; 
        }
        .mkapanli-more-content h2 {
            font-size: 36px;
            margin-bottom: 30px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(255,255,255,0.3);
        }
        .mkapanli-more-content p {
            font-size: 18px;
            margin-bottom: 40px;
            color: #0a1a3a;
            font-weight: 500;
        }
        .mkapanli-more-content .mkapanli-second-but {
            border-color: #0a1a3a;
            color: #0a1a3a;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .mkapanli-more-content .mkapanli-second-but:hover {
            background-color: #0a1a3a;
            color: #fff;
            border-color: #0a1a3a;
        }
        .mkapanli-more-content .mkapanli-second-but:hover .mkapanli-jian-btn {
            background-color: #fff;
        }
    
        .mkapanli-more-content .mkapanli-jian-btn {
            background-color: #0a1a3a;
        }
 
        .mkapanli-more-content .mkapanli-jian-btn {
            background-color: #0a1a3a;
            color: #fff;                   
        }
        .mkapanli-more-content .mkapanli-second-but:hover .mkapanli-jian-btn {
            background-color: #fff;
            color: #0a1a3a;            
        }
        /* ---------- 移动端自适应核心---------- */
        @media screen and (max-width: 900px) {
            .mkapanli-second-box-item {
                min-width: 100vw;        
                height: auto;
                flex-direction: column-reverse; 
                padding: 20px 20px 70px 20px; 
                margin: 0 4vw;
            }
.mkap-case-wrapper{padding: 12% 3%;}
.mkapzhu-wrapper{padding: 12% 3%;margin-top: -10%;}
            .mkapanli-second-text {
                width: 100%;
                height: auto;
                justify-content: flex-start;
                margin-top: 30px;        
            }
            .mkapanli-second-text > div {
                padding: 0 !important;   
                width: 88%;
            }

            /* 右侧图片区域*/
            .mkapanli-second-img {
                width: 100%;
                height: 240px;             
                position: relative;
                margin-top: 0;
                margin-bottom: 5px;
            }
            .mkapanli-second-img img {
                height: 122%;
                width: auto;
                max-width: none;
                position: absolute;
                object-fit: contain;
            }

            /* 移动端缩小飞入距离 */
            .mkapanli-PC1 {
                transform: translate3d(30px, -15px, 0);
            }
            .mkapanli-pc1Active {
                transform: translate3d(0, 0, 0);
            }

            /* 导航条*/
            .mkapanli-second-daohang {
                left: 20px;
                top: 5vh;
                width: 140px;              
            }
            .mkapanli-jiantou {
                left: 20px;
                bottom: 3vh;
            }

            /* 第9个卡片（渐变更多） */
            .mkapanli-item-gradient .mkapanli-more-content {
                text-align: left;
                padding: 0 10px !important;  /* 内边距统一 */
            }
            .mkapanli-item-gradient .mkapanli-more-content h2 {
                font-size: 30px;
            }
            .mkapanli-item-gradient .mkapanli-more-content p {
                font-size: 16px;
            }

            /* 卡片内logo区域 */
            .mkapanli-second-box-img {
                width: 180px;
                height: 60px;
                margin-bottom: 15px;
            }
            .mkapanli-second-text h3 {
                font-size: 20px;
                line-height: 30px;
                margin-bottom: 20px;
            }

            /* 按钮在移动端可以稍微左对齐 */
            .mkapanli-second-but {
                margin-top: 5px;
            }
        }

        /* 更小屏 (max-width: 480px) 微调图片高度 */
        @media screen and (max-width: 480px) {
            .mkapanli-second-img {
                height: 180px;
            }
            .mkapanli-second-but {
                width: 130px;
                height: 34px;
                font-size: 13px;
            }
        }    
    
/* ===== 四大主营业务 ===== */	
        .mkapzhu-wrapper {
            max-width: 100%;
            padding: 3% 3%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 40%),
                radial-gradient(circle at 95% 80%, rgba(150, 200, 255, 0.4) 0%, transparent 50%),               
                repeating-linear-gradient(45deg, 
                    transparent, 
                    transparent 79px, 
                    rgba(100, 160, 240, 0.1) 79px, 
                    rgba(100, 160, 240, 0.1) 80px),
                linear-gradient(125deg, #ecf3ff 0%, #deeafe 60%, #d0e2fc 100%);            
            background-blend-mode: normal;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .mkapzhu-row {
            display: flex;
            flex-wrap: wrap;
            gap: 4%;
        }

        .mkapzhu-left {
            width: 48%;
        }

        .mkapzhu-right {
            width: 48%;
        }

        /* 左侧品牌区 */
        .mkapzhu-brand-block {
            margin-bottom: 1.8rem;
        }
        .mkapzhu-brand {
            font-size: 2.5vw;
            font-weight: 800;
            line-height: 1.4;
        }
        .mkapzhu-brand .red {
            color: #2563eb;
        }
        .mkapzhu-brand .stroke {
            color: #1e1e1e;
            font-weight: 300;
        }
        .mkapzhu-sub-brand {
            font-size: 1.1vw;
            color: #3f3f3f;
            margin-top: 0.6rem;
            border-left: 4px solid #2563eb;
            padding-left: 1rem;
        }

        /* 专注 + 按钮 */
        .mkapzhu-cta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 1.2rem 0 4rem 0;
        }
        .mkapzhu-focus {
            font-size: 1.4vw;
            font-weight: 500;
            color: #1e1e1e;
        }
        .mkapzhu-more-btn {
            background-color: transparent;
            border: 1.5px solid #2563eb;
            border-radius: 40px;
            padding: 0.5rem 1.8rem;
            font-size: 1vw;
            font-weight: 500;
            color: #2563eb;
            text-decoration: none;
            transition: 0.2s;
            white-space: nowrap;
        }
        .mkapzhu-more-btn:hover {
            background-color: #2563eb;
            color: #fff;
        }

        /* 四列网格 — 默认大屏幕为4列 */
        .mkapzhu-grid-four {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5vw;
            margin: 1rem 0 2rem 0;
        }

        .mkapzhu-col {
            display: flex;
            flex-direction: column;
        }

        .mkapzhu-col-title {
            font-size: 1.5vw;
            font-weight: 600;
            color: #1e1e1e;
            margin-bottom: 1.4rem;
            padding-bottom: 8px;
            position: relative;
            display: inline-block;
            align-self: flex-start;
        }

        .mkapzhu-col-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #2563eb;
            border-radius: 4px;
            transition: width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .mkapzhu-col:hover .mkapzhu-col-title::after {
            width: 100%;
        }

        .mkapzhu-col-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
        }

        .mkapzhu-col-list li a {
			text-decoration: none;
			color: #3e4a57;
			font-size: 1.2vw;
			background-color: #f0f3f7;
			display: inline-block;
			padding: 0.4rem 1.2rem;
			border-radius: 20px;
			transition: background 0.2s, color 0.2s;
			border: 1px solid transparent;
			word-break: keep-all;
        }

        .mkapzhu-col-list li a:hover {
            background-color: #2563eb;
            color: #ffffff;
            border-color: #2563eb;
        }

        /* 左侧底部年份 */
        .mkapzhu-left-footer {
            margin-top: auto;
            padding-top: 1.5rem;
            font-size: 1.2vw;
            font-weight: 400;
            color: #6b7985;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-top: 1px dashed #cfd9e2;
        }
        .mkapzhu-left-footer span {
            font-weight: 600;
            color: #2563eb;
            font-size: 1.4vw;
        }

        /* 右侧区域 */
        .mkapzhu-right {
            background-color: #f9fbfd;
            border-radius: 2.5vw;
            padding: 2.2vw;
            box-shadow: 0 12px 28px -10px rgba(0, 32, 64, 0.12);
            border: 1px solid #e9edf2;
            display: flex;
            flex-direction: column;
            transition: opacity 0.3s;
        }

        .mkapzhu-service-case {
            font-size: 1.2vw;
            font-weight: 500;
            color: #44525f;
            letter-spacing: 0.02em;
            margin-bottom: 0.5rem;
        }

        .mkapzhu-client-stats {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 1.8rem;
        }
        .mkapzhu-client-label {
            font-size: 1.6vw;
            font-weight: 600;
            color: #1e1e1e;
        }
        .mkapzhu-client-number {
            font-size: 3vw;
            font-weight: 700;
            color: #2563eb;
            line-height: 1;
        }
        .mkapzhu-client-number small {
            font-size: 2vw;
            color: #9aa9b5;
            font-weight: 400;
            margin-left: 0.3rem;
        }

        /* canvas容器 */
        .mkapzhu-chart-container {
            width: 100%;
            background: #ffffff;
            border-radius: 1.8vw;
            padding: 1vw 0.5vw 0.2vw 0.5vw;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.02), 0 6px 12px -10px rgba(0,0,0,0.1);
            margin: 0.8rem 0 1rem 0;
        }

        canvas#mkapzhuChartCanvas {
            width: 100%;
            height: auto;
            display: block;
            max-height: 200px;
        }

        .mkapzhu-chart-years {
            display: flex;
            justify-content: space-between;
            font-size: 1vw;
            color: #4f5e6b;
            padding: 0 0.2rem;
            font-weight: 500;
            margin: 0.5rem 0 0.2rem;
        }
        .mkapzhu-chart-years .start {
            color: #1e1e1e;
            font-weight: 600;
        }
        .mkapzhu-chart-years .end {
            color: #1e1e1e;
            font-weight: 600;
        }
        .mkapzhu-chart-years .start::before {
            content: "●";
            color: #2563eb;
            font-size: 0.8rem;
            margin-right: 4px;
        }
        .mkapzhu-chart-years .end::after {
            content: "●";
            color: #2563eb;
            font-size: 0.8rem;
            margin-left: 4px;
        }

        .mkapzhu-footnote {
            border-top: 1px dashed #cad3db;
            margin-top: 1.2rem;
            padding-top: 0.8rem;
            font-size: 1vw;
            color: #556572;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .mkapzhu-footnote i {
            font-style: normal;
            background: #2563eb;
            color: white;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        /* ---------- 小屏幕优化 (宽度 <= 900px) ---------- */
        @media (max-width: 900px) {
            .mkapzhu-left, .mkapzhu-right { 
                width: 100%; 
            }

            /* 左侧四列改为两列，间隙调整为更合适的值 */
            .mkapzhu-grid-four {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px 16px;  /* 行距20px，列距16px */
                margin: 20px 0 25px 0;
            }

            /* 调整列标题字体大小，更易读 */
            .mkapzhu-col-title {
                font-size: 20px;
                margin-bottom: 10px;
            }

            /* 列表项链接字体稍微调大，并增加可点击区域 */
            .mkapzhu-col-list li a {
                font-size: 16px;
                padding: 0.5rem 1.2rem;
                width: fit-content;
            }

            /* 品牌区字体使用固定大小，避免过小 */
            .mkapzhu-brand { 
                font-size: 42px; 
            }
            .mkapzhu-sub-brand { 
                font-size: 18px; 
                padding-left: 0.8rem;
            }
            .mkapzhu-focus { 
                font-size: 22px; 
            }
            .mkapzhu-more-btn { 
                font-size: 16px; 
                padding: 0.5rem 1.5rem;
            }
            .mkapzhu-left-footer { 
                font-size: 18px; 
            }
            .mkapzhu-left-footer span { 
                font-size: 20px; 
            }

            /* 右侧区域字体适配 */
            .mkapzhu-service-case { 
                font-size: 18px; 
            }
            .mkapzhu-client-label { 
                font-size: 26px; 
            }
            .mkapzhu-client-number { 
                font-size: 64px; 
            }
            .mkapzhu-client-number small { 
                font-size: 32px; 
            }
            .mkapzhu-chart-years { 
                font-size: 16px; 
            }
            .mkapzhu-footnote { 
                font-size: 15px; 
            }
        }
        @media (max-width: 500px) {
            .mkapzhu-grid-four {
                gap: 16px 12px;
            }
            .mkapzhu-col-title {
                font-size: 18px;
            }
            .mkapzhu-col-list li a {
                font-size: 14px;
                padding: 0.4rem 1rem;
            }
            .mkapzhu-brand { 
                font-size: 36px; 
            }
        }
		
    /* ===== 全球化进程 ===== */
	       .mkapweb-container {
            width: 90%;
            max-width: 140rem;
            margin: 0 auto;
            padding: 5rem 0;
        }
	        .mkapweb-global {
            background: #e2eff9; /* 备用背景色 */
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        /* 地球和云层 */
        .mkapweb-global-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none; 
        }
        .mkapweb-global-bg .earth-bg {
            position: absolute;
            bottom: -39%;
            width: 96%;
            max-width: 990px;
            animation: mkapweb-float 4s ease-in-out infinite;
        }
        .mkapweb-global-bg .earth-bg img {
            width: 100%;
            height: auto;
        }
        .mkapweb-global-bg .cloud-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .mkapweb-global-bg .cloud-bg img {
            position: absolute;
            width: 120%;
            opacity: 0.3;
            animation: mkapweb-cloudMove 20s linear infinite;
        }
        .mkapweb-global-bg .cloud-bg img:first-child {
            top: 10%;
            left: -10%;
        }
        .mkapweb-global-bg .cloud-bg img:last-child {
            top: 30%;
            left: -20%;
            animation-delay: -5s;
            opacity: 0.2;
        }
        @keyframes mkapweb-float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        @keyframes mkapweb-cloudMove {
            0% { transform: translateX(0); }
            100% { transform: translateX(-30%); }
        }

        /* 右侧内容卡片（前景） */
        .mkapweb-global .mkapweb-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: flex-end; 
        }
        .mkapweb-global-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(8px);
            border-radius: 3rem;
            padding: 3.5rem;
            max-width: 710px;
            width: 100%;
            box-shadow: 0 2rem 3rem rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.5);
        }
        .mkapweb-global-card h2 {
            font-size: 3rem;
            font-weight: 600;
            color: #1d3557;
            margin-bottom: 1.5rem;
        }
        .mkapweb-global-card .sub-line {
            font-size: 2rem;
			font-weight: 600;
            color: #2563eb;
            border-left: 5px solid #1d6f9c;
            padding-left: 2rem;
            margin: 1.5rem 0;
        }
        .mkapweb-global-card .desc {
            font-size: 1.8rem;
            color: #3f5e74;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }
        /* 地区列表两列布局 */
        .mkapweb-region-wrapper {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .mkapweb-region-col {
            flex: 1 1 200px;
        }
        .mkapweb-region-col h4 {
            font-size: 2.2rem;
            border-bottom: 3px solid #1d6f9c;
            display: inline-block;
            margin-bottom: 1.5rem;
            color: #1d3557;
        }
        .mkapweb-city-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem 2rem;
            list-style: none;
            padding: 0;
        }
        .mkapweb-city-grid li {
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .mkapweb-city-grid li svg {
            width: 1.6rem;
            height: 1.6rem;
            fill: #1d6f9c;
        }
		    @media (max-width: 700px){
		.mkapweb-global-bg .earth-bg{bottom: -5%;}
		}
		
    /* ===== 首页3新闻模块 ===== */
    .mkap-news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; max-width: 100%; padding: 5% 3%; background: #f9f9fc; }
    @media (max-width: 1000px) and (min-width: 701px) { .mkap-news-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 700px) { .mkap-news-grid { grid-template-columns: 1fr; } }
    .mkap-news-col { background: white; border-radius: 3rem; padding: 2.5rem; box-shadow: 0 1rem 2rem -1rem #e2e8f0; }
    .mkap-news-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
    .mkap-news-col h3 { font-size: 2.4rem; border-left: 0.5rem solid #2563eb; padding-left: 1.5rem; margin:0; color: #0f1825; }
    .mkap-more-link { font-size: 1.4rem; color: #2563eb; font-weight: 500; display: flex; align-items: center; gap: 0.3rem; white-space: nowrap; }
    .mkap-news-item { display: flex; gap: 1.5rem; margin: 2rem 0; cursor: pointer; border-radius: 1.6rem; padding: 0.8rem; transition: background 0.2s; }
    .mkap-news-item:hover { background: #f1f5f9; }
    .mkap-news-item img { width: 7rem; height: 7rem; border-radius: 1.4rem; object-fit: cover; background: #a5b4cb; flex-shrink: 0; }
    .mkap-news-info h4 { font-size: 1.8rem; font-weight: 600; }
    .mkap-news-info p { font-size: 1.4rem; color: #475569; margin: 0.4rem 0; }
    .mkap-news-col {
      background: #ffffffcc !important;
      backdrop-filter: blur(2px);
      border-radius: 28px !important;
      padding: 1.8rem 1.5rem !important;
      box-shadow: 0 12px 28px -8px rgba(0,37,84,0.08), 0 0 0 1px rgba(37,99,235,0.06) !important;
      transition: box-shadow 0.25s ease, transform 0.2s ease !important;
      border: 1px solid rgba(255,255,255,0.6) !important;
    }
    .mkap-news-col:hover {
      box-shadow: 0 20px 32px -12px rgba(37,99,235,0.15), 0 0 0 1px rgba(37,99,235,0.2) !important;
    }
    .mkap-more-link {
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px !important;
      background: rgba(37,99,235,0.05) !important;
      padding: 0.5rem 1.2rem !important;
      border-radius: 40px !important;
      font-weight: 500 !important;
      color: #2563eb !important;
      border: 1px solid rgba(37,99,235,0.15) !important;
      transition: all 0.2s !important;
    }
    .mkap-more-link svg {
      width: 18px;
      height: 18px;
      stroke: #2563eb;
      stroke-width: 2;
      fill: none;
      transition: transform 0.2s;
    }
    .mkap-more-link:hover {
      background: #2563eb !important;
      color: white !important;
      border-color: #2563eb !important;
    }
    .mkap-more-link:hover svg {
      stroke: white;
      transform: translateX(4px);
    }  
  
 
        
        
        
        