* { margin:0; padding:0; box-sizing:border-box; }
html, body {
  width:100%; height:100%;
  overflow:hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
body {
  background: #f0f4f8;
  display:flex; justify-content:center; align-items:center;
}

/* 手机容器 - 基础（三页共用） */
.phone-frame {
  width:100%; max-width:420px; height:100%; max-height:900px;
  position:relative; overflow:hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
@media (min-width: 440px) {
  .phone-frame { border-radius: 20px; height:90vh; }
}

/* ============ index.html 专用（首页全套动效） ============ */

/* 背景层 */
.bg-layer {
  position:absolute; inset:0; z-index:1;
  background: url('bg.png') center/cover no-repeat;
  opacity:0;
  animation: bgFadeIn 1.5s ease forwards;
}
@keyframes bgFadeIn {
  0% { opacity:0; transform:scale(1.1); }
  100% { opacity:1; transform:scale(1); }
}

/* 粒子装饰 */
.particle {
  position:absolute; border-radius:50%; pointer-events:none; z-index:2;
  opacity:0;
}
.p1 { width:6px; height:6px; background:rgba(59,130,246,0.4); top:15%; left:10%; animation: float1 4s ease-in-out infinite, popIn 0.6s 0.8s ease forwards; }
.p2 { width:4px; height:4px; background:rgba(245,158,11,0.5); top:25%; right:15%; animation: float2 5s ease-in-out infinite, popIn 0.6s 1.0s ease forwards; }
.p3 { width:8px; height:8px; background:rgba(16,185,129,0.3); top:40%; left:20%; animation: float3 6s ease-in-out infinite, popIn 0.6s 1.2s ease forwards; }
.p4 { width:5px; height:5px; background:rgba(139,92,246,0.4); top:60%; right:10%; animation: float1 4.5s ease-in-out infinite, popIn 0.6s 1.4s ease forwards; }
.p5 { width:3px; height:3px; background:rgba(236,72,153,0.4); top:75%; left:15%; animation: float2 5.5s ease-in-out infinite, popIn 0.6s 1.6s ease forwards; }
.p6 { width:7px; height:7px; background:rgba(6,182,212,0.3); top:50%; right:25%; animation: float3 4s ease-in-out infinite, popIn 0.6s 1.8s ease forwards; }

@keyframes float1 {
  0%,100% { transform:translateY(0) translateX(0); }
  50% { transform:translateY(-20px) translateX(10px); }
}
@keyframes float2 {
  0%,100% { transform:translateY(0) translateX(0); }
  50% { transform:translateY(15px) translateX(-15px); }
}
@keyframes float3 {
  0%,100% { transform:translateY(0) translateX(0); }
  50% { transform:translateY(-10px) translateX(20px); }
}
@keyframes popIn {
  0% { opacity:0; transform:scale(0); }
  80% { opacity:1; transform:scale(1.2); }
  100% { opacity:1; transform:scale(1); }
}

/* 光晕效果 */
.glow-ring {
  position:absolute; border-radius:50%; pointer-events:none; z-index:2;
  border: 1px solid rgba(59,130,246,0.1);
  opacity:0;
  animation: glowIn 1s 2s ease forwards, glowPulse 3s ease-in-out infinite 3s;
}
.glow-ring.g1 { width:200px; height:200px; top:20%; left:-50px; }
.glow-ring.g2 { width:150px; height:150px; top:50%; right:-30px; }
.glow-ring.g3 { width:100px; height:100px; bottom:25%; left:30%; }
@keyframes glowIn {
  0% { opacity:0; transform:scale(0.5); }
  100% { opacity:1; transform:scale(1); }
}
@keyframes glowPulse {
  0%,100% { opacity:0.3; transform:scale(1); }
  50% { opacity:0.6; transform:scale(1.05); }
}

.card-body img{ width:100% }
/* Logo区域 - 左上角 */
.logo-wrap {
  position:absolute; top:4%; left:5%;
  z-index:10;
  opacity:0;
  animation: fadeInLogo 0.8s 0.3s ease forwards;
}
.logo-wrap img {
  height:72px; width:auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}
@keyframes fadeInLogo {
  0% { opacity:0; transform:translateX(-20px); }
  100% { opacity:1; transform:translateX(0); }
}

/* 主内容区 - home.png */
.content-wrap {
  position:absolute; top:46%; left:50%;
  transform:translate(-50%, -50%);
  z-index:10; text-align:center;
  width:88%;
}
.content-img {
  width:100%; max-width:360px; height:auto;
  opacity:0;
  animation: contentReveal 1.2s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.08));
}
@keyframes contentReveal {
  0% { opacity:0; transform:scale(0.8) rotateY(-15deg); }
  50% { opacity:0.8; transform:scale(1.02) rotateY(2deg); }
  100% { opacity:1; transform:scale(1) rotateY(0); }
}

