/* 一键添加桌面黑色顶部弹窗样式 */
.pwa-popup{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #fff;
  padding:14px 20px;
  z-index: 9999;
  align-items: center;
  gap:12px;
}
.pop-icon img{width:48px;height:48px;border-radius:50%;}
.pop-text{font-size:16px;flex:1;}
.pop-btn{background:#0088ff;color:#fff;border:none;padding:8px 16px;border-radius:6px;font-size:15px;}
.pop-close{font-size:24px;color:#ccc;padding:0 10px;}

/* 微信手动指引弹窗样式，页面居中白底弹窗 */
.wechat-guide{
  display: none;
  position: fixed;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width:85%;
  max-width:400px;
  background:#fff;
  padding:24px;
  border-radius:12px;
  box-shadow:0 0 20px #0003;
  z-index:9999;
}
.wechat-guide h3{font-size:18px;color:#222;margin:10px 0;}
.wechat-guide h4{font-size:16px;color:#0066cc;margin:12px 0 6px;}
.wechat-guide p{font-size:15px;color:#444;line-height:1.7;margin:4px 0;}
.guide-close{
  width:100%;
  margin-top:16px;
  padding:10px;
  background:#0088ff;
  color:#fff;
  border:none;
  border-radius:8px;
  font-size:16px;
}
