.back-to-top {
      display: none;
      /* 默认是隐藏的，这样在第一屏才不显示 */
      position: fixed;
      /* 位置是固定的 */
      bottom: 58px;
      /* 显示在页面底部 */
      right: 30px;
      /* 显示在页面的右边 */
      z-index: 99;
      /* 确保不被其他功能覆盖 */
      border: 1.6px solid maroon;
      /* 显示边框 */
      outline: none;
      /* 不显示外框 */
      background-color: transparent;
      /* 设置背景背景颜色 */
      color: maroon;
      /* 设置文本颜色 */
      cursor: pointer;
      /* 鼠标移到按钮上显示手型 */
      padding: 3px 5px 5px 5px;
      /* 增加一些内边距 */
      border-radius: 10px;
      /* 增加圆角 */
    }

    .back-to-top:hover {
      background-color: #fc6423;
      /* 鼠标移上去时，反转颜色 */
      color: #fff;
    }