/* ============ 麻雀读书 · 全站样式 ============ */
:root {
  --bg: #ffffff;
  --bg-soft: #f4f8f7;
  --card: #ffffff;
  --card-2: #f7fbfa;
  --line: rgba(15, 42, 37, 0.12);
  --text: #16211f;
  --text-2: #5c6b68;
  --text-3: #8b9a96;
  --grad: linear-gradient(135deg, #0bc8a2, #0a9e82 55%, #06b6d4);
  --grad-2: linear-gradient(135deg, #2dd4bf, #0bc8a2);
  --accent: #0a9e82;
  --accent-soft: rgba(11, 201, 162, 0.12);
  --radius: 16px;
  --nav-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- 导航 ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { max-width: 1200px; margin: 0 auto; height: 100%; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; letter-spacing: 1px; }
.nav-logo .logo-img { height: 34px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  padding: 8px 16px; border-radius: 10px; font-size: 15px; color: var(--text-2);
  transition: all 0.2s; position: relative;
}
.nav-links a:hover { color: var(--accent); background: rgba(15, 42, 37, 0.05); }
.nav-links a.active { color: var(--accent); background: rgba(11, 201, 162, 0.12); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 18px; height: 3px; border-radius: 2px; background: var(--grad);
}
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; font-size: 20px; background: rgba(15, 42, 37, 0.06); }
/* 导航搜索框 */
.nav-search { display: flex; align-items: center; gap: 0; width: 220px; }
.nav-search input {
  width: 100%; height: 36px; padding: 0 12px; border: 1px solid var(--line);
  border-radius: 10px 0 0 10px; font-size: 13.5px; color: var(--text);
  background: var(--bg-soft); outline: none; transition: border-color 0.2s, background 0.2s;
}
.nav-search input::placeholder { color: var(--text-3); }
.nav-search input:focus { border-color: var(--accent); background: #fff; }
.nav-search button {
  width: 40px; height: 36px; border: 1px solid var(--line); border-left: none;
  border-radius: 0 10px 10px 0; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.nav-search button:hover { background: #0bc8a2; }
@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-search { display: none; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(255, 255, 255, 0.98); padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line); display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
}

/* ---------- Banner ---------- */
.hero { margin-top: var(--nav-h); padding: 12px clamp(12px, 3vw, 40px); }
.hero-slider { position: relative; overflow: hidden; border-radius: var(--radius); background: #0b1e1c; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10); height: 160px; max-width: 1160px; margin: 0 auto; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; pointer-events: none; display: flex; align-items: center; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide .slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-slide::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(5, 20, 18, 0.30); }
.hero-slide::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(11, 36, 34, 0.85) 0%, rgba(11, 36, 34, 0.40) 55%, rgba(11, 36, 34, 0.10) 100%); }
.hero-slide-decor { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-slide-decor::before, .hero-slide-decor::after { content: ""; position: absolute; right: 10%; top: 50%; transform: translateY(-50%); border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.10); width: 70%; padding-top: 70%; }
.hero-slide-decor::after { right: -6%; width: 90%; padding-top: 90%; }
.hero-content { position: relative; z-index: 4; width: 100%; margin: 0 auto; padding: 0 32px; }
.hero-content .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: #5eead4; font-weight: 600; margin-bottom: 8px; }
.hero-content .eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--accent); border-radius: 2px; }
.hero-content h2 { font-size: clamp(17px, 1.8vw, 24px); color: #fff; font-weight: 800; margin-bottom: 6px; letter-spacing: 1px; }
.hero-content p { font-size: 13px; color: rgba(255, 255, 255, 0.75); max-width: 560px; margin-bottom: 14px; }
.hero-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; background: var(--accent); color: #fff; border: 1px solid transparent; transition: all 0.2s; }
.hero-btn:hover { background: #0bc8a2; }
.hero-dots { position: absolute; bottom: 12px; left: clamp(18px, 3vw, 38px); z-index: 3; display: flex; gap: 6px; }
.hero-dots span { width: 18px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.35); cursor: pointer; transition: all 0.3s; }
.hero-dots span.active { width: 30px; background: #fff; }
.hero-arrows { position: absolute; bottom: 10px; right: 14px; z-index: 3; display: flex; gap: 6px; }
.hero-arrows button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.45); background: rgba(20, 34, 40, 0.35); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.25s; }
.hero-arrows button:hover { background: var(--accent); border-color: transparent; }
@media (max-width: 900px) {
  .hero-slider { height: 130px; }
  .hero-content { padding: 0 22px; }
  .hero-content .eyebrow { display: none; }
}
@media (max-width: 640px) {
  .hero-slider { height: 110px; }
  .hero-content h2 { font-size: 16px; }
  .hero-content p { display: none; }
  .hero-arrows { display: none; }
  .hero-dots { bottom: 8px; }
}

/* ---------- 区块 ---------- */
.section { padding: 28px 0; }
.section-top { padding-top: 14px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 14px; gap: 20px; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: 1px; }
.section-head .more { color: var(--text-2); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; white-space: nowrap; }
.section-head .more:hover { color: var(--accent); }
.section-alt { background: var(--bg-soft); }

/* ---------- 分类筛选栏 ---------- */
.filter-bar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.filter-bar button {
  min-height: 38px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 8px 12px; border-radius: 6px; font-size: 14px; line-height: 1.45;
  background: #ffffff; color: var(--text-2);
  border: 1px solid rgba(15, 42, 37, 0.14); transition: all 0.2s;
  white-space: normal; word-break: break-word;
}
.filter-bar button:hover { color: var(--accent); border-color: rgba(11, 201, 162, 0.45); background: rgba(11, 201, 162, 0.08); }
.filter-bar button.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(11, 201, 162, 0.35); }
.cat-pill {
  display: inline-block; padding: 1px 10px; border-radius: 999px; font-size: 11.5px;
  background: rgba(11, 201, 162, 0.12); color: var(--accent); border: 1px solid rgba(11, 201, 162, 0.30);
}

