@charset "utf-8";
/* CSS Document */



/* style.css */  
#backToTop {  
    display: none; /* 默认情况下不显示 */  
    position: fixed; /* 固定定位 */  
    bottom: 20px; /* 距离底部20px */  
    right: 20px; /* 距离右边20px */  
    cursor: pointer; /* 鼠标悬停时显示指针 */  
    z-index: 999; /* 确保它位于其他内容之上 */  
    border: none; /* 去除边框 */  
    outline: none; /* 去除焦点轮廓 */  

    color: white; /* 文字颜色 */  
    padding: 10px; /* 内边距 */  
    border-radius: 50%; /* 圆形按钮 */  
    font-size: 24px; /* 图标大小 */  
    transition: background-color 0.3s; /* 背景颜色过渡效果 */  
}  
  
#backToTop:hover {  

}
