:root {
  /* 石墨 + 灰玫瑰（借鉴 ECHO / Roon 风格） */
  --bg: #17171b;
  --bg-elevated: #202126;
  --bg-panel: #2a2b30;
  --bg-hover: #33353b;
  --bg-active: #3d3f46;
  --text: #f3f1f2;
  --text-dim: #a8a8ae;
  --text-faint: #6d6d73;
  --accent: #d3a9b5;
  --accent-hover: #e4c4cc;
  --accent-deep: #9b5b6a;
  --danger: #d7675d;
  --border: #2e2f34;
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg: linear-gradient(160deg, rgba(255,255,255,0.030f), rgba(42,43,48,0.50f) 40%, rgba(32,33,38,0.64f) 70%, rgba(211,169,181,0.05f));
  --radius: 12px;
  --radius-lg: 24px;
  --titlebar-h: 40px;
  --playerbar-h: 100px;
  --sidebar-w: 220px;
}

/* 浅色主题 */
html.light {
  --bg: #f3f1f2;
  --bg-elevated: #ffffff;
  --bg-panel: #f8f6f7;
  --bg-hover: #ececef;
  --bg-active: #e0dde0;
  --text: #25242a;
  --text-dim: #6d6d73;
  --text-faint: #9c9aa0;
  --accent: #9b5b6a;
  --accent-hover: #9b5b6a;
  --accent-deep: #9b5b6a;
  --danger: #d7675d;
  --border: #e6e3e5;
  --glass-border: rgba(255, 255, 255, 0.84f);
  --glass-bg: linear-gradient(160deg, #ffffff, #f6f4f5 60%, rgba(211,169,181,0.10f));
}

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

html,
body,
#app {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Segoe UI", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  user-select: none;
  -webkit-font-smoothing: antialiased;
}

li {
  list-style: none;
}