/* ---------- 专辑二级分区（H2 区块） ---------- */
.sec-block { margin-bottom: 36px; }
.sec-block:last-child { margin-bottom: 0; }
.sec-title {
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; letter-spacing: 1px;
  display: flex; align-items: baseline; gap: 10px;
  margin: 0 0 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.sec-title::before {
  content: ''; display: inline-block; width: 5px; height: 22px; border-radius: 3px;
  background: var(--grad); flex: none; transform: translateY(3px);
}
.sec-count { font-size: 13px; font-weight: 600; color: var(--text-2); letter-spacing: 0; }

/* ---------- 专辑卡片 ---------- */
.album-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 1200px) { .album-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 900px) { .album-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) { .album-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } }

.album-card { cursor: pointer; transition: transform 0.25s; min-width: 0; }
.album-card:hover { transform: translateY(-6px); }
.album-cover-wrap {
  position: relative; border-radius: 10px; overflow: hidden;
  width: 100%; height: 0; padding-bottom: 100%;
  background: var(--bg-soft);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: box-shadow 0.25s;
}
.album-card:hover .album-cover-wrap { box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18); }
.album-cover-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s;
}
.album-card:hover .album-cover-wrap img { transform: scale(1.05); }
.album-cover-wrap .play-mask {
  position: absolute; inset: 0; background: rgba(0, 0, 0, 0.38); opacity: 0; transition: opacity 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.album-card:hover .play-mask { opacity: 1; }
.play-btn-icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff;
  box-shadow: 0 8px 24px rgba(11, 201, 162, 0.45); transform: scale(0.85); transition: transform 0.25s;
}
.album-card:hover .play-btn-icon { transform: scale(1); }
.album-meta { padding-top: 8px; }
.album-meta h3 {
  font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.2s;
}
.album-card:hover .album-meta h3 { color: var(--accent); }
.album-meta p { font-size: 12px; color: var(--text-2); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- 新闻卡片 ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1024px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }

