.ant-slider {
  user-select: none;
  width: 100%;
}
.ant-slider-track {
  position: relative;
  width: 100%;
  height: 56rpx;
  background-color: var(--slider-track-bg, #ffffff);
}
.ant-slider-track-number {
  height: 97rpx;
}
.ant-slider-track-touch-area {
  position: absolute;
  left: 28rpx;
  top: 0rpx;
  right: 25rpx;
  height: 100%;
}
.ant-slider-track-fill {
  position: absolute;
  left: 0rpx;
  top: 25rpx;
  right: 0rpx;
  height: 6rpx;
}
.ant-slider-track-fill-background {
  position: absolute;
  background-color: var(--slider-fill-bg, #f5f5f5);
  width: 100%;
  height: 100%;
  border-radius: 3rpx;
}
.ant-slider-track-fill-front {
  position: absolute;
  height: 100%;
  border-radius: 3rpx;
  background-color: var(--slider-default-primary-color, #1677ff);
}
.ant-slider-handler {
  position: absolute;
  touch-action: none;
  left: 0;
  transform: translate(-50%, -50%);
  top: 3rpx;
}
.ant-slider-handler-block {
  width: 56rpx;
  height: 56rpx;
  background: var(--slide-block-bg, #ffffff);
  box-shadow: 0 4rpx 10rpx 0 var(--slide-block-shadow, rgba(0, 0, 0, 0.12));
  border-radius: 56rpx;
  text-align: center;
  line-height: 56rpx;
  color: var(--slider-default-primary-color, #1677ff);
}
.ant-slider-handler-icon-default {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ant-slider-handler-icon-default-line1 {
  position: absolute;
  width: 4rpx;
  height: 16rpx;
  background-color: var(--slider-default-primary-color, #1677ff);
  border-radius: 2rpx;
  top: 20rpx;
  left: 16rpx;
}
.ant-slider-handler-icon-default-line2 {
  position: absolute;
  width: 4rpx;
  height: 24rpx;
  background-color: var(--slider-default-primary-color, #1677ff);
  border-radius: 2rpx;
  top: 16rpx;
  right: 26rpx;
}
.ant-slider-handler-icon-default-line3 {
  position: absolute;
  width: 4rpx;
  height: 16rpx;
  background-color: var(--slider-default-primary-color, #1677ff);
  border-radius: 2rpx;
  top: 20rpx;
  right: 16rpx;
}
.ant-slider-handler-icon-from-props {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  line-height: 100%;
}
.ant-slider-handler-icon-from-props-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ant-slider-tick {
  position: absolute;
  width: 16rpx;
  height: 16rpx;
  border-radius: 16rpx;
  top: 3rpx;
  transform: translate(-50%, -50%);
}
.ant-slider-tick-front {
  background-color: var(--slider-default-primary-color, #1677ff);
}
.ant-slider-tick-back {
  background-color: var(--slide-back-bg, #f5f5f5);
}
.ant-slider-tick-number {
  position: absolute;
  color: var(--slider-number-color, #333333);
  font-size: 24rpx;
  transform: translateX(-50%);
  top: 44rpx;
  left: 8rpx;
  text-align: center;
  line-height: 33rpx;
  height: 33rpx;
}
