/* ===========================
  手机端直播页改造（终版）
  适配 iOS / Android Chrome
============================ */

@media (max-width: 768px) {

  /* 顶部主导航横滑 */
  .site-header nav,
  .top-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
  }

  .site-header nav a,
  .top-nav a {
    display: inline-block;
    padding: 8px 14px;
    margin-right: 8px;
    font-size: 14px;
    color: #333;
    background: #f7f7f7;
    border-radius: 20px;
  }
  .site-header nav a.active,
  .top-nav a.active {
    background: #1677ff;
    color: #fff;
  }

  /* 联赛分类横滑 */
  .live-cat-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
  }
  .live-cat-nav li {
    list-style: none;
    margin-right: 10px;
  }
  .live-cat-nav a {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    color: #444;
    background: #f5f5f5;
    border-radius: 16px;
  }
  .live-cat-nav .active a {
    background: #1677ff;
    color: #fff;
  }

  /* 日期栏 */
  .archive-live-timebar {
    position: sticky;
    top: 0;
    background: #fff;
    font-size: 14px;
    padding: 10px 12px;
    border-left: 4px solid #ff5a5f;
    margin-top: 8px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.05);
    z-index: 15;
  }

  /* 比赛卡片 */
  .match-list li {
    background: #fff;
    margin: 10px 6px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0,0,0,.08);
  }

  .meta .time {
    font-size: 12px;
    color: #888;
  }

  /* 队伍信息更好区分 */
  .vs-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .team {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 5px 0;
  }
  .team-logo {
    width: 30px;
    height: 30px;
    margin: 0 6px;
    border-radius: 50%;
    background: #eee;
  }

  /* 状态按钮更明显 */
  .status-link {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 18px;
    font-size: 12px;
    color: #555;
    background: #ececec;
  }
  .status-link.start {
    background: #ff3b30;
    color: #fff;
    font-weight: bold;
  }

  /* 滚动反馈 */
  .match-list li:active {
    transform: scale(0.98);
    transition: 0.1s;
  }

  /* 分页 */
  .fenye ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0;
  }
  .fenye li {
    margin: 4px 6px;
  }
}