img {
  border: 0 none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select {
  font-family: inherit;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body.dragging {
  cursor: col-resize;
  user-select: none;
}

/* ============ App layout ============ */
.app-root {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-body {
  flex: 1;
  display: flex;
  min-height: 0;
}

.main-area {
  flex: 1;
  min-width: 0;
  overflow: auto;
  padding: 20px 28px 24px;
}

/* 主视图切换过渡 */
.main-view-enter-active,
.main-view-leave-active {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.main-view-enter-from {
  opacity: 0;
  transform: translateY(14px);
}

.main-view-leave-to {
  opacity: 0;
  transform: translateY(-14px);
}

/* ============ Titlebar ============ */
.titlebar {
  height: var(--titlebar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  -webkit-app-region: drag;
  flex-shrink: 0;
}

.titlebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dim);
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.titlebar-controls {
  display: flex;
  height: 100%;
  -webkit-app-region: no-drag;
}

.tb-btn {
  width: 46px;
  height: 100%;
  font-size: 15px;
  color: var(--text-dim);
  transition: background 0.15s;
}

.tb-btn:hover {
  background: var(--bg-hover);
  color: var(--text);
}

.tb-close:hover {
  background: var(--danger);
  color: #fff;
}

/* ============ Sidebar ============ */
.sidebar {
  width: var(--sidebar-w);
  background: var(--bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 14px;
  text-align: left;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}

.nav-item:hover {
  background: var(--bg-hover);
  color: var(--text);
}

.nav-item.active {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.nav-icon {
  width: 22px;
  text-align: center;
  font-size: 17px;
}

.sidebar-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.settings-box {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.setting-row select {
  background: var(--bg-hover);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
}

.toggle {
  background: var(--bg-hover);
  border-radius: 20px;
  padding: 3px 14px;
  font-size: 12px;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.toggle.on {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.credit {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--bg-panel);
  cursor: pointer;
  transition: background 0.15s;
}

.credit:hover {
  background: var(--bg-hover);
}

.credit p {
  font-size: 12px;
  color: var(--text-faint);
}

.credit-sub {
  font-size: 11px;
  margin-top: 2px;
}

/* ============ View & search ============ */
.view-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.search-input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(211, 169, 181, 0.15);
}

.primary-btn {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0 26px;
  border-radius: var(--radius);
  font-size: 15px;
  transition: background 0.15s;
}

.primary-btn:hover:not(:disabled) {
  background: var(--accent-hover);
}

.primary-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.source-chip {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  transition: all 0.15s;
}

.source-chip:hover {
  color: var(--text);
  border-color: var(--text-faint);
}

.source-chip.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
}

.hint-text {
  color: var(--text-faint);
  text-align: center;
  padding: 40px 0;
}

.error-text {
  color: var(--danger);
  text-align: center;
  padding: 20px 0;
}

/* ============ Song list ============ */
.song-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.song-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s;
  content-visibility: auto;
  contain-intrinsic-size: auto 58px;
}

.song-row:hover {
  background: var(--bg-hover);
}

.song-row.current {
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}

.song-num {
  width: 30px;
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  flex-shrink: 0;
}

.song-cover {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-active);
}

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

.song-name {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-row.current .song-name {
  color: var(--accent);
}

.song-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-album {
  width: 26%;
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
}

.song-source {
  font-size: 11px;
  color: var(--text-faint);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 10px;
  flex-shrink: 0;
}

.row-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.row-btn:hover {
  background: var(--bg-active);
  color: var(--text);
}

.fav-btn.active {
  color: var(--danger);
}

.list-more {
  text-align: center;
  padding: 16px 0;
}

.ghost-btn {
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  transition: all 0.15s;
}

.ghost-btn:hover {
  color: var(--text);
  border-color: var(--text-faint);
}

.ghost-btn.danger:hover {
  color: var(--danger);
  border-color: var(--danger);
}

.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.eq i {
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: eqbounce 0.8s ease-in-out infinite;
}

.eq i:nth-child(1) { height: 8px; }
.eq i:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.eq i:nth-child(3) { height: 10px; animation-delay: 0.4s; }

@keyframes eqbounce {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* ============ Player bar (official footer) ============ */
.player-bar {
  height: var(--playerbar-h);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  flex-shrink: 0;
}

.mobile-player {
  display: none;
}

.pb-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
}

.con-btn {
  width: 130px;
  position: relative;
  flex-shrink: 0;
}

.con-btn a {
  display: inline-block;
  position: absolute;
  top: 50%;
}

.player-btn {
  background-image: url('./player-CiatAKkz.png');
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.player-btn:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.btn-prev {
  background-position: 0 -30px;
  width: 19px;
  height: 20px;
  margin-top: -10px;
  left: 0;
}

.btn-play {
  width: 21px;
  height: 29px;
  margin-top: -14.5px;
  left: 36%;
  margin-left: -10.5px;
}

.btn-state-paused {
  background-position: -30px 0;
}

.btn-next {
  background-position: 0 -52px;
  right: 30%;
  width: 19px;
  height: 20px;
  margin-top: -10px;
}

.btn-order {
  background-position: 0 -172px;
  background-size: 450%;
  right: 0;
  width: 25px;
  height: 25px;
  margin-top: -12px;
}

.btn-order-single {
  background-position: 0 -196px;
  height: 25px;
  margin-top: -12px;
}

.btn-order-list {
  background-position: 0 -172px;
  height: 25px;
  margin-top: -12px;
}

.btn-order-random {
  background-position: 0 -62px;
  height: 19px;
  margin-top: -9px;
}

.progress {
  flex: 1;
  min-width: 0;
  position: relative;
  margin: 0 10px;
}

.progress-box {
  position: absolute;
  height: 40px;
  left: 10px;
  right: 0;
  top: 50%;
  margin-top: -20px;
}

.vol {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiet {
  width: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn-quiet {
  display: inline-block;
  width: 26px;
  height: 21px;
  background-position: 0 -144px;
}

.btn-state-quiet {
  background-position: 0 -182px;
}

.volume {
  flex: 1;
  min-width: 40px;
  position: relative;
  height: 20px;
}

.volume-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 20px;
}

.pb-queue-btn {
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  white-space: nowrap;
  transition: all 0.15s;
}

.pb-queue-btn:hover {
  color: var(--text);
  border-color: var(--text-faint);
}

.pb-queue-btn.on {
  color: var(--accent);
  border-color: var(--accent);
}

.pb-error {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: rgba(229, 72, 77, 0.97);
  color: #fff;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  max-width: 90%;
  word-break: break-all;
  cursor: pointer;
  z-index: 200;
}

.toast-enter-active,
.toast-leave-active {
  transition: opacity 0.25s, transform 0.25s;
}

.toast-enter-from,
.toast-leave-to {
  opacity: 0;
  transform: translate(-50%, 8px);
}

/* ============ mkpgb progress ============ */
.mkpgb-area {
  position: relative;
  cursor: pointer;
  height: 100%;
}

.mkpgb-title {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
  color: #e1e1e1cc;
  font-size: 13px;
  margin-bottom: 6px;
}

.mkpgb-bar {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  margin-top: -1px;
  border-radius: 2px;
  background-color: #808284;
  overflow: hidden;
}

.mkpgb-cur {
  position: absolute;
  background-color: var(--accent);
  width: 0;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  border-radius: 2px;
  transition: width 0.1s linear;
}

.mkpgb-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  left: 0;
  margin-left: -5px;
  top: 50%;
  margin-top: -5px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.mkpgb-timeleft,
.mkpgb-timeright {
  position: absolute;
  top: calc(50% + 8px);
  font-size: 11px;
  color: #d8d8d8;
}

.mkpgb-timeleft {
  left: 0;
}

.mkpgb-timeright {
  right: 0;
}

/* ============ Now Playing (official player panel) ============ */
.now-playing {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.np-blur {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  filter: blur(36px) saturate(1.3);
  opacity: 0.92;
  transition: background-image 0.6s ease;
  background-color: #1a1a20;
  will-change: transform;
}

.np-blur.has {
  opacity: 1;
}

.np-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.np-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 40px 24px;
  overflow: hidden;
}

.np-cover-wrap {
  flex-shrink: 0;
}

.cover {
  position: relative;
  display: block;
  width: 186px;
  height: 186px;
  margin: auto;
}

.cover:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 0;
  width: 201px;
  height: 180px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMkAAAC0CAMAAAAJpPgoAAABelBMVEUAAAAAAAAAAAAAAAAAAAAAAAD////d3d0BAQH+/v7////d3d3e3t4AAAAAAAAAAABhYWEAAAD+/v7i4uL09PQAAAAUFBTW1taxsbEAAAATExMTExN0dHQQEBAUFBQODg4MDAzBwcHOzs7l5eUKCgoDAwNoaGgUFBQUFBQQEBAODg6+vr4AAABjY2NlZWVvb2+WlpYPDw+hoaGysrLR0dELCwsICAhsbGyCgoJpaWkTExMSEhKAgIB5eXmJiYmRkZG1tbX09PTs7OwHBwcGBgbe3t53d3cUFBRqamqwsLC6urr+/v7v7+/e3t7k5OT8/Py4uLhnZ2dqampkZGRsbGxpaWlubm4bGxsWFhZiYmJxcXEgICAjIyMeHh4sLCwlJSVjY2MnJycYGBgiIiJgYGApKSkUFBR4eHh0dHRzc3NwcHAdHR16enouLi6AgIB9fX12dnY1NTV3d3eDg4M+Pj45OTkwMDBERERJSUlBQUGIiIiSkpJbW1tPT0/IX8NtAAAAUXRSTlMAAQYKBAhZYQ1qW2JjJR4VExGIcl0p+GQpIdfczrfjhnlxaGNhM/3066eReRr78umdnYh8bW1S8N/e0Mi+vqmYdmNUSEA3/vrgnJOLfXl2cyi4L/gpAAAJiUlEQVR42tza98vTQBgH8Nga98a9Ny5ciANRRAQRFb2Rs72kucY0b5OYTjtU9H/3G7VufdMqermHlvz84XvPc09KrbJVxTKkbNsyolbYVTMkgJghAcQMCSBmSAAxQwKIGRJAPklWzmqFVcYCZCbZ/amebrFLaAHks2TbrB7eXVM6CiBfJBtWf6oNj+6WbXUB5CvJulWzWvdkjVWqyiE/ZoJav7ZckhUzw4+ZlEuSQ4zIBBAzMgHEjEwAMSMTQMzIBBAzMgHEjEwAMSMTQMzIBBAzMgHEjEwAMSMTQMzIBBAzMgHEjEwAMSMTQMzIBBAzMgFkOcn6UmQCyLKS7WXIBJDlJZeP6p8JIAUkF85u1z0TQIpI2I07u/TOBJBCkoTtv7Jd50wAKSbpk/qtI7v0zWRltahk2KMnLx7TNhNAikqIlOz85aOaZgJIYYnjDPvkwpHtWmYCSHFJs8US2tp/ZJeGmQAyh4QSwoccraJfJoDMI2GkVecJWmWXbpkAMl8mwiE06xPcKnpJAJkzE1SdxKR++6hWEkDmlBDKKXFkRq6d1UkCyNyZ1OuE1VnCW/sf6yMBZG4JJ8ShjsPb4uSDzZYmBcj8EsJadUaaTMat6ztWWloUIAtIKHfyVqG8J4aH9TheC0FwxzPWZMRhTMTZwY06hALIQhIkQgkV3KHZy9qhrdZ/L0AWk7BWkzTRKYzQN0un/n+nLArJZxfleZtQwt+o/x/KwpB8djGWfx1GuoPnp+brFI0gVTvvEC7w4TQbRLW5xpdOEGRCMLsoUqEsU+Pa3j3F/66mFQR9QgXB16FStBsDVTtetQqWXhDMLuKwZhPJYAy/8Ae1A+cKhqIZBH2Sd4mDNuEye+69buw8UbGKlG4QbCt1xikj+c7SexaOO0tnCg1i7SBVO+Gc57lInnbdhj+uHSzS8/pB8o5njDqEcOL0vIYaB0tXbeufV6X65xIRC55K5CJEL3DDyaB2etnXFB0h2CA5+dAleELieq+fLXu8tITgdIkUTZIiF9ELg4Y3ipau/n566Qmp2nkYDqX5HtlrRK43GNcu/XZ6aQrJ9y6ORonTVMY9txMqf7S0d9NvjpeuENwnDrqES4Qium4nUP7UbZz49UKsLaRqSyFkXqlIIMHxejX4zUKsLwQShIFYJKX8pRv5Sg1e/3oOawyp2m0pE8llH42SSyLPn9b2bbJ+WjpDqnYq0CWcckrpy1AFvuq8C+//vFG0hlTtGFdJuy+TITIJvCBS/qvJ0vF/srBU7L9Zn95+ucDnpe9Gk0iNRrWf7cO6Q+y4L6WM0ziOk+5E+RM/GrzC65b1fWkPsbmkjogpRSi9iRf4Hdd/9fzHltcfYsftPpdZIvpx2vWDwPfDcKR27vjuli8BxOZccjEUVEra9SMVdRpq2qnd+3Z4lQFiZ7KdyqEUcT/p+r6KJo0At/y3w6sUEDsR0nFE6nApPkrcYDyuHfp6XykHpJJIDK92JtKh7EY+Wj7w/NE3+0o5IHaFcyGoEASPnupA0vF8jOEvkpJA7IrE8BK4THovuwkkCicsePX85ucLpSwQuyI454T2229HvhtMlMIO6U2f751dKKWB2JU4kRn6ZKpUoKJA+UEn9Eb4VcL6UOWB4HRxR8psOsBN4nlB6Hnhs3Dqndr4nnqz2XEaBgIwmKzEZUEcthIgBBcEBy4c4ABHnmDsuONgO4ntxFnktsuW7SL+3p1J+gaAWI3lOVefvsw0M3aW32UEQrXr/Hy6uArBu9am1vnQWnflXywknECodul6I70bR9t5t3V2dN59c6uZhBUIOaG+5CumZB35CM46W9yVW53dusULhJxIubukRHfO+jAmt8y8bD7jBkJO1usvo08Wk6Pt0pzxV8GccQM5EaBhF2zXeRuwhOS7rthLuzrjBkJPFzk52FDQOlzSvfP+Mq1OuYGQE4DNTwy2JJIRLPpU/CW+OOUGciKo6z3/EoL16KMP3qaC/lBennIDORESoJ7WKUZPLAnRloiHf/y2Iv7LWs/t7/chYrJYZiCLeE3jenYgQoHWCr5/usZokCi6gulg3r9iB7J0Whrq3Y/p1zdMBhPBHKjTYgciQGndK2j0/ssPb020FrstHWuxAxHznRVNIWs5eU8kBkeXn95lByKAfCilBgX9VHxEa/y2oykROxAhoQYpJawlTEjLRtwmmtyxAxHq6KQH1U94XNfUaN1mByJkPTvRmrJlKhF9jGWLj+7xAxGkY6BQMPQbJBKMvqUizA9EkA+gDRLkBk0sJqZAJ0H8QITqG6WboVEDXMQcZyWWTuf4gYiaZEgATVomgx5zbJGOT/iBCCAnalbSq40hJRFb89cJf1vcwKphThMtae9z9CaXQJN6hiCUJ4q0NP3QwJQRjemseXOHIYjQinxArSk+m5lkxNXziiGI6HuApldNo+A8Y8ymNe/ucQQRmnxoLbWUcjIxY+foni1HEAGLj76hXCESgy2aD+IvQCpxQ6uSGo6VS8JU5oTHxw9vMzQiKjX/k6imh6bZo4ndmF8/4AhydLIEyCma2Nr8QfB7tGYSaObKNZAWdRFjaSPd5+QIIqp6UUJBTnIcHX2qxRJEVL3q1dD0ZAb2OQd88bxiCSIqrRcltOvP2af85D5PEHIyv3IpRVt9Nq01b094gpAT0kGhKKbS5neU738EcvMLjuOuBtQwhWTe3OUKUtUaZi2wBtgk8/hhxRWkgiVLltgh3UNnCzLXrhoWLXKXH59WbEEq1YNatAz1RX52ly9IpUGqRUn9cU9Zwhfkd3V3zNJAEIRhOCOD7gVBQe1sNLU2h2gRlBQRsRBm93bhuitS5Kz8/5WzK8tlrEKqfAP3Ax5e9uCKm+WcYwjDsEny/uSAIdx5ifr48VtebggYwvHvkIQuPHxeIENYc/gosk2y/HLIkPLu6oPv+se2ccgQ7rwX8WPe4NU4ZAiH/CHfxeH2Tvd3IUNIi8RxjLqqc944YAiTbHrR99bb/Zk2AYYwRYk/SZbnZfcgMISpD8n3ZXeqNgGGMOkvNPLcXp+WJsAQppTKIdHZuwkd52xjeF3UXbbIEIp1lW1uggwhyeuFaxNkCH20WqQ2QYZQWcNdmyBDSItMTZAhZO4QQIaQudcBGWKbIENsE2SIbYIMsU2QIbYJMsQ2QYbYJsgQ2wQZYpsgQ2wTZMhuE3CJaYIMsU2QIbYJMsQ2QYbYJsgQ2wQZYpsgQ2wTZMhOk8XqOC5DOHTmU5L1yQx5ruqs1o5myHNZx2EXmQ72/x6/vgFeUDxj93AAAAAASUVORK5CYII=') 0 0 no-repeat;
  pointer-events: none;
}

.music-cover {
  vertical-align: middle;
  width: 186px;
  height: 186px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.np-meta {
  text-align: center;
  max-width: 90%;
}

.np-title {
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.np-artist {
  font-size: 13px;
  color: #c5c5c5;
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.np-lyric {
  width: 100%;
  max-width: 720px;
  flex: 1;
  min-height: 180px;
  overflow-y: auto;
  text-align: center;
  color: #e1e1e1cc;
  line-height: 30px;
  padding: 12px 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.np-lyric::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#lyric {
  width: 100%;
}

#lyric .lrc-item {
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  color: #e1e1e1aa;
  padding: 4px 0;
  transition: color 0.3s, transform 0.3s;
}

#lyric .lrc-item.lplaying {
  color: var(--accent);
  font-weight: 600;
  transform: scale(1.04);
}

.np-trans {
  display: block;
  font-size: 12px;
  color: #c5c5c5aa;
  font-weight: 400;
}

.lyric-tip {
  font-size: 14px;
  color: #9b9b9b;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* ============ 自定义源 (lx-music 音源) ============ */
.source-import-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 0 20px;
}

.source-import-btn {
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 46px;
  border-radius: 30px;
  transition: background 0.15s;
}

.source-import-btn:hover:not(:disabled) {
  background: var(--accent-hover);
}

.source-import-btn:disabled {
  opacity: 0.6;
}

.sources-tip {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  max-width: 300px;
  line-height: 1.7;
}

.paste-box {
  margin-bottom: 14px;
}

.paste-input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  font-family: Consolas, monospace;
  resize: vertical;
}

.paste-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.error-text.inline {
  padding: 0;
  font-size: 12px;
}

.sources-result {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
}

.sources-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.source-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.source-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(211, 169, 181, 0.3);
}

.source-card.failed {
  border-color: var(--danger);
}

.source-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.source-radio {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-dim);
  cursor: pointer;
  flex-shrink: 0;
}

.source-card-meta {
  flex: 1;
  min-width: 0;
}

.source-card-name {
  font-size: 14px;
  font-weight: 600;
}

.source-ver {
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 400;
  margin-left: 4px;
}

.source-card-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.source-del:hover {
  color: var(--danger);
}

.source-error {
  margin-top: 10px;
  font-size: 12px;
  color: var(--danger);
}

.source-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.source-cap {
  font-size: 11px;
  color: var(--text-dim);
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2px 10px;
}

.source-quality-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

.source-quality-row select {
  background: var(--bg-hover);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
}

.source-setting-card {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--bg-card, #17181c);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.source-setting-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.source-setting-sub {
  font-size: 12px;
  color: var(--text-dim);
}

.np-source {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  background: rgba(211, 169, 181, 0.12);
  border: 1px solid rgba(211, 169, 181, 0.35);
  border-radius: 10px;
  padding: 1px 8px;
  margin-left: 8px;
}

.np-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.np-actions .np-download {
  margin-top: 0;
}

.np-download {
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent-hover);
  border-radius: 20px;
  padding: 7px 22px;
  font-size: 13px;
  transition: background 0.15s;
}

.np-download:hover {
  background: var(--accent-hover);
}

.np-download.switching {
  opacity: 0.6;
}

/* ============ 下载页 ============ */
.download-actions {
  display: flex;
  gap: 8px;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  content-visibility: auto;
  contain-intrinsic-size: auto 76px;
}

.download-item.done {
  border-color: rgba(211, 169, 181, 0.4);
}

.download-item.error {
  border-color: rgba(229, 72, 77, 0.4);
}

.download-main {
  flex: 1;
  min-width: 0;
}

.download-name {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.download-artist {
  color: var(--text-dim);
  font-size: 13px;
}

.download-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.download-progress .progress-track {
  flex: 1;
  max-width: 420px;
}

.download-progress-text {
  font-size: 11px;
  color: var(--text-faint);
  white-space: nowrap;
}

.download-status {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-dim);
}

.download-item.done .download-status {
  color: var(--accent);
}

.download-item.error .download-status {
  color: var(--danger);
}

.download-error {
  color: var(--danger);
}

.download-ops {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

/* ============ Queue panel ============ */
.queue-panel {
  position: fixed;
  top: var(--titlebar-h);
  right: 0;
  bottom: var(--playerbar-h);
  width: 360px;
  background: var(--bg-panel);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  z-index: 90;
  animation: slideIn 0.2s ease-out;
}

@keyframes slideIn {
  from { transform: translateX(20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.panel-header h3 {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.queue-count {
  font-size: 12px;
  color: var(--text-faint);
  background: var(--bg-hover);
  border-radius: 10px;
  padding: 1px 8px;
}

.panel-close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--text-dim);
  transition: all 0.15s;
}

.panel-close:hover {
  background: var(--bg-hover);
  color: var(--text);
}

.queue-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}

.queue-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s;
}

.queue-item:hover {
  background: var(--bg-hover);
}

.queue-item.current {
  background: rgba(211, 169, 181, 0.12);
}

.queue-item.current .queue-name {
  color: var(--accent);
}

.queue-idx {
  width: 26px;
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  flex-shrink: 0;
}

.queue-main {
  flex: 1;
  min-width: 0;
}

.queue-name {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-remove {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--text-faint);
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.15s;
}

.queue-remove:hover {
  background: var(--danger);
  color: #fff;
}

/* scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--bg-active);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bg-hover);
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* ============ 移动端适配（html.mobile 类驱动） ============ */
html.mobile {
  --titlebar-h: 44px;
  --playerbar-h: 56px;
  --sidebar-w: 0px;
}

/* 固定顶部标题栏：显示"拾音"，内容全部在它下面 */
html.mobile .titlebar {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  z-index: 130;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

html.mobile .titlebar-controls {
  display: none;
}

html.mobile .app-root {
  padding-top: 44px;
  padding-bottom: 52px;
}

html.mobile .app-body {
  flex-direction: column;
}

html.mobile .sidebar {
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 52px;
  flex-direction: row;
  padding: 0;
  border-right: none;
  border-top: 1px solid var(--border);
  z-index: 120;
  background: var(--bg-elevated);
}

html.mobile .nav-list {
  flex-direction: row;
  flex: 1;
  gap: 0;
}

html.mobile .nav-item {
  flex-direction: column;
  gap: 2px;
  padding: 6px 2px;
  font-size: 10px;
  justify-content: center;
  border-radius: 0;
}

html.mobile .nav-icon {
  font-size: 16px;
  width: auto;
}

html.mobile .sidebar-footer {
  display: none;
}

html.mobile .main-area {
  padding: 10px 12px calc(var(--playerbar-h) + 52px);
}

html.mobile .view-header {
  margin-top: 2px;
}

html.mobile .view-title {
  font-size: 20px;
  margin-bottom: 10px;
}

html.mobile .song-album,
html.mobile .song-source {
  display: none;
}

html.mobile .player-bar {
  height: var(--playerbar-h);
}

html.mobile .pb-inner {
  padding: 0 6px;
  max-width: 100%;
}

html.mobile .con-btn {
  width: 104px;
  flex-shrink: 0;
}

html.mobile .btn-play {
  left: 50%;
}

html.mobile .vol {
  display: none;
}

html.mobile .pb-queue-btn {
  display: none;
}

html.mobile .progress {
  margin: 0 4px;
}

html.mobile .mkpgb-title {
  font-size: 11px;
}

html.mobile .mkpgb-timeleft,
html.mobile .mkpgb-timeright {
  font-size: 10px;
  top: calc(50% + 6px);
}

html.mobile .np-content {
  padding: 12px 14px;
  gap: 10px;
}

html.mobile .cover {
  width: 38vmin;
  height: 38vmin;
  min-width: 96px;
  min-height: 96px;
}

html.mobile .music-cover {
  width: 100%;
  height: 100%;
}

html.mobile .cover:after {
  left: 4.8%;
  top: 0;
  width: 108%;
  height: 97%;
  background-size: 100% 100%;
}

html.mobile .np-title {
  font-size: 16px;
}

html.mobile .np-artist {
  font-size: 12px;
}

html.mobile .np-lyric {
  font-size: 13px;
  line-height: 26px;
  padding: 8px 10px;
}

html.mobile .np-download {
  margin-top: 8px;
  padding: 6px 16px;
  font-size: 12px;
}

html.mobile .now-playing {
  min-height: 0;
}

html.mobile .lyrics-panel,
html.mobile .queue-panel {
  top: 0;
  bottom: var(--playerbar-h);
  width: 100%;
}

html.mobile .np-lyric #lyric .lrc-item {
  font-size: 12px;
}

/* 保证窄屏不出现横向滚动 */
html.mobile body,
html.mobile .app-root,
html.mobile .main-area,
html.mobile .pb-inner {
  overflow-x: hidden;
}

/* ============ Mobile polish ============ */
html.mobile {
  --mobile-nav-h: 68px;
  --mobile-player-h: 86px;
  --titlebar-h: 58px;
  --playerbar-h: var(--mobile-player-h);
  background: var(--bg);
}

html.mobile body {
  background: var(--bg);
  font-size: 14px;
}

html.mobile .app-root {
  padding: 0;
  min-height: 100%;
}

html.mobile .titlebar {
  top: env(safe-area-inset-top, 0px);
  height: var(--titlebar-h);
  padding: 0 18px;
  background: rgba(13, 14, 17, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

html.mobile .titlebar-brand {
  padding-left: 0;
  gap: 10px;
  color: #f4f6f5;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

html.mobile .brand-dot {
  width: 9px;
  height: 9px;
}

html.mobile .app-body { min-height: 0; }

html.mobile .main-area {
  width: 100%;
  padding: calc(var(--titlebar-h) + env(safe-area-inset-top, 0px) + 18px) 16px calc(var(--mobile-player-h) + var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px) + 20px);
  overflow-y: auto;
}

html.mobile .view-title {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 18px;
}

html.mobile .view-header { margin: 0; }

/* 收藏页移动端头部：标题一行，按钮一排不换行 */
html.mobile .fav-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

html.mobile .fav-header .view-title {
  white-space: nowrap;
  font-size: 20px;
}

html.mobile .fav-header .download-actions {
  width: 100%;
  display: flex;
  gap: 8px;
}

html.mobile .fav-header .download-actions .ghost-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 13px;
  padding: 9px 12px;
}

html.mobile .fav-header .download-actions .manage-wrap {
  flex: 1;
  position: relative;
}

html.mobile .fav-header .download-actions .manage-wrap > .ghost-btn {
  width: 100%;
}

.manage-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 50;
  min-width: 150px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.manage-item {
  text-align: left;
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.12s;
}

.manage-item:hover {
  background: var(--bg-hover);
}

.manage-item.danger {
  color: var(--danger);
}

html.mobile .search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 10px;
  margin-bottom: 14px;
}

html.mobile .search-input,
html.mobile .primary-btn {
  height: 54px;
  border-radius: 16px;
}

html.mobile .search-input {
  min-width: 0;
  padding: 0 16px;
  font-size: 16px;
  background: var(--bg-elevated);
  border-color: var(--border);
}

html.mobile .primary-btn {
  padding: 0 10px;
  font-size: 16px;
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(211, 169, 181, 0.18);
}

html.mobile .hint-text {
  padding: 56px 18px;
  color: #777b84;
  font-size: 15px;
  line-height: 1.6;
}

html.mobile .song-list { gap: 6px; }
html.mobile .song-row { gap: 12px; padding: 10px 12px; min-height: 66px; border-radius: 12px; }
html.mobile .song-cover {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
html.mobile .song-num { width: 22px; font-size: 12px; font-weight: 500; }
html.mobile .song-row.current {
  background: linear-gradient(90deg, rgba(211, 169, 181, 0.12), transparent 60%);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
}
html.mobile .song-name { font-size: 14.5px; font-weight: 500; }
html.mobile .song-sub { font-size: 12.5px; }

html.mobile .player-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: var(--mobile-nav-h);
  height: var(--mobile-player-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  z-index: 125;
}

html.mobile .pb-inner { height: 100%; padding: 0 14px; }
html.mobile .con-btn { width: 112px; }
html.mobile .btn-prev { left: 2px; }
html.mobile .btn-play { left: 50%; }
html.mobile .btn-next { right: 26px; }
html.mobile .btn-order { right: 0; }
html.mobile .progress { margin: 0 0 0 12px; }
html.mobile .progress-box { left: 0; top: 50%; }
html.mobile .mkpgb-title { bottom: calc(100% + 4px); font-size: 12px; }
html.mobile .mkpgb-bar,
html.mobile .mkpgb-cur { height: 3px; }
html.mobile .mkpgb-dot { width: 11px; height: 11px; }
html.mobile .mkpgb-timeleft,
html.mobile .mkpgb-timeright { top: calc(50% + 10px); font-size: 11px; }

html.mobile .sidebar {
  top: auto;
  bottom: 0;
  height: calc(var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  z-index: 130;
}

html.mobile .nav-item {
  gap: 4px;
  padding: 8px 1px 5px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 500;
}

html.mobile .nav-item.active { color: var(--text); background: transparent; }
html.mobile .nav-item.active .nav-icon { color: var(--accent); transform: translateY(-1px); }
html.mobile .nav-icon { font-size: 19px; }

html.mobile .queue-panel {
  top: calc(var(--titlebar-h) + env(safe-area-inset-top, 0px));
  bottom: calc(var(--mobile-player-h) + var(--mobile-nav-h));
  width: 100%;
  z-index: 140;
}

/* Mobile uses one calm search surface; the desktop chrome is intentionally hidden. */
html.mobile {
  --mobile-nav-h: 66px;
  --mobile-player-h: 92px;
}

html.mobile .titlebar { display: none !important; }

html.mobile .main-area {
  padding-top: calc(env(safe-area-inset-top, 0px) + 26px);
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: calc(var(--mobile-player-h) + var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px) + 18px);
}

html.mobile .view-title {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
  color: #f1f3f2;
}

html.mobile .search-bar {
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 8px;
  margin-bottom: 16px;
}

html.mobile .search-input,
html.mobile .primary-btn {
  height: 48px;
  border-radius: 14px;
}

html.mobile .search-input {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 15px;
  padding-left: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238a8f98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 20px 20px;
}

html.mobile .search-input:focus {
  box-shadow: 0 0 0 3px rgba(211, 169, 181, 0.12);
}

html.mobile .primary-btn {
  font-size: 15px;
  box-shadow: none;
}

html.mobile .hint-text {
  padding: 72px 12px;
  font-size: 14px;
}

html.mobile .player-bar {
  background: var(--bg-elevated);
  border-top-color: var(--border);
}

html.mobile .player-bar {
  height: var(--mobile-player-h);
  display: block;
}

html.mobile .pb-inner { display: none; }

html.mobile .mobile-player {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 14px;
}

html.mobile .mobile-player-main {
  display: flex;
  width: 100%;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

html.mobile .mobile-progress {
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  margin: 0 -6px 2px;
  padding: 0 6px;
  z-index: 5;
}

html.mobile .mobile-progress-track {
  position: relative;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--bg-active);
}

html.mobile .mobile-progress-cur {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 3px;
  background: var(--accent);
  transition: width 0.1s linear;
}

html.mobile .mobile-progress-dot {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-left: -5.5px;
  margin-top: -5.5px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 6px var(--accent);
}

html.mobile .mobile-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  flex: 0 0 auto;
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1;
}

html.mobile .mobile-cover-edge {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), transparent 70%);
}

html.mobile .mobile-cover {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  overflow: hidden;
  color: #b9c1bf;
  font-size: 17px;
  border-radius: 10px;
  background: linear-gradient(145deg, #2c3535, #1b2023);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

html.mobile .mobile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.mobile .mobile-song-info {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  text-align: left;
}

html.mobile .mobile-song-info strong,
html.mobile .mobile-song-info span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

html.mobile .mobile-song-info strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  max-width: calc(100% - 20px);
}

html.mobile .mobile-song-info span {
  color: var(--text-dim);
  font-size: 11px;
}

html.mobile .mobile-control,
html.mobile .mobile-play {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 0;
  place-items: center;
  color: #d8dce0;
}

html.mobile .mobile-up-hint {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  fill: var(--text-faint);
  opacity: 0.7;
  pointer-events: none;
}

html.mobile .mobile-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

html.mobile .mobile-control svg,
html.mobile .mobile-play svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

html.mobile .mobile-play {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  color: #0d1713;
  border-radius: 50%;
  background: var(--accent);
}

html.mobile .mobile-play svg { width: 20px; height: 20px; }

html.mobile .con-btn { width: 126px; }
html.mobile .progress { margin-left: 8px; }
html.mobile .progress-box { height: 34px; margin-top: -17px; }
html.mobile .mkpgb-title { display: none; }
html.mobile .mkpgb-timeleft,
html.mobile .mkpgb-timeright { top: calc(50% + 9px); color: #858992; }
html.mobile .mkpgb-bar { background: var(--bg-active); }
html.mobile .mkpgb-cur { background: var(--accent); }

html.mobile .player-btn {
  width: 30px;
  height: 36px;
  margin-top: -18px;
  background-image: none;
  opacity: 1;
  display: grid;
  place-items: center;
  color: #d9dce0;
  font-family: system-ui, sans-serif;
  font-size: 21px;
}

html.mobile .player-btn::before { line-height: 1; }
html.mobile .btn-prev { left: 0; }
html.mobile .btn-prev::before { content: '‹‹'; letter-spacing: -7px; }
html.mobile .btn-play { left: 50%; margin-left: -15px; font-size: 18px; }
html.mobile .btn-play::before { content: '▶'; }
html.mobile .btn-play.btn-state-paused::before { content: 'Ⅱ'; font-size: 21px; }
html.mobile .btn-next { right: 31px; }
html.mobile .btn-next::before { content: '››'; letter-spacing: -7px; }
html.mobile .btn-order { right: 0; font-size: 19px; }
html.mobile .btn-order::before { content: '↻'; }
html.mobile .btn-order-single::before { content: '1↻'; font-size: 14px; }
html.mobile .btn-order-random::before { content: '⤨'; }

html.mobile .sidebar {
  background: var(--bg-elevated);
  border-top-color: var(--border);
}

html.mobile .nav-item { font-size: 10px; }
html.mobile .nav-icon { font-size: 18px; }

html.mobile .queue-panel {
  top: env(safe-area-inset-top, 0px);
  bottom: calc(var(--mobile-player-h) + var(--mobile-nav-h));
}

/* ============ 底部菜单栏重设计（5 tab + 更多面板） ============ */
.nav-svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

/* 移动端：隐藏桌面导航，展示底部 5 tab */
html.mobile .desktop-nav {
  display: none !important;
}

html.mobile .sidebar-footer {
  display: none !important;
}

.mobile-nav {
  display: none;
}

html.mobile .mobile-nav {
  display: flex;
  flex: 1;
  align-items: stretch;
}

html.mobile .mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 2px 5px;
  color: #8d9098;
  font-size: 10px;
  font-weight: 500;
  border-radius: 0;
  position: relative;
  transition: color 0.15s;
}

html.mobile .mobile-nav-item .nav-svg {
  width: 22px;
  height: 22px;
  transition: transform 0.15s;
}

html.mobile .mobile-nav-item.active {
  color: #fff;
  background: transparent;
}

html.mobile .mobile-nav-item.active .nav-svg {
  color: var(--accent);
  transform: translateY(-1px);
}

/* 选中指示条 */
html.mobile .mobile-nav-item.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--accent);
}

html.mobile .mobile-nav-item:active {
  opacity: 0.7;
}

/* ============ 更多面板 ============ */
.more-sheet {
  display: none;
}

html.mobile .more-sheet {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 160;
}

html.mobile .more-sheet-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-panel);
  border-radius: 18px 18px 0 0;
  padding-bottom: calc(var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px) + 12px);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
}

