diff --git a/src/app/music/page.tsx b/src/app/music/page.tsx index 30798b4..abb6514 100644 --- a/src/app/music/page.tsx +++ b/src/app/music/page.tsx @@ -1922,86 +1922,88 @@ export default function MusicPage() { }} >
setShowVolumeSlider(false)} > - {/* Header */} -
- {currentSong.pic && ( -
- {currentSong.name} -
- )} -
- -
- {currentSong.pic ? ( + +
+ {/* Cover / Meta */} +
+ {currentSong.pic && ( +
{currentSong.name} - ) : ( -
- - - -
- )} +
+ )} +
+
+ {currentSong.pic ? ( + {currentSong.name} + ) : ( +
+ + + +
+ )} +
+

{currentSong.name}

+

{currentSong.artist}

-

{currentSong.name}

-

{currentSong.artist}

-
- {/* Lyrics Content */} -
- {lyrics.length > 0 ? ( -
- {lyrics.map((line, index) => ( -
-
{line.text}
- {line.translation && ( -
- {line.translation} -
- )} -
- ))} -
- ) : ( -
-

暂无歌词

-

纯音乐或歌词获取失败

-
- )} + {/* Lyrics Content */} +
+ {lyrics.length > 0 ? ( +
+ {lyrics.map((line, index) => ( +
+
{line.text}
+ {line.translation && ( +
+ {line.translation} +
+ )} +
+ ))} +
+ ) : ( +
+

暂无歌词

+

纯音乐或歌词获取失败

+
+ )} +
{/* Mini Player Controls */}