    /* ========== 联系我们页面 ========== */
    .contact-page-main {
      width: 100%;
      position: relative;
      background-color: #f8fafc;
    }
    /* 全宽地图容器 (作为悬浮卡片父容器) */
    .contact-map-container {
      position: relative;
      width: 100%;
      height: 650px; 
      overflow: hidden;
    }
    #map {
      width: 100%;
      height: 100%;
      background: #e2e8f0; /* 加载时底色 */
    }

    .map-mask {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(220, 230, 245, 0.6); 
      backdrop-filter: blur(3px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5; 
      cursor: pointer;
      transition: opacity 0.3s ease;
      pointer-events: auto;
    }
    .map-mask.hidden {
      opacity: 0;
      pointer-events: none;  
    }
    .map-mask-tip {
      background: rgba(255, 255, 255, 0.9);
      padding: 1.5rem 3rem;
      border-radius: 6rem;
      font-size: 2rem;
      font-weight: 600;
      color: #2563eb;
      box-shadow: 0 1.5rem 3rem -1rem rgba(0,0,0,0.3);
      border: 2px solid white;
      backdrop-filter: blur(5px);
      pointer-events: none; /* 让点击穿透到蒙版，点击任何地方都触发 */
    }
    .map-lock-btn {
      position: absolute;
      top: 2rem;
      right: 2rem;
      z-index: 6; /* 高于蒙版 */
      background: white;
      border: 1px solid #2563eb;
      color: #2563eb;
      padding: 0.8rem 2rem;
      border-radius: 5rem;
      font-size: 1.6rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      /* 脉冲光晕动画 */
      animation: lock-pulse 1.8s infinite ease-in-out;
    }
    /* 初始隐藏锁定按钮 */
    .map-lock-btn.hidden {
      display: none;
    }
    .map-lock-btn:hover {
      background: #2563eb;
      color: white;
      animation: none; /* 悬停时取消脉冲，避免过度闪烁 */
      box-shadow: 0 0 15px #2563eb;
    }
    .map-lock-btn svg {
      width: 2rem;
      height: 2rem;
      fill: currentColor;
    }
    @keyframes lock-pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
      50% { box-shadow: 0 0 20px 8px rgba(37, 99, 235, 0.3); }
      100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    }

    /* 悬浮卡片 左 + 右 (绝对定位，zIndex高于蒙版) */
    .contact-card-left {
      position: absolute;
      left: 5%;
      top: 15%;
      width: 34%;
      max-width: 460px;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(16px);
      border-radius: 4rem;
      padding: 3rem 2.8rem;
      box-shadow: 0 3rem 5rem -2rem rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.9);
      z-index: 10;  /* 确保卡片在地图上方 */
      animation: cardFloat 4s ease-in-out infinite;
    }
    .contact-card-right {
      position: absolute;
      right: 5%;
      top: 15%;
      width: 32%;
      max-width: 400px;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(16px);
      border-radius: 4rem;
      padding: 3rem 2.8rem;
      box-shadow: 0 3rem 5rem -2rem rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.9);
      z-index: 10;
      animation: cardFloat 4s ease-in-out infinite 0.5s;
    }
    @keyframes cardFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }

    /* 左侧动态条目 */
    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      margin: 2.8rem 0;
      opacity: 0;
      transform: translateX(-10px);
      animation: slideInItem 0.5s ease forwards;
    }
    .contact-info-item:nth-child(1) { animation-delay: 0.1s; }
    .contact-info-item:nth-child(2) { animation-delay: 0.3s; }
    .contact-info-item:nth-child(3) { animation-delay: 0.5s; }
    .contact-info-item:nth-child(4) { animation-delay: 0.7s; }
    @keyframes slideInItem { to { opacity: 1; transform: translateX(0); } }

    .contact-info-item svg {
      width: 3.6rem;
      height: 3.6rem;
      fill: #2563eb;
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .contact-info-item:hover svg { transform: scale(1.15) rotate(2deg); }
    .contact-info-item span {
      font-size: 1.9rem;
      font-weight: 500;
      color: #0f1825;
      border-bottom: 2px dotted transparent;
      transition: border-color 0.3s;
    }
    .contact-info-item:hover span { border-bottom-color: #2563eb; }

    /* 右侧卡片文字 */
    .contact-right-title {
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #1e293b, #2563eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .contact-right-sub {
      font-size: 1.8rem;
      color: #475569;
      margin-bottom: 3rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .contact-right-sub svg { width: 2.4rem; height: 2.4rem; fill: #2563eb; }
    .contact-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .contact-btn {
      background: #2563eb;
      color: white;
      border: none;
      padding: 1.4rem 2.8rem;
      border-radius: 6rem;
      font-size: 1.8rem;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
      box-shadow: 0 1rem 2rem -0.5rem #2563eb80;
      flex: 1 1 auto;
      min-width: 14rem;
    }
    .contact-btn.outline {
      background: transparent;
      color: #2563eb;
      border: 2px solid #2563eb;
      box-shadow: none;
    }
    .contact-btn.outline:hover { background: #2563eb; color: white; }
    .contact-btn:hover { transform: scale(1.02); background: #1e40af; }

    /* 响应式调整 */
    @media (max-width: 1100px) {
      .contact-card-left, .contact-card-right { position: static; width: 90%; margin: 2rem auto; animation: none; }
      .contact-map-container { height: auto; display: flex; flex-direction: column; }
      #map { height: 400px; }
      .map-mask { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* 保证蒙版在relative容器内有效 */
      .map-lock-btn { top: 1rem; right: 1rem; }
    }

    /* 合作联系弹窗表单 */
    .coop-row {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .coop-row > div {
      flex: 1 1 180px;  /* 最小180px，窄屏自动换行 */
    }
    .coop-select {
      width: 100%;
      padding: 1.2rem 1.8rem;
      border-radius: 4rem;
      border: 1px solid #cbd5e1;
      background: white;
      font-size: 1.6rem;
      appearance: none; /* 去掉默认箭头，可自行添加背景箭头（可选） */
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%234b5563"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 1.5rem center;
      background-size: 2rem;
    }
    .coop-select:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
    }
    /* 电话行样式 */
    .coop-tel-row {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin: 2rem 0;
      flex-wrap: wrap;
    }
    .coop-tel-link {
      font-size: 2rem;
      color: #2563eb;
      text-decoration: underline;
      font-weight: 600;
    }
    .coop-tel-link:hover { color: #1e40af; }
    .coop-badge {
      color: #64748b;
      margin-left: auto;
      font-size: 1.4rem;
      background: #f1f5f9;
      padding: 0.2rem 1.2rem;
      border-radius: 3rem;
    }
    /* 立即咨询链接模拟按钮 */
    .coop-consult-link {
      display: block;
      text-align: center;
      text-decoration: none;
      background: #2563eb;
      color: white;
      padding: 1.4rem 2.8rem;
      border-radius: 6rem;
      font-size: 1.8rem;
      font-weight: 600;
      box-shadow: 0 1rem 2rem -0.5rem #2563eb80;
      transition: 0.2s;
      border: none;
      cursor: pointer;
    }
    .coop-consult-link:hover {
      background: #1e40af;
      transform: scale(1.02);
    }
    /* 加入我们弹窗 (招聘列表) */
    .job-list { list-style: disc inside; margin: 2rem 0; font-size: 1.8rem; }
    .job-list li { margin: 1rem 0; color: #1e293b; }
    .job-list li strong { color: #2563eb; }
    
    
 /* ========== 关于我们页面 ========== */    
 
    .mkabt-fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .mkabt-fade-up.mkabt-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .mkabt-delay-1 { transition-delay: 0.1s; }
    .mkabt-delay-2 { transition-delay: 0.3s; }
    .mkabt-delay-3 { transition-delay: 0.5s; }

    /* ===== 关于我们主体 ===== */
    .mkabt-about {
      max-width: 100%;
      margin: 0 auto;
      padding: 2rem 3rem 3rem;
      position: relative;
    }

    /* ----- 顶部模块 (左右结构) ----- */
    .mkabt-hero-new {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      margin-bottom: 6rem;
      background: linear-gradient(145deg, #f0f7ff, #ffffff);
      border-radius: 4rem;
      padding: 4rem;
      box-shadow: 0 2rem 3rem -2rem rgba(0,0,0,0.1);
      border: 1px solid rgba(255,255,255,0.8);
    }
    .mkabt-hero-left {
      flex: 1 1 400px;
    }
    .mkabt-hero-left h1 {
      font-size: 3.2rem;
      margin-bottom: 2rem;
    }
    .mkabt-hero-left h1 span {
      background: #2563eb;
      color: white;
      padding: 0.2rem 1.2rem;
      border-radius: 4rem;
      font-size: 1.5rem;
    }
    .mkabt-hero-tagline {
      font-size: 1.8rem;
      color: #1e293b;
      margin-bottom: 3rem;
      padding-left: 1.5rem;
      border-left: 4px solid #2563eb;
    }
    /* 四个优势卡片 (2x2网格) */
    .mkabt-advantage-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }
    .mkabt-advantage-card {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      padding: 2rem 1.5rem;
      border-radius: 2.5rem;
      border: 1px solid #ffffff;
      box-shadow: 0 1rem 2rem rgba(0,0,0,0.02);
      transition: 0.3s;
    }
    .mkabt-advantage-card:hover {
      background: white;
      box-shadow: 0 1.5rem 3rem -1rem #2563eb40;
      transform: translateY(-5px);
    }
    .mkabt-advantage-card svg {
      width: 4rem;
      height: 4rem;
      fill: #2563eb;
      margin-bottom: 1.2rem;
    }
    .mkabt-advantage-card h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }
    .mkabt-advantage-card p {
      font-size: 1.4rem;
      color: #475569;
    }

    /* 右侧区域：视频 + 创始人信息 */
    .mkabt-hero-right {
      flex: 1 1 350px;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }
    .mkabt-video-container {
      position: relative;
      border-radius: 2rem;
      overflow: hidden;
      box-shadow: 0 2rem 3rem -1rem rgba(0,0,0,0.2);
      background: #e2e8f0;
      aspect-ratio: 16 / 9;
    }
    .mkabt-video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* 播放按钮 */
    .mkabt-video-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 6rem;
      height: 6rem;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
      transition: opacity 0.3s;
      z-index: 2;
      pointer-events: none; /* 让鼠标事件穿透到容器，由容器控制悬停 */
    }
    .mkabt-video-play-btn svg {
      width: 3rem;
      height: 3rem;
      fill: #2563eb;
      margin-left: 0.5rem; /* 让播放图标稍微居中 */
    }
    .mkabt-video-container:hover .mkabt-video-play-btn {
      opacity: 0; /* 鼠标进入容器，按钮消失 */
    }

    .mkabt-founder {
      display: flex;
      align-items: center;
      gap: 2rem;
      background: white;
      padding: 1.5rem 2rem;
      border-radius: 5rem;
      box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.05);
      border: 1px solid #eef2ff;
    }
    .mkabt-founder-avatar {
      width: 6rem;
      height: 6rem;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }
    .mkabt-founder-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .mkabt-founder-info h4 {
      font-size: 2rem;
      margin-bottom: 0.2rem;
    }
    .mkabt-founder-title {
      color: #334155;
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.3rem;
    }
    /* 引语样式：左侧淡蓝色竖线 */
    .mkabt-founder-quote {
      color: #475569;
      font-size: 1.4rem;
      font-style: italic;
      margin-top: 1.2rem;
      border-left: 4px solid #2563eb;
      padding-left: 12px;
    }
    /* 访问个人网站链接动效 */
    .mkabt-founder-info a {
      color: #2563eb;
      text-decoration: none;
      font-size: 1.5rem;
      display: inline-block;
      margin-top: 1rem;
      position: relative;
      padding-bottom: 0.2rem;
    }
    .mkabt-founder-info a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: #2563eb;
      transition: width 0.3s ease, left 0.3s ease;
    }
    .mkabt-founder-info a:hover::after {
      width: 100%;
      left: 0;
    }
    .mkabt-advantage {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      background: white;
      border-radius: 4rem;
      padding: 4rem;
      margin: 6rem 0;
      box-shadow: 0 1rem 2rem rgba(0,0,0,0.02);
      border: 1px solid #f0f4fe;
      overflow: hidden;
    }
    .mkabt-advantage-left {
      flex: 1 1 300px;
    }
    .mkabt-advantage-left h2 {
      font-size: 2.6rem;
      line-height: 1.4;
    }
    .mkabt-advantage-left h2 span {
      background: #2563eb;
      color: white;
      padding: 0.3rem 1.5rem;
      border-radius: 4rem;
      font-size: 1.65rem;
      display: inline-block;
      margin-top: 1rem;
    }
    .mkabt-advantage-right {
      flex: 1 1 400px;
      position: relative;
      z-index: 2;
      font-size: 1.9rem;
    }
    .mkabt-advantage-right p {
      margin-bottom: 1.5rem;
      padding-left: 2rem;
      border-left: 4px solid #2563eb;
    }
    /* 右侧SVG装饰 */
    .mkabt-advantage-svg {
      position: absolute;
      right: -20px;
      bottom: -20px;
      width: 300px;
      height: 300px;
      opacity: 0.5;
      transform: rotate(5deg);
      animation: slowRotate 20s linear infinite;
    }
    @keyframes slowRotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    /* ----- 快速建站CMS模块 ----- */
    .mkabt-cms {
      position: relative;
      background: linear-gradient(145deg, #eef2ff, #ffffff);
      border-radius: 4rem;
      padding: 4rem;
      margin: 6rem 0;
      overflow: hidden;
      border: 1px solid white;
      min-height: 300px;
    }
    .mkabt-cms-content {
      position: relative;
      z-index: 2;
      max-width: 60%;
    }
    .mkabt-cms h3 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
    }
    .mkabt-cms h4 {
      font-size: 2.4rem;
      color: #2563eb;
      margin: 2rem 0 1rem;
    }
    .mkabt-cms p {
      font-size: 1.8rem;
    }
    .mkabt-cms-btn {
      display: inline-block;
      background: #2563eb;
      color: white;
      padding: 1.2rem 3rem;
      border-radius: 6rem;
      font-size: 1.8rem;
      font-weight: 600;
      margin-top: 2rem;
      text-decoration: none;
      transition: 0.2s;
      box-shadow: 0 1rem 2rem -0.5rem #2563eb80;
    }
    .mkabt-cms-btn:hover {
      background: #1e40af;
      transform: scale(1.02);
    }
    /* 右侧SVG软件界面 */
    .mkabt-cms-svg {
      position: absolute;
      right: -30px;
      top: 10%;
      width: 400px;
      height: 300px;
      pointer-events: none;
      z-index: 1;
      opacity: 0.9;
      transform: perspective(800px) rotateY(-5deg) rotateX(5deg);
      filter: drop-shadow(0 20px 20px rgba(0,0,0,0.15));
      animation: floatSoft 6s infinite alternate;
    }
    @keyframes floatSoft {
      0% { transform: perspective(800px) rotateY(-5deg) rotateX(5deg) translateY(0); }
      100% { transform: perspective(800px) rotateY(-5deg) rotateX(5deg) translateY(-15px); }
    }
    /* ----- Believe Us 模块 (深色专业版) ----- */
    .mkabt-trust {
      background: #1f3c66;
      border-radius: 4rem;
      padding: 5rem 4rem;
      margin: 6rem 0;
      color: white;
      position: relative;
      overflow: hidden;
    }
    .mkabt-trust::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'60\' height=\'60\' viewBox=\'0 0 60 60\'%3E%3Cpath fill=\'%232563eb\' fill-opacity=\'0.1\' d=\'M30 5L55 20L55 40L30 55L5 40L5 20L30 5Z\' /%3E%3C/svg%3E');
      background-size: 80px 80px;
      opacity: 0.3;
      pointer-events: none;
    }
    .mkabt-trust-content {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin: 0 auto;
    }
    .mkabt-trust-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .mkabt-trust-header h2 {
      font-size: 5rem;
      font-weight: 800;
      letter-spacing: 2px;
      background: linear-gradient(135deg, #ffffff, #a5b4fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .mkabt-trust-header p {
      font-size: 2rem;
      color: #94a3b8;
      margin-top: 1rem;
    }
    .mkabt-trust-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      justify-content: center;
    }
    .mkabt-trust-card {
      flex: 1 1 280px;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      border-radius: 3rem;
      padding: 3rem 2rem;
      border: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s;
      text-align: center;
    }
    .mkabt-trust-card:hover {
      background: rgba(255,255,255,0.1);
      transform: translateY(-8px);
      border-color: #2563eb;
    }
    .mkabt-trust-card h3 {
      font-size: 3rem;
      color: #2563eb;
      margin-bottom: 1.5rem;
    }
    .mkabt-trust-card h4 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: white;
    }
    .mkabt-trust-card p {
      color: #cbd5e1;
      font-size: 1.5rem;
      line-height: 1.6;
	  text-align: left;
    }

    /* ----- 团队价值观 (三卡片 + 背景图) ----- */
    .mkabt-values {
      margin: 6rem 0;
    }
    .mkabt-values h2 {
      font-size: 3.5rem;
      text-align: center;
      margin-bottom: 4rem;
    }
    .mkabt-values-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
    .mkabt-value-card {
      flex: 1 1 280px;
      border-radius: 3rem;
      padding: 3rem 2rem;
      text-align: center;
      color: white;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      transition: transform 0.3s;
      background-size: cover, auto;
      background-position: center;
      background-blend-mode: overlay;
    }
    .mkabt-value-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.3);
      z-index: -1;
    }
    .mkabt-value-card:nth-child(1) {
      background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'100\' height=\'100\' viewBox=\'0 0 100 100\'%3E%3Crect width=\'100\' height=\'100\' fill=\'%232563eb\' /%3E%3Ccircle cx=\'50\' cy=\'50\' r=\'40\' fill=\'%234f46e5\' opacity=\'0.5\' /%3E%3C/svg%3E'), linear-gradient(145deg, #2563eb, #1e40af);
    }
    .mkabt-value-card:nth-child(2) {
      background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'100\' height=\'100\' viewBox=\'0 0 100 100\'%3E%3Cpath fill=\'%237c3aed\' d=\'M20 20L80 20L50 80Z\' opacity=\'0.5\' /%3E%3C/svg%3E'), linear-gradient(145deg, #7c3aed, #6d28d9);
    }
    .mkabt-value-card:nth-child(3) {
      background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'100\' height=\'100\' viewBox=\'0 0 100 100\'%3E%3Crect width=\'30\' height=\'30\' fill=\'%23db2777\' opacity=\'0.5\' /%3E%3C/svg%3E'), linear-gradient(145deg, #db2777, #be185d);
    }
    .mkabt-value-card:hover {
      transform: translateY(-8px);
    }
    .mkabt-value-icon {
      font-size: 4rem;
      margin-bottom: 1.5rem;
    }
    .mkabt-value-card h4 {
      font-size: 2.4rem;
      margin-bottom: 1.2rem;
    }
    .mkabt-value-card p {
      font-size: 1.6rem;
      opacity: 0.9;
    }
    .mkabt-values-svg {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 1;
    }
    .mkabt-values-svg svg {
      position: absolute;
    }
    .mkabt-values-svg .v-line {
      stroke: #2563eb20;
      stroke-width: 2;
      stroke-dasharray: 5 5;
      animation: moveLine 15s linear infinite;
    }
    @keyframes moveLine {
      to { stroke-dashoffset: 100; }
    }

    /* ----- 我们的服务 ----- */
    .mkabt-services {
      position: relative;
      margin: 6rem 0;
      padding: 4rem 0;
    }
    .mkabt-services h3 {
      font-size: 3rem;
      text-align: center;
      margin-bottom: 3rem;
    }
    .mkabt-service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
      margin-bottom: 3rem;
    }
    .mkabt-service-tag {
      background: #f1f5f9;
      padding: 1.2rem 2.8rem;
      border-radius: 6rem;
      font-size: 1.8rem;
      font-weight: 500;
      transition: 0.2s;
      cursor: pointer;
      user-select: none;
      border: 1px solid transparent;
    }
    .mkabt-service-tag:hover {
      background: #e0e7ff;
      transform: translateY(-2px);
    }
    /* 选中态高亮 */
    .mkabt-service-tag.active {
      background: #2563eb;
      color: white;
      box-shadow: 0 6px 14px rgba(37,99,235,0.3);
      border-color: #ffffff60;
    }
    /* 图片容器 */
    .mkabt-service-image {
      height: 550px;
      width: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.4rem;
      font-weight: 700;
      color: white;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
      background-color: #eef2ff;
      transition: all 0.25s ease;
      box-shadow: 0 15px 30px -12px rgba(0,0,0,0.2);
      position: relative;
      backdrop-filter: brightness(0.9);
    }
    .mkabt-service-image span {
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(4px);
      padding: 0.8rem 2rem;
      border-radius: 6rem;
      font-size: 1.8rem;
    }
    .mkabt-services-svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .mkabt-services-svg svg {
      position: absolute;
      animation: pulse 4s infinite alternate;
    }
    /* 响应式 */
    @media (max-width: 900px) {
      .mkabt-cms-content { max-width: 100%; }
      .mkabt-cms-svg { display: none; }
      .mkabt-hero-new { flex-direction: column; }
      .mkabt-service-image.active { height: 200px; }
    }
    
 /* ========== 团队页面 ========== */    
        .mkaptm-container {
            width: 100%;
            padding: 0 5%;
        }

        /* 通用标题 */
        .mkaptm-title-lg {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            color: #0f2a44;
        }

        /* 按钮 */
        .mkaptm-btn {
            display: inline-block;
            padding: 0.8rem 2.5rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
            cursor: pointer;
            border: none;
            background: #1e3b5a;
            color: white;
            font-size: 1.8rem;
        }
        .mkaptm-btn-outline {
            background: transparent;
            border: 2px solid #1e3b5a;
            color: #1e3b5a;
        }
        .mkaptm-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 20px -10px #1e3b5a80;
        }

        /* 第一屏 - 左右布局，右侧增加图片 */
        .mkaptm-hero {
            padding: 4rem 0;
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: linear-gradient(145deg, #dee7f0, #cddae8);
        }
        .mkaptm-hero-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
            justify-content: space-between;
        }
        .mkaptm-hero-content {
            flex: 1 1 500px;
            max-width: 600px;
        }
        .mkaptm-hero-image {
            flex: 1 1 400px;
            text-align: center;
        }
        .mkaptm-hero-image img {
            max-width: 100%;
            border-radius: 2rem;
            box-shadow: 0 25px 40px -15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .mkaptm-hero-image img:hover {
            transform: scale(1.02);
        }
        .mkaptm-hero-quote {
            font-size: 2.6rem;
            color: #1e3b5a;
            margin-bottom: 1.5rem;
            font-weight: 300;
            line-height: 1.6;
        }
        .mkaptm-hero-feature {
            font-size: 2rem;
            color: #0f2a44;
            font-weight: 500;
            margin: 2rem 0;
            padding: 1rem 2rem;
            background: rgba(255,255,255,0.4);
            border-radius: 50px;
            display: inline-block;
        }
        .mkaptm-hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        /* 第二屏 团队 */
        .mkaptm-team {
            padding: 5rem 0;
            background: #f0f4fa;
        }
        .mkaptm-team-lead {
            display: flex;
            gap: 4%;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }
        .mkaptm-team-lead-left {
            flex: 1 1 250px;
        }
        .mkaptm-team-lead-left .mkaptm-title-lg {
            font-size: 3rem;
            line-height: 1.3;
            color: #0f2a44;
        }
        .mkaptm-team-lead-right {
            flex: 2 1 500px;
            display: flex;
            flex-direction: column;
        }
        .mkaptm-team-sub {
            font-size: 2rem;
            color: #3d5f7a;
            margin-bottom: 0.9rem;
            letter-spacing: 1px;
        }
        .mkaptm-founder-row {
            display: flex;
            flex-wrap: wrap;
            gap: 2.4rem;
            justify-content: flex-start;
            margin-bottom: 2rem;
        }
        .mkaptm-founder {
            flex: 0 0 auto;
            width: 110px;
            text-align: center;
            cursor: pointer;
        }
        .mkaptm-founder-avatar {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: 20px;
            background: #b8c9dd;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
            margin-bottom: 0.5rem;
            box-shadow: 0 6px 12px #a0b8d0;
            overflow: hidden;
        }
        .mkaptm-founder-avatar svg {
            width: 50%;
            height: 50%;
            fill: #1e3b5a;
        }
        .mkaptm-founder:hover .mkaptm-founder-avatar {
            transform: scale(1.03);
            background: #a3b9d4;
        }
        .mkaptm-founder h4 {
            margin-top: 1rem;
            font-size: 1.9rem;
            color: #0f2a44;
        }
        .mkaptm-founder p {
            font-size: 1.5rem;
            color: #4a6572;
        }

        /* 引用框 */
        .mkaptm-quote-container {
            background: #e2eaf3;
            border-radius: 2rem;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(255,255,255,0.6);
            margin-top: 1rem;
            width: 100%;
        }
        .mkaptm-quote-text {
            font-size: 1.6rem;
            color: #1e2b3a;
            line-height: 1.6;
            padding-right: 2rem;
            flex: 1;
        }
        .mkaptm-quote-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.2s;
            flex-shrink: 0;
        }
        .mkaptm-quote-close svg {
            width: 22px;
            height: 22px;
            fill: #1e3b5a;
        }
        .mkaptm-quote-close:hover {
            transform: scale(1.15);
            background: #f0f0f0;
        }

        .mkaptm-team-desc {
            background: #dde6f0;
            padding: 2rem;
            border-radius: 2.5rem;
            margin: 3rem 0;
            font-size: 1.8rem;
            color: #1e2b3a;
        }

        /* ========= 精确对齐复合布局========= */
        .mkaptm-compound-row {
            margin: 3rem 0 2rem 0;
        }
        .mkaptm-compound-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1.5rem;
            align-items: stretch;
        }
        .mkaptm-left-stack {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .mkaptm-left-stack .img-rect {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .mkaptm-left-stack .img-rect img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
            display: block;
        }
        .mkaptm-left-stack .img-rect:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.2);
        }
        .mkaptm-left-stack .img-rect:hover img {
            transform: scale(1.03);
        }
        .mkaptm-right-square {
            display: flex;
            align-items: stretch;
        }
        .mkaptm-square-box {
            width: 100%;
            background: #cbdbe0;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mkaptm-square-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .mkaptm-square-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.2);
        }
        .mkaptm-square-box:hover img {
            transform: scale(1.03);
        }

        .mkaptm-compound-grid-reverse {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 1.5rem;
            align-items: stretch;
            margin: 2rem 0;
        }
        .mkaptm-left-squares {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .mkaptm-left-squares .img-square {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .mkaptm-left-squares .img-square img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
            display: block;
        }
        .mkaptm-left-squares .img-square:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.2);
        }
        .mkaptm-left-squares .img-square:hover img {
            transform: scale(1.03);
        }
        .mkaptm-right-rectangles {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .mkaptm-right-rectangles .img-rect {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .mkaptm-right-rectangles .img-rect img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
            display: block;
        }
        .mkaptm-right-rectangles .img-rect:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.2);
        }
        .mkaptm-right-rectangles .img-rect:hover img {
            transform: scale(1.03);
        }

        /* 沟通与洞察 */
        .mkaptm-insight {
            display: flex;
            gap: 4%;
            flex-wrap: wrap;
            margin: 4rem 0;
        }
        .mkaptm-insight-box {
            flex: 1 1 280px;
            background: #dee8f2;
            border-radius: 2.5rem;
            padding: 2rem;
            transition: 0.2s;
        }
        .mkaptm-insight-box:hover {
            background: #cddcf0;
        }
        .mkaptm-insight-box h3 {
            font-size: 2.4rem;
            color: #0f2a44;
            margin-bottom: 1rem;
        }

        /* 第三屏 客户滚动*/
        .mkaptm-clients {
            padding: 4rem 0;
            background: #aab9c9;
            color: white;
            overflow: hidden;
        }
        .mkaptm-clients-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        .mkaptm-marquee {
            display: flex;
            gap: 3rem;
            animation: mkaptm-scroll 20s linear infinite;
            width: max-content;
        }
        .mkaptm-marquee:hover {
            animation-play-state: paused;
        }
        /* 六边形容器：背景透明，只保留裁剪 */
        .mkaptm-hexagon {
            width: 100px;
            height: 100px;
            clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
            background: transparent;
        }
        .mkaptm-hexagon:hover {
            transform: scale(1.1);
        }
        /* logo图片样式：自适应六边形内部，保持比例 */
        .mkaptm-hexagon img {
            width: 85%;
            height: 85%;
            object-fit: contain;
            border-radius: 12px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            background: rgba(255, 255, 255, 0.1);
            transition: transform 0.2s;
        }
        .mkaptm-hexagon:hover img {
            transform: scale(1.02);
        }
        @keyframes mkaptm-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* 第四屏 主营业务 */
        .mkaptm-services {
            width: 100%;
            background: #e8edf2;
            padding: 4rem 0;
        }
        .mkaptm-services-list {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }
        .mkaptm-service-item {
            flex: 1 1 20%;
            min-width: 200px;
            position: relative;
            padding: 3rem 1rem 7rem;
            color: white;
            transition: 0.3s;
            cursor: default;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background-size: cover;
            background-blend-mode: overlay;
            height: 350px;
        }
        .mkaptm-service-item:nth-child(1) { background: linear-gradient(145deg, #0f2a44, #2b5876); }
        .mkaptm-service-item:nth-child(2) { background: linear-gradient(145deg, #4a6b8a, #1e3b5a); }
        .mkaptm-service-item:nth-child(3) { background: linear-gradient(145deg, #386150, #1d4e3d); }
        .mkaptm-service-item:nth-child(4) { background: linear-gradient(145deg, #7d5d3a, #5e4329); }
        .mkaptm-service-item:nth-child(5) { background: linear-gradient(145deg, #6a3e6a, #4a2b4a); }

        .mkaptm-service-item:hover {
            background: linear-gradient(0deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"><rect width="100" height="100" fill="%23cccccc" opacity="0.3"/><circle cx="50" cy="50" r="30" fill="%23ffffff" opacity="0.1"/></svg>');
            background-size: cover;
        }

        .mkaptm-service-text {
            width: 100%;
        }
        .mkaptm-service-text h3 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
        }
        .mkaptm-service-text p {
            font-size: 1.4rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }
        .mkaptm-service-text em {
            font-style: normal;
            display: block;
            margin: 1rem 0;
            font-weight: 300;
        }

        .mkaptm-service-pop {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: inherit;
            backdrop-filter: blur(5px);
            border-radius: 0 0 2.5rem 2.5rem;
            padding: 1.5rem 1rem;
            display: none;
            flex-direction: column;
            align-items: center;
            box-shadow: inset 0 10px 10px -5px rgba(0,0,0,0.3);
        }
        .mkaptm-service-pop a {
            color: white;
            text-decoration: none;
            padding: 0.3rem 0;
            font-size: 1.6rem;
            border-bottom: 1px dashed rgba(255,255,255,0.3);
            width: 100%;
        }
        .mkaptm-service-item:hover .mkaptm-service-pop {
            display: flex;
        }

        /* 响应式优化 */
        @media (max-width: 900px) {
            .mkaptm-hero-wrapper {
                flex-direction: column;
            }
            .mkaptm-hero-content {
                max-width: 100%;
            }
            .mkaptm-hero-image {
                width: 100%;
                margin-top: 2rem;
            }
            .mkaptm-services-list {
                flex-wrap: wrap;
            }
            .mkaptm-service-item {
                flex: 1 1 100%;
                height: auto;
                min-height: 340px;
                padding-bottom: 6rem;
            }
            .mkaptm-founder-row {
                justify-content: center;
            }
            .mkaptm-compound-grid,
            .mkaptm-compound-grid-reverse {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .mkaptm-left-stack,
            .mkaptm-left-squares,
            .mkaptm-right-rectangles {
                gap: 1rem;
            }
            .mkaptm-right-square {
                margin-top: 0;
            }
            .mkaptm-square-box {
                aspect-ratio: 1 / 1;
            }
            .mkaptm-hexagon {
                width: 80px;
                height: 80px;
            }
            .mkaptm-marquee {
                gap: 2rem;
            }
        }
        @media (max-width: 640px) {
            .mkaptm-left-stack .img-rect,
            .mkaptm-right-rectangles .img-rect {
                aspect-ratio: 16 / 9;
            }
            .mkaptm-left-squares .img-square {
                aspect-ratio: 1 / 1;
            }
            .mkaptm-hexagon {
                width: 70px;
                height: 70px;
            }
            .mkaptm-marquee {
                gap: 1.5rem;
            }
        }