html.mobile .sheet-handle {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--bg-active);
  margin: 10px auto 6px;
}

html.mobile .more-list {
  display: flex;
  flex-direction: column;
  padding: 4px 20px;
}

html.mobile .more-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 6px;
  font-size: 15px;
  color: #e8e8e8;
  text-align: left;
  border-bottom: 1px solid #23252c;
  transition: background 0.15s;
}

html.mobile .more-item:active {
  background: var(--bg-active);
}

html.mobile .more-item .nav-svg {
  width: 20px;
  height: 20px;
  color: #8d9098;
}

html.mobile .more-settings {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 22px;
}

html.mobile .more-sheet .credit {
  margin: 6px 20px 0;
  text-align: center;
}

/* 更多面板过渡动画 */
.sheet-enter-active,
.sheet-leave-active {
  transition: opacity 0.22s ease;
}

.sheet-enter-active .more-sheet-inner,
.sheet-leave-active .more-sheet-inner {
  transition: transform 0.26s ease;
}

.sheet-enter-from,
.sheet-leave-to {
  opacity: 0;
}

.sheet-enter-from .more-sheet-inner,
.sheet-leave-to .more-sheet-inner {
  transform: translateY(100%);
}

/* ============ 更多页面 ============ */
.more-group {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 16px;
  margin-bottom: 14px;
}