/* 按钮区域 - index专用（绝对定位居中 + 弹跳呼吸动画） */
.index-page .btn-wrap {
  position:absolute; bottom:16%; left:50%;
  transform:translateX(-50%);
  z-index:10;
  opacity:0;
  animation: btnBounce 0.8s 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
             btnBreathe 2s ease-in-out infinite 2.5s;
}
.index-page .btn-wrap img {
  height:36px; width:auto;
  cursor:pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 4px 12px rgba(59,130,246,0.3));
}
.index-page .btn-wrap img:hover {
  transform:scale(1.08);
  filter: drop-shadow(0 6px 20px rgba(59,130,246,0.5));
}
.index-page .btn-wrap img:active {
  transform:scale(0.95);
}
@keyframes btnBounce {
  0% { opacity:0; transform:translateX(-50%) scale(0.3); }
  60% { opacity:1; transform:translateX(-50%) scale(1.1); }
  80% { transform:translateX(-50%) scale(0.95); }
  100% { opacity:1; transform:translateX(-50%) scale(1); }
}
@keyframes btnBreathe {
  0%,100% { transform:translateX(-50%) scale(1); }
  50% { transform:translateX(-50%) scale(1.05); }
}

/* 底部信息条 - 用bottom.png */
.footer-bar {
  position:absolute; bottom:0; left:0; right:0;
  background: url('bottom.png') center/cover no-repeat;
  padding: 16px 20px;
  text-align:center;
  z-index:10;
  opacity:0;
  animation: footerSlide 0.6s 1.5s ease forwards;
}
@keyframes footerSlide {
  0% { opacity:0; transform:translateY(30px); }
  100% { opacity:1; transform:translateY(0); }
}
.footer-bar p {
  color:#fff; font-size:13px; letter-spacing:1px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  white-space:nowrap;
}

/* 星星闪烁 */
.star {
  position:absolute; width:3px; height:3px;
  background:#fff; border-radius:50%;
  box-shadow: 0 0 6px 2px rgba(255,255,255,0.6);
  z-index:3; pointer-events:none;
  opacity:0;
}
.star.s1 { top:10%; left:30%; animation: twinkle 2s ease-in-out infinite 1s; }
.star.s2 { top:20%; right:25%; animation: twinkle 2.5s ease-in-out infinite 1.5s; }
.star.s3 { top:35%; left:15%; animation: twinkle 3s ease-in-out infinite 2s; }
.star.s4 { top:55%; right:20%; animation: twinkle 2s ease-in-out infinite 2.5s; }
.star.s5 { top:70%; left:40%; animation: twinkle 2.5s ease-in-out infinite 3s; }
@keyframes twinkle {
  0%,100% { opacity:0; transform:scale(0.5); }
  50% { opacity:1; transform:scale(1.2); }
}

/* 波纹效果 */
.ripple {
  position:absolute; border-radius:50%;
  border: 1px solid rgba(59,130,246,0.2);
  pointer-events:none; z-index:2;
  opacity:0;
}
.ripple.r1 { width:80px; height:80px; bottom:15%; left:50%; margin-left:-40px; animation: rippleOut 3s ease-out infinite 2s; }
.ripple.r2 { width:120px; height:120px; bottom:13%; left:50%; margin-left:-60px; animation: rippleOut 3s ease-out infinite 2.5s; }
.ripple.r3 { width:160px; height:160px; bottom:11%; left:50%; margin-left:-80px; animation: rippleOut 3s ease-out infinite 3s; }
@keyframes rippleOut {
  0% { opacity:0.6; transform:scale(0.5); }
  100% { opacity:0; transform:scale(1.5); }
}

