/* 全站背景 */
body {
    background: #F3F6FC !important;
}


#web_bg {
  background: #F3F6FC !important;
}


/* 滚动条整体宽度 */
::-webkit-scrollbar {
  width: 14px;   /* ← 你想要的宽度 */
  height: 12px;
}

/* 滚动条轨道（背景） */
::-webkit-scrollbar-track {
  background: transparent;   /* 不改颜色 */
}

/* 滚动条滑块（thumb） */
::-webkit-scrollbar-thumb {
  border-radius: 8px;        /* 圆角 */
  background-clip: padding-box;
  border: 3px solid transparent;  /* 让滚动条更“厚实”但不改颜色 */
}

/* hover 样式（不改颜色） */
::-webkit-scrollbar-thumb:hover {
  border-width: 2px;
}