.more-group-title {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 600;
  padding: 12px 0 6px;
}

.more-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  font-size: 14px;
  color: var(--text);
  width: 100%;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.more-row:last-child {
  border-bottom: none;
}

.more-row select {
  background: var(--bg-hover);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 13px;
}

.more-arrow {
  color: var(--text-faint);
  font-size: 20px;
  line-height: 1;
}

.more-value {
  color: var(--text-dim);
  font-size: 13px;
}

.more-row .ghost-btn {
  padding: 5px 14px;
  font-size: 12px;
}

.accent-picker {
  display: flex;
  gap: 8px;
  align-items: center;
}

.accent-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.accent-dot.active {
  border-color: var(--text);
  box-shadow: 0 0 0 2px var(--bg-panel) inset;
}

.more-tip {
  font-size: 12px;
  color: var(--text-faint);
  padding: 8px 0 4px;
  line-height: 1.6;
}

.sleep-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0 4px;
}

.sleep-opts .ghost-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* 关于软件 */
.about-badge {
  font-size: 11px;
  color: var(--accent);
  background: rgba(211, 169, 181, 0.12);
  border: 1px solid rgba(211, 169, 181, 0.35);
  border-radius: 10px;
  padding: 3px 10px;
  white-space: nowrap;
}

.about-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.about-pioneer {
  font-size: 11px;
  color: var(--accent);
  background: rgba(211, 169, 181, 0.12);
  border: 1px solid rgba(211, 169, 181, 0.35);
  border-radius: 8px;
  padding: 2px 8px;
}

/* ============ 关于页 ============ */
.about-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px 40px;
}

.about-logo {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent, #31c27c), #1fa565);
  margin-bottom: 16px;
}

.about-app {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 6px;
  color: var(--text, #e8e8e8);
}

.about-slogan {
  margin-top: 8px;
  font-size: 12px;
  color: #8c929a;
}

.about-info {
  margin-top: 26px;
  width: 100%;
  max-width: 460px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.about-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-row:last-child {
  border-bottom: none;
}

.about-k {
  font-size: 13px;
  color: #8c929a;
}

.about-v {
  font-size: 13px;
  font-weight: 600;
  color: var(--text, #e8e8e8);
}

.about-foot {
  margin-top: 22px;
  font-size: 11px;
  color: #6b7280;
  text-align: center;
  max-width: 460px;
  line-height: 1.7;
}

/* ============ 云控 ============ */
.cloud-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(211, 169, 181, 0.14);
  border-bottom: 1px solid rgba(211, 169, 181, 0.3);
  color: var(--text, #e8e8e8);
  font-size: 13px;
}

.cloud-notice-btn {
  padding: 2px 10px !important;
  font-size: 12px !important;
}

.cloud-mask {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101013;
}

.cloud-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 40px;
  border: 1px solid var(--border, #2e2f34);
  border-radius: 16px;
  background: var(--bg-elevated, #202126);
  max-width: 420px;
  text-align: center;
}

.cloud-icon {
  font-size: 40px;
}

.cloud-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text, #e8e8e8);
}

.cloud-sub {
  font-size: 12px;
  color: var(--text-dim, #a8a8ae);
}

html.mobile .more-group {
  border-radius: 12px;
}

/* ============ 返回按钮 ============ */
.back-btn {
  display: none;
}

html.mobile .back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 0;
  border-radius: 10px;
  color: var(--text-dim);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
}

html.mobile .back-btn svg {
  width: 20px;
  height: 20px;
}

html.mobile .back-btn:active {
  color: var(--text);
  background: var(--bg-hover);
}

html.mobile .view-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

html.mobile .view-header-left .view-title {
  margin-bottom: 0;
}

/* ============ 下载页重设计 ============ */
.download-item {
  gap: 14px;
  padding: 12px 16px;
}

.download-cover {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--text-faint);
  font-size: 20px;
  background: linear-gradient(145deg, #2c3535, #1b2023);
}

.download-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-name {
  font-size: 14px;
  font-weight: 600;
}

.download-artist {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.download-progress {
  margin-top: 8px;
}

.download-progress .progress-track {
  height: 4px;
  border-radius: 2px;
  background: var(--bg-active);
  overflow: hidden;
}

.download-progress .progress-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.2s;
}

.download-status {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-dim);
}

.dl-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 10px;
  color: var(--text-dim);
  background: var(--bg-hover);
  border: 1px solid var(--border);
}

.dl-badge.done {
  color: var(--accent);
  border-color: rgba(211, 169, 181, 0.4);
  background: rgba(211, 169, 181, 0.1);
}

.dl-badge.error {
  color: var(--danger);
  border-color: rgba(229, 72, 77, 0.4);
  background: rgba(229, 72, 77, 0.1);
}

.dl-badge.cancelled {
  color: var(--text-faint);
}

html.mobile .download-item {
  border-radius: 14px;
}

/* ============ 歌单搜索 ============ */
.search-mode-row {
  margin-bottom: 14px;
}

.search-mode-seg {
  display: flex;
  width: 100%;
  max-width: 240px;
  padding: 3px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  position: relative;
}

.search-mode-seg-item {
  flex: 1;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-dim);
  border-radius: 9px;
  text-align: center;
  transition: color 0.2s, background 0.2s;
}

.search-mode-seg-item.active {
  color: #fff;
  background: var(--accent);
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(211, 169, 181, 0.3);
}

/* ============ 搜索筛选下拉（单曲/合集 + 音源） ============ */
.filter-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.filter-box {
  flex: 1;
  min-width: 0;
  position: relative;
}

.filter-select {
  width: 100%;
  height: 44px;
  padding: 0 32px 0 14px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8f98' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 16px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(211, 169, 181, 0.12);
}

.filter-box.mode-box {
  flex: 0 0 118px;
}

html.mobile .filter-row {
  gap: 10px;
  margin-bottom: 16px;
}

html.mobile .filter-select {
  height: 46px;
  font-size: 14px;
  border-radius: 12px;
  background-color: var(--bg-elevated);
}

html.mobile .filter-box.mode-box {
  flex: 0 0 124px;
}

.playlist-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
  content-visibility: auto;
  contain-intrinsic-size: auto 74px;
}

.playlist-item:active {
  background: var(--bg-hover);
}

.playlist-cover {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg-active);
}

.playlist-main {
  flex: 1;
  min-width: 0;
}

.playlist-name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 3px;
}

.playlist-desc {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-arrow {
  color: var(--text-faint);
  font-size: 20px;
}

/* 歌单详情弹层 */
.playlist-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.playlist-modal-inner {
  width: 100%;
  max-width: 520px;
  max-height: 85%;
  background: var(--bg-panel);
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.playlist-modal-head {
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.playlist-head-main {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 34px;
}

.playlist-head-cover {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-hover);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.playlist-head-info {
  min-width: 0;
  flex: 1;
}

.playlist-modal-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-modal-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 5px;
}

.playlist-modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.pl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  transition: all 0.15s;
}

.pl-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.pl-btn:hover {
  background: var(--bg-hover);
  border-color: var(--text-faint);
}

.pl-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pl-btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

.pl-btn-primary:hover {
  background: var(--accent-hover);
}

html.mobile .pl-btn {
  flex: 1;
  justify-content: center;
  padding: 10px 8px;
}

.pl-btn-primary {
  flex: 0 0 auto;
}

.playlist-modal-list {
  overflow-y: auto;
  padding: 8px;
  flex: 1;
}

.remap-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
}

.remap-select {
  flex: 1;
  background: var(--bg-hover);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
}

.remap-progress {
  font-size: 12px;
  color: var(--text-dim);
  padding: 0 10px 8px;
  text-align: center;
}

.kg-code-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.kg-code-row .search-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
}

.kg-code-row .ghost-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

html.mobile .playlist-modal-inner {
  max-height: 90%;
  border-radius: 16px 16px 0 0;
}

/* ============ 多收藏列表 ============ */
.new-list-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.new-list-row .search-input {
  flex: 1;
  padding: 10px 14px;
}

.new-list-row .primary-btn {
  padding: 0 20px;
}

.fav-list-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.fav-list-select {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 34px 0 12px;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8f98' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 16px 16px;
}

.fav-list-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(211, 169, 181, 0.12);
}

.fav-list-row .ghost-btn {
  padding: 0 14px;
  height: 40px;
  font-size: 13px;
  white-space: nowrap;
}

html.mobile .fav-list-row .ghost-btn {
  flex: 0 0 auto;
}

