.jplayer-container {
    width: 100%;
    margin: 0 auto;
}

.jp-audio {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.jp-audio.default {
    background: #B0B0B0;
}

.jp-audio.light {
    background: #f5f5f5;
    color: #333;
}

.jp-audio.light .jp-title,
.jp-audio.light .jp-time-holder,
.jp-audio.light .jp-controls a,
.jp-audio.light .jp-controls button,
.jp-audio.light .jp-mute {
    color: #333 !important;
}

.jp-audio.light .jp-previous,
.jp-audio.light .jp-next {
    background: #ddd !important;
    color: #333 !important;
}

.jp-audio.light .jp-progress,
.jp-audio.light .jp-seek-bar {
    background: #ddd !important;
}

.jp-audio.light .jp-play-bar,
.jp-audio.light .jp-volume-bar-value {
    background: #2196f3 !important;
}

.jp-audio.light .jp-play,
.jp-audio.light .jp-pause {
    background: #2196f3 !important;
    color: #fff !important;
}

.jp-audio.light .jp-play:hover,
.jp-audio.light .jp-pause:hover {
    background: #1976d2 !important;
}

.jp-progress {
    width: 100%;
    height: 4px;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
}

.jp-seek-bar {
    width: 100%;
    height: 100%;
}

.jp-play-bar {
    width: 0;
    height: 100%;
    transition: width 0.1s linear;
}

.jp-audio.default .jp-progress,
.jp-audio.default .jp-seek-bar {
    background: #909090 !important;
}

.jp-audio.default .jp-play-bar {
    background: #4CAF50 !important;
}

.jp-audio.light .jp-progress,
.jp-audio.light .jp-seek-bar {
    background: #ddd !important;
}

.jp-audio.light .jp-play-bar {
    background: #2196f3 !important;
}

.jp-interface {
    position: relative;
    width: 100%;
    border-radius: 0;
    padding: 12px 20px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jp-art-word {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.jp-audio.light .jp-art-word {
    color: rgba(0, 0, 0, 0.08);
}

.jp-audio.default .jp-art-word {
    color: rgba(0, 0, 0, 0.1);
}


.jp-details {
    display: flex;
    align-items: center;
    flex: 1;
    color: #333;
    margin-right: 20px;
}

.jp-cover {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
    float: left;
    display: none;
}

.jp-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
    color: #333 !important;
}

.jp-time-holder {
    font-size: 12px;
    color: #666 !important;
}

.jp-details-content {
    display: flex;
    flex-direction: column;
}

.jp-controls {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.jp-controls li {
    margin: 0 8px;
}

.jp-controls a,
.jp-controls button {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: transparent !important;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.jp-controls .jp-previous,
.jp-controls .jp-next {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.jp-controls .jp-previous::before,
.jp-controls .jp-next::before {
    content: '|';
    position: absolute;
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.jp-controls .jp-previous::before {
    left: 5px;
}

.jp-controls .jp-next::before {
    right: 5px;
}

.jp-controls a:hover,
.jp-controls button:hover {
    transform: none;
}

.jp-controls .jp-play {
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.jp-controls .jp-pause {
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.jp-audio.default .jp-controls a,
.jp-audio.default .jp-controls button {
    color: #333 !important;
}

.jp-audio.default .jp-controls .jp-previous,
.jp-audio.default .jp-controls .jp-next {
    background: #909090 !important;
}

.jp-audio.default .jp-controls .jp-previous::before,
.jp-audio.default .jp-controls .jp-next::before {
    color: #333;
}

.jp-audio.default .jp-controls .jp-play {
    background: #4CAF50 !important;
    color: #fff !important;
}

.jp-audio.default .jp-controls .jp-play:hover {
    background: #45a049 !important;
    color: #fff !important;
}

.jp-audio.default .jp-controls .jp-pause {
    background: #4CAF50 !important;
    color: #fff !important;
}

.jp-audio.default .jp-controls .jp-pause:hover {
    background: #45a049 !important;
    color: #fff !important;
}

.jp-audio.light .jp-controls a,
.jp-audio.light .jp-controls button {
    color: #333 !important;
}

.jp-audio.light .jp-controls .jp-previous,
.jp-audio.light .jp-controls .jp-next {
    background: #ddd !important;
    color: #333 !important;
}

.jp-audio.light .jp-controls .jp-previous::before,
.jp-audio.light .jp-controls .jp-next::before {
    color: #333;
}

.jp-audio.light .jp-controls .jp-play {
    background: #2196f3 !important;
    color: #fff !important;
}

.jp-audio.light .jp-controls .jp-play:hover {
    background: #1976d2 !important;
    color: #fff !important;
}

.jp-audio.light .jp-controls .jp-pause {
    background: #2196f3 !important;
    color: #fff !important;
}

.jp-audio.light .jp-controls .jp-pause:hover {
    background: #1976d2 !important;
    color: #fff !important;
}

.jp-playlist {
    margin-right: 15px;
    background: transparent !important;
    color: #fff !important;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jp-volume-control {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.jp-mute {
    margin-right: 8px;
    background: transparent !important;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jp-volume-bar {
    width: 80px;
    height: 20px;
    background: transparent !important;
    cursor: pointer;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
}

.jp-volume-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    transform: translateY(-50%);
}

.jp-volume-bar-value {
    width: 70%;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.jp-audio.default .jp-volume-control {
    color: #333 !important;
}

.jp-audio.default .jp-mute {
    color: #333 !important;
}

.jp-audio.default .jp-volume-bar::before {
    background: #909090 !important;
}

.jp-audio.default .jp-volume-bar-value {
    background: #4CAF50 !important;
}

.jp-audio.light .jp-volume-control {
    color: #333 !important;
}

.jp-audio.light .jp-mute {
    color: #333 !important;
}

.jp-audio.light .jp-volume-bar::before {
    background: #ddd !important;
}

.jp-audio.light .jp-volume-bar-value {
    background: #2196f3 !important;
}

.jp-mode {
    margin-left: 15px;
    background: transparent !important;
    color: #fff !important;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jp-volume-max {
    display: none;
}

.jplayer-song-item {
    display: flex;
    align-items: center;
    padding: 4px 6px;
    margin-bottom: -10px;
    border-radius: 4px;
    background: transparent !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    justify-content: space-between;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.jplayer-song-item:hover {
    background: rgba(0,0,0,0.05) !important;
    border-color: rgba(0,0,0,0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.jplayer-song-playing {
    <!--   background: rgba(0,128,0,0.1) !important;   -->
    <!--   border-color: rgba(0,128,0,0.3) !important;   -->
    font-weight: 500;
}

.jplayer-song-playing .jplayer-song-title {
    color: #008000 !important;
    font-weight: 600;
}

.jplayer-song-playing:hover {
    background: rgba(0,128,0,0.15) !important;
    box-shadow: 0 2px 8px rgba(0,128,0,0.2);
}

.jplayer-song-play {
    display: none;
}

.jplayer-song-play button:hover {
    background: #45a049 !important;
    transform: scale(1.1);
}

.jplayer-song-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.jplayer-song-cover {
    margin-right: 6px;
    flex-shrink: 0;
}

.jplayer-song-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.jplayer-song-cover img {
    width: 25px;
    height: 25px;
    border-radius: 3px;
    object-fit: cover;
}

.jplayer-song-info {
    flex: 1;
    min-width: 0;
}

.jplayer-song-title {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    color: #333 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.jplayer-song-artist {
    font-size: 11px;
    color: #666 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin-top: 1px;
}
.jplayer-song-duration {
    margin-right: 4px;
    font-size: 11px;
    color: #999 !important;
    flex-shrink: 0;
    line-height: 1.2;
}

.jplayer-song-more {
    font-size: 12px;
    color: #999 !important;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1.2;
}

.jplayer-bottom {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    transition: bottom 0.3s ease;
}

.jplayer-bottom.show {
    bottom: 0;
}

#jplayer-hover-area {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    z-index: 9998;
}

.jplayer-bottom .jplayer-container {
    width: 100%;
    margin: 0;
}

.jplayer-bottom .jp-interface {
    border-radius: 0;
    box-shadow: none;
}
