/* ============================================================
   简历更新引导弹窗(Figma 520×263)
   说明:以 #resumeUpdateMask 为作用域前缀,避免 .btn/.title 等
   类名污染页面其他元素(页面已有 .btn / .title 用法)
   ============================================================ */

#resumeUpdateMask,
#resumeUpdateMask * {
  box-sizing: border-box; /* 与设计稿全局 border-box 一致,避免宽度/高度被 padding 撑大 */
}
#resumeUpdateMask *::before,
#resumeUpdateMask *::after {
  box-sizing: border-box;
}

#resumeUpdateMask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  margin: 0;
  padding: 0;
}
#resumeUpdateMask.hidden { display: none; }

#resumeUpdateMask .popup {
  position: relative;
  width: 520px;
  height: 263px; /* Figma 固定 520×263 */
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 54px 25px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  margin: 0;
}

/* 右上角角标:可部分溢出到盒子外 */
#resumeUpdateMask .top-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 83px;
  height: 75px;
  z-index: 2;
  pointer-events: none;
}
#resumeUpdateMask .top-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#resumeUpdateMask .title {
  font-size: 18px;
  font-weight: 600;
  color: #202933;
  text-align: center;
  white-space: nowrap;
  line-height: 25px;
  height: 25px;
  width: 379px;
  margin: 0 auto 28px;
}

#resumeUpdateMask .tubiao {
  display: block;
  width: 379px;
  height: 37px;
  margin: 0 auto 16px;
  object-fit: fill;
}

#resumeUpdateMask .js {
  display: block;
  width: 411px;
  height: 28px;
  margin: 0 auto 26px;
  object-fit: fill;
}

#resumeUpdateMask .actions {
  display: flex;
  gap: 20px;
  height: 48px;
}

#resumeUpdateMask .btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: opacity .15s;
}
#resumeUpdateMask .btn:active { opacity: .8; }

#resumeUpdateMask .btn-ghost {
  background: #ffffff;
  border: 1px solid #d3d6db;
  color: #666666;
}

#resumeUpdateMask .btn-green {
  background: #10ac6b;
  color: #ffffff;
  font-weight: 600;
}