.slider-style {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    position: relative;
    height: 12px;
    margin: 14px 6px 10px;
    padding: 4px 0;
    cursor: pointer;
    -ms-touch-action: none;
    touch-action: none;
}
.slider-style.rc-slider-vertical {
    width: 12px;
    height: 100%;
    margin: 6px 10px;
    padding: 0 4px;
}
.slider-style.rc-slider-vertical .rc-slider-rail {
    width: 4px;
    height: 100%;
}
.slider-style.rc-slider-vertical .rc-slider-track {
    width: 4px;
}
.slider-style.rc-slider-vertical .rc-slider-handle {
    margin-bottom: -7px;
    margin-left: -5px;
}
.slider-style.rc-slider-vertical .rc-slider-mark {
    top: 0;
    left: 12px;
    width: 18px;
    height: 100%;
}
.slider-style.rc-slider-vertical .rc-slider-mark-text {
    left: 4px;
    white-space: nowrap;
}
.slider-style.rc-slider-vertical .rc-slider-step {
    width: 4px;
    height: 100%;
}
.slider-style.rc-slider-vertical .rc-slider-dot {
    top: auto;
    left: 2px;
    margin-bottom: -4px;
}
.slider-style.rc-slider-tooltip .ant-tooltip-inner {
    min-width: unset;
}
.slider-style.rc-slider-with-marks {
    margin-bottom: 28px;
}
.slider-style .rc-slider-rail {
    position: absolute;
    width: 100%;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    background: #677791;
    opacity: 0.2;
    border-radius: 4px;
    height: 8px;
}
.slider-style .rc-slider-track {
    position: absolute;
    height: 8px;
    background: #339EEC;
    border-radius: 4px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.slider-style .rc-slider-handle {
    box-sizing: border-box;
    position: absolute;
    width: 14px;
    height: 14px;
    margin-top: -3px;
    background-color: #fff;
    border: 2px solid #339EEC;
    border-radius: 50%;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    cursor: pointer;
    -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.6s, -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transition: border-color 0.3s, -webkit-box-shadow 0.6s, -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), -webkit-box-shadow 0.6s, -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.slider-style .rc-slider-handle:focus {
    border-color: #46a6ff;
    outline: none;
    -webkit-box-shadow: 0 0 0 5px rgba(24, 144, 255, 0.2);
    box-shadow: 0 0 0 5px rgba(24, 144, 255, 0.2);
}
.slider-style .rc-slider-handle.ant-tooltip-open {
    border-color: #1890ff;
}
.slider-style.rc-slider:hover .slider-style.rc-slider-rail {
    background-color: #e1e1e1;
}
.slider-style.rc-slider:hover .slider-style.rc-slider-track {
    background-color: #69c0ff;
}
.slider-style.rc-slider:hover .slider-style.rc-slider-handle:not(.ant-tooltip-open) {
    border-color: #69c0ff;
}
.slider-style .rc-slider-mark {
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    font-size: 14px;
}
.slider-style .rc-slider-mark-text {
    position: absolute;
    display: inline-block;
    color: rgba(0, 0, 0, 0.45);
    text-align: center;
    word-break: keep-all;
    cursor: pointer;
}
.slider-style .rc-slider-mark-text-active {
    color: rgba(0, 0, 0, 0.65);
}
.slider-style .rc-slider-step {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
}
.slider-style .rc-slider-dot {
    position: absolute;
    top: -2px;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    background-color: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    cursor: pointer;
}
.slider-style .rc-slider-dot:first-child {
    margin-left: -4px;
}
.slider-style .rc-slider-dot:last-child {
    margin-left: -4px;
}
.slider-style .rc-slider-dot-active {
    border-color: #8cc8ff;
}
.slider-style.rc-slider-disabled {
    cursor: not-allowed;
}
.slider-style.rc-slider-disabled .rc-slider-track {
    background-color: rgba(0, 0, 0, 0.25) !important;
}
.slider-style.rc-slider-disabled .rc-slider-handle, .slider-style.rc-slider-disabled .rc-slider-dot {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.25) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: not-allowed;
}
.slider-style.rc-slider-disabled .rc-slider-mark-text, .slider-style.rc-slider-disabled .rc-slider-dot {
    cursor: not-allowed !important;
}
