@charset "UTF-8";
/**
 * YH-UI Sass Variables
 * 原具体的 CSS 变量输出规则 (:root, html.dark 等) 已移至 root.scss，以防止各组件样式编译时产生重复的全局变量 CSS 冗余。
 */
.yh-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--yh-empty-padding, 40px 0);
}
.yh-empty__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.yh-empty__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yh-empty__svg {
  width: 100%;
  height: 100%;
}

.yh-empty__description {
  color: var(--yh-empty-description-color, var(--yh-text-color-secondary, #909399));
  font-size: var(--yh-empty-description-font-size, 14px);
  text-align: center;
}
.yh-empty__description p {
  margin: 0;
  padding: 0;
}

.yh-empty__bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}