*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

[x-cloak] {
    display: none !important;
}

/* ── 装饰狗狗和枫叶 ── */
.page-decos {
    pointer-events: none;
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.deco-dog {
    position: absolute;
    right: calc(50% - 590px);
    top: 38%;
    width: 130px;
    filter: drop-shadow(2px 6px 10px rgba(0, 0, 0, .12));
    animation: dogBob 3.6s ease-in-out infinite;
}

/* ── 点击粒子 ── */
.click-particle {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    transform-origin: center center;
    animation: particleFly linear forwards;
}

.click-particle svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .15));
}

/* 枫叶颗粒用 currentColor 填充，其余 SVG 内置颜色 */
.click-particle svg g[fill="currentColor"] {
    fill: currentColor;
}

/* ── 浮动蛋糕按钮 ── */
.cake-float-wrap {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cake-float-btn {
    background: white;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
    padding: 8px;
    animation: cakeBounce 2.4s ease-in-out infinite;
    transition: transform .15s, box-shadow .15s;
    touch-action: manipulation;
    /* 禁用移动端双击缩放 */
}

.cake-float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
    animation-play-state: paused;
}

.cake-float-btn:active {
    transform: scale(0.93);
}

.cake-float-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cake-click-count {
    font-size: .85rem;
    font-weight: 900;
    color: #b030c0;
    text-shadow: 0 1px 4px rgba(180, 0, 200, .25);
    line-height: 1;
}

@keyframes cakeBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(-7px);
    }

    65% {
        transform: translateY(-3px);
    }
}

/* +1 弹出动画 */
.cake-plus-one {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 1.6rem;
    font-weight: 900;
    color: #b030c0;
    text-shadow: 0 2px 8px rgba(180, 0, 200, .35);
    transform: translate(-50%, -100%);
    animation: plusOneFly 0.9s ease-out forwards;
}

@keyframes plusOneFly {
    0% {
        opacity: 1;
        transform: translate(-50%, -100%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -100%) translateY(-80px);
    }
}

@keyframes particleFly {
    0% {
        transform: translate(-50%, -50%) translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }

    70% {
        opacity: 0.85;
    }

    100% {
        transform: translate(-50%, -50%) translateX(var(--dx)) translateY(var(--dy)) rotate(var(--rot)) scale(0.3);
        opacity: 0;
    }
}

@keyframes dogBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.deco-leaf {
    position: absolute;
    filter: drop-shadow(1px 3px 6px rgba(0, 0, 0, .1));
    animation: leafFloat 5s ease-in-out infinite;
}

@keyframes leafFloat {

    0%,
    100% {
        transform: rotate(var(--r, 20deg)) translateY(0);
    }

    50% {
        transform: rotate(var(--r, 20deg)) translateY(-6px);
    }
}

.deco-leaf-1 {
    left: calc(50% - 600px);
    top: 28%;
    width: 58px;
    --r: 22deg;
    animation-delay: 0s;
}

.deco-leaf-2 {
    left: calc(50% - 570px);
    top: 60%;
    width: 44px;
    --r: -28deg;
    animation-delay: 1.2s;
    opacity: .82;
}

.deco-leaf-3 {
    right: calc(50% - 600px);
    top: 22%;
    width: 50px;
    --r: -14deg;
    animation-delay: 0.6s;
}

.deco-leaf-4 {
    right: calc(50% - 570px);
    top: 68%;
    width: 40px;
    --r: 38deg;
    animation-delay: 1.8s;
    opacity: .75;
}

@media (max-width: 1160px) {
    .page-decos {
        display: none;
    }
}

/* ── 全局字体 ── */
body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #fdf0da;
    background-image: repeating-conic-gradient(#f5e4c2 0% 25%, #fdf0da 0% 50%);
    background-size: 28px 28px;
    color: #3d3224;
    min-height: 100vh;
}

