/* Aurora Admin ButtonGroup 样式 — 对齐 组件7.txt ButtonGroup:组合按钮无缝连接,仅首尾圆角,可选中(单选/多选) */ .aa-btngroup { display: inline-flex; font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); } .aa-btngroup-btn { border: 1px solid #E8ECF1; border-left-width: 0; background: #fff; color: #262626; padding: 0 16px; height: 32px; font-size: 14px; cursor: pointer; transition: background .15s, color .15s; } .aa-btngroup-btn:first-child { border-left-width: 1px; border-radius: 6px 0 0 6px; } .aa-btngroup-btn:last-child { border-radius: 0 6px 6px 0; } .aa-btngroup-btn:hover:not(.is-disabled):not(.is-selected) { color: #2F54EB; background: #F0F5FF; } .aa-btngroup-btn.is-disabled { color: #BFBFBF; cursor: not-allowed; background: #F5F5F5; } .aa-btngroup-btn.is-selected { background: #2F54EB; border-color: #2F54EB; color: #fff; } .aa-btngroup-btn.is-selected + .aa-btngroup-btn { border-left-color: #2F54EB; } .aa-btngroup.is-sm .aa-btngroup-btn { height: 24px; padding: 0 10px; font-size: 13px; } .aa-btngroup.is-lg .aa-btngroup-btn { height: 40px; padding: 0 20px; font-size: 15px; }