/* Your custom css code goes here */
#back-to-top {
  position: fixed;
  bottom: 20px; /* 距底部的距离 */
  right: 20px; /* 距右侧的距离 */
  width: 50px; /* 按钮宽度 */
  height: 50px; /* 按钮高度 */
  background-color: #ff69b4; /* 粉色背景 */
  color: white; /* 文字颜色 */
  font-size: 24px; /* 字体大小 */
  text-align: center; /* 水平居中 */
  line-height: 50px; /* 垂直居中 */
  border-radius: 5px; /* 圆角 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 添加阴影 */
  cursor: pointer; /* 鼠标样式 */
  display: none; /* 默认隐藏 */
  z-index: 1000; /* 保证在最前 */
}
#back-to-top:hover {
  background-color: #ff85c0; /* 悬停时的颜色变化 */
}