FRange_wev8.css 1.23 KB
.wev-range-wrap {
    position: relative;
}
.wev-range-wrap input[type='range'] {
    position: relative;
    width: 100%;
    height: 2px;
    margin: 19px 0;
    padding: 0;
    cursor: pointer;
    border: 0;
    border-radius: 3px;
    outline: 0;
    -webkit-appearance: none!important;
    z-index: 2;
    background: -webkit-linear-gradient(#007aff, #007aff) no-repeat;
    background-size: 0% 100%;
}
.wev-range-wrap input[type='range']::-webkit-slider-thumb{
    width: 28px;
    height: 28px;
    border-color: #0062cc;
    border-radius: 50%;
    background-color: #017afd;
    background-clip: padding-box;
    -webkit-appearance: none !important;
}
.wev-range-wrap:after {
    content: '';
    position: absolute;
    top: 19px;
    left: 0px;
    right: 0px;
    height: 2px;
    border-radius: 3px;
    background-color: #999;
    z-index: 1;
}
.wev-range-wrap .wev-range-tip{
	font-size: 24px;
    line-height: 48px;
    position: absolute;
    z-index: 5;
    top: -52px;
    width: 48px;
    height: 48px;
    text-align: center;
    opacity: .8;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    text-shadow: 0 1px 0 #f3f3f3;
}
.wev-range-wrap .wev-range-tip.wev-hide{
	display: none;
}