/* 个人中心「邮箱绑定」卡片 */
.email-card {
  margin-top: 14px;
  padding: 18px;
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.email-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.email-card-head h3 {
  font-size: 16px;
  margin: 0 0 5px;
  letter-spacing: -.02em;
}
.email-card-head small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.email-status {
  flex: none;
  max-width: 48%;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
  word-break: break-all;
}
.email-status.is-bound {
  color: #4f9a72;
}
.email-action {
  width: 100%;
  margin-top: 14px;
}
.email-form {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 12px;
}
.email-field {
  display: grid;
  gap: 7px;
}
.email-field span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.email-field input,
.email-code-row input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fbfbfc;
  outline-color: var(--accent);
}
.email-code-row {
  display: flex;
  align-items: stretch;
  gap: 9px;
}
.email-code-row input {
  flex: 1;
  min-width: 0;
  letter-spacing: .18em;
}
.email-code-row .code-btn {
  flex: none;
  min-width: 106px;
  padding: 0 14px;
  border-radius: 9px;
  background: #f5f4f7;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.email-code-row .code-btn:disabled {
  color: var(--muted);
  cursor: not-allowed;
}
.email-hint {
  margin: 0;
  min-height: 16px;
  font-size: 11px;
  line-height: 1.5;
  color: #d0546e;
}
.email-hint.is-ok {
  color: #4f9a72;
}
.email-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.email-actions .primary-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}
/* 已绑定后，绑定入口收进「编辑资料」面板内 */
.email-card.is-embed {
  margin-top: 18px;
  padding: 15px 16px;
  background: #fbfbfc;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
}
.email-card.is-embed .email-action {
  margin-top: 12px;
}
.email-card.is-embed .email-form {
  margin-top: 13px;
  padding-top: 12px;
}
/* 个人资料区展示已绑定邮箱（整行展示） */
.profile-meta .is-full {
  grid-column: 1 / -1;
}
.profile-email {
  font-size: 13px;
  word-break: break-all;
}
