body {
    touch-action: none;
}

.topBanner{
    position: fixed;
    display: flex;
    background-color: white;
    width: 90%;
    height: 87px;
    align-items: center;
    border-radius: 10px;
    top: 5%;

}



.topBanner .downloadApp {
    border-radius: 18px;
    width: 76px;
    height: 29px;
    background-color: #0D64FF;
    color: white;
    text-align: center;
    line-height: 31px;
    font-size: 12px;

}
.appleIconInfo{
    color: #808080;
    font-size: 10px;
    text-align: center;
    margin-top: 4px;

}
.appShow{
    margin-top: 60%;
    position: fixed;
    display: flex;
  flex-direction: column; /* 设置为列布局 */
  justify-content: center; /* 垂直居中 */
  align-items: center; /* 水平居中 */
  color: white;
  text-align: center;
  width: 90%;
}

.appShow img{
    width: 156px;
}

.appShow strong {
    margin-top: 29px;
    font-size: 22px;
}

.appShow p {
    margin-top: 10px;
    font-size: 16;
    opacity: 0.5;

}

.downloadAppInfo{
    margin-left: auto;
    margin-right: 12px;

}


.topBanner .appDesc{
    color: #808080;
    font-size: 13px;
    /* line-height: 12px; */
    white-space:nowrap;/*强制单行显示*/
    text-overflow:ellipsis;/*超出部分省略号表示*/
    overflow:hidden;/*超出部分隐藏*/
    margin-top: 5px;
}




.topBanner .logo{
    width: 57px;
    height: 57px;
    margin-left: 15px;
}

.topBanner .appInfo {
    margin-left: 10px;
    display: grid;
}
.star {
    display: flex;
    align-items: center;
    height: 10px;
    margin-top: 3px;
}
.star p{
    color: #808080;
    font-size: 12px;
    margin-left: 5px;
}

.star img{
    width: 58px;
    height: 9px;
}



.audioPlayer{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

#musicBody{

    margin: 0;
    padding: 0;
    height: 100vh;
}

.blur-bg {
    position: fixed; /* 定位背景，使其覆盖整个视口 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* 背景图片覆盖整个元素 */
    background-repeat: no-repeat;
    background-position: center; /* 背景图片居中 */
    z-index: -1; /* 确保元素在内容之下 */
  }

  .lyric{
    font-size: 20px;
    height: 60%;
    justify-content: center;
    display: flex;
    align-items: center;
    color: white;
    margin: 20px;
  }

  .musicInfo{
    display: grid;
    width: 95%;

  }
  .playerBox{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    position: fixed;
    bottom: 15%;
    width: 80%;
}

  .playerBox .title {
    color: white;
    font-size: 18px;
  }


  .playerBox .style {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    white-space:nowrap;/*强制单行显示*/
    text-overflow:ellipsis;/*超出部分省略号表示*/
    overflow:hidden;/*超出部分隐藏*/
    width: 260px;/*设置显示的最大宽度*/
  }

  .downloadMusic{
    position: fixed;
    display: flex;
    background-color:#2FD3F5;
    width: 90%;
    height: 45px;
    align-items: center;
    border-radius: 22px;
    bottom: 5%;
    justify-content: center;

}
.downloadMusic strong {
    color: white;
    font-size: 16px;

}

.playButton{
    width: 5%;
}

.playButton img {
    width: 18px;
    height: 18px;
}

.downloadMusic img {
    width: 18px;
    height: 18px;
    margin-left: 10px;
}