/* Aurora Admin FormModal 样式 — 弹窗内嵌表单 */ .aa-formmodal-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.45); display: flex; align-items: center; justify-content: center; z-index: 1000; font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); } .aa-formmodal { width: 440px; max-width: 92vw; background: #fff; border-radius: 10px; box-shadow: 0 12px 48px rgba(0,0,0,0.2); overflow: hidden; } .aa-formmodal-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid #E8ECF1; font-weight: 600; color: #1F2329; font-size: 15px; } .aa-formmodal-close { border: none; background: none; font-size: 18px; color: #6E6E6E; cursor: pointer; line-height: 1; } .aa-formmodal-close:hover { color: #262626; } .aa-formmodal-body { padding: 18px; } .aa-form-row { margin-bottom: 14px; } .aa-form-label { display: block; font-size: 13px; color: #595959; margin-bottom: 6px; } .aa-form-label .req { color: #CF1322; margin-right: 3px; } .aa-form-input { width: 100%; border: 1px solid #E8ECF1; border-radius: 6px; padding: 8px 10px; font-size: 14px; color: #262626; outline: none; box-sizing: border-box; transition: border-color .15s, box-shadow .15s; } .aa-form-input:focus { border-color: #2F54EB; box-shadow: 0 0 0 3px rgba(47,84,235,0.2); } .aa-form-input.is-error { border-color: #CF1322; } .aa-form-err { font-size: 12px; color: #CF1322; margin-top: 4px; } .aa-formmodal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 12px 18px; border-top: 1px solid #E8ECF1; }