* {
  box-sizing: border-box;
}
.badge {
  position: relative;
  display: inline-block;
}
.badge-count {
  position: absolute;
  z-index: 10;
  top: -12.077rpx;
  left: 100%;
  display: table-cell;
  min-width: 28.986rpx;
  height: 28.986rpx;
  padding: 0 7.246rpx;
  border: 1.812rpx solid rgba(255,255,255,0.9);
  font-size: 18.116rpx;
  line-height: 28.986rpx;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  color: var(--color-white, #fff);
  border-radius: 14.493rpx;
  background: #f7534f;
}
.badge-count-count-alone {
  position: relative;
  top: auto;
  display: block;
  transform: translateX(0);
}
.badge-count-count-primary {
  background: #2d8cf0;
}
.badge-count-count-success {
  background: #19be6b;
}
.badge-count-count-error {
  background: #f7534f;
}
.badge-count-count-warning {
  background: #f90;
}
.badge-count-count-info {
  background: #2db7f5;
}
.badge-count-count-normal {
  color: #808695;
  background: #e6ebf1;
}
.badge-count-dot {
  position: absolute;
  z-index: 10;
  top: -4.227rpx;
  right: -22.343rpx;
  width: 16.304rpx;
  height: 16.304rpx;
  border: 1.812rpx solid var(--color-white, #fff);
  border-radius: 50%;
  background: #f7534f;
  box-shadow: 0 0 0 1px var(--color-white, #fff);
  transform: translateX(-50%);
  transform-origin: 0 center;
}
.badge-count-status {
  line-height: inherit;
  vertical-align: baseline;
}
.badge-count-status-dot {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 16.304rpx;
  height: 16.304rpx;
  border: 1.812rpx solid var(--color-white, #fff);
  vertical-align: middle;
  border-radius: 50%;
}
.badge-count-status-success {
  background-color: #19be6b;
}
.badge-count-status-processing {
  position: relative;
  background-color: #2d8cf0;
}
.badge-count-status-processing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 1px solid #2d8cf0;
  border-radius: 50%;
  animation: aniStatusProcessing 1.2s infinite ease-in-out;
}
.badge-count-status-default {
  background-color: #e6ebf1;
}
.badge-count-status-error {
  background-color: #f7534f;
}
.badge-count-status-warning {
  background-color: #f90;
}
.badge-count-status-text {
  display: inline-block;
  margin-left: 7.246rpx;
  font-size: 18.116rpx;
  color: #515a6e;
}
@-moz-keyframes aniStatusProcessing {
  from {
    opacity: 0.5;
    transform: scale(0.8);
  }
  to {
    opacity: 0;
    transform: scale(2.4);
  }
}
@-webkit-keyframes aniStatusProcessing {
  from {
    opacity: 0.5;
    transform: scale(0.8);
  }
  to {
    opacity: 0;
    transform: scale(2.4);
  }
}
@-o-keyframes aniStatusProcessing {
  from {
    opacity: 0.5;
    transform: scale(0.8);
  }
  to {
    opacity: 0;
    transform: scale(2.4);
  }
}
@keyframes aniStatusProcessing {
  from {
    opacity: 0.5;
    transform: scale(0.8);
  }
  to {
    opacity: 0;
    transform: scale(2.4);
  }
}
