/* Aurora Admin DragUpload 样式 — 拖拽 / 点击上传 */ .aa-upload { font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); } .aa-upload-drop { border: 2px dashed #E8ECF1; border-radius: 8px; padding: 28px; text-align: center; color: #8C8C8C; cursor: pointer; transition: border-color .15s, background .15s, color .15s; } .aa-upload-drop.is-over { border-color: #2F54EB; background: #F0F5FF; color: #2F54EB; } .aa-upload-icon { font-size: 26px; display: block; margin-bottom: 6px; } .aa-upload-hint { font-size: 13px; } .aa-upload-hint b { color: #2F54EB; } .aa-upload-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; } .aa-upload-item { display: flex; align-items: center; gap: 10px; border: 1px solid #E8ECF1; border-radius: 6px; padding: 8px 10px; } .aa-upload-thumb { width: 36px; height: 36px; border-radius: 4px; overflow: hidden; background: #F5F5F5; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #8C8C8C; font-size: 11px; } .aa-upload-thumb img { width: 100%; height: 100%; object-fit: cover; } .aa-upload-meta { flex: 1; min-width: 0; } .aa-upload-name { font-size: 13px; color: #262626; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .aa-upload-bar { height: 4px; background: #E8ECF1; border-radius: 2px; margin-top: 5px; overflow: hidden; } .aa-upload-bar > i { display: block; height: 100%; background: #2F54EB; width: 0; transition: width .2s; } .aa-upload-status { font-size: 12px; color: #8C8C8C; } .aa-upload-del { border: none; background: none; color: #8C8C8C; cursor: pointer; font-size: 16px; padding: 0 4px; } .aa-upload-del:hover { color: #F5222D; }