/**
 * APlayer音乐播放器 Material Design 3 皮肤
 * 作者：Tillreetree 2026
 *
 * 大唱片封面版，宽松
 */

/* ================================================================
   内联样式覆盖 — APlayer JS 注入的 theme color
   ================================================================ */

.aplayer .aplayer-bar .aplayer-played {
    background: var(--md3-primary, #4ab3e8) !important
}

.aplayer .aplayer-bar .aplayer-played .aplayer-thumb {
    background: var(--md3-primary, #4ab3e8) !important
}

.aplayer .aplayer-volume-bar .aplayer-volume {
    background: var(--md3-primary, #4ab3e8) !important
}

.aplayer .aplayer-list ol li .aplayer-list-cur {
    background-color: var(--md3-primary, #4ab3e8) !important
}


/* ================================================================
   根容器 — MD3 Card
   ================================================================ */

.aplayer {
    background: var(--md3-surface-container-lowest, #fff);
    font-family: var(--bs-font-sans-serif, sans-serif);
    margin: 0.3125rem;
    border-radius: 0.75rem;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: normal;
    position: relative;
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .08),
        0 0.0625rem 0.125rem rgba(0, 0, 0, .04);
    transition: box-shadow .3s cubic-bezier(.4, 0, .2, 1);
}

.aplayer * {
    box-sizing: content-box
}

.aplayer svg {
    width: 100%;
    height: 100%
}

/* 默认SVG图标色 — 白色（因为叠在封面上） */
.aplayer svg circle,
.aplayer svg path {
    fill: #fff
}


/* ================================================================
   播放器主体 — 封面铺满 + 信息叠在上方
   ================================================================ */

.aplayer .aplayer-body {
    position: relative;
    overflow: hidden
}


/* ================================================================
   封面图 — 铺满整个播放器顶部，作为视觉主体
   ================================================================ */

.aplayer .aplayer-pic {
    position: relative;
    float: none;
    width: 100%;
    height: 10rem;
    background-size: cover;
    background-position: 50%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0
}

/* 封面上的渐变遮罩 — 保证文字可读 */
.aplayer .aplayer-pic::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .55) 100%);
    pointer-events: none;
    z-index: 1
}

.aplayer .aplayer-pic:hover .aplayer-button {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}


/* ================================================================
   封面播放/暂停按钮 — MD3 FAB (Floating Action Button)
   ================================================================ */

.aplayer .aplayer-pic .aplayer-button {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    border: none;
    background: var(--md3-primary, #4ab3e8);
    box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .2),
        0 0.0625rem 0.125rem rgba(0, 0, 0, .14);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    opacity: .9;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 3;
}

.aplayer .aplayer-pic .aplayer-button:hover {
    box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, .2),
        0 0.125rem 0.25rem rgba(0, 0, 0, .14);
    /*     -webkit-transform: scale(1.05);
    transform: scale(1.05) */
}

.aplayer .aplayer-pic .aplayer-button:active {
    -webkit-transform: scale(.95);
    transform: scale(.95)
}

.aplayer .aplayer-pic .aplayer-button path {
    fill: var(--md3-on-primary, #fff)
}

.aplayer .aplayer-pic .aplayer-hide {
    display: none
}

/* 大播放按钮 — 居中偏下 */
.aplayer .aplayer-pic .aplayer-play {
    width: 3rem;
    height: 3rem;
    bottom: 2rem;
    right: 1rem;
    margin: 0;
    border: none
}

.aplayer .aplayer-pic .aplayer-play svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-40%, -50%);
    transform: translate(-40%, -50%);
    height: 1.5rem;
    width: 1.5rem
}

/* 暂停按钮 — 右下角小FAB */
.aplayer .aplayer-pic .aplayer-pause {
    width: 3rem;
    height: 3rem;
    bottom: 2rem;
    right: 1rem;
    border: none;
    border-radius: 1rem;
}

.aplayer .aplayer-pic .aplayer-pause svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 1rem;
    width: 1rem
}

.aplayer.aplayer-narrow .aplayer-pic .aplayer-pause,
.aplayer.aplayer-narrow .aplayer-pic .aplayer-play {
    width: 3rem;
    height: 3rem;
    bottom: 0.5rem;
    right: 0.5rem;
    opacity: 0;
}
.aplayer.aplayer-narrow:hover .aplayer-pic .aplayer-pause,
.aplayer.aplayer-narrow:hover .aplayer-pic .aplayer-play,
.aplayer.aplayer-narrow:focus-within .aplayer-pic .aplayer-pause,
.aplayer.aplayer-narrow:focus-within .aplayer-pic .aplayer-play {
    opacity: 1;
}

