/* 自定义弹窗内部滚动条 */
.custom-scrollbar::-webkit-scrollbar { 
  width: 5px; 
}
.custom-scrollbar::-webkit-scrollbar-track { 
  background: #f1f1f1; 
  border-radius: 4px; 
}
.custom-scrollbar::-webkit-scrollbar-thumb { 
  background: #ccc; 
  border-radius: 4px; 
}

/* 双滑块重叠样式 */
.range-slider-container {
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
}
.range-slider-container input[type="range"] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  background: none;
  height: 24px;
  margin: 0;
  z-index: 20;
}
.range-slider-container input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #065f46;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.range-slider-container input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #065f46;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}