/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* 主色调 */
/* 字体 */
/* 圆角 */
/* 阴影 */
/* 按钮 */
/* 面包屑 */
/* 标签页*/
/* 单选框 */
/* 复选 */
/* 输入 */
/* 步骤条 */
/* 开关 */
/* 对话框 */
/* 抽屉 */
/* 气泡卡片 */
/* 全局提示 */
/* 卡片 */
/* 加载 */
/* 表单 */
/* 表格 */
/* 选择器 */
/* 穿梭框 */
/* 文字提示 */
/* 时间控件 下拉面板 */
.bonree-alert {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #172634;
  font-size: 12px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  word-wrap: break-word;
  border-radius: 3px;
}
.bonree-alert-content {
  flex: 1;
  min-width: 0;
}
.bonree-alert-icon {
  margin-right: 8px;
}
.bonree-alert-description {
  display: none;
  font-size: 12px;
  line-height: 20px;
}
.bonree-alert-success {
  background-color: #daf2e2;
  border: 1px solid #68d995;
}
.bonree-alert-success .bonree-alert-icon {
  color: #00b359;
}
.bonree-alert-info {
  background-color: #e6f4ff;
  border: 1px solid #7abfff;
}
.bonree-alert-info .bonree-alert-icon {
  color: #006aff;
}
.bonree-alert-warning {
  background-color: #fff7e6;
  border: 1px solid #ffd591;
}
.bonree-alert-warning .bonree-alert-icon {
  color: #ff8f16;
}
.bonree-alert-error {
  background-color: #fff2f0;
  border: 1px solid #ffd1cc;
}
.bonree-alert-error .bonree-alert-icon {
  color: #fa5050;
}
.bonree-alert-error .bonree-alert-description > pre {
  margin: 0;
  padding: 0;
}
.bonree-alert-action {
  margin-left: 8px;
}
.bonree-alert-close-icon {
  margin-left: 8px;
  padding: 0;
  overflow: hidden;
  font-size: 12px;
  line-height: 12px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.bonree-alert-close-icon .anticon-close {
  color: #6f7782;
  transition: color 0.3s;
}
.bonree-alert-close-icon .anticon-close:hover {
  color: rgba(0, 0, 0, 0.75);
}
.bonree-alert-close-text {
  color: #6f7782;
  transition: color 0.3s;
}
.bonree-alert-close-text:hover {
  color: rgba(0, 0, 0, 0.75);
}
.bonree-alert-with-description {
  align-items: flex-start;
  padding: 15px 15px 15px 24px;
}
.bonree-alert-with-description.bonree-alert-no-icon {
  padding: 15px 15px;
}
.bonree-alert-with-description .bonree-alert-icon {
  margin-right: 15px;
  font-size: 24px;
}
.bonree-alert-with-description .bonree-alert-message {
  display: block;
  margin-bottom: 4px;
  color: #000000;
  font-size: 14px;
}
.bonree-alert-message {
  color: #000000;
}
.bonree-alert-with-description .bonree-alert-description {
  display: block;
}
.bonree-alert.bonree-alert-motion-leave {
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), padding-top 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), padding-bottom 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), margin-bottom 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.bonree-alert.bonree-alert-motion-leave-active {
  max-height: 0;
  margin-bottom: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.bonree-alert-banner {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
}
.bonree-alert.bonree-alert-rtl {
  direction: rtl;
}
.bonree-alert-rtl .bonree-alert-icon {
  margin-right: auto;
  margin-left: 8px;
}
.bonree-alert-rtl .bonree-alert-action {
  margin-right: 8px;
  margin-left: auto;
}
.bonree-alert-rtl .bonree-alert-close-icon {
  margin-right: 8px;
  margin-left: auto;
}
.bonree-alert-rtl.bonree-alert-with-description {
  padding-right: 24px;
  padding-left: 15px;
}
.bonree-alert-rtl.bonree-alert-with-description .bonree-alert-icon {
  margin-right: auto;
  margin-left: 15px;
}