.news-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform 0.25s, border-color 0.25s; }
.news-card:hover { transform: translateY(-6px); border-color: rgba(11, 201, 162,0.4); }
.news-card .news-img { aspect-ratio: 3 / 2; overflow: hidden; position: relative; }
.news-card .news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-card .news-img .cat {
  position: absolute; left: 12px; top: 12px; padding: 4px 12px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(6px); font-size: 12px; color: #ffffff; border: 1px solid rgba(11, 201, 162,0.35);
}
.news-card .news-body { padding: 18px 20px 20px; }
.news-card .news-body h3 { font-size: 16px; font-weight: 700; line-height: 1.5; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .news-body p { font-size: 13.5px; color: var(--text-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .news-body .date { margin-top: 12px; font-size: 12.5px; color: var(--text-3); display: flex; align-items: center; gap: 6px; }

/* ---------- 合作平台（原合作伙伴） ---------- */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
@media (max-width: 460px) { .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.partner-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 24px 18px; min-height: 150px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
a.partner-item { cursor: pointer; }
.partner-item:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 201, 162, 0.45);
  background: var(--card-2);
}
.partner-item img {
  width: 100%; height: 72px; object-fit: contain;
}
.partner-item .p-name {
  font-size: 15px; font-weight: 600; color: var(--text-2); text-align: center; line-height: 1.4;
  word-break: break-word; transition: color 0.25s;
}
.partner-item:hover .p-name { color: var(--accent); }

/* ---------- 合作配音 ---------- */
.voice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
@media (max-width: 460px) { .voice-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.voice-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  padding: 16px 12px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
a.voice-card { cursor: pointer; }
.voice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 201, 162, 0.45);
  background: var(--card-2);
}
.voice-avatar {
  width: 84px; height: 84px; border-radius: 50%; overflow: hidden;
  background: var(--bg-soft); border: 2px solid var(--line);
  transition: border-color 0.25s;
}
.voice-card:hover .voice-avatar { border-color: rgba(11, 201, 162, 0.45); }
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-name { font-size: 14.5px; font-weight: 600; color: var(--text); }
.voice-card:hover .voice-name { color: var(--accent); }
.voice-role { font-size: 12.5px; color: var(--text-2); line-height: 1.5; }

/* ---------- 公司简介 / 关于麻雀读书简介（首页顶部，纯文字居中） ---------- */
.company-section { padding-top: calc(var(--nav-h) + 28px); padding-bottom: 28px; }
@media (max-width: 768px) { .company-section { padding-top: calc(var(--nav-h) + 16px); padding-bottom: 20px; } }
/* 纯文字居中（首页公司简介） */
.intro-wrap { max-width: 900px; margin: 0 auto; text-align: center; }
.intro-wrap .intro-text { display: flex; flex-direction: column; align-items: center; }
.intro-wrap .intro-text h2 { margin-bottom: 14px; }
.intro-wrap .intro-text .content { max-width: 820px; font-size: 15.5px; line-height: 1.8; }
.intro-wrap .intro-text .content p { margin-bottom: 10px; }
.intro-wrap .intro-text .content p:last-child { margin-bottom: 0; }

/* ---------- 官网简介 ---------- */
.intro-text h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 20px; letter-spacing: 1px; }
.intro-text .content { color: var(--text-2); font-size: 15.5px; }
.intro-text .content p { margin-bottom: 14px; }

