/* v52 未实名新手引导按钮：只弹出教学，不覆盖 realname 页面 */
.hk-guide-open-btn{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  height:44px;
  padding:0 16px;
  border:0;
  border-radius:999px;
  background:linear-gradient(180deg,#165dff,#0f49c8);
  color:#fff;
  box-shadow:0 14px 34px rgba(22,93,255,.25);
  cursor:pointer;
  font-weight:800;
}
.hk-guide-modal-mask{
  position:fixed;
  inset:0;
  z-index:1000;
  background:rgba(15,23,42,.45);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.hk-guide-modal-mask.active{display:flex}
.hk-guide-modal{
  width:min(760px,100%);
  background:#fff;
  border-radius:26px;
  box-shadow:0 32px 90px rgba(15,23,42,.24);
  overflow:hidden;
}
.hk-guide-modal-head{
  padding:24px 28px;
  background:linear-gradient(135deg,#0d2343,#163b6c 62%,#1b61ff);
  color:#fff;
}
.hk-guide-modal-head h2{
  margin:0 0 8px;
  color:#fff !important;
}
.hk-guide-modal-head p{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.8;
}
.hk-guide-modal-body{padding:24px 28px}
.hk-guide-step{display:none;min-height:180px}
.hk-guide-step.active{display:block}
.hk-guide-step h3{margin:0 0 10px;font-size:22px}
.hk-guide-step p{margin:0 0 14px;color:#64748b;line-height:1.9}
.hk-guide-list{display:grid;gap:10px;margin-top:14px}
.hk-guide-list div{
  padding:12px 14px;
  border-radius:16px;
  background:#f8fbff;
  border:1px solid #e8eef7;
  color:#334155;
}
.hk-guide-progress{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin-bottom:18px;
}
.hk-guide-dot{
  height:7px;
  border-radius:999px;
  background:#e8eef7;
}
.hk-guide-dot.active{
  background:linear-gradient(90deg,#165dff,#79a8ff);
}
.hk-guide-actions{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding-top:18px;
  border-top:1px solid #edf2f8;
}
.hk-guide-actions button,
.hk-guide-actions a{
  height:40px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid #d8e3f2;
  background:#fff;
  color:#31527a;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hk-guide-actions .primary{
  border:0;
  color:#fff;
  background:linear-gradient(180deg,#165dff,#0f49c8);
}
@media(max-width:700px){
  .hk-guide-open-btn{right:14px;bottom:14px}
  .hk-guide-modal-head,.hk-guide-modal-body{padding:20px 16px}
  .hk-guide-actions{flex-direction:column}
  .hk-guide-actions button,.hk-guide-actions a{width:100%}
}
