#home,
#about, section {
  overflow: hidden;
}

/* 整个滚动条 */
::-webkit-scrollbar {
  width: 8px; /* 垂直滚动条宽度 */
  height: 8px; /* 水平滚动条高度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #0073ff, #8700ff);
  border-radius: 4px;
}

/* 鼠标悬停在滚动条滑块上 */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #0060e6, #7600e6);
}

/* Firefox 浏览器 */
* {
  scrollbar-width: thin;
  scrollbar-color: linear-gradient(90deg, #0073ff, #8700ff) #f1f1f1;
}

.update20260205 {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}