@charset "UTF-8";
/**
 * YH-UI Sass Variables
 * 原具体的 CSS 变量输出规则 (:root, html.dark 等) 已移至 root.scss，以防止各组件样式编译时产生重复的全局变量 CSS 冗余。
 */
.yh-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--yh-result-padding, 40px 30px);
  text-align: center;
}
.yh-result__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--yh-result-icon-margin, 20px);
}
.yh-result__icon svg {
  width: var(--yh-result-icon-size, 72px);
  height: var(--yh-result-icon-size, 72px);
}
.yh-result__icon--success svg {
  fill: var(--yh-color-success, #67c23a);
}

.yh-result__icon--warning svg {
  fill: var(--yh-color-warning, #e6a23c);
}

.yh-result__icon--error svg {
  fill: var(--yh-color-danger, #f56c6c);
}

.yh-result__icon--info svg {
  fill: var(--yh-color-info, #909399);
}

.yh-result__title {
  font-size: var(--yh-result-title-size, 20px);
  font-weight: 500;
  color: var(--yh-result-title-color, var(--yh-text-color-primary, #303133));
  margin-bottom: 8px;
  line-height: 1.4;
}

.yh-result__subtitle {
  font-size: var(--yh-result-subtitle-size, 14px);
  color: var(--yh-result-subtitle-color, var(--yh-text-color-secondary, #909399));
  margin-bottom: 20px;
  line-height: 1.6;
}

.yh-result__extra {
  margin-bottom: 20px;
  width: 100%;
}

.yh-result__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}