/* ================================================================
   vod/play.html 页面专属样式（共用的播放列表 / 影视卡 / 面包屑 / 评论
   在 main.css 与 vod_detail.css，本文件不重复定义同名 class）
   ================================================================ */

.page-content--play { padding-bottom: 0; }

/* ===== 播放器工具栏（强制7：上下集 / 刷新 / 分享 / 报错 / 评论入口） ===== */
.player-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  background: #141414;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ptb-spacer { flex: 1 1 auto; min-width: 0; }
.ptb-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.ptb-btn:hover { background: var(--accent); color: #fff; }
/* 上/下集为空时是禁用态的 <span>，不是死链接（强制4.1） */
.ptb-btn.is-disabled {
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.30);
  cursor: not-allowed;
}
.ptb-btn.is-disabled:hover { background: rgba(255,255,255,.04); color: rgba(255,255,255,.30); }
.ptb-btn--report:hover { background: #f0b429; color: #1a1a1a; }
.ptb-now {
  font-size: 13px;
  color: rgba(255,255,255,.62);
  padding: 0 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 320px;
}

/* ===== 当前播放信息条 ===== */
.play-title-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.play-title {
  font-size: 20px; font-weight: 700; color: var(--text-1);
  line-height: 1.4; min-width: 0;
}
.play-title a { color: inherit; }
.play-title a:hover { color: var(--accent); }
.play-title-ep { margin-left: 8px; font-size: 15px; font-weight: 400; color: var(--text-3); }
.play-meta-score {
  flex-shrink: 0;
  font-size: 15px; font-weight: 700; color: #f0b429;
  background: rgba(240,180,41,.12);
  padding: 2px 9px; border-radius: 4px; line-height: 1.5;
}
.play-tags { margin-top: 10px; margin-bottom: 0; }

/* ===== RWD ===== */
@media (max-width: 1024px) {
  .ptb-now { max-width: 180px; }
}
@media (max-width: 767px) {
  .player-toolbar { padding: 7px 10px; gap: 5px; }
  .ptb-btn { font-size: 12px; padding: 5px 10px; }
  .ptb-now { display: none; }
  .ptb-spacer { display: none; }
  .play-title { font-size: 17px; }
  .play-title-ep { font-size: 13px; }
}
