9 lines
894 B
CSS
9 lines
894 B
CSS
/* Aurora Admin FullScreenModal 样式 — 全屏弹窗 */
|
|
.aa-fs-mask { position: fixed; inset: 0; background: #F5F7FA; z-index: 1100; display: flex; flex-direction: column; font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); }
|
|
.aa-fs-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: #fff; border-bottom: 1px solid #E8ECF1; }
|
|
.aa-fs-title { font-weight: 600; color: #1F2329; font-size: 16px; }
|
|
.aa-fs-close { border: none; background: none; font-size: 20px; color: #8C8C8C; cursor: pointer; line-height: 1; }
|
|
.aa-fs-close:hover { color: #262626; }
|
|
.aa-fs-body { flex: 1; overflow: auto; padding: 20px; color: #595959; font-size: 14px; line-height: 1.7; }
|
|
.aa-fs-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 12px 20px; background: #fff; border-top: 1px solid #E8ECF1; }
|