/* -------- 基础变量与字体 -------- */
.mhw-scope{
  --mhw-blue:#2b6df3; --mhw-blue-dark:#1f52d8; --mhw-blue-light:#cfd9ff;
  --mhw-bg-light:#f5f6f8; --mhw-text:#1c1c1c; --mhw-text2:#555;
  --mhw-radius:12px; --mhw-shadow1:0 4px 10px rgba(0,0,0,.05); --mhw-shadowH:0 8px 20px rgba(0,80,255,.15)
}
.mhw-scope,.mhw-scope *{font-family:"PingFang SC","Microsoft YaHei",Arial,sans-serif!important;box-sizing:border-box}
.mhw-container{max-width:1200px;margin:0 auto;padding:0 20px}
.mhw-head{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;flex-wrap:wrap;margin-bottom:36px}
.mhw-title{font-size:clamp(24px,3vw,32px);margin:0;color:var(--mhw-text)}
.mhw-subtitle{color:var(--mhw-text2);margin:6px 0 0;font-size:14px}

/* ---- 按钮统一（蓝底白字） ---- */
.mhw-btn{background:var(--mhw-blue);color:#fff!important;border-radius:999px;padding:10px 18px;text-decoration:none;display:inline-block;transition:.25s;cursor:pointer;white-space:nowrap;font-weight:700;font-size:14px}
.mhw-btn:hover{background:var(--mhw-blue-dark);box-shadow:var(--mhw-shadowH);transform:translateY(-2px)}

/* ---- Reveal 动效 ---- */
.mhw-reveal{opacity:0;transform:translateY(40px);transition:.8s cubic-bezier(.19,1,.22,1)}
.mhw-reveal.mhw-visible{opacity:1;transform:translateY(0)}

/* ================= 模块1 ================= */
.mhw-module1{background:#fff;padding:50px 0}
.mhw-grid-4{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px}
.mhw-card{background:#fff;border:1px solid var(--mhw-blue-light);border-left:4px solid var(--mhw-blue);border-radius:var(--mhw-radius);box-shadow:var(--mhw-shadow1);padding:26px 20px;transition:.35s}
.mhw-card:hover{transform:translateY(-6px);box-shadow:var(--mhw-shadowH)}
.mhw-ico-img{width:36px;height:36px;margin-bottom:12px;filter:invert(35%) sepia(90%) saturate(650%) hue-rotate(205deg)}
.mhw-card h3{margin:0 0 10px;font-size:20px}
.mhw-card p{font-size:15px}
/* =========================================================
   📱 模块1：企业号内容营销（移动端双列 + 内容居中）
========================================================= */
/* 让所有设备的卡片内容居中 */
.mhw-module1 .mhw-card {display: flex;flex-direction: column;align-items: center;justify-content: center;text-align: center;}
/* 图标居中显示 */
.mhw-module1 .mhw-card .mhw-ico-img {display: block;margin: 0 auto 12px;}
/* 标题与文字的间距微调 */
.mhw-module1 .mhw-card h3 {margin-bottom: 8px;}
/* 📱 移动端：一行两个卡片 */
@media (max-width: 768px) {
  .mhw-module1 .mhw-grid-4 {display: grid !important;grid-template-columns: repeat(2, 1fr) !important; /* 每行两个 */gap: 14px !important;}
  .mhw-module1 .mhw-card {padding: 18px 14px !important; /* 内边距稍紧凑 */min-height: 180px !important; /* 视觉更协调 */}
  .mhw-module1 .mhw-card h3 {font-size: 16px !important;}
  .mhw-module1 .mhw-card p {font-size: 13px !important;line-height: 1.5;}
}


/* ================= 模块2 ================= */
.mhw-module2{background:var(--mhw-bg-light);padding:50px 0}
.mhw-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:28px}
@media (max-width:900px){.mhw-grid-2{grid-template-columns:1fr}}
.mhw-card-lg{background:#fff;border:1px solid var(--mhw-blue-light);border-radius:var(--mhw-radius);box-shadow:var(--mhw-shadow1);overflow:hidden;transition:.35s}
.mhw-card-lg:hover{box-shadow:var(--mhw-shadowH);transform:translateY(-4px)}
.mhw-card-head{background:var(--mhw-blue);color:#fff!important;padding:14px 18px;font-weight:800;font-size:20px}
.mhw-card-head *{color:#fff!important}
.mhw-card-body.mhw-cols{display:grid;grid-template-columns:220px 1fr;gap:18px;padding:20px}
@media (max-width:600px){.mhw-card-body.mhw-cols{grid-template-columns:1fr}}
.mhw-pill-col{display:flex;flex-direction:column;gap:14px;font-size:16px}
.mhw-pill{background:var(--mhw-blue);color:#fff!important;border-radius:8px;text-align:center;font-weight:800;padding:18px 10px;line-height:1.3}
.mhw-pill *{color:#fff!important}

/* ---- STEP 列表优化 ---- */
.mhw-steps{margin:0;padding-left:0;list-style:none;display:flex;flex-direction:column;gap:16px}
.mhw-steps li{display:flex;align-items:center;line-height:1.9;font-size:15px;color:#333}
.mhw-badge{background:#eef3ff;color:#2b3a8f;border-radius:999px;padding:6px 14px;font-weight:800;font-size:13px;white-space:nowrap;margin-right:10px;display:inline-flex;align-items:center;justify-content:center;min-width:72px;height:28px;box-sizing:border-box}

.mhw-card-lg .inner{padding:18px}
.mhw-subcard{background:#f9fbff;border:1px solid var(--mhw-blue-light);border-radius:10px;padding:18px;transition:.3s}
.mhw-subcard:hover{background:#fff;box-shadow:var(--mhw-shadow1);transform:translateY(-3px)}
.mhw-subhead{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.mhw-subhead img{width:22px;height:22px}
.mhw-subhead h4{font-size:18px;color:var(--mhw-blue);font-weight:800;margin:0}
.mhw-subcard ul{margin:0;padding-left:18px}
.mhw-subcard li{line-height:1.8;font-size:14px}

/* ================= 模块3（10卡片，两行） ================= */
.mhw-module3{background:#fff;padding:50px 0}
.mhw3-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px;justify-items:center;align-items:stretch}
@media (min-width:1024px){.mhw3-grid{grid-template-columns:repeat(5,1fr);max-width:1100px;margin:0 auto}.mhw3-card{min-height:200px}}
@media (max-width:1023px) and (min-width:768px){.mhw3-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:767px){.mhw3-grid{grid-template-columns:1fr}.mhw3-card{min-height:160px}}
.mhw3-card{background:#fff;border:1px solid #e4ebff;border-radius:14px;box-shadow:0 4px 18px rgba(0,0,0,.05);padding:24px 18px;text-align:center;transition:.3s ease;width:100%;max-width:230px;display:flex;flex-direction:column;justify-content:center;min-height:200px}
.mhw3-card:hover{transform:translateY(-5px);box-shadow:0 10px 25px rgba(43,109,243,.15)}
.mhw3-ico{font-size:26px;margin-bottom:12px}
.mhw3-card h3{margin:0 0 8px;font-size:18px;color:#1f52d8}
.mhw3-card p{margin:0;color:#666;font-size:14px;line-height:1.6}
/* =========================================================
   📱 模块3：TikTok 推荐算法流程（移动端双列 + 居中布局）
========================================================= */

/* 所有端都让卡片内容居中显示 */
.mhw-module3 .mhw3-card {display: flex !important;flex-direction: column !important;align-items: center !important;justify-content: center !important;text-align: center !important;}
/* 移动端：两列展示 */
@media (max-width: 768px) {
  .mhw-module3 .mhw3-grid {display: grid !important;grid-template-columns: repeat(2, 1fr) !important; /* 一行两个卡片 */gap: 14px !important; /* 卡片间距稍紧凑 */}
  .mhw-module3 .mhw3-card {padding: 16px 12px !important;   /* 内边距更紧凑 */ min-height: 180px !important;    /* 高度适中 */}
  .mhw-module3 .mhw3-card h3 {font-size: 15px !important;margin-bottom: 6px !important;}
  .mhw-module3 .mhw3-card p {font-size: 13px !important;line-height: 1.5 !important;}
}

/* ================= 模块4（对比卡片 + 浅化蓝） ================= */
.mhw-module4{background:var(--mhw-bg-light);padding:50px 0}
.mhw4-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.mhw4-card{background:#fff;border:1px solid #e0e6f0;border-radius:var(--mhw-radius);box-shadow:var(--mhw-shadow1);transition:.3s ease;text-align:center;padding:26px 20px}
.mhw4-card:hover{transform:translateY(-6px);box-shadow:var(--mhw-shadowH)}
.mhw4-head{font-size:20px;font-weight:800;color:var(--mhw-text);margin-bottom:18px}
.mhw4-card ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:14px}
.mhw4-card li{font-size:15px;color:#333;line-height:1.6;background:#edf3ff;border-radius:6px;padding:12px 14px;transition:all .3s ease}
.mhw4-card li:hover{background:#dbe7ff;transform:translateY(-3px);box-shadow:0 4px 10px rgba(43,109,243,.15)}
/* 蓝卡片浅化 + 渐变 */
.mhw4-card-blue{background:linear-gradient(145deg,#5b8df8,#2b6df3);color:#fff;border:1px solid #2b6df3}
.mhw4-card-blue .mhw4-head{color:#fff}
.mhw4-card-blue ul li{background:rgba(255,255,255,.2);color:#fff;transition:all .3s ease}
.mhw4-card-blue ul li:hover{background:rgba(255,255,255,.35);transform:translateY(-3px);box-shadow:0 4px 10px rgba(255,255,255,.2)}

@media (max-width:768px){
  .mhw4-card{padding:22px 16px}
  .mhw4-head{font-size:18px}
  .mhw4-card li{font-size:14px}
}
/* ========== 模块5：TikTok代运营价格方案 ========== */
.mhw-module5{background:#fff;padding:50px 0}
.mhw5-grid{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:40px}
@media (max-width:900px){.mhw5-grid{grid-template-columns:1fr;gap:30px}}
.mhw5-text .mhw-title{margin-bottom:12px}
.mhw5-text .mhw-subtitle{margin-bottom:24px;font-size:15px;color:#555}
.mhw5-btns{display:flex;gap:14px;flex-wrap:wrap}
.mhw5-card{
  background:#f9fbff;border:1px solid #dce5ff;border-radius:14px;
  padding:28px;box-shadow:0 4px 12px rgba(0,0,0,.05);transition:.3s;
}
.mhw5-card:hover{transform:translateY(-5px);box-shadow:0 8px 20px rgba(43,109,243,.1)}
.mhw5-card h3{font-size:20px;font-weight:800;color:#1f52d8;margin-bottom:18px}
.mhw5-card ul{margin:0 0 16px;padding:0;list-style:none;display:flex;flex-direction:column;gap:10px}
.mhw5-card li{font-size:15px;color:#333;line-height:1.7}
.mhw5-footer{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;margin-top:10px}
.mhw5-footer p{margin:0;color:#666;font-size:14px}

/* ========== 模块6：TikTok代运营服务团队 ========== */
.mhw-module6{background:#f5f6f8;padding:50px 0}
.mhw6-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .mhw6-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mhw6-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mhw6-card{
  background:#fff;border:1px solid #e0e6f0;border-radius:12px;box-shadow:0 4px 10px rgba(0,0,0,.05);
  transition:.3s;padding:22px 20px;text-align:left
}
.mhw6-card:hover{transform:translateY(-5px);box-shadow:0 10px 25px rgba(43,109,243,.15)}
/* .mhw6-head{background:#2b6df3;color:#fff;padding:10px 14px;border-radius:8px;font-weight:700;font-size:16px;display:flex;justify-content:space-between;align-items:center;margin-bottom:14px} */
.mhw6-head {
  background:#2b6df3;
  color:#fff;
  padding:10px 14px;
  border-radius:8px;
  font-weight:700;
  font-size:16px;
  display:flex;
  justify-content:center; /* 居中对齐 */
  align-items:center;
  gap:8px; /* 控制文字与人数之间的距离 */
  text-align:center; /* 确保多行文本也居中 */
  margin-bottom:14px;
}
.mhw6-card ul{margin:0 0 10px;padding-left:18px}
.mhw6-card li{font-size:14px;line-height:1.7;color:#333}
.mhw6-card p{font-size:14px;color:#555;line-height:1.7;margin:0}
@media (max-width:768px){
  .mhw6-head{font-size:15px;padding:8px 12px}
  .mhw6-card{padding:18px 16px}
}

/* ================= 模块7：服务流程 ================= */
.mhw-module7 {
  background: #fff;
  padding: 50px 0;
}
.mhw7-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  align-items: start;
  text-align: center;
}
@media (max-width: 768px) {
  .mhw7-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.mhw7-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 10px;
  transition: all 0.3s ease;
}
.mhw7-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(43, 109, 243, 0.15);
}
.mhw7-step img {
  width: 36px;
  height: 36px;
  filter: invert(35%) sepia(90%) saturate(650%) hue-rotate(205deg);
}
.mhw7-step h3 {
  font-size: 16px;
  color: #1c1c1c;
  margin: 4px 0 0;
  font-weight: 700;
}
.mhw7-step p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
/* 模块7结束 */
/* ========== 模块8 样式 ========== */
/* ========== 模块8 样式 ========== */
.mhw-module8 {
  background: #f6f6f6;
  padding: 50px 0;
}
.mhw8-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.mhw8-card {
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}
.mhw8-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(43,109,243,0.15);
}
.mhw8-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.mhw8-body {
  padding: 22px 18px;
}
.mhw8-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1f52d8;
  margin: 0 0 10px;
}
.mhw8-body p {
  color: #555;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}
@media (max-width:768px) {
  .mhw8-card img { height: 150px; }
  .mhw8-body h3 { font-size: 17px; }
}
/* 模块8结束 */
/* ================= 弹框 ================= */
.mhw-modal{position:fixed;inset:0;display:none;justify-content:center;align-items:center;z-index:9999}
.mhw-modal.mhw-active{display:flex}
.mhw-overlay{position:absolute;inset:0;background:rgba(0,0,0,.45);opacity:0;transition:.3s}
.mhw-box{position:relative;z-index:10;background:#fff;padding:28px 28px 36px;border-radius:16px;box-shadow:0 8px 30px rgba(0,0,0,.2);max-width:360px;text-align:center;transform:translateY(30px);opacity:0;transition:.35s}
.mhw-box h3{font-size:20px;margin-bottom:12px;color:var(--mhw-text)}
.mhw-box img{width:220px;height:220px;border-radius:8px;border:1px solid #eee;margin-bottom:12px}
.mhw-box p{font-size:14px;color:#555}
.mhw-close{position:absolute;top:10px;right:14px;background:none;border:none;font-size:22px;color:#999;cursor:pointer;transition:.2s}
.mhw-close:hover{color:var(--mhw-blue)}
.mhw-modal.mhw-active .mhw-overlay{opacity:1}
.mhw-modal.mhw-active .mhw-box{opacity:1;transform:translateY(0)}
/* ========== Banner 图片背景样式（匹配 mh-bannerx 高度） ========== */
.mhx6-banner {
  position: relative;
  width: 100%;
  height: 650px; /* ✅ 与示例相同 */
  overflow: hidden;
}

.mhx6-banner::before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 6s ease;
}

/* 鼠标悬停轻微放大 */
.mhx6-banner:hover::before {
  transform: scale(1.1);
}

/* 内容层 */
.mhx6-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.mhx6-banner h1 {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.mhx6-banner p {
  font-size: clamp(15px, 1.8vw, 20px);
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

/* 按钮（与现有风格一致） */
.mhx6-btn {
  background: linear-gradient(90deg, #0077ff, #00c6ff);
  color: #fff;
  padding: 12px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.mhx6-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 123, 255, 0.45);
}

/* ✅ 移动端与示例保持一致高度 */
@media (max-width: 768px) {
  .mhx6-banner {
    height: 480px; /* 与 mh-bannerx 一样 */
  }
  .mhx6-banner h1 {
    font-size: 26px;
  }
  .mhx6-banner p {
    font-size: 14px;
  }
  .mhx6-btn {
    padding: 10px 26px;
    font-size: 14px;
  }
}
/* banner结束 */
/* 标题居中开始 */
/* =========================================================
   🎯 指定模块标题 + 按钮 居中补丁
   模块1、2、3、4、6、7、8 居中显示；
   模块5（价格方案）不动，保持左右布局。
   按钮与副标题距离约 25px。
========================================================= */

/* 模块1、2、3、4、6、7、8 标题组居中 */
.mhw-module1 .mhw-head,
.mhw-module2 .mhw-head,
.mhw-module3 .mhw-head,
.mhw-module4 .mhw-head,
.mhw-module6 .mhw-head,
.mhw-module7 .mhw-head,
.mhw-module8 .mhw-head {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin-bottom: 50px; /* 统一底部空间 */
}

/* 标题与副标题文字居中 */
.mhw-module1 .mhw-title,
.mhw-module2 .mhw-title,
.mhw-module3 .mhw-title,
.mhw-module4 .mhw-title,
.mhw-module6 .mhw-title,
.mhw-module7 .mhw-title,
.mhw-module8 .mhw-title,
.mhw-module1 .mhw-subtitle,
.mhw-module2 .mhw-subtitle,
.mhw-module3 .mhw-subtitle,
.mhw-module4 .mhw-subtitle,
.mhw-module6 .mhw-subtitle,
.mhw-module7 .mhw-subtitle,
.mhw-module8 .mhw-subtitle {
  text-align: center !important;
}

/* 按钮水平居中 + 上下间距 */
.mhw-module1 .mhw-btn,
.mhw-module2 .mhw-btn,
.mhw-module3 .mhw-btn,
.mhw-module4 .mhw-btn,
.mhw-module6 .mhw-btn,
.mhw-module7 .mhw-btn,
.mhw-module8 .mhw-btn {
  margin: 10px auto 0 !important; /* 上方距离副标题 25px，下方自动 */
  display: inline-block;
}

/* 移动端优化：间距略缩短 */
@media (max-width: 768px) {
  .mhw-module1 .mhw-btn,
  .mhw-module2 .mhw-btn,
  .mhw-module3 .mhw-btn,
  .mhw-module4 .mhw-btn,
  .mhw-module6 .mhw-btn,
  .mhw-module7 .mhw-btn,
  .mhw-module8 .mhw-btn {
    margin-top: 20px !important;
  }
}
/* =========================================================
   “立即咨询”按钮统一渐变色样式
========================================================= */
.mhw-btn {
  background: linear-gradient(90deg, #007bff 0%, #00a6ff 100%) !important; /* 渐变蓝 */
  color: #fff !important;
  border: none !important;
  text-decoration: none !important;
  display: inline-block !important;
  font-weight: 600 !important;
  border-radius: 25px !important;
  padding: 10px 26px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3) !important;
}

/* 悬停时渐变更亮、轻微上浮 */
.mhw-btn:hover {
  background: linear-gradient(90deg, #00a6ff 0%, #33c1ff 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* 标题居中结束 */