html,body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}

/* 自定义滚动条样式 */
::-webkit-scrollbar {
  width: 12px; /* 滚动条宽度 */
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1); /* 轨道背景色（半透明） */
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5); /* 滚动块颜色（半透明） */
  border-radius: 6px; /* 滚动块圆角 */
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.8); /* 悬停时更明显 */
}