/* 微调列帮助提示样式 */
.adjust-help-wrap{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.adjust-help{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  border:1px solid rgba(255,255,255,0.5);
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  color:#fff;
  font-size:11px;
  line-height:1;
  cursor:default;
  position:relative;
}
.adjust-help:hover{
  background:rgba(255,255,255,0.3);
  border-color:#fff;
}
.adjust-tooltip{
  position:absolute;
  top:22px;
  left:50%;
  transform:translateX(-50%);
  background:#333;
  color:#fff;
  font-size:12px;
  padding:6px 8px;
  border-radius:4px;
  white-space:nowrap;
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
  opacity:0;
  pointer-events:none;
  transition:opacity .15s ease;
  z-index:5;
}
.adjust-help:hover .adjust-tooltip,
.adjust-help.active .adjust-tooltip{
  opacity:1;
}
