.zui-slider {
    height: 34px;
    background: #fff;
    border-radius: 36px;
    position: relative;
    cursor: pointer;
}

.zui-slider-tips {
    position: absolute;
    top: -42px;
    z-index: 66666666;
    white-space: nowrap;
    transform: translateX(-50%);
    color: #FFF;
    background: #000;
    border-radius: 3px;
    height: 25px;
    line-height: 25px;
    padding: 0 10px;
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
	display:none!important;
}

.zui-slider-bar {
    border-top-left-radius: 36px;
    border-bottom-left-radius: 36px;
    position: absolute;
    height: 100%;
}

.zui-slider-wrap {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.zui-slider-wrap-btn {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ff4f02;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transition: .3s;
}

.zui-slider-wrap-btn:before{ content: ''; width: 100px;
  height: 100px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cirAni 2s linear infinite;}

.zui-slider-wrap-btn:after{ content: ''; width: 100px;
  height: 100px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cirAni 2s linear infinite; animation-delay: .8s;}

.zui-slider-wrap:after {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.zui-slider-tips:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: solid;
    border-color: #000 transparent transparent;
}

.zui-disabled,
.zui-disabled:hover {
    color: #d2d2d2 !important;
    cursor: not-allowed !important;
}

.zui-disabled>.zui-slider-bar {
    background-color: #c2c2c2 !important;
}

.zui-disabled .zui-slider-wrap-btn {
    border-color: #c2c2c2 !important;
    cursor: not-allowed !important;
}

