/* Kole UI ResultVariants 样式 — 对齐 组件7.txt ResultVariants:成功/失败/警告/信息 结果页 */ .kole-result { text-align: center; padding: 40px 20px; font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); color: var(--kole-color-text-body); } .kole-result-icon { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--kole-color-text-inverse); } .kole-result.is-success .kole-result-icon { background: var(--kole-color-success); } .kole-result.is-error .kole-result-icon { background: var(--kole-color-error); } .kole-result.is-warning .kole-result-icon { background: var(--kole-color-warning); } .kole-result.is-info .kole-result-icon { background: var(--kole-color-brand); } .kole-result-title { font-size: 20px; font-weight: 500; color: var(--kole-color-text-title); } .kole-result-desc { font-size: 14px; color: var(--kole-color-text-secondary); margin-top: 8px; line-height: 1.6; } .kole-result-actions { margin-top: 24px; display: flex; gap: 8px; justify-content: center; } .kole-result-btn { height: 34px; padding: 0 18px; border-radius: 6px; border: 1px solid var(--kole-color-border); background: var(--kole-color-card-bg); color: var(--kole-color-text-body); cursor: pointer; font-size: 14px; } .kole-result-btn:hover { border-color: #C9D4F2; color: var(--kole-color-brand); } .kole-result-btn.primary { background: var(--kole-color-brand); border-color: var(--kole-color-brand); color: var(--kole-color-text-inverse); } .kole-result-btn.primary:hover { background: var(--kole-color-brand-hover); color: var(--kole-color-text-inverse); } .kole-result-extra { margin-top: 20px; }