﻿/* ceo-shop1 — 演唱会详情页（对齐 01-演唱会页.html 暖色纸感布局） */

.ceo-shop1 {
  --s1-bg: #faf9f7;
  --s1-card: #fffefa;
  --s1-line: #e6e0d8;
  --s1-line-dark: #d4ccc0;
  --s1-text: #1e1d1b;
  --s1-muted: #77716a;
  --s1-subtle: #aaa39b;
  --s1-accent: #d53b2f;
  --s1-ink: #111;
  --s1-shadow: 0 1px 0 rgba(0, 0, 0, .03), 0 14px 40px rgba(32, 24, 16, .04);
  --s1-radius: 8px;
  --s1-container: 1440px;
  --s1-sans: var(--font-sans);
  --s1-mono: var(--font-mono);
}

.ceo-shop1,
.ceo-shop1 *,
.ceo-shop1 *::before,
.ceo-shop1 *::after {
  box-sizing: border-box;
}

.ceo-shop1 {
  font-family: var(--s1-sans);
  color: var(--s1-text);
  font-size: 15px;
  line-height: 1.68;
  background: transparent;
}

.ceo-shop1::before {
  display: none;
}

.ceo-shop1-container {
  width: min(var(--s1-container), calc(100% - 32px));
  max-width: var(--s1-container);
  margin: 0 auto;
  padding: 0 0 34px;
  position: relative;
}

/* ── 面包屑 ── */
.s1-breadcrumb {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #554f49;
  font-size: 13px;
}
.s1-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.s1-breadcrumb a:hover {
  color: var(--s1-accent);
}
.s1-breadcrumb b {
  color: #1d1c1a;
  font-weight: 700;
}
.s1-breadcrumb .sep {
  color: var(--s1-subtle);
}

/* ── Hero 卡片 ── */
.s1-hero-card {
  background: var(--s1-card);
  border: 1px solid var(--s1-line);
  border-radius: var(--s1-radius);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1.16fr;
  gap: 20px;
  box-shadow: var(--s1-shadow);
}

.s1-media-wrap {
  padding-right: 18px;
  border-right: 1px solid var(--s1-line);
  min-width: 0;
}

.s1-video {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #201f1b;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}
.s1-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, .07), rgba(0, 0, 0, .12) 55%, rgba(0, 0, 0, .3));
  pointer-events: none;
  z-index: 2;
  transition: opacity .25s ease;
}

.s1-ratio {
  position: absolute;
  left: 13px;
  top: 13px;
  z-index: 4;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 4px;
  padding: 3px 7px;
  background: rgba(0, 0, 0, .55);
  font-size: 13px;
}

.s1v3-player-poster,
.s1v3-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.s1v3-player-poster {
  transition: opacity .25s ease;
}

.s1v3-player-wrap.is-active .s1v3-player-poster {
  opacity: 0;
  pointer-events: none;
}

.s1v3-player-wrap.is-active .s1-video::after {
  opacity: 0;
}

.s1v3-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .45) 70%, transparent 100%);
  opacity: 1;
  pointer-events: auto;
}

.s1v3-ctrl {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 4px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: background .15s ease;
}
.s1v3-ctrl:hover {
  background: rgba(255, 255, 255, .14);
}
.s1v3-ctrl svg {
  width: 20px;
  height: 20px;
}

.s1v3-icon-pause,
.s1v3-icon-exit-fs {
  display: none;
}

.s1v3-player-wrap.is-playing .s1v3-icon-play {
  display: none;
}
.s1v3-player-wrap.is-playing .s1v3-icon-pause {
  display: block;
}

.s1v3-player-wrap.is-fullscreen .s1v3-icon-enter-fs {
  display: none;
}
.s1v3-player-wrap.is-fullscreen .s1v3-icon-exit-fs {
  display: block;
}

.s1v3-time {
  flex: 0 0 auto;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, .92);
  white-space: nowrap;
  min-width: 72px;
}
.s1v3-time-sep {
  margin: 0 3px;
  opacity: .65;
}

