/* 迈特票主题（PC 静态页） */
:root{
  --brand:#ff6a00;
  --brand2:#ff7a1a;
  /* 购票按钮：用红橙渐变，避免满屏单一红 */
  --buy:#ff2044;
  --buy2:#ff4d6d;
  --buy3:#ff7a1a;
  --text:#222;
  --sub:#666;
  --muted:#999;
  --bg:#f5f6f8;
  --card:#fff;
  --border:#ececef;
  --shadow:0 6px 18px rgba(0,0,0,.06);
  --radius:12px;
  --w:1200px;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--w);margin:0 auto;padding:0 20px}

/* 顶部导航（简化版，贴近迈特票） */
.site-top{
  background:#fff;
  border-bottom:1px solid var(--border);
}
.site-top__inner{
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo{
  font-weight:800;
  letter-spacing:.5px;
}
.logo__dot{color:var(--brand)}
.top-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:1;
  justify-content:center;
}
.city-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  color:var(--text);
  font-size:13px;
}
.search{
  flex:1;
  min-width:260px;
  max-width:520px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  color:var(--muted);
  font-size:13px;
}
.search__kbd{
  margin-left:auto;
  font-size:12px;
  color:#bbb;
}
.top-right{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:var(--sub);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255, 122, 26, 0.22);
  background:#fff;
  font-size:13px;
  cursor:pointer;
  color:#c24a00;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease, filter .15s ease;
}
.btn--primary{
  border:none;
  color:#fff;
  background:linear-gradient(90deg,var(--brand2),var(--brand));
}
.btn--ghost{
  background:transparent;
  border-color: rgba(255, 122, 26, 0.18);
  color:#c24a00;
}

.btn:hover{
  background: rgba(255, 122, 26, 0.08);
  border-color: rgba(255, 122, 26, 0.35);
  filter: brightness(.99);
}
.btn--primary:hover{filter: brightness(1.02)}

.btn:active{transform: translateY(1px)}

/* 面包屑 */
.crumbs{
  padding:14px 0 12px;
  color:var(--muted);
  font-size:12px;
}
.crumbs a{color:var(--muted)}
.crumbs a:hover{color:var(--brand)}
.page-title{
  padding:4px 0 14px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}
.page-title h1{
  font-size:22px;
  line-height:1.2;
}
.page-title__sub{color:var(--muted);font-size:13px}

