/* Aurora Admin CodeInput 样式 — 对齐 组件7.txt CodeInput:验证码 / 一次性口令输入 */ .aa-code { font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); display: flex; gap: 8px; } .aa-code-cell { position: relative; width: 44px; height: 48px; border: 1px solid var(--au-color-border); border-radius: 8px; background: var(--au-color-card-bg); display: flex; align-items: center; justify-content: center; transition: border-color .15s, box-shadow .15s; } .aa-code-cell.is-focus { border-color: var(--au-color-brand); box-shadow: 0 0 0 3px rgba(47,84,235,0.2); } .aa-code-cell.is-filled { border-color: #B7C4FF; } .aa-code-input { width: 100%; height: 100%; border: none; outline: none; background: none; text-align: center; font-size: 20px; font-weight: 600; color: var(--au-color-text-title); padding: 0; } .aa-code-input::placeholder { color: var(--au-color-text-placeholder); font-weight: 400; } .aa-code-cell.is-masked .aa-code-input { -webkit-text-security: disc; text-security: disc; } .aa-code-tip { font-size: 12px; margin-top: 8px; color: var(--au-color-text-secondary); } .aa-code-tip.error { color: var(--au-color-error); }