.s1v3-progress {
  flex: 1 1 auto;
  position: relative;
  min-width: 0;
  height: 18px;
  display: flex;
  align-items: center;
}

.s1v3-progress-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  overflow: hidden;
  pointer-events: none;
}

.s1v3-progress-buffered,
.s1v3-progress-played {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: inherit;
  pointer-events: none;
}
.s1v3-progress-buffered {
  background: rgba(255, 255, 255, .28);
}
.s1v3-progress-played {
  background: var(--s1-accent, #d53b2f);
}

.s1v3-progress-input {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  height: 18px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.s1v3-progress-input::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
  border-radius: 999px;
}
.s1v3-progress-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .25);
}
.s1v3-progress-input::-moz-range-track {
  height: 4px;
  background: transparent;
  border: 0;
  border-radius: 999px;
}
.s1v3-progress-input::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .25);
}

.s1-video:fullscreen,
.s1-video:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  border-radius: 0;
  border: 0;
}
.s1-video:fullscreen .s1v3-preview-video,
.s1-video:-webkit-full-screen .s1v3-preview-video {
  object-fit: contain;
}
.s1-video:fullscreen .s1v3-controls,
.s1-video:-webkit-full-screen .s1v3-controls {
  padding: 14px 18px;
}

.s1-play {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border: 1.5px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(22, 22, 22, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .08) inset;
  cursor: pointer;
  padding: 0;
  transition: opacity .2s ease;
}
.s1-play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 23px solid #fff;
}

.s1v3-player-wrap.has-preview .s1-play {
  top: calc(50% - 20px);
  width: 54px;
  height: 54px;
}
.s1v3-player-wrap.has-preview .s1-play::before {
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #fff;
}

.s1v3-player-wrap.is-playing .s1-play,
.s1v3-player-wrap.is-paused .s1-play,
.s1v3-player-wrap.is-active .s1-play {
  opacity: 0;
  pointer-events: none;
}
.s1v3-player-wrap.is-playing .s1-ratio,
.s1v3-player-wrap.is-active .s1-ratio {
  opacity: 0;
}

.s1-thumb-row {
  margin-top: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s1-thumb {
  aspect-ratio: 16 / 9;
  flex: 1;
  min-width: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #12110f;
  cursor: pointer;
  background: #111;
  opacity: .94;
  padding: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.s1-thumb-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.s1-thumb.active {
  border: 2px solid #d05644;
  box-shadow: 0 0 0 2px #fff inset;
}
.s1-thumb-zoom {
  cursor: zoom-in;
}

/* ── 详情区 ── */
.s1-detail {
  min-width: 0;
}

.s1-file-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.s1-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  min-width: 83px;
  border: 1px solid var(--s1-subtle);
  border-radius: 4px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #4a4540;
  background: #fff;
}

.s1-edit-link {
  font-size: 12px;
  color: var(--s1-muted);
  text-decoration: none;
}
.s1-edit-link:hover {
  color: var(--s1-accent);
}

.s1-title {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.24;
  letter-spacing: .02em;
  font-weight: 800;
}

.s1-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--s1-line);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.s1-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 0 13px;
  border-left: 1px solid var(--s1-line);
}
.s1-meta:first-child {
  border-left: 0;
  padding-left: 0;
}

.s1-ico {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
}
.s1-ico img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.s1-meta-label {
  color: #8c867d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.s1-meta-value {
  margin-top: 3px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.s1-status {
  display: inline-block;
  border: 1px solid #e29e95;
  color: var(--s1-accent);
  border-radius: 3px;
  padding: 1px 6px;
  font-weight: 700;
}

.s1-summary {
  margin-bottom: 16px;
}

.s1-section-title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}
.s1-section-title span {
  color: #8a8178;
  font-weight: 700;
  font-size: 11px;
  margin-left: 4px;
  letter-spacing: .08em;
}

.s1-summary p {
  margin: 0;
  font-size: 13px;
  color: #4c463f;
  line-height: 1.75;
}

.s1-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 16px 0 20px;
}