/* ============ preface.html 专用（前言页） ============ */

/* 背景层 - 固定容器内 */
.phone-frame.preface-page .bg-layers {
  position:absolute; inset:0; z-index:1;
  background: url('body.png') center/cover no-repeat;
}

/* 滚动内容区 */
.phone-frame.preface-page .scroll-content {
  position:relative; z-index:10;
  height:100%; overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  padding: 60px 30px 60px;
  scrollbar-width:none;
}
.phone-frame.preface-page .scroll-content::-webkit-scrollbar { display:none; }

/* 标题图片 */
.phone-frame.preface-page .title-img {
  display:block; margin: 0 auto 30px;
  height:40px; width:auto;
}

/* 文字内容 */
.phone-frame.preface-page .text-block {
  padding: 24px 20px;
  line-height: 2;
  font-size:16px;
  color:#333;
  text-align:justify;
  margin-bottom: 30px;
  text-indent: 2em;
}

/* 按钮 - preface专用（普通居中） */
.phone-frame.preface-page .btn-wrap {
  text-align:center; margin-bottom: 20px;
}
.phone-frame.preface-page .btn-wrap img {
  height:36px; width:auto;
  cursor:pointer;
  transition: transform 0.2s ease;
}
.phone-frame.preface-page .btn-wrap img:active {
  transform:scale(0.95);
}

/* 底部留白 */
.phone-frame.preface-page .bottom-space {
  height:60px;
}

/* 过渡效果 - preface 向左滑出 */
.phone-frame.preface-page {
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.phone-frame.preface-page.fade-out {
  transform: translateX(-100%);
  opacity: 0;
}

/* ============ zhaoyin.html 专用（招引篇） ============ */

/* 固定背景图 */
.phone-frame.zhaoyin-page .zhaoyin-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('bg.png') center/cover no-repeat;
  z-index: 1;
}

/* 返回按钮 - 固定左上角 */
.phone-frame.zhaoyin-page .zhaoyin-return {
  position: absolute;
  top: 25px; left: 25px;
  z-index: 100;
  display: block;
  width: 38px; height: 38px;
  filter: drop-shadow(2px 3px 4px rgba(0,0,0,0.35));
}
.phone-frame.zhaoyin-page .zhaoyin-return img {
  width: 100%; height: auto;
  display: block;
}

/* 滚动内容区 */
.phone-frame.zhaoyin-page .zhaoyin-scroll {
  position: relative;
  z-index: 10;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 50px 16px 20px;
  scrollbar-width: none;
}
.phone-frame.zhaoyin-page .zhaoyin-scroll::-webkit-scrollbar { display: none; }

/* 标题图片 */
.phone-frame.zhaoyin-page .zhaoyin-title {
  text-align: center;
  margin-bottom: 20px;
}
.phone-frame.zhaoyin-page .zhaoyin-title img {
  height: 36px; width: auto;
  display: inline-block;
}

/* 白色内容卡片 - 直角 */
.phone-frame.zhaoyin-page .content-card {
  background: #fff;
  border-radius: 0;
  padding: 0 16px 16px;
  margin-bottom: 16px;
  margin-top: 60px;
}

/* 章节区块 */
.phone-frame.zhaoyin-page .zhaoyin-section {
  position: relative;
  margin-bottom: 0;
}

/* 标签 - 浮在白色卡片上方 */
.phone-frame.zhaoyin-page .zhaoyin-tag {
  position: absolute;
  top: -32px;
  left: -16px;
  z-index: 5;
}
.phone-frame.zhaoyin-page .zhaoyin-tag img {
  height: 32px; width: auto;
  display: block;
}
.phone-frame.zhaoyin-page .zhaoyin-tag .tag-text {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* 文字内容 */
.phone-frame.zhaoyin-page .zhaoyin-text {
  padding: 18px 4px 0;
}
.phone-frame.zhaoyin-page .zhaoyin-text p {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  text-align: justify;
  text-indent: 2em;
}
.phone-frame.zhaoyin-page .zhaoyin-text p .br-indent {
  display: inline-block;
  width: 2em;
}

 

/* 视频区域 */
.phone-frame.zhaoyin-page .zhaoyin-video {
  position: relative;
  margin-top: 8px;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}
.phone-frame.zhaoyin-page .zhaoyin-video .video-poster {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.phone-frame.zhaoyin-page .zhaoyin-video video {
  width: 100%;
  height: auto;
  display: none;
  border-radius: 0;
}
.phone-frame.zhaoyin-page .video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.phone-frame.zhaoyin-page .play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #78E4EB;
  margin-left: 4px;
}

/* 招商卡片列表 */
.phone-frame.zhaoyin-page .zhaoyin-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px; 
}