/* ================================================================
   信息区 — 叠在封面底部，绝对定位
   ================================================================ */

.aplayer .aplayer-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: 0;
    padding: 0 1rem 0.5rem;
    height: auto;
    z-index: 2;
    box-sizing: border-box
}

/* 曲名 & 作者 — 白色文字（在封面上） */
.aplayer .aplayer-info .aplayer-music {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0 0.25rem;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: default;
    padding-bottom: 0;
    height: auto
}

.aplayer .aplayer-info .aplayer-music .aplayer-title {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, .3)
}

.aplayer .aplayer-info .aplayer-music .aplayer-author {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, .78);
    text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, .3)
}


/* ================================================================
   控制器 — 叠在封面底部
   ================================================================ */

.aplayer .aplayer-info .aplayer-controller {
    position: relative;
    display: flex;
    align-items: center
}

/* 进度条容器 */
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap {
    margin: 0;
    padding: 0.375rem 0;
    cursor: pointer !important;
    flex: 1;
    height: 0.375rem;
    display: flex;
    align-items: center;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap:hover .aplayer-bar .aplayer-played .aplayer-thumb {
    -webkit-transform: scale(1);
    transform: scale(1)
}

/* 进度条轨道 — 半透明白 */
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar {
    position: relative;
    height: 0.1875rem;
    width: 100%;
    background: rgba(255, 255, 255, .3);
    border-radius: 0.09375rem;
    transition: height .15s cubic-bezier(.4, 0, .2, 1)
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap:hover .aplayer-bar {
    height: 0.375rem
}

/* 缓冲进度 */
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-loaded {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .25);
    height: 0.1875rem;
    border-radius: 0.09375rem;
    transition: all .25s ease
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap:hover .aplayer-bar .aplayer-loaded {
    height: 0.375rem
}

/* 播放进度 — 颜色已在顶部 !important 覆盖 */
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 0.1875rem;
    border-radius: 0.09375rem;
    transition: height .25s ease, width .1s ease
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap:hover .aplayer-bar .aplayer-played {
    height: 0.375rem
}

/* 拖动手柄 */
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
    position: absolute;
    top: 50%;
    right: 0.3125rem;
    margin-top: -0.4375rem;
    margin-right: -0.6875rem;
    height: 0.875rem;
    width: 0.875rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s cubic-bezier(.4, 0, .2, 1);
    -webkit-transform: scale(0);
    transform: scale(0);
    box-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, .3)
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap:hover .aplayer-bar .aplayer-played .aplayer-thumb {
    height: 1rem;
    width: 1rem;
    margin-top: -0.5rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .35)
}

/* 加载图标 */
.aplayer .aplayer-info .aplayer-controller .aplayer-loading-icon {
    display: none
}

.aplayer .aplayer-info .aplayer-controller .aplayer-loading-icon svg {
    position: absolute;
    -webkit-animation: rotate 1s linear infinite;
    animation: rotate 1s linear infinite
}


/* ================================================================
   时间显示 & 图标 — 白色（在封面上）
   ================================================================ */