.s1-stat {
  min-height: 90px;
  border: 1px solid var(--s1-line);
  border-radius: 6px;
  background: #fffdfa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
}
.s1-stat small {
  color: #807870;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.s1-stat small .cn {
  display: block;
  margin-top: 3px;
  color: #6d665e;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.s1-stat em {
  font-style: normal;
  font-size: 18px;
  color: #222;
  font-weight: 700;
  margin-top: 8px;
  font-family: var(--s1-mono);
  word-break: break-all;
}

.s1-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.s1-btn {
  height: 47px;
  border-radius: 5px;
  border: 1px solid #cfc6bb;
  background: #fffdfa;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.s1-btn:hover {
  background: #fff;
  border-color: #b8aea3;
  box-shadow: 0 4px 14px rgba(32, 24, 16, .08);
  transform: translateY(-1px);
  color: #111;
}
.s1-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(32, 24, 16, .06);
}
.s1-btn.primary {
  background: #151514;
  color: #fff;
  border-color: #151514;
}
.s1-btn.primary:hover {
  background: var(--s1-accent);
  border-color: var(--s1-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(213, 59, 47, .28);
}
.s1-btn.primary:active {
  background: #b83228;
  border-color: #b83228;
}
.s1-btn svg,
.s1-btn img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  flex: 0 0 20px;
}

/* ── 保障特性 ── */
.s1-features {
  margin-top: 16px;
  background: var(--s1-card);
  border: 1px solid var(--s1-line);
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 79px;
  box-shadow: var(--s1-shadow);
}

.s1-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid var(--s1-line);
  padding: 12px 16px;
}
.s1-feature:first-child {
  border-left: 0;
}

.s1-feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  border-radius: 50%;
  background: #ebebeb;
}
.s1-feature-icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.s1-feature b {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}
.s1-feature p {
  margin: 0;
  color: #625c54;
  font-size: 12px;
}

/* ── 核心信息 ── */
.s1-core {
  margin-top: 16px;
  background: var(--s1-card);
  border: 1px solid var(--s1-line);
  border-radius: 6px;
  padding: 18px;
  box-shadow: var(--s1-shadow);
}

.s1-block-title {
  margin: 0 0 16px;
  font-size: 21px;
  letter-spacing: .02em;
  font-weight: 800;
}
.s1-block-title span {
  color: #787168;
  font-size: 12px;
  margin-left: 8px;
  letter-spacing: .07em;
  font-weight: 700;
}

.s1-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.s1-panel {
  border: 1px solid var(--s1-line);
  border-radius: 6px;
  background: #fffdfa;
  overflow: hidden;
}

.s1-panel-head {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid var(--s1-line);
  font-size: 14px;
  font-weight: 800;
}
.s1-panel-head .s1-index {
  border: 1px solid var(--s1-line-dark);
  border-radius: 3px;
  padding: 1px 6px;
  margin-right: 8px;
  font-size: 12px;
}
.s1-panel-head small {
  color: #7a7269;
  font-size: 11px;
  letter-spacing: .07em;
  font-weight: 700;
}

.s1-setlist-body {
  padding: 14px 15px 0;
}

.s1-setlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 12px;
}
.s1-setlist-grid:not(.is-expanded) .s1-setlist-item:nth-child(n+16) {
  display: none;
}

.s1-setlist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  font-size: 13px;
  border: 1px solid var(--s1-line);
  border-radius: 4px;
  background: #fff;
}

.s1-setlist-no {
  flex: 0 0 22px;
  color: #8c867d;
  font-weight: 800;
  font-size: 12px;
  font-family: var(--s1-mono);
}

.s1-setlist-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #393631;
}

.s1-setlist-empty {
  margin: 0;
  padding: 14px 15px 18px;
  color: var(--s1-muted);
  font-size: 13px;
}

.s1-show-more {
  margin: 14px 0 14px;
  width: 100%;
  height: 43px;
  border: 1px solid var(--s1-line-dark);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  background: #fffdfa;
  color: inherit;
  font-family: inherit;
  transition: background .2s ease, border-color .2s ease;
}
.s1-show-more:hover {
  background: #fff;
  border-color: #b8aea3;
}