/* 单个卡片 */
.phone-frame.zhaoyin-page .zhaoyin-card {
  background: #F0FEFF;
  border-radius: 0;
  padding: 20px 18px;
  border: 1px solid #78E4EB;
  position: relative;
  margin-bottom: 4px;margin-top: 20px;
}
.phone-frame.zhaoyin-page .zhaoyin-card .corner {
  position: absolute;
  width: 10px; height: 10px;
  background: #78E4EB;
}
.phone-frame.zhaoyin-page .zhaoyin-card .corner-tl { top: -5px; left: -5px; }
.phone-frame.zhaoyin-page .zhaoyin-card .corner-tr { top: -5px; right: -5px; }
.phone-frame.zhaoyin-page .zhaoyin-card .corner-bl { bottom: -5px; left: -5px; }
.phone-frame.zhaoyin-page .zhaoyin-card .corner-br { bottom: -5px; right: -5px; }

/* 卡片标题 */
.phone-frame.zhaoyin-page .zhaoyin-card .card-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 4px;
  text-align: center;
}

/* 卡片副标题 */
.phone-frame.zhaoyin-page .zhaoyin-card .card-subtitle {
  font-size: 14px;
  color: #333;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #7ec8d4;
  text-align: center;
}

/* 卡片正文 */
.phone-frame.zhaoyin-page .zhaoyin-card .card-body p {
  font-size: 15px;
  line-height: 2;
  color: #333;
  text-align: justify;
  margin-bottom: 10px;
}

/* 联系方式 */
.phone-frame.zhaoyin-page .zhaoyin-card .card-contact {
  margin-top: 10px;
}
.phone-frame.zhaoyin-page .zhaoyin-card .card-contact p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 4px;
  text-indent: 0;
}

/* 电话链接 */
.phone-frame.zhaoyin-page .zhaoyin-card .card-contact .phone-link {
  color: #2a9d8f;
  text-decoration: underline;
  cursor: pointer;
}



/* 单个卡片 */
.phone-frame.zhaoyin-page .zhaoyin-card2 {
  background: #FFF9EB;
  border-radius: 0;
  padding: 20px 18px;
  border: 1px solid #F3CC93;
  position: relative;
  margin-bottom: 4px;margin-top: 20px;
}
.phone-frame.zhaoyin-page .zhaoyin-card2 .corner {
  position: absolute;
  width: 10px; height: 10px;
  background: #F3CC93;
}
.phone-frame.zhaoyin-page .zhaoyin-card2 .corner-tl { top: -5px; left: -5px; }
.phone-frame.zhaoyin-page .zhaoyin-card2 .corner-tr { top: -5px; right: -5px; }
.phone-frame.zhaoyin-page .zhaoyin-card2 .corner-bl { bottom: -5px; left: -5px; }
.phone-frame.zhaoyin-page .zhaoyin-card2 .corner-br { bottom: -5px; right: -5px; }

/* 卡片标题 */
.phone-frame.zhaoyin-page .zhaoyin-card2 .card-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 4px;
  text-align: center;
}

/* 卡片副标题 */
.phone-frame.zhaoyin-page .zhaoyin-card2 .card-subtitle {
  font-size: 14px;
  color: #333;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #F3CC93;
  text-align: center;
}

/* 卡片正文 */
.phone-frame.zhaoyin-page .zhaoyin-card2 .card-body p {
  font-size: 15px;
  line-height: 2;
  color: #333;
  text-align: justify;
  margin-bottom: 10px;
}

