#back-to-top {
    background-color: #FFFFFF; /* 按钮背景色 */
    bottom: 20px; /* 按钮距离页面底部的距离 */
    box-shadow: 0 0 6px #000000; /* 按钮阴影效果 */
    color: #000000; /* 按钮文字颜色 */
    padding: 10px 10px; /* 按钮内边距 */
    position: fixed; /* 按钮固定定位 */
    right: 50px; /* 按钮距离页面右侧的距离 */
    cursor: pointer; /* 鼠标悬停时显示手指形状，表示可点击 */
    /* 可选样式，如圆角边框、透明度等 */
    border-radius: 50px;
    opacity: 0.7;
}

/* 鼠标悬停时样式变化（可选） */
#back-to-top:hover {
    background-color: #d9d6c3; /* 鼠标悬停时背景色变化 */
    opacity: 1; /* 鼠标悬停时透明度变化 */
}