/* 按钮的基本样式 */
.music-btn {
    width: 160px; /* 设置按钮的宽度 */
    height: 50px; /* 设置按钮的高度 */
    border: none; /* 去除按钮边框 */
    background-color: transparent; /* 设置背景颜色为透明 */
    background-size: cover; /* 背景图片覆盖整个按钮 */
    background-repeat: no-repeat; /* 不重复显示背景图片 */
    cursor: pointer; /* 鼠标悬停时变为手形指针 */
    outline: none; /* 去除点击时的轮廓 */
}

/* 音乐开启状态的按钮样式 */
.music-btn.on {
    background-image: url('http://123.56.100.124/seer2/static/music-on.png'); /* 设置开启状态的背景图片 */
}

/* 音乐关闭状态的按钮样式 */
.music-btn.off {
    background-image: url('http://123.56.100.124/seer2/static/music-off.png'); /* 设置关闭状态的背景图片 */
}