.s1-spec-table {
  border-collapse: collapse;
  width: 100%;
}
.s1-spec-table td {
  height: 32px;
  border-bottom: 1px solid var(--s1-line);
  font-size: 13px;
}
.s1-spec-table tr:last-child td {
  border-bottom: 0;
}
.s1-spec-table td:first-child {
  width: 50%;
  color: #4e4942;
  padding-left: 18px;
  border-right: 1px solid var(--s1-line);
}
.s1-spec-table td:first-child span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  margin-right: 10px;
  text-align: center;
  color: #111;
  vertical-align: middle;
  flex: 0 0 20px;
}
.s1-spec-table td:first-child svg {
  display: block;
}
.s1-spec-table td:last-child {
  padding-left: 18px;
  font-weight: 600;
}

/* ── 相关推荐（复用 catnav-2 商品卡片） ── */
.s1-related {
  margin-top: 16px;
  background: var(--s1-card);
  border: 1px solid var(--s1-line);
  border-radius: 6px;
  padding: 18px 20px;
  box-shadow: var(--s1-shadow);
}

.ceo-shop1 .s1-rec-cn2 .cn2-poster.has-cover {
  line-height: 0;
}
.ceo-shop1 .cn2-poster-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

.ceo-shop1 .s1-rec-cn2 {
  background: transparent;
  color: var(--s1-text);
}

.ceo-shop1 .s1-rec-cn2 .cn2-card-grid {
  margin-top: 0;
}

@media (max-width: 980px) {
  .ceo-shop1 .s1-rec-cn2 .cn2-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .ceo-shop1 .s1-rec-cn2 .cn2-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 灯箱 ── */
.s1-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.s1-lightbox.s1-lightbox--open {
  display: flex;
}

.s1-lightbox-img {
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.s1-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.s1-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s1-lightbox-nav:disabled {
  opacity: .35;
  cursor: default;
}
.s1-lightbox-prev { left: 20px; }
.s1-lightbox-next { right: 20px; }

/* ── 页面背景（取消暗色主题） ── */
body.ceo-shop1-page {
  background: var(--color-bg-gradient);
  color: var(--color-ink);
}
body.ceo-shop1-page main,
body.ceo-shop1-page #page,
body.ceo-shop1-page .site-content,
body.ceo-shop1-page .beijing,
body.ceo-shop1-page .ceo-container {
  background: transparent !important;
  background-image: none !important;
}

/* ── 响应式 ── */
@media (max-width: 980px) {
  .s1-hero-card {
    grid-template-columns: 1fr;
  }
  .s1-media-wrap {
    padding-right: 0;
    border-right: 0;
  }
  .s1-core-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .s1-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .s1-feature:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--s1-line);
  }
  .s1-feature:nth-child(4) {
    border-top: 1px solid var(--s1-line);
  }
}

@media (max-width: 680px) {
  .ceo-shop1-container {
    width: min(100% - 20px, var(--s1-container));
  }
  .s1-title {
    font-size: 20px;
  }
  .s1-meta-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px;
  }
  .s1-meta:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .s1-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .s1-stat:last-child {
    grid-column: 1 / -1;
  }
  .s1-actions {
    grid-template-columns: 1fr;
  }
  .s1-features {
    grid-template-columns: 1fr;
  }
  .s1-feature {
    border-left: 0 !important;
    border-top: 1px solid var(--s1-line);
    min-height: 76px;
  }
  .s1-feature:first-child {
    border-top: 0;
  }
  .s1-thumb-row {
    gap: 6px;
  }
  .s1-setlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .s1v3-controls {
    gap: 6px;
    padding: 8px;
  }
  .s1v3-ctrl {
    width: 30px;
    height: 30px;
  }
  .s1v3-ctrl svg {
    width: 18px;
    height: 18px;
  }
  .s1v3-time {
    font-size: 11px;
    min-width: 62px;
  }
}