/* ── 语言切换器 ── */
.lang-switcher {
    position: absolute;
    top: 14px;
    right: 18px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.lang-switcher button {
    padding: 4px 12px;
    font-size: .78rem;
    font-weight: 800;
    font-family: inherit;
    border: 2px solid rgba(255, 255, 255, .55);
    border-radius: 20px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    cursor: pointer;
    transition: all .18s;
    letter-spacing: .03em;
}

.lang-switcher button:hover {
    background: rgba(255, 255, 255, .35);
    border-color: rgba(255, 255, 255, .85);
}

.lang-switcher button.active {
    background: rgba(255, 255, 255, .92);
    color: #5c9e4b;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

/* ── Header ── */
header {
    background: linear-gradient(155deg, #8dc97a 0%, #5c9e4b 100%);
    color: #fff;
    padding: 38px 24px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    box-shadow: 0 6px 24px rgba(92, 158, 75, .25);
}

.header-deco {
    position: absolute;
    width: 130px;
    height: 130px;
    opacity: .18;
}

.header-deco-tl {
    top: -10px;
    left: 6px;
    transform: rotate(-22deg);
}

.header-deco-br {
    bottom: -14px;
    right: 6px;
    transform: rotate(34deg);
}

header h1 {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, .15);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-logo {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 6px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .18));
}

.site-logo svg {
    width: 100%;
    height: auto;
    display: block;
}

.site-logo svg path,
.site-logo svg rect {
    fill: #d4f1c1 !important;
}

header p {
    margin-top: 8px;
    opacity: .92;
    font-size: .95rem;
    font-weight: 700;
}

/* ── Container ── */
.container {
    max-width: 1040px;
    margin: 32px auto;
    padding: 0 16px;
}

/* ── 募捐进度卡片 ── */
.progress-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px 28px 18px;
    box-shadow: 0 4px 18px rgba(92, 158, 75, .12);
    border: 2.5px solid #d8f0d0;
    margin-bottom: 24px;
}

.progress-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.progress-card-title {
    font-weight: 900;
    font-size: 1rem;
    color: #4a8040;
}

.progress-badge {
    background: linear-gradient(135deg, #f5a830 0%, #e07820 100%);
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    padding: 3px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(224, 120, 32, .28);
    letter-spacing: .03em;
}

.progress-track {
    width: 100%;
    height: 20px;
    background: #edf7e9;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, .06);
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #8dc97a 0%, #f5a830 100%);
    transition: width 1s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 8px;
    right: 8px;
    height: 5px;
    background: rgba(255, 255, 255, .35);
    border-radius: 999px;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: .88rem;
    font-weight: 700;
    color: #4a8040;
}

.progress-meta strong {
    color: #e07820;
    font-size: 1rem;
}

.progress-rate {
    margin-top: 6px;
    font-size: .74rem;
    color: #a8c4a0;
    font-weight: 700;
    text-align: right;
}

/* ── Stats ── */
.stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 160px;
    background: #fff;
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 4px 18px rgba(92, 158, 75, .12);
    text-align: center;
    border: 2.5px solid #d8f0d0;
}

.stat-card .value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #5c9e4b;
}

.stat-card .label {
    margin-top: 4px;
    font-size: .85rem;
    color: #8db882;
    font-weight: 700;
}

/* ── Card ── */
/* ── 小程序码引导卡片 ── */
.shop-qr-card {
    background: linear-gradient(135deg, #fff9f0 0%, #fff3fa 100%);
    border-radius: 20px;
    border: 2px solid #ffe0c8;
    box-shadow: 0 4px 18px rgba(230, 100, 50, .08);
    padding: 20px 24px;
    margin-bottom: 20px;
}

.shop-qr-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shop-qr-img {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
    flex-shrink: 0;
}

.shop-qr-text {
    flex: 1;
}

.shop-qr-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #c04000;
    margin-bottom: 6px;
}

.shop-qr-desc {
    font-size: .88rem;
    color: #8a5a3a;
    line-height: 1.6;
}

.remark-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #f7f0ff 100%);
    border-radius: 20px;
    border: 2px solid #c8d8f8;
    box-shadow: 0 4px 18px rgba(80, 120, 220, .08);
    padding: 18px 24px;
    margin-bottom: 20px;
}

.remark-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #3a5abf;
    margin-bottom: 6px;
}

.remark-card-desc {
    font-size: .85rem;
    color: #5a6a9a;
    line-height: 1.6;
    margin-bottom: 12px;
}

.remark-template {
    background: #fff;
    border-radius: 12px;
    border: 1.5px dashed #b0c4ee;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.remark-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: .88rem;
}

.remark-label {
    color: #7a8ab0;
    font-weight: 600;
    white-space: nowrap;
    min-width: 60px;
}

.remark-value {
    color: #2a3a7a;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    word-break: break-all;
}

.card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 22px rgba(92, 158, 75, .1);
    overflow: hidden;
    border: 2.5px solid #d8f0d0;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 2px solid #edf7e9;
    background: linear-gradient(90deg, #f4fdf0 0%, #edf7e8 100%);
}

.card-header span {
    font-weight: 900;
    font-size: 1rem;
    color: #4a8040;
}

