.t-float-left {
  float: left;
}
.t-float-right {
  float: right;
}
@keyframes tdesign-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.hotspot-expanded.relative {
  position: relative;
}
.hotspot-expanded::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: scale(1.5);
}
.t-pull-down-refresh__bar {
  overflow: hidden;
  position: relative;
  background: #f6f6f6;
  color: #bbb;
  font-size: 24rpx;
}
.t-pull-down-refresh__bar--refreshing {
  transition: height 0.5s;
}
.t-pull-down-refresh__bar--refreshing .t-pull-down-refresh__loading {
  animation: rotateLoading 0.5s linear infinite;
}
.t-pull-down-refresh__bar--success .refresh-bar__loading {
  display: none;
}
.t-pull-down-refresh__bar--finishing {
  transition: height 1s;
}
.t-pull-down-refresh__bar--finishing .t-pull-down-refresh__loading {
  visibility: hidden;
}
.t-pull-down-refresh__content {
  margin-top: 55rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.t-pull-down-refresh__loading {
  position: relative;
  box-sizing: border-box;
  width: auto;
  height: auto;
}
.t-pull-down-refresh__text {
  margin: 16rpx 0 0;
}
.t-pull-down-refresh__wrap {
  position: relative;
}
@keyframes rotateLoading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
