/* 按钮的基本样式 */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 1000; /* 确保按钮在其他内容之上 */
    cursor: pointer;
    background-color: rgba(73, 182, 0, 0.5); /* 半透明按钮颜色 */
    color: white;
    padding: 20px 40px;
    border-radius: 10px; /* 方形圆角按钮 */
    transition: background-color 0.3s;
}

.back-to-top:hover {
    background-color: rgba(89, 212, 7, 0.6); /* 鼠标悬浮时的半透明颜色 */
}

/* 图片样式 */
#backToTopImage {
    width: 10px; /* 图片宽度 */
    height: 10px; /* 图片高度 */
}