/* Aurora Admin PlateInput 样式 — 车牌号输入(省份 + 字母数字,支持新能源) */ .aa-plate { font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); } .aa-plate-field { display: inline-flex; align-items: stretch; border-radius: 6px; overflow: hidden; border: 1px solid #E8ECF1; transition: border-color .15s, box-shadow .15s; } .aa-plate-field.is-focus { border-color: #2F54EB; box-shadow: 0 0 0 3px rgba(47,84,235,0.2); } .aa-plate-field.is-valid { border-color: #52C41A; } .aa-plate-field.is-invalid { border-color: #F5222D; } .aa-plate-prov { border: none; background: #2F54EB; color: #fff; font-size: 16px; font-weight: 700; padding: 0 10px; cursor: pointer; outline: none; } .aa-plate-input { border: none; outline: none; font-size: 18px; font-weight: 700; letter-spacing: 3px; color: #1F2329; background: #fff; padding: 0 12px; width: 160px; text-transform: uppercase; font-family: "SFMono-Regular", Consolas, monospace; } .aa-plate-input::placeholder { color: #BFBFBF; letter-spacing: normal; font-weight: 400; } .aa-plate-tip { font-size: 12px; margin-top: 6px; color: #8C8C8C; } .aa-plate-tip.valid { color: #52C41A; } .aa-plate-tip.invalid { color: #F5222D; } .aa-plate-tip .aa-plate-tag { display: inline-block; margin-left: 6px; padding: 1px 7px; border-radius: 3px; font-size: 11px; background: #F0F5FF; color: #2F54EB; }