.btn-refresh {
    padding: 7px 18px;
    font-size: .82rem;
    border: 2px solid #8dc97a;
    border-radius: 20px;
    background: #fff;
    color: #5c9e4b;
    cursor: pointer;
    font-weight: 800;
    font-family: inherit;
    transition: all .18s;
}

.btn-refresh:hover {
    background: #8dc97a;
    color: #fff;
    box-shadow: 0 3px 10px rgba(141, 201, 122, .35);
}

/* ── Table ── */
table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: linear-gradient(90deg, #edf7e8 0%, #e4f5de 100%);
}

th {
    padding: 13px 16px;
    text-align: left;
    font-size: .78rem;
    font-weight: 900;
    color: #5c9e4b;
}

td {
    padding: 14px 16px;
    font-size: .9rem;
    border-top: 1px solid #edf7e9;
    white-space: nowrap;
    font-weight: 600;
    color: #3d3224;
}

tbody tr:hover {
    background: #fafff7;
}

.state-row td {
    text-align: center;
    padding: 60px 0;
    color: #b0caa8;
    font-size: .95rem;
    font-weight: 700;
}

.state-row.error td {
    color: #e07070;
}

/* ── 眼睛按钮 ── */
.btn-reveal {
    background: none;
    border: 2px solid #d8f0d0;
    padding: 5px 7px;
    cursor: pointer;
    color: #8dc97a;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    transition: all .18s;
}

.btn-reveal:hover {
    color: #5c9e4b;
    background: #edf7e8;
    border-color: #8dc97a;
    box-shadow: 0 2px 8px rgba(141, 201, 122, .25);
}

.btn-reveal:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ── 解密弹窗 ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(50, 38, 20, .48);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 16px;
    backdrop-filter: blur(2px);
}

.modal-box {
    background: #fff;
    border-radius: 28px;
    padding: 32px 32px 28px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 16px 48px rgba(92, 158, 75, .22);
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 3px solid #d8f0d0;
    position: relative;
    overflow: hidden;
}

.modal-box::before {
    content: '\u2740';
    position: absolute;
    font-size: 100px;
    opacity: .07;
    top: -14px;
    right: -8px;
    line-height: 1;
    color: #5c9e4b;
}

.modal-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #4a8040;
}

.modal-hint {
    font-size: .82rem;
    color: #8db882;
    margin-top: -6px;
    font-weight: 700;
}

.modal-input {
    width: 100%;
    padding: 13px 14px;
    font-size: 1.7rem;
    letter-spacing: .55em;
    text-align: center;
    border: 2.5px solid #cce9c4;
    border-radius: 16px;
    outline: none;
    font-family: inherit;
    background: #fafff8;
    color: #3d3224;
    transition: border-color .15s, box-shadow .15s;
}

.modal-input:focus {
    border-color: #8dc97a;
    box-shadow: 0 0 0 4px rgba(141, 201, 122, .18);
}

.modal-error {
    font-size: .82rem;
    color: #e07070;
    min-height: 1.1em;
    font-weight: 800;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 4px;
}

.btn-cancel {
    padding: 9px 20px;
    font-size: .88rem;
    border: 2px solid #d8e8d4;
    border-radius: 20px;
    background: #fff;
    color: #7aaa72;
    cursor: pointer;
    font-weight: 800;
    font-family: inherit;
    transition: all .15s;
}

.btn-cancel:hover {
    background: #edf7e8;
    border-color: #8dc97a;
}

.btn-confirm {
    padding: 9px 26px;
    font-size: .9rem;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #f5a830 0%, #e07820 100%);
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    font-family: inherit;
    box-shadow: 0 4px 14px rgba(224, 120, 32, .32);
    transition: opacity .15s, transform .12s;
}

.btn-confirm:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.btn-confirm:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