/* ---------- 页脚 ---------- */
.footer { border-top: 1px solid var(--line); padding: 28px 0 22px; background: var(--bg-soft); margin-top: 12px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1.2fr 1fr; gap: 28px; align-items: center; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 20px; } }
.footer .nav-logo { font-size: 18px; }
.footer p { font-size: 14px; color: var(--text-2); }
/* 白噪音工具箱入口 */
.footer-tools { display: flex; justify-content: center; }
.footer-tool-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(11, 201, 162, 0.12), rgba(6, 182, 212, 0.10));
  border: 1px solid rgba(11, 201, 162, 0.30);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.footer-tool-link:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(11, 201, 162, 0.18);
}
.footer-tool-link .tool-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.footer-tool-link .tool-text b { display: block; font-size: 15px; color: var(--text); transition: color 0.25s; }
.footer-tool-link:hover .tool-text b { color: var(--accent); }
.footer-tool-link .tool-text span { display: block; font-size: 12px; color: var(--text-2); }
.footer-qrcodes { display: flex; gap: 24px; justify-content: flex-end; }
.footer-qr { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-qr img { width: 96px; height: 96px; border-radius: 10px; object-fit: cover; background: #fff; border: 1px solid var(--line); }
.footer-qr span { font-size: 13px; color: var(--text-2); }
.footer-qr-empty { width: 96px; height: 96px; border-radius: 10px; background: var(--card); border: 1px dashed var(--line); display: grid; place-items: center; }
.footer-qr-empty span { padding: 8px; text-align: center; line-height: 1.4; }
.footer-icp { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); text-align: center; font-size: 12.5px; color: var(--text-3); display: flex; flex-wrap: wrap; gap: 6px 14px; justify-content: center; align-items: center; }
.footer-icp a { color: var(--text-3); text-decoration: none; }
.footer-icp a:hover { color: var(--accent); }
@media (max-width: 768px) {
  .footer-tools { justify-content: flex-start; }
  .footer-qrcodes { justify-content: flex-start; }
}

/* ---------- 页头（内页） ---------- */
.page-head { margin-top: var(--nav-h); padding: 44px 0 24px; background: linear-gradient(180deg, rgba(11, 201, 162, 0.10), transparent); border-bottom: 1px solid var(--line); }
/* 页头紧跟 banner 时不再重复让出导航高度 */
.hero + .page-head { margin-top: 0; }

/* ---------- 专辑详情 ---------- */
.detail-layout { display: grid; grid-template-columns: 340px 1fr; gap: 32px; align-items: start; }
.detail-layout > * { min-width: 0; }
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }
.detail-side { position: sticky; top: calc(var(--nav-h) + 24px); }
@media (max-width: 900px) { .detail-side { position: static; } }
.detail-cover { border-radius: 20px; overflow: hidden; box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16); }
.detail-cover img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.detail-info h1 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: 1px; }
.detail-info .artist { font-size: 17px; color: var(--text-2); margin-top: 6px; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.detail-tags span { padding: 5px 14px; border-radius: 999px; font-size: 12.5px; background: rgba(11, 201, 162, 0.12); color: var(--accent); border: 1px solid rgba(11, 201, 162, 0.30); }
.detail-desc { color: var(--text-2); font-size: 15px; margin-bottom: 30px; }
.detail-desc p { margin-bottom: 12px; }

/* 曲目列表 */
.track-list { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.track-item { display: flex; align-items: center; gap: 16px; padding: 14px 20px; cursor: pointer; transition: background 0.2s; border-bottom: 1px solid var(--line); }
.track-item:last-child { border-bottom: none; }
.track-item:hover { background: rgba(15, 42, 37, 0.04); }
.track-item.playing { background: rgba(11, 201, 162,0.12); }
.track-num { width: 28px; text-align: center; color: var(--text-3); font-size: 14px; }
.track-item.playing .track-num { color: var(--accent); }
.track-name { flex: 1; min-width: 0; font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-dur { width: 60px; text-align: right; color: var(--text-3); font-size: 13px; white-space: nowrap; }
.track-play { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: rgba(15, 42, 37, 0.07); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all 0.2s; }
.track-item:hover .track-play { background: var(--grad); color: #fff; }
/* ---------- 试听按钮（专辑详情页曲目行） ---------- */
.audition-btn {
  flex-shrink: 0; padding: 5px 14px; border: none; border-radius: 999px;
  font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap;
  background: rgba(10, 158, 130, 0.12); color: #0a9e82; transition: all 0.2s;
}
.track-item:hover .audition-btn:not(:disabled) { background: var(--grad); color: #fff; }
.track-item.playing .audition-btn { background: var(--grad); color: #fff; }
.audition-btn:disabled { background: rgba(15, 42, 37, 0.06); color: var(--text-3); cursor: not-allowed; }
/* 未开放试听的曲目行：置灰、无悬停反馈 */
.track-item.track-disabled { opacity: 0.55; }
.track-item.track-disabled:hover { background: none; }
.track-item.track-disabled .track-play { color: var(--text-3); font-size: 12px; }
.track-empty { padding: 40px; text-align: center; color: var(--text-3); }
@media (max-width: 640px) {
  .track-item { gap: 10px; padding: 12px 12px; }
  .track-play { width: 30px; height: 30px; }
  .audition-btn { padding: 4px 10px; font-size: 11px; }
  .track-dur { width: auto; }
}

/* 迷你播放器 */
body.has-player { padding-bottom: 74px; }
.player-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  height: 64px; background: #23282d; color: #f2f5f6;
  transform: translateY(110%); transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.22);
}
.player-bar.show { transform: translateY(0); }
.player-inner {
  max-width: 1200px; height: 100%; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: minmax(180px, 1fr) minmax(260px, 2fr) minmax(140px, 1fr);
  align-items: center; gap: 18px;
}
.player-info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.player-info img { width: 42px; height: 42px; border-radius: 6px; object-fit: cover; background: #3a4249; flex-shrink: 0; }
.player-info .t { display: block; font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-info .a { display: block; font-size: 11px; color: #a6b0b4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-center { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 0; }
.player-ctrl { display: flex; align-items: center; gap: 14px; }
.player-ctrl button { color: #c6ced1; display: flex; align-items: center; justify-content: center; transition: all 0.2s; background: none; width: auto; height: auto; }
.player-ctrl button:hover { color: #fff; }
.player-ctrl .is-main { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff; }
.player-ctrl .is-main:hover { background: #0bc8a2; }
.player-ctrl svg { width: 16px; height: 16px; fill: currentColor; }
.player-progress { display: flex; align-items: center; gap: 8px; width: 100%; max-width: 520px; }
.player-progress .time { font-size: 11px; color: #98a2a6; font-variant-numeric: tabular-nums; min-width: 34px; text-align: center; }
.progress-bar { flex: 1; height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.2); cursor: pointer; position: relative; }
.progress-bar .fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 4px; background: var(--accent); width: 0%; }
.player-right { display: flex; align-items: center; justify-content: flex-end; gap: 12px; min-width: 0; }
.volume-bar { width: 80px; height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.2); cursor: pointer; position: relative; }
.volume-bar .fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 4px; background: var(--accent); width: 80%; }
.player-close { color: #98a2a6; font-size: 22px; line-height: 1; padding: 4px; background: none; }
.player-close:hover { color: #fff; }
@media (max-width: 900px) {
  .player-inner { grid-template-columns: 1fr auto; gap: 14px; }
  .player-center { display: none; }
  .player-right { display: flex; gap: 8px; }
  .player-right .volume-bar { display: none; }
  .player-info { width: auto; }
}
@media (max-width: 460px) {
  .player-info .t { max-width: 34vw; }
}

/* ---------- 通用 ---------- */
.empty-tip { text-align: center; padding: 44px 0; color: var(--text-3); }
.empty-tip .icon { font-size: 48px; margin-bottom: 14px; opacity: 0.5; }
.badge-featured { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; background: var(--grad); color: #fff; margin-left: 8px; vertical-align: 2px; }

/* 详情正文（新闻） */
.article { max-width: 780px; margin: 0 auto; }
.article .title { font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; line-height: 1.4; margin-bottom: 16px; }
.article .meta { display: flex; align-items: center; gap: 14px; color: var(--text-3); font-size: 13.5px; padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 28px; flex-wrap: wrap; }
.article .meta .cat { color: var(--accent); background: rgba(11, 201, 162,0.14); padding: 3px 12px; border-radius: 999px; }
.article .cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.article .cover img { width: 100%; max-height: 460px; object-fit: cover; }
.article .content { font-size: 16px; color: #35423f; line-height: 2; }
.article .content p { margin-bottom: 18px; }
.article .content h3 { font-size: 20px; margin: 28px 0 12px; }
.article .content img { border-radius: 12px; margin: 18px 0; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 14px; margin-bottom: 28px; transition: color 0.2s; }
.back-link:hover { color: var(--accent); }

/* 面包屑导航（专辑详情/资讯详情页） */
.crumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--text-2); font-size: 13.5px; margin-bottom: 24px; }
.crumb a { color: var(--text-2); transition: color 0.2s; }
.crumb a:hover { color: var(--accent); }
.crumb .sep { color: var(--line); }
.crumb .cur { color: var(--text); font-weight: 600; }

/* 关于我们 */

/* ---------- 关于我们页（改版） ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--accent); border-radius: 2px; }
.sec-block-head { text-align: center; margin-bottom: 22px; }
.sec-block-title { font-size: clamp(21px, 2.6vw, 28px); font-weight: 800; letter-spacing: 1px; margin-top: 6px; }

.about-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.about-rich p { color: var(--text-2); font-size: 15px; line-height: 1.9; margin-bottom: 14px; }
.about-rich p:last-child { margin-bottom: 0; }
.about-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-soft); border: 1px solid var(--line); }
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-media-empty { display: grid; place-items: center; height: 100%; min-height: 220px; color: var(--text-3); font-size: 13.5px; }

/* 宣传视频 */
.video-box {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9;
  background: #10201c center / cover no-repeat; cursor: pointer;
  border: 1px solid var(--line); box-shadow: 0 18px 46px rgba(15, 42, 37, 0.14);
}
.video-box.is-playing { cursor: default; }
.video-play { position: absolute; inset: 0; display: grid; place-items: center; }
.video-play span {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 255, 255, 0.92);
  display: grid; place-items: center; transition: transform 0.3s, background 0.3s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.video-box:hover .video-play span { transform: scale(1.08); background: #fff; }
.video-play svg { width: 22px; height: 22px; fill: var(--accent); margin-left: 4px; }
.video-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-media { max-width: 560px; margin: 0 auto; width: 100%; order: -1; }
}

/* 淡入动画 */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ---------- 响应式：三断点统一收窄两侧留白，防溢出 ---------- */
@media (max-width: 1024px) {
  .container, .nav-inner, .hero-content { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 768px) {
  .container, .nav-inner, .hero-content { padding-left: 16px; padding-right: 16px; }
  .sec-block { margin-bottom: 28px; }
}
@media (max-width: 460px) {
  .container, .nav-inner, .hero-content { padding-left: 12px; padding-right: 12px; }
  .filter-bar { grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 8px; }
  .sec-title { font-size: 19px; }
}
body { overflow-x: hidden; }

/* ---------- 主播主页 + 演播名链接 ---------- */
.artist-link { color: var(--accent); font-weight: 600; text-decoration: none; border-bottom: 1px dashed transparent; transition: color 0.2s, border-color 0.2s; }
.artist-link:hover { color: var(--accent-deep, #0a9e82); border-bottom-color: currentColor; }

.anchor-profile { display: flex; align-items: center; gap: 22px; padding: 10px 0 4px; }
.anchor-avatar { width: 96px; height: 96px; flex: none; border-radius: 50%; overflow: hidden; box-shadow: 0 10px 26px rgba(10, 158, 130, 0.22); border: 3px solid #fff; }
.anchor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.anchor-info { flex: 1; min-width: 0; }
.anchor-info h1 { font-size: 26px; margin: 0 0 6px; }
.anchor-role { margin: 0 0 4px; color: var(--accent); font-weight: 600; font-size: 14px; }
.anchor-count { margin: 0; color: var(--text-2, #5c6b68); font-size: 13px; }
.anchor-back { flex: none; padding: 9px 16px; border-radius: 999px; border: 1px solid rgba(15, 42, 37, 0.18); color: var(--text, #16211f); text-decoration: none; font-size: 13.5px; font-weight: 600; transition: background 0.2s, border-color 0.2s; }
.anchor-back:hover { background: var(--bg-soft, #f4f8f7); border-color: var(--accent); color: var(--accent); }

/* 来源节目定位：高亮描边 + 呼吸动画 */
@keyframes anchorPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(10, 158, 130, 0.45); } 50% { box-shadow: 0 0 0 10px rgba(10, 158, 130, 0); } }
.album-card.anchor-target-true { outline: 3px solid var(--accent); outline-offset: 3px; animation: anchorPulse 1.6s ease-out 3; }
.anchor-here-tag { position: absolute; top: 10px; left: 10px; z-index: 2; padding: 3px 10px; border-radius: 999px; background: var(--grad, linear-gradient(135deg, #0bc8a2, #0a9e82)); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); }
.anchor-resume { display: block; margin-top: 8px; padding: 8px 12px; border-radius: 10px; background: var(--grad, linear-gradient(135deg, #0bc8a2, #0a9e82)); color: #fff !important; text-align: center; font-size: 13px; font-weight: 700; text-decoration: none; box-shadow: 0 6px 16px rgba(10, 158, 130, 0.35); transition: transform 0.2s, box-shadow 0.2s; }
.anchor-resume:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(10, 158, 130, 0.45); }

@media (max-width: 640px) {
  .anchor-profile { gap: 14px; }
  .anchor-avatar { width: 72px; height: 72px; }
  .anchor-info h1 { font-size: 21px; }
  .anchor-back { padding: 7px 12px; font-size: 12.5px; }
}