/* 城市筛选（按截图：城市： + 文本链接，当前项橙色胶囊） */
.city-filter{
  background:#fff;
  border:1px solid var(--border);
  border-radius:0;
  padding:12px 14px;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.city-filter__label{
  font-size:13px;
  color:#444;
  font-weight:600;
}
.city-filter__list{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.city-filter__item{
  font-size:13px;
  color:var(--sub);
  line-height:22px;
}
.city-filter__item:hover{color:var(--brand)}
.city-filter__item--active{
  padding:2px 10px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--brand2),var(--brand));
  color:#fff;
  font-weight:600;
}
.city-filter__item--active:hover{color:#fff}

/* 列表卡片（场馆块） */
.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:0;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.venue-item{
  display:flex;
  gap:14px;
  padding:16px 16px;
  align-items:flex-start;
}
.venue-cover{
  width:126px;
  height:168px;
  border-radius:10px;
  background:linear-gradient(135deg,#ffe7d6,#fff);
  border:1px solid rgba(0,0,0,.04);
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#d85a00;
  font-weight:700;
  font-size:12px;
  letter-spacing:.5px;
}
.venue-main{flex:1;min-width:0}
.venue-name{
  font-size:16px;
  font-weight:700;
  margin-bottom:6px;
}
.venue-meta{
  font-size:13px;
  color:var(--sub);
  margin-bottom:10px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.venue-meta b{font-weight:600;color:#444}
.venue-shows-title{
  font-size:13px;
  color:#444;
  font-weight:600;
  margin-bottom:8px;
}
.show-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
  border-top:1px dashed #f0f0f2;
  font-size:13px;
}
.show-row:first-of-type{border-top:none;padding-top:0}
.show-date{flex-shrink:0;color:#444;font-weight:600;width:84px}
.show-name{
  flex:1;
  min-width:0;
  color:var(--sub);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.show-name a{
  color:#333;
  text-decoration:none;
  border-bottom:1px solid transparent;
}
.show-name a:hover{color:var(--brand);border-bottom-color:rgba(255,106,0,.35)}
.show-price{flex-shrink:0;color:#ff2044;font-weight:600}
.show-buy{
  flex-shrink:0;
  font-size: 0.7rem;
  color: #fff;
  background-color: #ff2044;
  border: 0;
  height: 1.6rem;
  width: 4.4rem;
  border-radius: 0.2rem;
  cursor: pointer;
  text-align: center;
  line-height: 1.6rem;
  display: inline-block;
}
.show-buy:hover{filter: brightness(1.03)}

/* “去购票 / 立即购买”文字默认样式 */
.buy-link{
  font-size: 0.8rem;
  color: var(--buy);
  font-weight: 600;
  white-space: nowrap;
}
.buy-link:hover{
  color: #ff0f36;
}

/* 购票 CTA：提前占位，hover 不引起布局变化 */
.buy-cta{
  position: relative;
  width: 4.4rem;
  height: 1.6rem;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.buy-cta .buy-link,
.buy-cta .show-buy,
.buy-cta .buy-btn,
.buy-cta .side-item__btn{
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 默认：显示“去购票”，隐藏按钮（不占位变化） */
.buy-cta .buy-link{opacity:1; pointer-events:auto;}
.buy-cta .show-buy,
.buy-cta .buy-btn,
.buy-cta .side-item__btn{opacity:0; pointer-events:none;}

/* 悬停范围收敛：仅移入 CTA 区域时切换 */
.buy-cta:hover .buy-link,
.buy-cta:focus-within .buy-link{opacity:0; pointer-events:none;}

.buy-cta:hover .show-buy,
.buy-cta:focus-within .show-buy,
.buy-cta:hover .buy-btn,
.buy-cta:focus-within .buy-btn,
.buy-cta:hover .side-item__btn,
.buy-cta:focus-within .side-item__btn{opacity:1; pointer-events:auto;}
.venue-right{
  width:168px;
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-end;
  gap:10px;
}
.venue-right .btn{width:148px}
.grid .venue-right .btn--primary{
  background:#ff2044;
  opacity:1;
}
.grid .venue-right .btn--primary:hover{
  background:#ff2044;
  border:none;
  opacity:.8;
  filter:none;
}
.venue-hero .venue-right .btn--primary{
  background:#ff2044;
  opacity:1;
}
.venue-hero .venue-right .btn--primary:hover{
  background:#ff2044;
  border:none;
  opacity:.8;
  filter:none;
}

/* 详情页头部 */
.venue-hero{
  background:#fff;
  border:1px solid var(--border);
  border-radius:0;
  box-shadow:var(--shadow);
  padding:18px 18px;
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.venue-hero__cover{
  width:160px;
  height:108px;
  border-radius:12px;
  background:linear-gradient(135deg,#ffe7d6,#fff);
  border:1px solid rgba(0,0,0,.04);
  flex-shrink:0;
}
.venue-hero__main{flex:1;min-width:0}
.venue-hero__title{font-size:22px;font-weight:800;margin-bottom:6px}
.kv{
  display:grid;
  grid-template-columns:32px 1fr;
  row-gap:4px;
  column-gap:10px;
  font-size:12px;
  line-height:1.45;
  color:var(--sub);
}
.kv dt{color:#444;font-weight:600;align-self:start;padding-top:7px}
.kv dd{min-width:0;margin:0}
.kv--compact .kv-row{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:nowrap;
}
.kv-text{
  flex:1;
  min-width:0;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.copy-icon-btn{
  flex-shrink:0;
  min-width:30px;
  width:30px;
  height:30px;
  padding:0;
  border:1px solid var(--border);
  border-radius:8px;
  background:#f7f7f9;
  color:#666;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  vertical-align:middle;
}
.copy-icon-btn:hover{background:#eeeef2;color:var(--brand)}
.copy-icon-btn--copied{
  width:auto;
  padding:0 8px;
  font-size:12px;
  line-height:28px;
  color:#fff;
  background:#ff6a00;
  border-color:#ff6a00;
}

/* 详情页：左右结构（左：Tab内容，右：侧栏） */
.detail-layout{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:14px;
  align-items:start;
}

.detail-main{
  background:#fff;
  border:1px solid var(--border);
  border-radius:0;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.detail-main__tabs{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-bottom:1px solid var(--border);
}

.tab{
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  color:var(--sub);
  cursor:pointer;
  background:#f6f7f9;
  border:1px solid #f0f1f3;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.tab--active{
  color:#fff;
  font-weight:700;
  border-color:transparent;
  background:#ff2044;
}
.tab:hover{transform: translateY(-1px)}

.detail-main__pane{display:none;padding:16px 16px}
.detail-main__pane--active{display:block}

.sidebar{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:0;
  box-shadow:var(--shadow);
  padding:14px 14px;
}
.side-card__title{
  font-size:15px;
  font-weight:800;
  margin-bottom:10px;
}
.side-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* 侧栏：仅标题列表（最新演出） */
.side-title-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.side-title-item{
  padding-top:10px;
  border-top:1px solid #f2f2f4;
  font-size:13px;
  font-weight:700;
  color:#333;
  line-height:1.7;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.side-title-item:first-child{padding-top:0;border-top:none}
.side-title-item a{color:inherit}
.side-title-item a:hover{color:var(--brand)}
.side-item{
  display:flex;
  gap:10px;
  padding-top:10px;
  border-top:1px solid #f2f2f4;
}
.side-item:first-child{padding-top:0;border-top:none}
.side-item__poster{
  width:56px;
  height:74px;
  border-radius:10px;
  background:#f3f4f6;
  border:1px solid rgba(0,0,0,.04);
  flex-shrink:0;
}
.side-item__main{flex:1;min-width:0}
.side-item__name{
  font-size:13px;
  font-weight:700;
  line-height:1.35;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.side-item__meta{
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.side-item__price{
  font-size:12px;
  color:#e65a00;
  font-weight:800;
  margin-top:6px;
}
.side-item__btn{
  margin-top:6px;
  font-size: 0.7rem;
  color: #fff;
  background-color: #ff2044;
  border: 0;
  height: 1.6rem;
  width: 4.4rem;
  border-radius: 0.2rem;
  cursor: pointer;
  text-align: center;
  line-height: 1.6rem;
  display: inline-block;
}
.side-item__btn:hover{filter: brightness(1.03)}

/* 如果需要隐藏按钮，使用该类 */
.btn-hidden{display:none !important;}

/* 详情页“演出项目”购票按钮（与列表购票一致） */
.buy-btn{
  font-size: 0.7rem;
  color: #fff;
  background-color: #ff2044;
  border: 0;
  height: 1.6rem;
  width: 4.4rem;
  border-radius: 0.2rem;
  cursor: pointer;
  text-align: center;
  line-height: 1.6rem;
  display: inline-block;
}
.buy-btn:hover{filter: brightness(1.03)}

/* 场馆详情-当前场馆演出：直接展示按钮（无 hover 行为） */
.buy-btn--always{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6rem;
}

/* 演出卡片（详情页演出列表） */
.show-card{
  display:flex;
  gap:12px;
  padding:12px 0;
  border-top:1px solid #f2f2f4;
}
.show-card:first-child{border-top:none;padding-top:0}
.show-card__poster{
  width:126px;
  height:168px;
  border-radius:10px;
  background:#f3f4f6;
  border:1px solid rgba(0,0,0,.04);
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#bdbdc2;
  font-size:12px;
}
.show-card__main{flex:1;min-width:0}
.show-card__title{font-size:15px;font-weight:800;margin-bottom:6px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.show-card__meta{font-size:12px;color:var(--sub);line-height:1.7}
.show-card__right{width:180px;flex-shrink:0;display:flex;flex-direction:column;align-items:flex-end;justify-content:center;gap:8px}
.badge{font-size:12px;color:#c24a00;background:rgba(255,106,0,.10);border:1px solid rgba(255,106,0,.25);padding:4px 8px;border-radius:999px}
.price{font-weight:800;color:#e65a00}

/* 演出资讯：普通列表（无卡片背景） */
.news-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 24px;
}
.news-item{
  padding:12px 0;
  border-bottom:1px solid #f2f2f4;
  margin:0;
}
.news-item:first-child{padding-top:0}
.news-item:nth-child(-n+2){padding-top:0}
.news-title{font-size:14px;font-weight:700;margin-bottom:6px;line-height:1.4}
.news-meta{font-size:12px;color:var(--muted);margin-bottom:6px}
.news-desc{font-size:13px;color:var(--sub);line-height:1.7}

/* 场馆详情折叠块 */
.collapse{
  margin-top:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:0;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.collapse__head{
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.collapse__title{font-size:15px;font-weight:800}
.collapse__chev{color:var(--muted)}
.collapse__body{padding:0 16px 16px;display:none}
.collapse--open .collapse__body{display:block}
.rich{
  color:var(--sub);
  font-size:13px;
  line-height:1.9;
}
.rich p{margin-top:10px}
.rich p:first-child{margin-top:0}

footer{
  margin-top:18px;
  padding:22px 0;
  color:var(--muted);
  font-size:12px;
  text-align:center;
}

@media (max-width: 960px){
  .venue-item{flex-direction:column}
  .venue-right{width:auto;align-items:flex-start}
  .venue-right .btn{width:auto}
  .show-card{flex-direction:column}
  .show-card__right{width:auto;align-items:flex-start}
  .detail-layout{grid-template-columns: 1fr}
}
@media (max-width: 720px){
  .news-grid{grid-template-columns:1fr}
}