/* 联系方式 */
.phone-frame.zhaoyin-page .zhaoyin-card2 .card-contact {
  margin-top: 10px;
}
.phone-frame.zhaoyin-page .zhaoyin-card2 .card-contact p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 4px;
  text-indent: 0;
}

/* 电话链接 */
.phone-frame.zhaoyin-page .zhaoyin-card2 .card-contact .phone-link {
  color: #F3CC93;
  text-decoration: underline;
  cursor: pointer;
}


/* 底部留白 */
.phone-frame.zhaoyin-page .bottom-space {
  height: 20px;
}

/* 弹窗 */
.phone-frame.zhaoyin-page .zhaoyin-popup {
  position: absolute;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 服务篇弹窗专用 */
.phone-frame.zhaoyin-page .popup-box-fuwu {
  width: 80%;
 
  max-height: 60%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  padding-bottom: 12px;
}
.phone-frame.zhaoyin-page .popup-fuwu-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.phone-frame.zhaoyin-page .popup-btns-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 8px 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  position: relative;
  z-index: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.phone-frame.zhaoyin-page .popup-btns-wrap::-webkit-scrollbar {
  display: none;
}
.phone-frame.zhaoyin-page .popup-btns-wrap::after {
  content: '';
  display: block;
  width: 100%;
  height: 30px;
  flex-shrink: 0;
}
.phone-frame.zhaoyin-page .popup-btn .btn-sub {
  font-size: 11px;
  font-weight: normal;
  opacity: 0.9;  line-height: 135px;
}
.phone-frame.zhaoyin-page .popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.phone-frame.zhaoyin-page .popup-box {
  position: relative;
  width: 80%;
 
  background: #fff;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
   
}
.phone-frame.zhaoyin-page .popup-box2 {
  position: relative;
  width: 80%;
 
  background: #fff;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  /*border: 2px solid #E9912F;*/
}
.phone-frame.zhaoyin-page .popup-header {
  display: block;
  width: 60%;
  margin: -25px auto 0;
  position: relative;
  z-index: 3;
}
.phone-frame.zhaoyin-page .popup-bg-img {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.phone-frame.zhaoyin-page .popup-btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 50px 50px;
  position: relative;
  z-index: 3;
}
.phone-frame.zhaoyin-page .popup-btn {
  background: url('zhaoyinb.png') center/cover no-repeat;
  color: #1D2088;
  font-size: 16px;
 
  text-align: center;
 
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 2px;
  transition: opacity 0.2s;
  width: 100%;
  box-sizing: border-box; height: 60px; line-height: 60px; margin:5px 0
}
.phone-frame.zhaoyin-page .popup-btn:active {
  opacity: 0.8;
}
.phone-frame.zhaoyin-page .popup-btn2 {
  background: url('fuan.png') center/cover no-repeat;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: opacity 0.2s;
  width: 100%;
  max-width: 230px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  flex-shrink: 0;
}
.phone-frame.zhaoyin-page .popup-btn2:active {
  opacity: 0.8;
}
.phone-frame.zhaoyin-page .popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

/* 关闭按钮 - 弹窗下方中间 */
.phone-frame.zhaoyin-page .popup-close-bottom {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  color: #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* 目录浮动按钮 */
.phone-frame.zhaoyin-page .rml-float {
  position: absolute;
  top: 120px;
  right: 0;
  width: 36px;
  height: auto;
  z-index: 150;
  cursor: pointer;
}

/* 目录弹窗 */
.phone-frame.zhaoyin-page .popup-box-ml {
  /*border: 2px solid #000;*/
  max-height: 55vh;
  overflow: visible;
  background: #fff url('zhaoyinc.png') center bottom/100% auto no-repeat;  
}
.phone-frame.zhaoyin-page .popup-box-ml::-webkit-scrollbar { display: none; }
.phone-frame.zhaoyin-page .ml-content {
  padding: 20px 24px 60px;
}
.phone-frame.zhaoyin-page .ml-scroll-wrap {
  max-height: 40vh;
  overflow-y: auto;
}
.phone-frame.zhaoyin-page .ml-scroll-wrap::-webkit-scrollbar { display: none; }
.phone-frame.zhaoyin-page .ml-content::-webkit-scrollbar { display: none; }
.phone-frame.zhaoyin-page .ml-section {
  margin-bottom: 16px;
}
.phone-frame.zhaoyin-page .ml-section-title {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px; margin-top: 30px;
}
.phone-frame.zhaoyin-page .ml-btn-row {
  display: flex;
  gap: 20px 6px;
}
.phone-frame.zhaoyin-page .ml-btn-row .ml-btn-item {
  flex: 1;
  display: block;
}
.phone-frame.zhaoyin-page .ml-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 6px;
}
.phone-frame.zhaoyin-page .ml-btn-item {
  display: block;
  width: 100%;
}
.phone-frame.zhaoyin-page .ml-btn-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.phone-frame.zhaoyin-page .ml-btn-item.current img {
  box-shadow: 0 0 0 3px #d4943a;
  border-radius: 8px;
}



/* 背景层 */
.phone-frame.ml-page .bg-layers {
  position:absolute; inset:0; z-index:1;
  background: url('body.png') center/cover no-repeat;
}

/* 滚动内容区 */
.phone-frame.ml-page .scroll-content {
  position:relative; z-index:10;
  height:100%; overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  padding: 60px 30px 60px;
  scrollbar-width:none;
}
.phone-frame.ml-page .scroll-content::-webkit-scrollbar { display:none; }

/* 标题图片 */
.phone-frame.ml-page .title-img {
  display:block; margin: 0 auto 30px;
  height:40px; width:auto;
}

/* 目录列表 */
.phone-frame.ml-page .catalog-list {
  display:flex; flex-direction:column;
  gap: 16px;
  margin-bottom: 30px; margin-top: 44px;
}
.phone-frame.ml-page .catalog-item {
  display:block;
  width:100%; cursor:pointer;
  transition: transform 0.2s ease;
}
.phone-frame.ml-page .catalog-item:active {
  transform:scale(0.98);
}
.phone-frame.ml-page .catalog-item img {
  width:100%; height:auto;
  display:block;
  border-radius: 50px;
}

/* 过渡效果 - ml 从右滑入 */
.phone-frame.ml-page {
  transform: translateX(100%);
  opacity: 0;
  animation: slideIn 0.11s ease forwards;
}
@keyframes slideIn {
  to { transform: translateX(0); opacity: 1; }
}

/* 联系人信息行 - fu5.png背景 */
.zhaoyin-page .fuwu-contact-row {
  background: url('fu5.png') center/cover no-repeat;
  padding: 14px 20px;
  margin-top: 16px;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  line-height: 2;
}
.zhaoyin-page .fuwu-contact-row p {
  margin: 0;
  text-indent: 0;
}
.zhaoyin-page .fuwu-contact-row .phone-link {
  color: #2a9d8f;
  text-decoration: underline;
  cursor: pointer;
}

/* 企业前期要件事项办理指南标题 - fu3.png背景 */
.zhaoyin-page .fuwu-guide-title {
  background: url('fu3.png') left center/100% 100% no-repeat;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 24px 0 16px;
  margin-bottom: 12px;
}
.zhaoyin-page .fuwu-guide-title span {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  white-space: nowrap;
}

/* 需提供资料及流程 - 带fu4.png小图标 */
.zhaoyin-page .fuwu-sub-title {
  display: flex;
  align-items: center;
  margin: 20px 0 16px;
}
.zhaoyin-page .fuwu-sub-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  flex-shrink: 0;
}
.zhaoyin-page .fuwu-sub-title span {
  font-size: 15px;
  font-weight: bold;
  color: #E49135;
  letter-spacing: 1px;
}

/* 橙色链接按钮 */
.zhaoyin-page .fuwu-link-btn {
  display: inline-flex;
  align-items: center;
  background: #d4943a;
  color: #fff;
  font-size: 13px;
  padding: 6px 6px 6px 6px;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 8px;
  margin-left: 4px;
  letter-spacing: 1px;
  cursor: pointer;
}
.zhaoyin-page .fuwu-link-btn:hover {
  opacity: 0.85;
}
.zhaoyin-page .fuwu-link-btn::after {
  content: '›';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #fff;
  color: #d4943a;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  margin-left: 10px;
  line-height: 1;
  transform: translateY(1px);
}
