﻿#goTopBtn {
    display: none; /* 默认隐藏 */
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #555555; /* 设置背景颜色，你可以设置自己想要的颜色或图片 */
    color: white; /* 文本颜色 */
    cursor: pointer;
    padding: 15px;
    border-radius: 3px; /* 圆角 */
    width: 10px;
    height:80px;
    font-size: 10px;
    text-align: center;
    padding-bottom:5px;
    padding-top:5px;
    padding-left:5px;
    padding-right:18px;
}
 
#goTopBtn:hover {
    background-color: #555; 
}