/* 隐藏range控件默认样式 */
[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    outline: 0;
    background-color: transparent;
    /* width: 80%; */
}

/* 定义range控件轨道的样式 */
[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: #eee;
}

/* 定义range控件容器的样式 */
[type="range" i]::-webkit-slider-container {
    height: 20px;
    overflow: hidden;
    background-color: #FFFFFF;
}

/* 定义range控件拇指的样式 */
[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #4d8130;
    border: 1px solid transparent;
    margin-top: -8px;
    border-image: linear-gradient(#4d8130, #4d8130) 0 fill / 8 20 8 0 / 0px 0px 0 2000px;
}