/* ============ 免责声明 ============ */
.disclaimer-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.disclaimer-box {
  width: 100%;
  max-width: 720px;
  max-height: 90%;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.disclaimer-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 18px 20px 10px;
  color: var(--text);
}

.disclaimer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 22px 10px;
  line-height: 1.8;
  font-size: 13.5px;
  color: var(--text-dim);
}

.disclaimer-body h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 16px 0 6px;
}

.disclaimer-body p {
  margin: 8px 0;
  text-align: justify;
}

.disclaimer-note {
  color: var(--accent);
  font-weight: 600;
}

.disclaimer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
}

.disclaimer-count {
  font-size: 13px;
  color: var(--text-dim);
}

.disclaimer-footer .primary-btn {
  padding: 10px 22px;
  font-size: 14px;
}

.disclaimer-footer .primary-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

html.mobile .disclaimer-box {
  max-height: 92%;
  border-radius: 14px;
}

html.mobile .disclaimer-body {
  font-size: 13px;
  padding: 0 16px 8px;
}

/* 免责声明口令跳过 */
.disclaimer-pass {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 14px;
  border-top: 1px solid var(--border);
}

.disclaimer-pass .ghost-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.disclaimer-pass .search-input {
  flex: 1;
  padding: 10px 14px;
}

.disclaimer-pass .auth-err {
  font-size: 12px;
  color: var(--danger);
}

/* ============ 授权锁 ============ */
.auth-mask {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-box {
  width: 100%;
  max-width: 420px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
}

.auth-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 26px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(211, 169, 181, 0.3);
}

.auth-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
}

.auth-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.5;
}

.auth-device {
  margin: 20px 0 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: left;
}

.auth-device-label {
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 6px;
}

.auth-device-code {
  font-size: 11px;
  color: var(--accent);
  word-break: break-all;
  line-height: 1.5;
  font-family: ui-monospace, monospace;
}

.auth-copy {
  margin-top: 8px;
  font-size: 12px;
  padding: 6px 14px;
}

.auth-input-row {
  margin-top: 14px;
}

.auth-input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
}

.auth-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(211, 169, 181, 0.12);
}

.auth-err {
  font-size: 13px;
  color: var(--danger);
  margin-top: 10px;
}

.auth-btn {
  width: 100%;
  margin-top: 16px;
  height: 48px;
  font-size: 15px;
}

.auth-hint {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 14px;
}

.auth-js-error {
  margin-top: 16px;
  text-align: left;
  background: rgba(229, 72, 77, 0.08);
  border: 1px solid rgba(229, 72, 77, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  max-height: 120px;
  overflow: auto;
}

.auth-js-error-label {
  font-size: 11px;
  color: var(--danger);
  margin-bottom: 6px;
}

.auth-js-error-text {
  font-size: 10px;
  color: var(--text-dim);
  font-family: ui-monospace, monospace;
  white-space: pre-wrap;
  word-break: break-all;
}

/* 授权成功覆盖层：透明背景，仅显示动画，不遮挡主界面 */
.auth-ok-mask {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 16, 19, 0.55);
  pointer-events: none;
}

.auth-ok-mask .auth-success {
  animation: none;
}

/* 授权成功动画 */
.auth-success {
  text-align: center;
  animation: authSuccess 2s ease forwards;
}

.success-ring {
  width: 100px;
  height: 100px;
  margin: 24px auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(211, 169, 181, 0.12);
}

.success-check {
  width: 80px;
  height: 80px;
}

.success-check .check-circle {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transform: rotate(-90deg);
  transform-origin: center;
  animation: drawCircle 0.7s ease-out forwards;
}

.success-check .check-mark {
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawMark 0.5s 0.6s ease-out forwards;
}

.auth-success-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  animation: fadeUp 0.5s 0.7s ease forwards;
  opacity: 0;
}

