@keyframes text-animate-right {
  33% {
    margin-left: -10rpx;
  }
  66% {
    margin-left: 10rpx;
  }
  100% {
    margin-left: 0rpx;
  }
}
@keyframes text-animate-midd {
  0% {
    margin-left: 44rpx;
  }
  100% {
    margin-left: 0rpx;
  }
}
@keyframes text-animate-left {
  33% {
    margin-left: 10rpx;
  }
  66% {
    margin-left: -10rpx;
  }
  100% {
    margin-left: 0rpx;
  }
}
.text-move-right {
  animation-name: text-animate-right;
  animation-duration: 500ms;
}
.text-move-left {
  animation-name: text-animate-left;
  animation-duration: 500ms;
}
.text-move-midd {
  animation-name: text-animate-midd;
  animation-duration: 500ms;
}
.ant-swipe {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ant-swipe-action {
  height: 100%;
  position: relative;
}
.ant-swipe-action-movable {
  width: 100%;
  height: 100%;
}
.ant-swipe-action-movable-content {
  height: 100%;
  position: relative;
}
.ant-swipe-action-movable-content-view {
  height: 100%;
}
.ant-swipe-action-movable-content-view-modal {
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
}
.ant-swipe-action-movable-content-right {
  height: 100%;
  color: var(--swipe-action-color, #ffffff);
}
.ant-swipe-action-movable-content-right-text {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 120ms cubic-bezier(0.2, 0.2, 0.8, 1);
}
.ant-swipe-action-movable-content-right-text .right-text {
  text-align: center;
  white-space: nowrap;
}
.ant-swipe-action-movable-content-left {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--swipe-action-color, #ffffff);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.ant-swipe-action-movable-content-left-text1 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 120ms cubic-bezier(0.2, 0.2, 0.8, 1);
}
.ant-swipe-action-movable-content-left-text1 .right-text {
  text-align: center;
  white-space: nowrap;
}
.ant-swipe-action-is-right-swipe {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