/* ── 倒计时区块 ── */
.countdown-section {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.countdown-card {
    flex: 1;
    min-width: 250px;
    border-radius: 20px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
}

.countdown-birthday {
    background: linear-gradient(135deg, #ffe0f4 0%, #f4ccff 100%);
    border: 2.5px solid #f0b0e0;
}

.countdown-fund {
    background: linear-gradient(135deg, #fff7d6 0%, #ffe4a0 100%);
    border: 2.5px solid #f0c860;
}

.cd-icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
}

.cd-body {
    flex: 1;
    min-width: 0;
}

.cd-label {
    font-weight: 900;
    font-size: .95rem;
    color: #3d3224;
    margin-bottom: 3px;
    line-height: 1.3;
}

.cd-date {
    font-size: .78rem;
    font-weight: 700;
    color: #7a6858;
    margin-bottom: 8px;
}

.cd-timer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cd-unit span {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
    min-width: 2.2ch;
    text-align: center;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
}

.countdown-birthday .cd-unit span {
    color: #b030c0;
}

.countdown-fund .cd-unit span {
    color: #b86800;
}

.cd-unit small {
    font-size: .62rem;
    font-weight: 800;
    color: #9a8878;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 2px;
}

.cd-sep {
    font-size: 1.5rem;
    font-weight: 900;
    color: #b8a898;
    line-height: 1;
    padding-bottom: 16px;
    margin: 0 1px;
}

.cd-done-msg {
    font-size: 1rem;
    font-weight: 900;
    padding: 6px 0;
}

.countdown-birthday .cd-done-msg {
    color: #b030c0;
}

.countdown-fund .cd-done-msg {
    color: #b86800;
}

/* ── 底部时间 ── */
.updated {
    text-align: right;
    font-size: .78rem;
    color: #a8c4a0;
    margin-top: 14px;
    font-weight: 700;
}

/* ── 移动端 ── */
@media (max-width: 900px) {
    header {
        padding: 24px 16px 32px;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    header h1 {
        font-size: 1.55rem;
    }

    .container {
        margin: 16px auto;
    }

    .stat-card .value {
        font-size: 1.8rem;
    }

    .card {
        border-radius: 18px;
    }

    .card-header {
        padding: 14px 16px;
    }

    .shop-qr-img {
        width: 88px;
        height: 88px;
    }

    .shop-qr-title {
        font-size: 1rem;
    }

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead tr {
        display: none;
    }

    tbody tr {
        margin: 12px;
        border: 2px solid #d8f0d0;
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
    }

    tbody tr:hover {
        background: #fff;
    }

    td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 14px;
        border-top: none;
        border-bottom: 1px solid #edf7e9;
        font-size: .875rem;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    td:last-child {
        border-bottom: none;
    }

    td::before {
        content: attr(data-label);
        flex-shrink: 0;
        min-width: 72px;
        font-weight: 900;
        font-size: .75rem;
        color: #5c9e4b;
        padding-top: 2px;
    }

    .state-row td {
        justify-content: center;
        padding: 40px 0;
    }

    .state-row td::before {
        display: none;
    }

    .updated {
        text-align: center;
        margin: 0 12px 4px;
    }

    .countdown-section {
        gap: 12px;
    }

    .countdown-card {
        padding: 16px 14px;
        gap: 12px;
        min-width: 200px;
    }

    .cd-icon-wrap {
        width: 58px;
    }

    .cd-icon-wrap svg {
        width: 54px;
        height: auto;
    }

    .cd-unit span {
        font-size: 1.4rem;
    }

    .cd-sep {
        font-size: 1.2rem;
        padding-bottom: 13px;
    }
}
/* ===== cake-auto-particle ambient animation ===== */
.cake-auto-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform-origin: center center;
}

@keyframes cakeAutoFloat {
  0%   { opacity:0; transform:translate(0,0) rotate(0deg) scale(0.3); }
  12%  { opacity:1; transform:translate(calc(var(--ap-dx)*0.1),-10px) rotate(calc(var(--ap-rot)*0.1)) scale(1); }
  80%  { opacity:0.85; transform:translate(calc(var(--ap-dx)*0.9),calc(var(--ap-dy)*0.9)) rotate(calc(var(--ap-rot)*0.9)) scale(0.9); }
  100% { opacity:0; transform:translate(var(--ap-dx),var(--ap-dy)) rotate(var(--ap-rot)) scale(0.5); }
}


/* ── 音乐浮动按钮 (左边，与蛋糕按钮对齐) ── */
.music-float-wrap {
    position: fixed;
    bottom: 28px;
    left: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

#music-btn {
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
    padding: 0;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cakeBounce 2.4s ease-in-out infinite;
    transition: transform .15s, box-shadow .15s;
    backdrop-filter: blur(8px);
    touch-action: manipulation;
}

#music-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
    animation-play-state: paused;
}

#music-btn:active {
    transform: scale(0.93);
}

#music-btn.muted {
    opacity: 0.55;
}

#music-btn.muted::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 30px;
    background: #e54;
    transform: rotate(45deg);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -1px;
    pointer-events: none;
}

/* 占位，高度与 .cake-click-count 行一致 */
.music-placeholder {
    height: 1rem;
    line-height: 1;
}