.auth-success-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
  animation: fadeUp 0.5s 0.9s ease forwards;
  opacity: 0;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawMark {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes authSuccess {
  0% { transform: scale(0.9); opacity: 0; }
  20% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.auth-pop-enter-active,
.auth-pop-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.auth-pop-enter-from,
.auth-pop-leave-to {
  opacity: 0;
  transform: scale(0.92);
}

/* 授权失败抖动 */
.auth-err.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ============ 通用界面动画 ============ */

/* 歌单/列表行交错入场 */
.row-in {
  animation: rowIn 0.35s ease both;
}

@keyframes rowIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 收藏爱心弹跳 */
.fav-btn.active {
  animation: heartPop 0.4s ease;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.4); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* 播放页封面：不做旋转（去掉原有动画） */
.cover.spinning {
  animation: none;
}

/* 播放按钮脉冲（仅当前演唱/有歌时） */
.mobile-play {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mobile-play:active {
  transform: scale(0.9);
}

/* 页面标题入场 */
.view-title {
  animation: titleIn 0.4s ease;
}

@keyframes titleIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 底部导航激活icon上浮缓冲 */
.nav-icon {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 卡片/面板轻微悬浮 */
.source-card,
.download-item,
.playlist-item,
.more-group {
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.source-card:hover,
.playlist-item:hover,
.more-group:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* =====================================================================
 * ECHO ������ϵͳ����� ECHOAndroid����ʯī���� + ��õ�� + Һ̬����
 * ׷�Ӹ��ǲ㣬���������ƶ��ˣ�html.mobile��
 * ===================================================================== */

/* ȫ��ʯī���䱳�� */
html.mobile body,
html.mobile .app-root {
  background:
    radial-gradient(1200px 600px at 15% -5%, rgba(211,169,181,0.06f), transparent 60%),
    linear-gradient(180deg, #19191d 0%, #1d1d21 38%, #202126 70%, #151519 100%);
}

/* �ײ���������Һ̬���� */
html.mobile .sidebar {
  background: rgba(26,26,30,0.82f);
  backdrop-filter: blur(22px) saturate(1.2f);
  -webkit-backdrop-filter: blur(22px) saturate(1.2f);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -12px 40px rgba(0,0,0,0.35);
}

html.mobile .mobile-nav-item {
  color: rgba(255,255,255,0.62f);
  transition: color 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
html.mobile .mobile-nav-item.active {
  color: var(--accent);
  transform: translateY(-2px);
}
html.mobile .mobile-nav-item.active .nav-svg { color: var(--accent); }
html.mobile .nav-item.active .nav-icon { color: var(--accent); }

/* ���������� */
html.mobile .view-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.96f);
}
html.mobile .main-area {
  background: transparent;
}

/* ���������ԵĻ��� */
html.mobile .about-badge {
  color: var(--accent);
  background: rgba(211,169,181,0.14f);
  border: 1px solid rgba(211,169,181,0.24f);
}

/* ============ ����ҳ ============ */
html.mobile .search-input {
  background: rgba(255,255,255,0.055f);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06f);
  color: rgba(255,255,255,0.92f);
  font-weight: 500;
}
html.mobile .search-input::placeholder { color: rgba(255,255,255,0.42f); }
html.mobile .search-input:focus {
  border-color: rgba(211,169,181,0.5f);
  box-shadow: 0 0 0 3px rgba(211,169,181,0.14f), inset 0 1px 0 rgba(255,255,255,0.06f);
}
html.mobile .primary-btn {
  background: linear-gradient(135deg, #d3a9b5, #b98a98);
  border-radius: 16px;
  font-weight: 700;
  color: #261a20;
  box-shadow: 0 8px 22px rgba(211,169,181,0.30f);
}
html.mobile .primary-btn:hover { background: linear-gradient(135deg, #e4c4cc, #c99aa8); }

/* ����/�ϼ� + ��Դ ������Һ̬������ */
html.mobile .filter-select {
  background: rgba(255,255,255,0.055f);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: rgba(255,255,255,0.9f);
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05f);
}
html.mobile .filter-box.mode-box { flex: 0 0 118px; }

/* ������ʾ���� */
html.mobile .hint-text { color: rgba(255,255,255,0.45f); }

/* �����У�������Ƭ */
html.mobile .song-list { gap: 10px; }
html.mobile .song-row {
  background: rgba(42,43,48,0.40f);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 12px;
  min-height: 64px;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
html.mobile .song-row:active { transform: scale(0.985); background: rgba(255,255,255,0.07f); }
html.mobile .song-row.current {
  background: linear-gradient(90deg, rgba(211,169,181,0.18f), rgba(211,169,181,0.03f));
  border-color: rgba(211,169,181,0.28f);
}
html.mobile .song-cover { border-radius: 10px; border: 1px solid rgba(255,255,255,0.08f); }
html.mobile .song-name { font-weight: 600; color: rgba(255,255,255,0.95f); }
html.mobile .song-sub { color: rgba(255,255,255,0.52f); }
html.mobile .song-num { color: rgba(255,255,255,0.38f); font-weight: 600; }
html.mobile .row-btn { color: rgba(255,255,255,0.62f); }
html.mobile .row-btn:hover { background: rgba(255,255,255,0.08f); color: #fff; }
html.mobile .fav-btn.active { color: #d3a9b5; }

/* ============ ����ҳ��NowPlaying������������ ============ */
html.mobile .now-playing { background: transparent; }
html.mobile .np-blur.has {
  filter: blur(46px) saturate(1.3f);
  transform: scale(1.25);
  opacity: 0.62;
}
html.mobile .np-blur { margin: -20px; }
html.mobile .np-shade {
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(25,25,29,0.30f), transparent 60%),
    linear-gradient(180deg, rgba(21,21,25,0.35f), rgba(21,21,25,0.92f));
}
html.mobile .cover {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08f);
}
html.mobile .np-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
html.mobile .np-artist { color: rgba(255,255,255,0.78f); }

/* �ײ����������� */
html.mobile .np-actions {
  background: rgba(32,33,38,0.55f);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 6px;
  gap: 8px;
  margin-top: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
html.mobile .np-actions .np-download {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.9f);
  font-weight: 600;
}
html.mobile .np-actions .np-download:hover { background: rgba(255,255,255,0.08f); }
html.mobile .np-actions .np-download.np-switch { color: var(--accent); }
html.mobile .np-download.switching { opacity: 0.6; }

/* ����ҳ������������ */
html.mobile .np-meta { padding: 0 4px; }
html.mobile .np-source { color: var(--accent); background: rgba(211,169,181,0.16f); border-color: rgba(211,169,181,0.28f); }

/* ��� */
html.mobile .np-lyric #lyric .lrc-item { color: rgba(255,255,255,0.55f); }
html.mobile .np-lyric #lyric .lrc-item.lplaying { color: var(--accent-hover); font-weight: 700; }

/* ============ С���������ײ�����Һ̬���� ============ */
html.mobile .player-bar {
  background: rgba(26,26,30,0.85f);
  backdrop-filter: blur(22px) saturate(1.2f);
  -webkit-backdrop-filter: blur(22px) saturate(1.2f);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
}
html.mobile .mobile-cover-edge {
  background: linear-gradient(135deg, rgba(211,169,181,0.6f), rgba(211,169,181,0.1f));
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
html.mobile .mobile-song-info strong { color: rgba(255,255,255,0.95f); font-weight: 700; }
html.mobile .mobile-song-info span { color: rgba(255,255,255,0.5f); }
html.mobile .mobile-time { color: rgba(255,255,255,0.5f); }
html.mobile .mobile-play { background: var(--accent); color: #261a20; box-shadow: 0 4px 16px rgba(211,169,181,0.35f); }
html.mobile .mobile-control { color: rgba(255,255,255,0.8f); }
html.mobile .mobile-progress-track { background: rgba(255,255,255,0.14f); }
html.mobile .mobile-progress-cur { background: var(--accent); }
html.mobile .mobile-progress-dot { background: var(--accent-hover); box-shadow: 0 0 8px rgba(211,169,181,0.7f); }

/* ============ ���Ŷ��� ============ */
html.mobile .queue-panel {
  background: rgba(26,26,30,0.88f);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-left: 1px solid var(--glass-border);
}
html.mobile .queue-item:hover { background: rgba(255,255,255,0.06f); }
html.mobile .queue-item.current { background: rgba(211,169,181,0.14f); }

/* ============ �赥���� ============ */
html.mobile .playlist-modal-inner {
  background: rgba(28,29,33,0.92f);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border-top: 1px solid var(--glass-border);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
}
html.mobile .playlist-modal-title { font-weight: 800; color: rgba(255,255,255,0.96f); }
html.mobile .playlist-head-cover { border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
html.mobile .pl-btn { background: rgba(255,255,255,0.06f); border: 1px solid var(--glass-border); }
html.mobile .pl-btn-primary { background: linear-gradient(135deg, #d3a9b5, #b98a98); color: #261a20; font-weight: 700; }
html.mobile .playlist-fav-all, html.mobile .playlist-play-all {
  background: rgba(255,255,255,0.06f); border: 1px solid var(--glass-border); border-radius: 14px;
}
html.mobile .remap-row { background: rgba(255,255,255,0.05f); border-radius: 14px; }
html.mobile .remap-select { background: rgba(32,33,38,0.6f); border: 1px solid var(--glass-border); border-radius: 10px; color: rgba(255,255,255,0.9f); }
html.mobile .playlist-modal-list .song-list { gap: 8px; }
html.mobile .playlist-modal-list .song-row { background: rgba(255,255,255,0.045f); }
html.mobile .playlist-modal-list .song-row.current { background: linear-gradient(90deg, rgba(211,169,181,0.16f), rgba(211,169,181,0.02f)); }

/* ============ �赥�б������������ ============ */
html.mobile .playlist-item {
  background: rgba(42,43,48,0.4f);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
html.mobile .playlist-cover { border-radius: 12px; }
html.mobile .playlist-name { font-weight: 600; color: rgba(255,255,255,0.95f); }
html.mobile .playlist-sub { color: rgba(255,255,255,0.5f); }

/* ============ �ղ�ҳ ============ */
html.mobile .fav-header .download-actions .ghost-btn,
html.mobile .fav-list-row .ghost-btn {
  background: rgba(255,255,255,0.06f);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: rgba(255,255,255,0.85f);
}
html.mobile .fav-list-select {
  background: rgba(255,255,255,0.06f);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: rgba(255,255,255,0.9f);
  font-weight: 600;
}
html.mobile .manage-item { color: rgba(255,255,255,0.9f); }
html.mobile .manage-item:hover { background: rgba(255,255,255,0.07f); }
html.mobile .manage-menu {
  background: rgba(42,43,48,0.92f);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ============ ͨ�ð�ť capsul ============ */
html.mobile .ghost-btn {
  border-color: var(--glass-border);
  color: rgba(255,255,255,0.82f);
  background: rgba(255,255,255,0.04f);
}
html.mobile .ghost-btn:hover { border-color: rgba(211,169,181,0.4f); color: var(--accent-hover); }
html.mobile .ghost-btn.danger:hover { color: var(--danger); border-color: var(--danger); }

/* ============ ����ҳ ============ */
html.mobile .download-item {
  background: rgba(42,43,48,0.4f);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
html.mobile .download-item.done { border-color: rgba(211,169,181,0.3f); }
html.mobile .download-progress .progress-fill { background: var(--accent); }
html.mobile .dl-badge.done { background: rgba(155,91,106,0.3f); color: var(--accent-hover); }

/* ============ ��Դҳ ============ */
html.mobile .source-card {
  background: rgba(42,43,48,0.4f);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
html.mobile .source-card.active { border-color: rgba(211,169,181,0.4f); box-shadow: 0 0 0 1px rgba(211,169,181,0.25f); }
html.mobile .source-import-btn {
  background: linear-gradient(135deg, #d3a9b5, #b98a98);
  color: #261a20;
  border: none;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(211,169,181,0.3f);
}
html.mobile .source-setting-card { background: rgba(42,43,48,0.4f); border: 1px solid var(--glass-border); border-radius: 18px; }

/* ============ ����ҳ ============ */
html.mobile .more-group {
  background: rgba(42,43,48,0.4f);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px 16px;
}
html.mobile .more-group-title { color: rgba(255,255,255,0.42f); font-weight: 700; letter-spacing: 0.3px; }
html.mobile .more-row { color: rgba(255,255,255,0.9f); }
html.mobile .more-row select { background: rgba(32,33,38,0.6f); border: 1px solid var(--glass-border); border-radius: 10px; color: rgba(255,255,255,0.9f); }
html.mobile .more-value { color: rgba(255,255,255,0.5f); }
html.mobile .more-tip { color: rgba(255,255,255,0.45f); }
html.mobile .sleep-opts .ghost-btn.active { background: var(--accent); color: #261a20; border-color: var(--accent); }
html.mobile .about-box .about-pioneer { color: var(--accent); background: rgba(211,169,181,0.16f); border-color: rgba(211,169,181,0.28f); }

/* ============ ��ʷҳ����/����ҳ�Ǳ� ============ */
html.mobile .back-btn { color: rgba(255,255,255,0.8f); }

/* =====================================================================
 * ��׿���Ӱ棨html.tv������������ + ң�������㵼��
 * ===================================================================== */

/* ���Ӷ˷�ѡ mobile �ָ��ĵײ�������TV ������������� */
html.tv .mobile-nav { display: none !important; }
html.tv .desktop-nav { display: flex !important; }
html.tv .sidebar-footer { display: flex !important; }
html.tv .sidebar {
  width: var(--sidebar-w);
  background: rgba(26,26,30,0.72f);
  border-right: 1px solid var(--glass-border);
  border-top: none;
  position: static;
  height: auto;
  top: auto; bottom: auto; left: auto; right: auto;
}
html.tv .nav-item { font-size: 15px; padding: 12px 16px; gap: 14px; }
html.tv .nav-icon { font-size: 24px; width: 30px; }
html.tv .nav-svg { width: 24px; height: 24px; }
html.tv .titlebar { display: flex !important; }
html.tv .main-area {
  padding: 28px 40px 40px;
  overflow-y: auto;
}
html.tv .view-title { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; }
html.tv .app-root { padding: 0; }

/* �����ֺ� */
html.tv body { font-size: 16px; }
html.tv .song-name { font-size: 16px; }
html.tv .song-sub { font-size: 13px; }
html.tv .song-row { gap: 16px; padding: 12px 16px; min-height: 68px; border-radius: 14px; }
html.tv .song-cover { width: 52px; height: 52px; border-radius: 10px; }
html.tv .song-num { font-size: 14px; }

/* ���㵼�����������Ӻ����Ӿ��� */
html.tv :focus-visible {
  outline: none;
}
html.tv button:focus-visible,
html.tv a:focus-visible,
html.tv input:focus-visible,
html.tv select:focus-visible,
html.tv [tabindex]:focus-visible {
  outline: 3px solid var(--accent) !important;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(211,169,181,0.25f);
  border-radius: 8px;
}

/* �ɾ۽��У�div tabindex������̬ */
html.tv .song-row[tabindex]:focus-visible,
html.tv .playlist-item[tabindex]:focus-visible,
html.tv .queue-item[tabindex]:focus-visible,
html.tv .source-card[tabindex]:focus-visible {
  background: rgba(211,169,181,0.16f);
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ������� */
html.tv .search-bar { gap: 14px; margin-bottom: 22px; }
html.tv .search-input { font-size: 18px; height: 56px; padding: 0 16px; }
html.tv .primary-btn { height: 56px; font-size: 17px; }
html.tv .filter-select { height: 52px; font-size: 16px; }
html.tv .song-list { gap: 10px; }
html.tv .playlist-list { gap: 12px; }
html.tv .more-group { padding: 6px 20px; }
html.tv .more-row { font-size: 16px; padding: 15px 0; }
html.tv .ghost-btn { padding: 10px 20px; font-size: 15px; }

/* ���Ӷ˲���ʾ�ƶ���С������������ʾ��ͷ�� */
html.tv .mobile-up-hint { display: none; }
/* ==========================================================================
   手机端「概念版」主题（仅 html.mobile 生效，电脑端完全不受影响）
   灵感：酷狗概念版 —— 浅蓝渐变、大圆角、柔和阴影、悬浮胶囊底栏
   ========================================================================== */

html.mobile {
  --bg: #eaf1ff;
  --bg-elevated: #ffffff;
  --bg-panel: #ffffff;
  --bg-hover: #eef3ff;
  --bg-active: #e2ebff;
  --text: #17233b;
  --text-dim: #5b6880;
  --text-faint: #93a0b8;
  --accent: #3b82f6;
  --accent-hover: #2f6fe0;
  --accent-deep: #1d4ed8;
  --danger: #ef4444;
  --border: rgba(59, 130, 246, 0.12);
  --glass-border: rgba(255, 255, 255, 0.7);
  --radius: 16px;
  --radius-lg: 22px;
  --mobile-nav-h: 76px;
  --mobile-player-h: 66px;
  --playerbar-h: 66px;
  --titlebar-h: 0px;
}

html.mobile,
html.mobile body {
  background: linear-gradient(180deg, #dbe8ff 0%, #edf3ff 26%, #f7faff 55%, #ffffff 100%) fixed;
  color: var(--text);
}

html.mobile .app-root {
  background: transparent;
}

html.mobile .main-area {
  padding: calc(env(safe-area-inset-top, 0px) + 16px) 14px calc(var(--mobile-player-h) + var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px) + 22px);
}

/* 让主区域自身滚动，避免底部悬浮元素被裁切 */
html.mobile .app-body {
  flex-direction: column;
  overflow: hidden;
}

/* ------------------------- 底部悬浮胶囊导航 ------------------------- */
html.mobile .sidebar {
  position: fixed;
  top: auto;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 4px);
  left: 14px;
  right: 14px;
  width: auto;
  height: 62px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 12px 30px rgba(46, 92, 176, 0.2);
  z-index: 140;
}

html.mobile .desktop-nav {
  display: none;
}

html.mobile .mobile-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 6px;
}

html.mobile .mobile-nav-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 50px;
  margin: 0;
  border: none;
  background: transparent;
  border-radius: 18px;
  color: #7b88a1;
  font-size: 11px;
  font-weight: 600;
  transition: color 0.15s, background 0.15s;
}

html.mobile .mobile-nav-item .nav-svg {
  width: 23px;
  height: 23px;
}

html.mobile .mobile-nav-item span {
  line-height: 1;
}

html.mobile .mobile-nav-item.active {
  color: #2f6fe0;
}

html.mobile .mobile-nav-item.active .nav-svg {
  color: #2f6fe0;
}

/* ------------------------- 迷你播放条（已移除，播放键并入底栏） ------------------------- */
html.mobile .player-bar { display: none !important; }

html.mobile .main-area {
  padding-bottom: calc(var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px) + 26px);
}

/* 底栏中央播放键 */
html.mobile .mobile-nav-play {
  position: relative;
  flex: 1 1 0;
  width: auto;
  height: 50px;
  margin: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

html.mobile .mn-cover {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
  background: linear-gradient(135deg, #dfe9ff, #c9dbff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(46, 92, 176, 0.26);
  animation: mv-spin 16s linear infinite;
  animation-play-state: paused;
}

html.mobile .mn-cover.spinning { animation-play-state: running; }
html.mobile .mn-cover img { width: 100%; height: 100%; object-fit: cover; }
html.mobile .mn-ph { color: #7d94bd; font-size: 20px; }

html.mobile .mn-state {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 21px;
  height: 21px;
  padding: 3px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  box-sizing: border-box;
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.45);
}

/* ------------------------- 歌曲行（白卡片） ------------------------- */
html.mobile .song-list {
  gap: 8px;
}

html.mobile .song-row {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(46, 92, 176, 0.06);
  padding: 9px 12px;
  min-height: 62px;
}

html.mobile .song-cover {
  border: none;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(46, 92, 176, 0.14);
}

html.mobile .song-row.current {
  background: linear-gradient(120deg, #e8f1ff, #f5f9ff 70%);
  border-color: rgba(59, 130, 246, 0.35);
  border-left: 1px solid rgba(59, 130, 246, 0.35);
}

html.mobile .song-name {
  color: var(--text);
}

html.mobile .song-sub {
  color: var(--text-faint);
}

html.mobile .song-num {
  color: var(--text-faint);
}

/* ------------------------- 通用输入/按钮 ------------------------- */
html.mobile .search-input,
html.mobile .primary-btn {
  border-radius: 16px;
}

html.mobile .primary-btn {
  background: linear-gradient(135deg, #4f92ff, #3b82f6);
  color: #fff;
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.28);
}

html.mobile .search-input {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(46, 92, 176, 0.06);
}

html.mobile .hint-text {
  color: var(--text-faint);
}

html.mobile .view-title {
  color: var(--text);
}

/* ------------------------- 发现页 ------------------------- */
.mv-view {
  width: 100%;
  padding-bottom: 8px;
}

html.mobile .mv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 12px;
}

html.mobile .mv-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

html.mobile .mv-logo {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  background: linear-gradient(135deg, #4f92ff, #3b82f6);
  box-shadow: 0 6px 14px rgba(59, 130, 246, 0.35);
}

html.mobile .mv-brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text);
}

html.mobile .mv-topbtn {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(46, 92, 176, 0.08);
}

html.mobile .mv-topbtn svg {
  width: 20px;
  height: 20px;
}

html.mobile .mv-searchpill {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 14px;
  margin: 0 2px 14px;
  border-radius: 23px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(46, 92, 176, 0.08);
}

html.mobile .mv-searchpill svg {
  width: 19px;
  height: 19px;
  color: var(--text-faint);
  flex-shrink: 0;
}

html.mobile .mv-searchpill input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--text);
}

html.mobile .mv-searchpill input::placeholder {
  color: var(--text-faint);
}

html.mobile .mv-search-clear {
  border: none;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

html.mobile .mv-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

html.mobile .mv-chips::-webkit-scrollbar { display: none; }

html.mobile .mv-chip {
  flex-shrink: 0;
  height: 32px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}

html.mobile .mv-sec {
  margin-bottom: 20px;
}

html.mobile .mv-sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 4px 10px;
}

html.mobile .mv-sec-head h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

html.mobile .mv-sec-more {
  border: none;
  background: transparent;
  color: var(--text-faint);
  font-size: 13px;
}

html.mobile .mv-cards {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

html.mobile .mv-cards::-webkit-scrollbar { display: none; }

html.mobile .mv-card {
  flex: 0 0 118px;
  width: 118px;
  border: none;
  background: transparent;
  text-align: left;
}

html.mobile .mv-card-cover {
  width: 118px;
  height: 118px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #dfe9ff, #cfe0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(46, 92, 176, 0.16);
}

html.mobile .mv-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.mobile .mv-card-ph {
  font-size: 30px;
  color: #8fabe0;
}

html.mobile .mv-card-name {
  margin-top: 7px;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

html.mobile .mv-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

html.mobile .mv-empty {
  padding: 40px 12px;
  text-align: center;
  color: var(--text-faint);
  font-size: 14px;
}

html.mobile .mv-more {
  display: flex;
  justify-content: center;
  padding: 16px 0 6px;
}

html.mobile .mv-morebtn {
  height: 40px;
  padding: 0 26px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
}

/* 歌单详情底部弹层 */
html.mobile .mv-sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
}

html.mobile .mv-sheet-mask {
  position: absolute;
  inset: 0;
  background: rgba(20, 34, 60, 0.4);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

html.mobile .mv-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 78vh;
  display: flex;
  flex-direction: column;
  background: #f7faff;
  border-radius: 24px 24px 0 0;
  padding: 6px 12px calc(env(safe-area-inset-bottom, 0px) + 12px);
  box-shadow: 0 -12px 40px rgba(20, 40, 80, 0.22);
}

html.mobile .mv-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6px 12px;
}

html.mobile .mv-sheet-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  max-width: 76%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html.mobile .mv-sheet-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #e9effb;
  color: var(--text-dim);
  font-size: 14px;
}

html.mobile .mv-sheet-list {
  overflow-y: auto;
  padding-bottom: 8px;
}

/* ------------------------- 我的页 ------------------------- */
html.mobile .mv-mine-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #4f92ff 0%, #6aa6ff 55%, #8ac0ff 100%);
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.32);
  color: #fff;
  margin-bottom: 16px;
}

html.mobile .mv-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

html.mobile .mv-mine-id {
  flex: 1;
  min-width: 0;
}

html.mobile .mv-mine-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html.mobile .mv-mine-badge {
  margin-top: 6px;
}

html.mobile .mv-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
}

html.mobile .mv-badge.ok {
  background: rgba(255, 255, 255, 0.95);
  color: #2f6fe0;
}

html.mobile .mv-mine-settings {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

html.mobile .mv-mine-settings svg { width: 20px; height: 20px; }

html.mobile .mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

html.mobile .mv-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 78px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(46, 92, 176, 0.07);
}

html.mobile .mv-tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

html.mobile .mv-tile-icon svg { width: 22px; height: 22px; }

html.mobile .tone-pink .mv-tile-icon { background: #ffe4ec; color: #f2557f; }
html.mobile .tone-blue .mv-tile-icon { background: #e2ecff; color: #3b82f6; }
html.mobile .tone-cyan .mv-tile-icon { background: #dcf5f5; color: #14b8a6; }
html.mobile .tone-violet .mv-tile-icon { background: #eae2ff; color: #7c5cff; }

html.mobile .mv-tile-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

html.mobile .mv-tile-label {
  font-size: 13.5px;
  color: var(--text-dim);
  font-weight: 600;
}

html.mobile .mv-tile-count {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
}

html.mobile .mv-mine-list {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(46, 92, 176, 0.07);
}

html.mobile .mv-mine-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 15px;
}

html.mobile .mv-mine-row + .mv-mine-row {
  border-top: 1px solid rgba(59, 130, 246, 0.08);
}

html.mobile .mv-mine-arrow {
  color: var(--text-faint);
  font-size: 20px;
}

html.mobile .mv-mine-foot {
  text-align: center;
  color: var(--text-faint);
  font-size: 12px;
  padding: 26px 0 8px;
}

/* ------------------------- 播放页（圆形旋转唱片） ------------------------- */
html.mobile .now-playing {
  background: linear-gradient(180deg, #e7efff 0%, #f4f8ff 45%, #ffffff 100%);
}

html.mobile .np-blur {
  opacity: 0.22;
  filter: blur(60px) saturate(140%);
}

html.mobile .np-shade {
  background: linear-gradient(180deg, rgba(234, 241, 255, 0.55), rgba(255, 255, 255, 0.82));
}

html.mobile .np-content {
  gap: 18px;
  padding: 8px 20px 0;
}

html.mobile .np-cover-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

html.mobile .cover {
  width: 68vw;
  height: 68vw;
  max-width: 300px;
  max-height: 300px;
  min-width: 180px;
  min-height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 22px 50px rgba(46, 92, 176, 0.3);
  animation: mv-spin 22s linear infinite;
  animation-play-state: paused;
}

html.mobile .cover.spinning {
  animation-play-state: running;
}

html.mobile .music-cover {
  border-radius: 50%;
}

html.mobile .cover:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15%;
  height: 15%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px rgba(59, 130, 246, 0.25);
  background-image: none;
  z-index: 3;
}

html.mobile .np-meta {
  text-align: center;
}

html.mobile .np-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
}

html.mobile .np-artist {
  color: var(--text-faint);
}

html.mobile .np-lyric {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-dim);
}

html.mobile .np-lyric #lyric .lrc-item.lplaying {
  color: var(--accent);
  font-weight: 700;
}

@keyframes mv-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   播放页（概念版 · 全屏） —— 播放时隐藏底栏与迷你条
   ========================================================================== */
html.mobile .app-root.on-player .sidebar,
html.mobile .app-root.on-player .player-bar {
  display: none !important;
}

html.mobile .app-root.on-player .main-area {
  padding: 0;
  height: 100%;
  overflow: hidden;
}

html.mobile .np2 {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: calc(env(safe-area-inset-top, 0px) + 10px) 22px calc(env(safe-area-inset-bottom, 0px) + 16px);
  background: linear-gradient(180deg, #e7efff 0%, #eef4ff 40%, #f7faff 100%);
}

/* 顶栏 */
html.mobile .np2-top {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  flex-shrink: 0;
}

html.mobile .np2-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.7);
  color: #24324d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(46, 92, 176, 0.14);
  flex-shrink: 0;
}

html.mobile .np2-circle svg { width: 21px; height: 21px; }
html.mobile .np2-circle.on { color: #f2557f; }

html.mobile .np2-head {
  flex: 1;
  min-width: 0;
  text-align: center;
}

html.mobile .np2-h1 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html.mobile .np2-h2 {
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--text-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 唱片 + 右侧功能键 */
html.mobile .np2-stage {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 16px;
}

html.mobile .np2-cover {
  width: 70vw;
  height: 70vw;
  max-width: 320px;
  max-height: 320px;
  min-width: 176px;
  min-height: 176px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 56px rgba(46, 92, 176, 0.28);
  animation: mv-spin 22s linear infinite;
  animation-play-state: paused;
  background: #fff;
}

html.mobile .np2-cover.spinning { animation-play-state: running; }

html.mobile .np2-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

html.mobile .np2-actions {
  position: absolute;
  right: 22px;
  top: 42%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

html.mobile .np2-abtn {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.6);
  color: #1f2e4a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(46, 92, 176, 0.12);
}

html.mobile .np2-abtn svg { width: 21px; height: 21px; }
html.mobile .np2-abtn.on { color: #f2557f; }

html.mobile .np2-spacer { flex: 1 1 auto; min-height: 10px; }

/* 歌名 + 歌词 */
html.mobile .np2-info {
  flex-shrink: 0;
  padding: 22px 2px 4px;
  min-width: 0;
}

html.mobile .np2-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html.mobile .np2-credit {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-faint);
  min-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 歌词视图 */
html.mobile .np2-lyrics {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 42% 26px;
  scrollbar-width: none;
}

html.mobile .np2-lyrics::-webkit-scrollbar { display: none; }

html.mobile .np2-lyrics ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

html.mobile .np2-lrc {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(120, 136, 165, 0.6);
  transition: color 0.25s, font-size 0.25s;
}

html.mobile .np2-lrc-t { display: block; }
html.mobile .np2-lrc-tr {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(120, 136, 165, 0.48);
}

html.mobile .np2-lrc.on {
  color: #16233c;
  font-size: 19px;
  font-weight: 800;
}

html.mobile .np2-lrc.on .np2-lrc-tr { color: rgba(70, 92, 130, 0.7); }

html.mobile .np2-actions-mini {
  top: 44%;
}

/* 进度 */
html.mobile .np2-progress {
  flex-shrink: 0;
  padding: 12px 2px 4px;
}

html.mobile .np2-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(59, 130, 246, 0.16);
  position: relative;
}

html.mobile .np2-cur {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #4f92ff, #3b82f6);
}

html.mobile .np2-cur::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  box-shadow: 0 2px 6px rgba(46, 92, 176, 0.35);
}

html.mobile .np2-times {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-faint);
}

/* 控制 */
html.mobile .np2-controls {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px 10px;
}

html.mobile .np2-ctl {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.72);
  color: #1c2b47;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(46, 92, 176, 0.16);
}

html.mobile .np2-ctl svg { width: 26px; height: 26px; }

html.mobile .np2-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #4f92ff, #3b82f6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.42);
}

html.mobile .np2-play svg { width: 34px; height: 34px; }

/* 底部操作行 */
html.mobile .np2-bottom {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 0;
}

html.mobile .np2-bbtn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #4c5a76;
  display: flex;
  align-items: center;
  justify-content: center;
}

html.mobile .np2-bbtn svg { width: 24px; height: 24px; }

html.mobile .np2-comment {
  border: none;
  background: transparent;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 600;
}


/* ==========================================================================
   发现页（酷狗概念版）
   ========================================================================== */
html.mobile .kg-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 16px;
}

html.mobile .kg-tabs-l {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

html.mobile .kg-tab {
  border: none;
  background: transparent;
  color: #8b96a8;
  font-size: 19px;
  font-weight: 600;
  padding: 0;
  transition: color 0.15s, font-size 0.15s;
}

html.mobile .kg-tab.on {
  color: #111827;
  font-size: 24px;
  font-weight: 800;
}

html.mobile .kg-page-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.5px;
}

html.mobile .kg-tabs-r {
  display: flex;
  gap: 10px;
}

html.mobile .kg-ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #26324a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(46, 92, 176, 0.1);
}

html.mobile .kg-ic svg { width: 20px; height: 20px; }

/* 红心 Radio 卡 */
html.mobile .kg-radio {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 166px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(120deg, #e6f0ff 0%, #cfe0ff 42%, #a9c8ff 100%);
  box-shadow: 0 12px 28px rgba(46, 92, 176, 0.16);
}

html.mobile .kg-radio-main {
  position: relative;
  flex: 0 0 47%;
  max-width: 47%;
  padding: 18px 0 18px 16px;
  min-width: 0;
  z-index: 2;
}

html.mobile .kg-radio-title {
  font-size: 25px;
  font-weight: 900;
  color: #1d3557;
  letter-spacing: 0.5px;
}

html.mobile .kg-heart-sm { color: #ff5c8a; font-size: 18px; }

html.mobile .kg-radio-sub {
  margin-top: 6px;
  font-size: 12.5px;
  color: #5b729b;
}

html.mobile .kg-radio-bars {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

html.mobile .kg-radio-bars i {
  width: 3px;
  border-radius: 2px;
  background: rgba(59, 130, 246, 0.5);
}
html.mobile .kg-radio-bars i:nth-child(1) { height: 8px; }
html.mobile .kg-radio-bars i:nth-child(2) { height: 14px; }
html.mobile .kg-radio-bars i:nth-child(3) { height: 6px; }
html.mobile .kg-radio-bars i:nth-child(4) { height: 17px; }
html.mobile .kg-radio-bars i:nth-child(5) { height: 11px; }
html.mobile .kg-radio-bars i:nth-child(6) { height: 15px; }
html.mobile .kg-radio-bars i:nth-child(7) { height: 9px; }

html.mobile .kg-radio-play {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #2f6fe0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(46, 92, 176, 0.2);
}

html.mobile .kg-radio-play svg { width: 20px; height: 20px; }

html.mobile .kg-radio-discs {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 14px;
  overflow: hidden;
}

html.mobile .kg-disc {
  width: 112px;
  height: 112px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.55);
  background: radial-gradient(circle, #8fc0ff 0%, #4c86e8 70%, #2f6fe0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(46, 92, 176, 0.22);
}

html.mobile .kg-disc img { width: 100%; height: 100%; object-fit: cover; }

/* 宝藏音乐故事 */
html.mobile .kg-story-sub {
  font-size: 13px;
  color: #9aa3b2;
  padding: 0 2px 10px;
}

html.mobile .kg-story-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px 12px;
}

html.mobile .kg-story-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

html.mobile .kg-story-play {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #1d3557;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(46, 92, 176, 0.14);
}

html.mobile .kg-story-play svg { width: 16px; height: 16px; }

html.mobile .kg-story-more {
  margin-left: auto;
  font-size: 22px;
  color: #b6bdc9;
}

/* 推荐行 */
html.mobile .kg-reco {
  display: flex;
  flex-direction: column;
}

html.mobile .kg-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 2px;
  border: none;
  background: transparent;
  text-align: left;
}

html.mobile .kg-row-cover {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  background: #e6ecf7;
  flex-shrink: 0;
}

html.mobile .kg-row-main {
  flex: 1;
  min-width: 0;
}

html.mobile .kg-row-t {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html.mobile .kg-row-a {
  margin-top: 3px;
  font-size: 12.5px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html.mobile .kg-row-r {
  margin-top: 3px;
  font-size: 11.5px;
  color: #a6adbb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html.mobile .kg-heart {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8c0cd;
  flex-shrink: 0;
}

html.mobile .kg-heart svg { width: 22px; height: 22px; }
html.mobile .kg-heart.on { color: #f2557f; }

/* 底部横幅 */
html.mobile .kg-banner {
  position: relative;
  display: flex;
  align-items: center;
  height: 116px;
  margin: 18px 0 6px;
  padding: 0 20px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(120deg, #4f92ff 0%, #7db2ff 55%, #a9c8ff 100%);
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.28);
}

html.mobile .kg-banner-txt { flex: 1; min-width: 0; }
html.mobile .kg-banner-big {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
html.mobile .kg-banner-sub {
  margin-top: 4px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.88);
}
html.mobile .kg-banner-btn {
  margin-top: 10px;
  height: 30px;
  padding: 0 16px;
  border-radius: 15px;
  border: none;
  background: #fff;
  color: #2f6fe0;
  font-size: 13px;
  font-weight: 700;
}

html.mobile .kg-banner-art {
  font-size: 52px;
  opacity: 0.9;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15));
}

html.mobile .kg-banner-plus {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #2f6fe0;
  font-size: 20px;
  line-height: 1;
}

/* 歌词视图：灰底 */
html.mobile .np2.lyrics {
  background: linear-gradient(180deg, #d6dae1 0%, #e6e9ee 42%, #f4f5f8 100%);
}

/* 搜索模式键 + chips */
html.mobile .kg-ic-mode { position: relative; }
html.mobile .kg-mode-tip {
  position: absolute;
  right: -3px;
  bottom: -4px;
  font-size: 9px;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4f92ff, #3b82f6);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.4);
}
html.mobile .kg-modes {
  display: flex;
  gap: 8px;
  padding: 0 2px 12px;
}
html.mobile .kg-mode {
  height: 30px;
  padding: 0 16px;
  border-radius: 15px;
  border: 1px solid var(--border);
  background: #fff;
  color: #5b6880;
  font-size: 13px;
  font-weight: 600;
}
html.mobile .kg-mode.on {
  background: linear-gradient(135deg, #4f92ff, #3b82f6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(59, 130, 246, 0.3);
}

html.mobile .kg-radio-title2 {
  font-size: 25px;
  font-weight: 900;
  color: #1d3557;
  margin-top: -3px;
  letter-spacing: 0.5px;
}

/* 手机端禁用主视图切换动画（播放页进出更干脆） */
html.mobile .main-view-enter-active,
html.mobile .main-view-leave-active {
  transition: none !important;
}
html.mobile .main-view-enter-from,
html.mobile .main-view-leave-to {
  opacity: 1 !important;
  transform: none !important;
}

/* ============ 动画：提升流畅度 ============ */
html.mobile .main-view-enter-active,
html.mobile .main-view-leave-active { transition: opacity .18s ease !important; }
html.mobile .main-view-enter-from,
html.mobile .main-view-leave-to { opacity: 0 !important; transform: none !important; }

@keyframes kgRowIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

html.mobile .kg-row {
  animation: kgRowIn .32s ease both;
  transition: background .15s;
  border-radius: 12px;
}
html.mobile .kg-row:active { background: rgba(59, 130, 246, 0.08); }

html.mobile .kg-ic { transition: transform .15s, box-shadow .15s; }
html.mobile .kg-ic:active { transform: scale(.9); }

html.mobile .mv-chip,
html.mobile .kg-mode { transition: transform .15s, background .15s, color .15s; }
html.mobile .mv-chip:active,
html.mobile .kg-mode:active { transform: scale(.94); }

html.mobile .kg-story-play,
html.mobile .kg-radio-play { transition: transform .18s; }
html.mobile .kg-story-play:active,
html.mobile .kg-radio-play:active { transform: scale(.86); }

html.mobile .mobile-nav-item,
html.mobile .kg-tab { transition: color .2s, transform .15s; }
html.mobile .mobile-nav-item:active { transform: scale(.94); }

html.mobile .np2-play { transition: transform .15s; }
html.mobile .np2-play:active { transform: scale(.92); }
html.mobile .np2-ctl,
html.mobile .np2-abtn,
html.mobile .np2-circle { transition: transform .15s; }
html.mobile .np2-ctl:active,
html.mobile .np2-abtn:active,
html.mobile .np2-circle:active { transform: scale(.9); }

html.mobile .np2-actions,
html.mobile .np2-info,
html.mobile .np2-progress,
html.mobile .np2-controls,
html.mobile .np2-bottom { animation: kgRowIn .4s ease both; }

/* 弹层滑入 */
.sheet-pop-enter-active, .sheet-pop-leave-active { transition: opacity .22s ease; }
.sheet-pop-enter-from, .sheet-pop-leave-to { opacity: 0; }
.sheet-pop-enter-active .mv-sheet-panel, .sheet-pop-leave-active .mv-sheet-panel { transition: transform .28s cubic-bezier(.22, .61, .36, 1); }
.sheet-pop-enter-from .mv-sheet-panel, .sheet-pop-leave-to .mv-sheet-panel { transform: translateY(100%); }

/* 淡入淡出 */
.fade-enter-active, .fade-leave-active { transition: opacity .22s ease; }
.fade-enter-from, .fade-leave-to { opacity: 0; }

/* 榜单 */
html.mobile .kg-chart {
  display: flex;
  flex-direction: column;
}
html.mobile .kg-chart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 0 6px;
  border: none;
  background: transparent;
  text-align: left;
  border-radius: 12px;
  animation: kgRowIn .3s ease both;
  transition: background .15s;
}
html.mobile .kg-chart-row:active { background: rgba(59, 130, 246, 0.08); }
html.mobile .kg-chart-rank {
  width: 30px;
  font-size: 15px;
  font-weight: 800;
  color: #b6bdc9;
  text-align: center;
  flex-shrink: 0;
}
html.mobile .kg-chart-rank.top { color: #f2557f; }
html.mobile .kg-chart-word {
  flex: 1;
  font-size: 15px;
  color: #111827;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html.mobile .kg-chart-hot {
  font-size: 10px;
  color: #f2557f;
  border: 1px solid rgba(242, 85, 127, 0.5);
  border-radius: 6px;
  padding: 0 4px;
  line-height: 16px;
  flex-shrink: 0;
}
html.mobile .kg-chart-play { width: 16px; height: 16px; color: #c2c9d6; flex-shrink: 0; }

/* 分类 chips */
html.mobile .kg-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 2px 14px;
  scrollbar-width: none;
}
html.mobile .kg-chips::-webkit-scrollbar { display: none; }
html.mobile .mv-chip {
  flex-shrink: 0;
  height: 32px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  color: #5b6880;
  font-size: 13px;
  font-weight: 600;
}
html.mobile .mv-chip.on {
  background: linear-gradient(135deg, #4f92ff, #3b82f6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(59, 130, 246, 0.3);
}

/* 榜单分类卡片 */
html.mobile .kg-rank-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 4px;
}
html.mobile .kg-rank-card {
  border: none;
  background: transparent;
  text-align: left;
  animation: kgRowIn .3s ease both;
  transition: transform .15s;
}
html.mobile .kg-rank-card:active { transform: scale(.96); }
html.mobile .kg-rank-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #dfe9ff, #c9dbff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 8px 20px rgba(46, 92, 176, 0.16);
}
html.mobile .kg-rank-cover img { width: 100%; height: 100%; object-fit: cover; }
html.mobile .kg-rank-name {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #17233b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html.mobile .kg-rank-no {
  width: 22px;
  font-size: 12px;
  color: #9aa3b2;
  text-align: center;
  flex-shrink: 0;
}

/* 加载更多 / 到底 */
html.mobile .mv-loading,
html.mobile .mv-end {
  text-align: center;
  color: #9aa3b2;
  font-size: 13px;
  padding: 12px 0 4px;
}
html.mobile .mv-morebtn:disabled { opacity: .6; }

/* 播放页：歌曲信息面板 + 模式按钮 */
html.mobile .np2-modebtn {
  border: none;
  background: transparent;
  color: #4c5a76;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
}
html.mobile .np2-info-list { padding: 4px 8px 10px; overflow-y: auto; }
html.mobile .np2-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 6px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  font-size: 14px;
}
html.mobile .np2-info-k { color: #8b96a8; flex-shrink: 0; }
html.mobile .np2-info-v { color: #17233b; font-weight: 600; text-align: right; word-break: break-all; }

/* 我的：头像 */
html.mobile .mv-avatar { overflow: hidden; }
html.mobile .mv-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* 进度条：允许竖向滚动穿透，减少误触 */
html.mobile .np2-progress { touch-action: pan-y; }
html.mobile .np2-track { touch-action: pan-y; }

/* 分享生成中提示 */
html.mobile .np2-toast {
  position: absolute;
  left: 50%;
  top: 74px;
  transform: translateX(-50%);
  z-index: 250;
  padding: 9px 18px;
  border-radius: 16px;
  background: rgba(23, 35, 59, 0.86);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* 播放页：右侧功能键置于封面之上，避免点不到分享 */
html.mobile .np2-stage { z-index: 1; }
html.mobile .np2-actions { z-index: 8; }
html.mobile .np2-abtn { position: relative; z-index: 8; }
html.mobile .np2-info { position: relative; z-index: 2; }