.aplayer .aplayer-info .aplayer-controller .aplayer-time {
    position: relative;
    right: 0;
    bottom: 0;
    height: auto;
    color: rgba(255, 255, 255, .7);
    font-size: 0.6875rem;
    padding-left: 0.5rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-time-inner {
    vertical-align: middle
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon {
    cursor: pointer;
    transition: all .2s cubic-bezier(.4, 0, .2, 1);
    opacity: .7
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon path {
    fill: #fff
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, .15)
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon:active {
    background-color: rgba(255, 255, 255, .25)
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon.aplayer-icon-loop {
    margin-right: 0.125rem
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon:hover path {
    fill: #fff
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon.aplayer-icon-menu,
.aplayer .aplayer-info .aplayer-controller .aplayer-time.aplayer-time-narrow .aplayer-icon-menu,
.aplayer .aplayer-info .aplayer-controller .aplayer-time.aplayer-time-narrow .aplayer-icon-mode {
    display: none
}


/* ================================================================
   音量控制
   ================================================================ */

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap {
    position: relative;
    display: inline-block;
    margin-left: 0.125rem;
    cursor: pointer !important
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap:hover .aplayer-volume-bar-wrap {
    height: 2.5rem
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap {
    position: absolute;
    bottom: 0.9375rem;
    right: -0.1875rem;
    width: 1.5625rem;
    height: 0;
    z-index: 99;
    overflow: hidden;
    transition: all .2s cubic-bezier(.4, 0, .2, 1)
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap.aplayer-volume-bar-wrap-active {
    height: 2.5rem
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar {
    position: absolute;
    bottom: 0;
    right: 0.625rem;
    width: 0.25rem;
    height: 2.1875rem;
    background: rgba(255, 255, 255, .3);
    border-radius: 0.125rem;
    overflow: hidden
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar .aplayer-volume {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.25rem;
    border-radius: 0.125rem;
    transition: all .1s ease
}


/* ================================================================
   图标按钮 — MD3 Icon Button (白色变体，在封面上)
   ================================================================ */

.aplayer .aplayer-icon {
    width: 1rem;
    height: 1rem;
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    opacity: .8;
    vertical-align: middle;
    padding: 0;
    font-size: 0.875rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s cubic-bezier(.4, 0, .2, 1),
        background-color .15s cubic-bezier(.4, 0, .2, 1);
    border-radius: 50%;
    position: relative
}

.aplayer .aplayer-icon path {
    transition: all .2s ease-in-out
}

.aplayer .aplayer-icon:hover {
    opacity: 1
}

.aplayer .aplayer-icon:active {
    opacity: 1
}

.aplayer .aplayer-icon-back,
.aplayer .aplayer-icon-forward,
.aplayer .aplayer-icon-lrc,
.aplayer .aplayer-icon-order,
.aplayer .aplayer-icon-play {
    display: none
}

.aplayer .aplayer-icon-lrc-inactivity svg {
    opacity: .4
}

.aplayer .aplayer-icon-forward {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}


/* ================================================================
   歌词内容（隐藏容器）
   ================================================================ */

.aplayer .aplayer-lrc-content {
    display: none
}


/* ================================================================
   歌词显示 — 叠在封面上
   ================================================================ */

.aplayer .aplayer-lrc {
    display: none;
    position: relative;
    height: 1.5rem;
    text-align: left;
    overflow: hidden;
    margin: 0 0 0.25rem
}

.aplayer .aplayer-lrc:before {
    top: 0;
    height: 10%;
    background: none;
    filter: none
}

.aplayer .aplayer-lrc:after,
.aplayer .aplayer-lrc:before {
    position: absolute;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    content: " "
}

.aplayer .aplayer-lrc:after {
    bottom: 0;
    height: 33%;
    background: none;
    filter: none
}

.aplayer .aplayer-lrc p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1rem !important;
    height: 1rem !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: all .25s ease-out;
    opacity: .5;
    overflow: hidden;
    text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, .3)
}

.aplayer .aplayer-lrc p.aplayer-lrc-current {
    opacity: 1;
    overflow: visible;
    height: auto !important;
    min-height: 1rem;
    color: #fff
}

.aplayer .aplayer-lrc.aplayer-lrc-hide {
    display: none
}

.aplayer .aplayer-lrc .aplayer-lrc-contents {
    width: 100%;
    transition: all .25s ease-out;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: default
}


/* ================================================================
   播放列表模式
   ================================================================ */

.aplayer.aplayer-withlist .aplayer-info {
    border-bottom: none
}

.aplayer.aplayer-withlist .aplayer-list {
    display: block
}

.aplayer.aplayer-withlist .aplayer-icon-order,
.aplayer.aplayer-withlist .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon.aplayer-icon-menu {
    display: inline-flex
}


/* ================================================================
   歌词模式 — 封面更高
   ================================================================ */

.aplayer.aplayer-withlrc .aplayer-pic {
    height: 12rem
}

.aplayer.aplayer-withlrc .aplayer-info {
    padding: 0 1rem 0.5rem
}

.aplayer.aplayer-withlrc .aplayer-lrc {
    display: block
}


/* ================================================================
   迷你模式 — 只显示封面
   ================================================================ */

.aplayer.aplayer-narrow {
    width: fit-content;
}

.aplayer.aplayer-narrow .aplayer-info,
.aplayer.aplayer-narrow .aplayer-list {
    display: none
}

.aplayer.aplayer-narrow .aplayer-body,
.aplayer.aplayer-narrow .aplayer-pic {
    height: auto;
    width: auto
}

.aplayer.aplayer-narrow .aplayer-pic {
    height: 8rem;
    width: 8rem;
    border-radius: 0.5rem
}

.aplayer.aplayer-narrow .aplayer-pic::after {
    display: none
}


/* ================================================================
   固定底部模式
   ================================================================ */

.aplayer.aplayer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 99;
    overflow: visible;
    max-width: 25rem;
    border-radius: 0.75rem 0.75rem 0 0;
    box-shadow: 0 -0.0625rem 0.5rem rgba(0, 0, 0, .15)
}

.aplayer.aplayer-fixed .aplayer-list {
    margin-bottom: 10rem;
    border: none;
    border-radius: 0.75rem 0.75rem 0 0
}

.aplayer.aplayer-fixed .aplayer-body {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 99;
    background: transparent;
    padding-right: 0;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    max-width: 25rem;
    border-radius: 0.75rem 0.75rem 0 0
}

.aplayer.aplayer-fixed .aplayer-lrc {
    display: block;
    position: fixed;
    bottom: 0.625rem;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 98;
    pointer-events: none;
    text-shadow: -0.0625rem -0.0625rem 0 rgba(0, 0, 0, .5)
}

.aplayer.aplayer-fixed .aplayer-lrc:after,
.aplayer.aplayer-fixed .aplayer-lrc:before {
    display: none
}

.aplayer.aplayer-fixed .aplayer-info {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    border-bottom: none;
    border-top: none
}

.aplayer.aplayer-fixed .aplayer-info .aplayer-music {
    width: calc(100% - 4rem)
}

.aplayer.aplayer-fixed .aplayer-miniswitcher {
    display: block
}

.aplayer.aplayer-fixed.aplayer-narrow .aplayer-info {
    display: block;
    -webkit-transform: scaleX(0);
    transform: scaleX(0)
}

.aplayer.aplayer-fixed.aplayer-narrow .aplayer-body {
    width: 4.125rem !important
}

.aplayer.aplayer-fixed.aplayer-narrow .aplayer-miniswitcher .aplayer-icon {
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
}

.aplayer.aplayer-fixed .aplayer-icon-back,
.aplayer.aplayer-fixed .aplayer-icon-forward,
.aplayer.aplayer-fixed .aplayer-icon-lrc,
.aplayer.aplayer-fixed .aplayer-icon-play {
    display: inline-flex
}

.aplayer.aplayer-fixed .aplayer-icon-back,
.aplayer.aplayer-fixed .aplayer-icon-forward,
.aplayer.aplayer-fixed .aplayer-icon-menu,
.aplayer.aplayer-fixed .aplayer-icon-play {
    position: absolute;
    bottom: 1.6875rem;
    width: 1.25rem;
    height: 1.25rem
}

.aplayer.aplayer-fixed .aplayer-icon-back {
    right: 4.6875rem
}

.aplayer.aplayer-fixed .aplayer-icon-play {
    right: 3.125rem
}

.aplayer.aplayer-fixed .aplayer-icon-forward {
    right: 1.5625rem
}

.aplayer.aplayer-fixed .aplayer-icon-menu {
    right: 0
}


/* ================================================================
   箭头 & 移动端
   ================================================================ */

.aplayer.aplayer-arrow .aplayer-icon-loop,
.aplayer.aplayer-arrow .aplayer-icon-order,
.aplayer.aplayer-mobile .aplayer-icon-volume-down {
    display: none
}


/* ================================================================
   加载状态
   ================================================================ */

.aplayer.aplayer-loading .aplayer-info .aplayer-controller .aplayer-loading-icon {
    display: block
}

.aplayer.aplayer-loading .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
    -webkit-transform: scale(1);
    transform: scale(1)
}


/* ================================================================
   播放列表 — 毛玻璃效果
   ================================================================ */

.aplayer .aplayer-list {
    overflow: auto;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    will-change: height;
    /* display: none; */
    overflow: hidden;
    background: var(--md3-surface-container-low, #f0f6f9);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem)
}

.aplayer .aplayer-list.aplayer-list-hide {
    max-height: 0 !important
}

.aplayer .aplayer-list ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow-y: auto
}

.aplayer .aplayer-list ol::-webkit-scrollbar {
    width: 0.25rem
}

.aplayer .aplayer-list ol::-webkit-scrollbar-thumb {
    border-radius: 0.125rem;
    background-color: var(--md3-neutral-80, #b6d3e2)
}

.aplayer .aplayer-list ol::-webkit-scrollbar-thumb:hover {
    background-color: var(--md3-neutral-60, #6ca8c6)
}

/* 列表项 — MD3 List Item */
.aplayer .aplayer-list ol li {
    position: relative;
    height: 3rem;
    line-height: 3rem;
    padding: 0 0.9375rem 0 1.0625rem;
    font-size: 0.875rem;
    border-top: none;
    cursor: pointer;
    transition: background-color .15s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    margin: 0;
    color: var(--bs-body-color, #1d3a49)
}

.aplayer .aplayer-list ol li+li {
    border-top: 0.0625rem solid var(--md3-outline-variant, #eef3f6)
}

.aplayer .aplayer-list ol li:hover {
    background: rgba(var(--md3-primary-rgb, 74, 179, 232), .08)
}

.aplayer .aplayer-list ol li.aplayer-list-light {
    background: rgba(var(--md3-primary-rgb, 74, 179, 232), .12);
    color: var(--md3-primary, #4ab3e8)
}

.aplayer .aplayer-list ol li.aplayer-list-light .aplayer-list-cur {
    display: inline-block
}

/* 当前播放指示条 — 颜色已在顶部 !important 覆盖 */
.aplayer .aplayer-list ol li .aplayer-list-cur {
    display: none;
    width: 0.1875rem;
    height: 1.375rem;
    position: absolute;
    left: 0;
    top: 0.8125rem;
    cursor: pointer;
    border-radius: 0 0.125rem 0.125rem 0
}

.aplayer .aplayer-list ol li .aplayer-list-index {
    color: var(--md3-on-surface-variant, #578ca8);
    margin-right: 0.75rem;
    cursor: pointer
}

.aplayer .aplayer-list ol li .aplayer-list-title {
    color: inherit
}

.aplayer .aplayer-list ol li .aplayer-list-author {
    color: var(--md3-on-surface-variant, #578ca8);
    float: right;
    cursor: pointer
}


/* ================================================================
   通知提示
   ================================================================ */

.aplayer .aplayer-notice {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    border-radius: 1rem;
    padding: 0.3125rem 0.75rem;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    pointer-events: none;
    background-color: rgba(0, 0, 0, .65);
    color: #fff;
    backdrop-filter: blur(0.25rem);
    -webkit-backdrop-filter: blur(0.25rem)
}


/* ================================================================
   迷你切换器
   ================================================================ */

.aplayer .aplayer-miniswitcher {
    /* display: none; */
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    width: 1.25rem;
    height: 1.25rem;
    padding: 0.25rem;
    border-radius: 0 0.75rem 0 0;
    transition: background-color .15s cubic-bezier(.4, 0, .2, 1);
    z-index: 3;
    border-radius: 0.75rem;
}

.aplayer .aplayer-miniswitcher:hover {
    background: rgba(0, 0, 0, .5)
}

.aplayer .aplayer-miniswitcher .aplayer-icon {
    height: 100%;
    width: 100%;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.aplayer .aplayer-miniswitcher .aplayer-icon path {
    fill: #fff
}

.aplayer .aplayer-miniswitcher .aplayer-icon:hover path {
    fill: #fff
}

.aplayer.aplayer.aplayer-narrow .aplayer-miniswitcher{
    opacity: 0.1;
}
.aplayer.aplayer.aplayer-narrow .aplayer-miniswitcher .aplayer-icon {
    transform: rotateY(0deg);
}
.aplayer.aplayer.aplayer-narrow:hover .aplayer-miniswitcher,
.aplayer.aplayer.aplayer-narrow:focus-within .aplayer-miniswitcher{
    opacity: 1;
}

/* ================================================================
   动画关键帧
   ================================================================ */

@-webkit-keyframes aplayer-roll {
    0% {
        left: 0
    }

    to {
        left: -100%
    }
}

@keyframes aplayer-roll {
    0% {
        left: 0
    }

    to {
        left: -100%
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}