#backtop-tool {
  position: fixed;
  z-index: 9999;
}

#backtop-tool ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#backtop-tool .hidden {
  display: none;
}

#backtop-tool li {
  display: flex; 
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
  width: var(--size, 40px);
  height: var(--size, 40px);
  background: var(--color, rgba(0, 0, 0, 0.7));
  color: #fff;
  border-radius: var(--shape, 50%);
  cursor: pointer;
  font-size: calc(var(--size, 40px) * 0.4); /* 根据按钮大小动态调整字体 */
  text-align: center; /* 对齐数字文本 */
  overflow: hidden;
  box-sizing: border-box;
}
