/* 返回顶部按钮 */
#backToTop {
  position: fixed;       /* 固定在右下角 */
  bottom: 30px;          /* 距离底部 30px */
  right: 30px;           /* 距离右侧 30px */
  width: 50px;
  height: 50px;
  background: var(--primary);   /* 按钮颜色 */
  color: white;
  border: none;
  border-radius: 50%;    /* 圆形 */
  font-size: 20px;
  cursor: pointer;
  display: none;         /* 默认隐藏 */
  z-index: 9999;         /* 放在最上层 */
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  background: var(--button-hover);   /* 鼠标悬浮变色 */
  transform: translateY(-2px);
}
