﻿/* common start */
:root {
  --primary-color: #E84B5B;
  --container-width: 1280px;
  --bg-color: #f7f7f8;
  --line-color: #ccc;
  --text-color: #333;
  --btn-wait:#178058;
}
body {
  background-color: var(--bg-color);
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.5;
}
.container {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
a.active,
a:hover,
a:active {
  color: var(--primary-color);
}
.bottom-line {
  border-bottom: 1px solid #e5e5e5;
}
.one-line {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.moveside2 {
  position: fixed;
  top: 0;
  margin-top: 45px;
  width: 340px;
  background-color: #fff;
}
#assist-bar {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
}
#assist-bar #go-top > .icon {
  display: block;
  height: 50px;
  width: 50px;
  background: url('../images/up_red.svg') no-repeat center center;
}
.icon2 {
  display: block;
  margin-top: 10px;
  height: 50px;
  width: 50px;
  background: url('../images/up_red.svg') no-repeat center center;
  -webkit-transform: rotate(-180deg);
}
/* common end */
/* header start */
header {
  position: relative;
  height: 64px;
  overflow: hidden;
}
.header-wrapper {
  position: fixed;
  z-index: 1210;
  width: 100%;
  top: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  box-shadow: 0px 3px 4px 1px rgba(133,133,133,0.2);
}
.header-inner {
  width: var(--container-width);
  display: flex;
  align-items: center;
}
.header-inner .logo {
  margin-right: 56px;
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: #f3f3f3 1px 1px 0, #b2b2b2 1px 2px 0;
}
.nav-list {
  display: flex;
}
.nav-link {
  position: relative;
  color: #333;
  font-size: 16px;
  line-height: 64px;
  text-decoration: none;
  margin: 0 20px;
}
.nav-link.active {
  color: var(--primary-color);
}
.nav-link.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--primary-color);
}

/* header end */
/* main start */
.box {
  background-color: #fff;
  border-radius: 5px;
  padding: 0 10px;
}
.box-article {
  padding: 10px;
}
.box-article img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  padding: 5px;
}
.box-article p {
  padding:5px 0;
  text-indent: 2em;
}
.box-article p strong,.box-article h2{font-weight: bold;}
.box-title {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 14px;
  font-size: 16px;
  color: #333;
  height: 45px;
  border-bottom: 1px solid #e5e5e5;
}
.box-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transform: translateY(-50%);
}
.box-subtitle {
  padding: 10px 14px;
  color: #666666;
  font-size: 12px;
}
main {
  min-height: calc(100vh - 64px - 250px);
}
main > * {
  margin-top: 10px;
}
.match-wrapper {
  background-color: #fff;
  border-radius: 5px;
  padding: 0 10px;
  height: 50px;
  display: flex;
  align-items: center;
}
.match-title {
  text-align: center;
  width: 200px;
  font-size: 18px;
  color: var(--primary-color);
}
.match-line {
  width: 1px;
  height: 14px;
  background-color: var(--line-color);
}
.match-item {
  margin-left: 25px;
}
/* main start */
/* footer start */
footer {
  margin-top: 20px;
}
.footer-wrapper {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
}
.footer-area {
  flex: 1;
}
.footer-line {
  margin: 0 60px;
  width: 1px;
  height: 90px;
  background-color: var(--line-color);
}
.footer-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #666;
}
.footer-title svg {
  width: 22px;
  height: 22px;
  margin-right: 16px;
}
.footer-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  color: #666;
}
.footer-list a {
  margin: 10px 20px;
}
.footer-content {
  margin-top: 16px;
  padding: 16px 0;
  width: 100%;
  background: #1f1f1f;
  text-align: center;
  color: #fff;
}
.footer-content .container > * + * {
  margin-top: 12px;
}
.footer-content a:before {
  content: '|';
  margin: 0 16px;
}
/* footer end */
/*
live start
 */
.main-title {
  font-size: 24px;
  font-weight: bold;
}
.main-wrapper {
  display: flex;
}
.main-left {
  flex: 1;
}
.main-left > * + * {
  margin-top: 10px;
}
.main-right {
  margin-left: 10px;
  width: 300px;
}
.main-right > * + * {
  margin-top: 10px;
}
.live-type {
  padding: 0 25px;
  display: flex;
  align-items: center;
  position: relative;
}
.live-type:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #e1e1e1;
}
.live-type svg {
  font-size: 16px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.live-item {
  display: flex;
  align-items: center;
  height: 47px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.6);
  font-size: 12px;
}
.live-item > div {
  display: flex;
  align-items: center;
}
.live-item > div:first-child {
  flex: 1;
}
.live-icon {
  font-size: 20px;
}
.live-icon.icon-lanqiu {
  color: #E97F39;
}
.live-time {
  width: 80px;
  font-size: 14px;
  color: var(--primary-color);
  text-align: center;
}
.live-date {
  width: 80px;
  font-size: 12px;
  text-align: center;
}
.live-match {
  width: 100px;
  text-align: center;
  display: flex;
  align-items: center;
}
.live-status {
  width: 190px;
  font-size: 15px;
  text-align: center;
  color: #666666;
  padding: 5px 0;
}


.live-status a{
    padding: 0 10px;
    
}
.live-team {
  width: 120px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.live-team-h {
  text-align: right;
}
.live-team-a {
  text-align: left;
}
.live-logo {
  margin: 0 5px;
  width: 16px;
  height: auto;
}
.live-score {
  width: 60px;
  text-align: center;
  color: var(--primary-color);
}
.live-see {
  color: #fff;
  width: 27px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 3px;
  font-size: 19px;
  background-color: var(--btn-wait);
}
.live-see-begin {
  background-color: var(--primary-color);
}
.live-see:hover {
  color: #fff;
}
.live-arrow {
  margin-left: 15px;
  color: rgba(64, 64, 64, 0.39);
  font-weight: bold;
  font-size: 18px;
}
/*
live end
*/
/* news start */
.news-header {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 14px;
  font-size: 16px;
  color: #333;
  height: 45px;
  border-bottom: 1px solid #e5e5e5;
  justify-content: space-between;
}
.news-header:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transform: translateY(-50%);
}
.news-more {
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color);
}
.news-item {
  display: flex;
  align-items: center;
  line-height: 39px;
  font-size: 12px;
}
.news-title {
  flex: 1;
  margin-right: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news-time {
  color: var(--primary-color);
}
/* news end */
/* article start */
.article-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e5e5;
}
.article-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
}
.article-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 24px;
  flex: 1;
  font-size: 16px;
}
.article-time {
  color: #666;
}
/* article end */
/* page start */
.page-wrapper {
  padding: 8px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-wrapper a {
  margin: 4px;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 1;
  color: var(--text-color);
  border: 1px solid #ccc;
}
.page-wrapper a.active {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
/* page end */
/* zhibo start */
.zb-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /*color: #fff;*/
  font-size: 20px;
  font-weight: bold;
}
.zb-wrapper-lq {
  /*background-image: url(../img/lq_banner_trans.png);*/
}
.zb-wrapper-zq {
  /*background-image: url(../img/zq_banner_trans.png);*/
}
.zb-time {
    color: #666;
    font-size: 14px;
}
.zb-team {
  display: flex;
  /*flex-direction: column;*/
  align-items: center;
  font-weight: 400;
}
.zb-team img {
  margin: 0 20px;
  width: 50px;
  height: 50px;
}
.zb-info {
  width: 200px;
  text-align: center;
}
.zb-vs {
  margin: 12px 0;
}
.zb-score {
  margin: 0 20px;
  font-size: 32px;
}
.zb-detail {
  font-size: 14px;
  padding: 12px 0;
}
.zb-detail > * + * {
  margin-top: 10px;
}
.zb-detail > div {
  display: flex;
  align-items: center;
}
.zb-btn {
  padding: 0 8px;
  border-radius: 16px;
  color: #fff;
  background-color: var(--primary-color);
  line-height: 32px;
  display: flex;
  align-items: center;
}
.zb-btn > i {
  margin-right: 4px;
  font-size: 16px;
}
.zb-btn:hover {
  color: #fff;
}
/* zhibo end */
@media screen and (max-width: 991px) {
  :root {
    --container-width: 100%;
  }
  header {
    height: auto;
  }
  .header-wrapper {
    padding-top: 16px;
    position: static;
    height: auto;
  }
  .header-inner {
    padding: 0 24px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-list {
      flex-wrap: wrap;
  }
  .nav-link {
      margin: 0;
      width: 25%;
      line-height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .nav-link:first-child {
      display: none;
  }
  .nav-link.active:after {
    content: none;
  }
  .match-wrapper {
    flex-wrap: wrap;
    height: auto;
  }
  .match-title {
    width: 100%;
    line-height: 32px;
  }
  .match-line {
    width: 100%;
    height: 1px;
    display: none;
  }
  .match-item {
    line-height: 32px;
  }
  .main-wrapper {
    flex-direction: column;
  }
  .main-left {
    flex: auto;
    width: 100%;
  }
  .main-right {
    margin-left: 0;
    margin-top: 10px;
    flex: auto;
    width: 100%;
  }
  .live-item {
    padding: 10px 0;
    height: auto;
    flex-wrap: wrap;
    position: relative;
  }
  .live-item > div:first-child {
    flex: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .live-icon {
    margin-right: 80px;
  }
  .live-match {
    text-align: right;
  }
  .live-status {
    width: 100%;
    margin-bottom: 8px;
  }
  .live-team {
    width: calc(50% - 56px);
  }
  .live-see {
    margin-top: 8px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .live-arrow {
    position: absolute;
    margin: 0;
    inset: 0;
    opacity: 0;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-area {
    padding: 0 12px;
    flex: auto;
  }
  .footer-line {
    margin: 12px 12px;
    width: auto;
    height: 1px;
  }
  .main-title {
    margin-left: 10px;
  }
  .zb-team {
    flex-direction: column;
  }
  .zb-team img {
    margin: 0;
  }
  .zb-team div{
    order: 1;
    text-align: center;
  }
  .zb-info {
    width: 120px;
  }



}
/*# sourceMappingURL=base.css.map */


.ccwyltgk {
    padding: 15px;
}

.ccwyltgk a {
    display: inline-block;
    /* background-color: #178058; */
    background-color: var(--primary-color);
    color: #fff;
    margin: 5px;
    border-radius: 5px;
    padding: 2px 5px;
}

.start{
  color: var(--primary-color);
}

#tab_mQjUhw9n{
  display: flex;
  flex-wrap: wrap;
}

#tab_mQjUhw9n a{
  background-color: #f5677d;
  color: #fff;
  margin: 5px;
  padding: 8px;
}



.fenye {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  font-size: 14px;
}

.fenye ul li {
  display: inline-block;
  font-size: 14px;
  margin: 0 3px;
  line-height: 1.5;
  width: auto;
}

.fenye ul li a {
  font-size: 12px;
  color: #9B9B9B;
  display: block;
  padding: 2px 6px;
  border: 1px solid #1ec456;
  border-radius: 3px;
}

.fenye ul li a:hover {
  background-color: #1ec456;
  color: #fff;
  border: 1px solid #1ec456;
}

.fenye ul li.active a {
  background-color: #1ec456;
  color: #fff;
  border: 1px solid #1ec456;
}

.citiao_list {
    background-color: #fff;
    padding: 15px;
}

.citiao_list span a {
    line-height: 25px;
    font-size: 15px;
    color: #30363d;
}

.image_box img{
  max-width: 450px !important;
}


@media screen and (max-width: 991px) {
    .image_box img {
        max-width: 100% !important;
    }
}

.stream-sources__bar{background: none !important;border: 0 !important;padding: 0 !important;}
.stream-sources__row{display: inline-flex !important;flex-wrap: wrap;justify-content: center;gap:0 !important;}
.src-hint{display: none !important;}
.src-pill{padding: 0px !important;border-radius: 0px !important;display: inline !important;height: auto !important;border:0px !important;padding-top:0px !important;gap:0 !important;margin:5px !important;}
.stream-sources__row a,.src-name{background: var(--primary-color) !important;color:#fff !important;font-size: 14px !important;border-radius: 0px !important;font-weight: normal !important;padding:8px;font:inherit !important;}
.stream-sources,.src-meta{margin:0 !important;}
/* ================= [美化增强 ENH v1] 按钮/排版 —— 可整段删除回退，未改动任何类名、结构、链接锚点 ================= */
.zb-btn,.live-see,.live-see-begin{
  transition: transform .16s cubic-bezier(.4,0,.2,1), box-shadow .16s ease, filter .16s ease, background-color .16s ease;
}
/* 直播主按钮(胶囊)：渐变 + 光晕 */
.zb-btn{
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color,#2570E8) 85%, white), var(--primary-color,#2570E8));
  box-shadow:0 3px 9px -3px color-mix(in srgb, var(--primary-color,#2570E8) 50%, transparent);
  font-weight:600;
}
.zb-btn:hover{
  transform: translateY(-2px); color:#fff;
  box-shadow:0 7px 16px -5px color-mix(in srgb, var(--primary-color,#2570E8) 50%, transparent);
}
.zb-btn:active{ transform: translateY(0); }
/* 观看小图标按钮：进行中态渐变 + 悬停放大 */
.live-see-begin{
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color,#2570E8) 85%, white), var(--primary-color,#2570E8));
  box-shadow:0 2px 7px -2px color-mix(in srgb, var(--primary-color,#2570E8) 55%, transparent);
}
.live-see:hover{ transform: scale(1.1); box-shadow:0 3px 10px -2px rgba(0,0,0,.25); }
/* “更多”链接：悬停位移 */
.news-more{ transition: color .16s ease, transform .16s ease; display:inline-block; }
.news-more:hover{ transform: translateX(3px); }
/* ===== [排版布局 LAYOUT v1] 卡片/列表/区块视觉打磨 —— 仅追加,不改结构/类名/布局引擎 ===== */
/* 卡片/内容容器: 更柔圆角 + 轻阴影 + 悬停阴影加强 (仅视觉属性, 不动 display/flex/grid/width/position) */
.box,.match-wrapper,.citiao_list{
  border-radius:10px;
  box-shadow:0 1px 3px rgba(0,0,0,.06);
  transition: box-shadow .22s ease;
}
.box:hover,.match-wrapper:hover,.citiao_list:hover{
  box-shadow:0 8px 24px -8px color-mix(in srgb, var(--primary-color,#E84B5B) 20%, rgba(0,0,0,.12));
}
/* 列表行/比赛行/新闻行: 悬停主题色淡染 + 过渡 (纯背景色, 不动布局) */
.live-item,.news-item,.article-item{
  transition: background-color .18s ease;
}
.live-item:hover,.news-item:hover,.article-item:hover{
  background-color: color-mix(in srgb, var(--primary-color,#E84B5B) 5%, transparent);
}
/* 区块标题(.box-title / .news-header)自带左侧主题色装饰条(:before), 为避免冲突与文字挤压, 此处不再叠加 */
/* 新闻/集锦缩略图: 直接父级 overflow:hidden 防溢出, 悬停图片轻微放大 */
.article-item{ overflow:hidden; }
.article-img{ transition: transform .35s ease; }
.article-item:hover .article-img{ transform: scale(1.05); }
/* ===== [排版布局 LAYOUT v1] end ===== */
/* ===== [按钮突出 v2] 主行动按钮更醒目易点击 —— 仅追加, 不改类名/结构/链接; 主题色变量+fallback适配10套配色 ===== */
/* 直播中态: 轻柔呼吸光晕(只动 box-shadow, 不放大, 避免多个同时闪太吵) */
@keyframes enhCtaPulse{
  0%,100%{ box-shadow:0 3px 12px -4px color-mix(in srgb, var(--primary-color,#2570E8) 45%, transparent); }
  50%    { box-shadow:0 6px 20px -2px color-mix(in srgb, var(--primary-color,#2570E8) 78%, transparent); }
}
/* 每场比赛主CTA(.live-see = 进入直播/观看直播的入口按钮): 加大点击热区 + 圆角 + 悬停上浮放大 */
.live-see{
  width:36px !important;
  height:30px !important;
  line-height:30px !important;
  font-size:20px !important;
  border-radius:9px !important;
  font-weight:800 !important;
  background:linear-gradient(135deg, color-mix(in srgb, var(--btn-wait,#64748b) 80%, #fff), var(--btn-wait,#64748b)) !important;
  box-shadow:0 3px 10px -4px color-mix(in srgb, var(--btn-wait,#64748b) 55%, transparent);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
  cursor:pointer;
}
.live-see:hover{ transform: translateY(-2px) scale(1.1); box-shadow:0 8px 20px -5px rgba(0,0,0,.28); filter:brightness(1.08); }
.live-see:active{ transform: translateY(0) scale(.94); }
/* 直播中/进行中态(.live-see-begin): 醒目主题色渐变 + 彩色光晕 + 轻柔呼吸(强引导) */
.live-see-begin{
  background:linear-gradient(135deg, color-mix(in srgb, var(--primary-color,#2570E8) 82%, #fff), var(--primary-color,#2570E8)) !important;
  box-shadow:0 4px 14px -4px color-mix(in srgb, var(--primary-color,#2570E8) 55%, transparent) !important;
  animation: enhCtaPulse 2s ease-in-out infinite;
}
.live-see-begin:hover{ filter:brightness(1.1); }
/* 文字型主按钮(.zb-btn = 进入直播胶囊): 字重800 + 更大热区 + 胶囊 + 主题色渐变 + 光晕 */
.zb-btn{
  font-weight:800 !important;
  letter-spacing:.3px;
  padding:0 18px !important;
  border-radius:999px !important;
  background:linear-gradient(135deg, color-mix(in srgb, var(--primary-color,#2570E8) 82%, #fff), var(--primary-color,#2570E8)) !important;
  color:#fff !important;
  box-shadow:0 4px 14px -4px color-mix(in srgb, var(--primary-color,#2570E8) 55%, transparent) !important;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
  cursor:pointer;
}
.zb-btn:hover{ transform: translateY(-2px) scale(1.05) !important; box-shadow:0 9px 26px -4px color-mix(in srgb, var(--primary-color,#2570E8) 60%, transparent) !important; filter:brightness(1.07); color:#fff !important; }
.zb-btn:active{ transform: translateY(0) scale(.98) !important; }
/* ===== [按钮突出 v2] end ===== */

/* ===== [主CTA强化 v3] 首页每场比赛行的"主直播按钮"真正醒目易点击 —— 仅追加, 不改任何HTML/类名/结构/链接锚点; 精确目标以渲染HTML为准:
   <div class="live-status start match_every"><a href="…5001.html">直播详情</a></div>  →  选择器 .live-status a (在播态 .live-status.start a)。
   之前 v1/v2 把 CTA 加到了图标按钮 .live-see 上, 这里改到真正的文字入口 .live-status a, 用 !important 盖过 v1/v2 与原始样式。===== */
/* 在播态(容器带 start)呼吸光晕: 只动 box-shadow, 2s, 不放大 */
@keyframes enhLiveStatusPulse{
  0%,100%{ box-shadow:0 3px 12px -4px rgba(37,112,232,.45); box-shadow:0 3px 12px -4px color-mix(in srgb, var(--primary-color,#2570E8) 45%, transparent); }
  50%    { box-shadow:0 6px 22px -2px rgba(37,112,232,.80); box-shadow:0 6px 22px -2px color-mix(in srgb, var(--primary-color,#2570E8) 80%, transparent); }
}
/* 主直播按钮 → 填充胶囊 CTA: 主题色渐变(color-mix + 十六进制 fallback) + 白字 + 加大点击热区 + 彩色光晕 */
.live-status a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:7px 18px !important;
  font-size:13px !important;
  font-weight:800 !important;
  letter-spacing:.3px !important;
  line-height:1 !important;
  white-space:nowrap !important;
  color:#fff !important;
  border-radius:999px !important;
  background:#2570E8 !important;                                                                                   /* fallback 纯色 */
  background:linear-gradient(135deg, color-mix(in srgb, var(--primary-color,#2570E8) 82%, #fff), var(--primary-color,#2570E8)) !important;
  box-shadow:0 4px 14px -4px rgba(37,112,232,.55) !important;                                                       /* fallback 光晕 */
  box-shadow:0 4px 14px -4px color-mix(in srgb, var(--primary-color,#2570E8) 55%, transparent) !important;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease !important;
  cursor:pointer !important;
}
.live-status a:hover{
  transform: translateY(-2px) scale(1.06) !important;
  filter: brightness(1.08) !important;
  color:#fff !important;
  box-shadow:0 10px 26px -4px rgba(37,112,232,.62) !important;
  box-shadow:0 10px 26px -4px color-mix(in srgb, var(--primary-color,#2570E8) 62%, transparent) !important;
}
.live-status a:active{ transform: translateY(0) scale(.98) !important; }
/* 在播态(start / match_every 且含 start): 叠加轻柔呼吸光晕(只动 box-shadow, 不放大) */
.live-status.start a{ animation: enhLiveStatusPulse 2s ease-in-out infinite; }
/* ===== [主CTA强化 v3] end ===== */

/* ===== [视觉加强 v4] 静态即可见的大胆升级 —— 仅追加, 不改类名/结构/链接; 主题色变量+fallback适配10套配色 ===== */
/* 1) 内容卡片/面板(.box = 比赛列表 / 资讯侧栏面板): 静态可见的柔和大阴影 + 更大圆角 + 极淡主题色描边, 让平直区块变有层次的立体卡片(不加 overflow, 避免裁掉 CTA 光晕) */
.box{
  border-radius:14px !important;
  border:1px solid rgba(37,112,232,.10) !important;                                                     /* fallback 淡描边 */
  border:1px solid color-mix(in srgb, var(--primary-color,#2570E8) 12%, transparent) !important;
  box-shadow:0 6px 22px -8px rgba(0,0,0,.18) !important;                                                 /* 静态可见的立体阴影 */
}
/* 顶部导航条同款圆角 + 轻阴影, 与卡片呼应 */
.match-wrapper{
  border-radius:14px !important;
  box-shadow:0 4px 16px -8px rgba(0,0,0,.14) !important;
}
/* 2) 区块标题(.box-title / .news-header): 加粗放大 + 强化本就存在的左侧主题色装饰条(渐变+加高+微光晕), 静态可见 */
.box-title,.news-header{
  font-weight:800 !important;                                                                            /* 盖过 .box-title 内联 font-weight:bold */
  font-size:17px !important;
  letter-spacing:.3px !important;
}
.box-title:before,.news-header:before{
  width:5px !important;
  height:20px !important;
  border-radius:3px !important;
  background:var(--primary-color,#2570E8) !important;                                                    /* fallback 纯色竖条 */
  background:linear-gradient(var(--primary-color,#2570E8), color-mix(in srgb, var(--primary-color,#2570E8) 55%, #000)) !important;
  box-shadow:0 1px 6px -1px color-mix(in srgb, var(--primary-color,#2570E8) 55%, transparent) !important;
}
/* 顶部居中区块标题也加粗一档 */
.match-title{ font-weight:800 !important; }
/* 3) 首页比赛行主直播按钮(.live-status a, 承接 v3 胶囊): 再大一点 + 静态可见彩色阴影光晕, 更抢眼 */
.live-status a{
  padding:9px 22px !important;
  box-shadow:0 6px 16px -4px rgba(37,112,232,.45) !important;                                            /* fallback 彩色光晕 */
  box-shadow:0 6px 16px -4px color-mix(in srgb, var(--primary-color,#2570E8) 48%, transparent) !important;
}
/* 4) 列表更清晰: 资讯行加细分隔线, 比赛行分隔线更利落, 列表更有条理(纯边框色, 不动布局) */
.news-item{ border-bottom:1px solid rgba(0,0,0,.05) !important; }
.live-item{ border-bottom:1px solid rgba(0,0,0,.06) !important; }
/* ===== [视觉加强 v4] end ===== */

/* ===== [横排综合加强 v5] 保持横排列表(绝不改成卡片网格), 逐行精致化 + 直播中/即将开始按钮明显区分 —— 仅追加, 不改任何HTML/类名/结构/链接; 不动 display/flex/grid(保持原横排); 主题色变量 var(--primary-color)+fallback 适配10套配色; 全部 !important 盖过 v1-v4。
   真实类名(以 http://localhost:8917/ 渲染HTML为准):
   ①比赛行 .live-item(.match_li)  ②队徽 img.live-logo  ③联赛 a.live-match  ④VS/比分 .live-score
   ⑤直播中按钮 = .live-status.start a  (父容器含 start = 已开赛/直播中, 文字"直播详情")
   ⑥即将开始按钮 = .live-status:not(.start) a  (父容器无 start = 未开赛/即将开始) ===== */
/* 1) 比赛行: 隔行淡色 + 悬停整行高亮+左侧主题条 + 分隔线 (纯背景/阴影/边框, 不动 flex 布局) */
.live-item:nth-child(2n){ background:color-mix(in srgb, var(--primary-color,#2570E8) 4%, transparent) !important; }
.live-item:hover{ background:color-mix(in srgb, var(--primary-color,#2570E8) 10%, transparent) !important; box-shadow:inset 3px 0 0 0 var(--primary-color,#2570E8) !important; }
.live-item{ border-bottom:1px solid rgba(37,112,232,.12) !important; border-bottom:1px solid color-mix(in srgb, var(--primary-color,#2570E8) 12%, rgba(0,0,0,.06)) !important; }
/* 2) 队徽 更大圆形 (16px→40px, 仍小于 47px 行高, 不撑高行) */
.live-logo{ width:40px !important; height:40px !important; border-radius:50% !important; object-fit:cover !important; background:#f1f4f8 !important; padding:3px !important; }
/* 3) 联赛 主题色胶囊标签 */
.live-match{ background:color-mix(in srgb, var(--primary-color,#2570E8) 14%, transparent) !important; color:var(--primary-color,#2570E8) !important; padding:3px 11px !important; border-radius:999px !important; font-weight:700 !important; text-decoration:none !important; justify-content:center !important; }
/* 4) VS/比分 渐变徽章白字 */
.live-score{ background:linear-gradient(135deg, var(--primary-color,#2570E8), color-mix(in srgb, var(--primary-color,#2570E8) 60%, #000)) !important; border-radius:8px !important; color:#fff !important; font-weight:800 !important; padding:4px 0 !important; }
/* 5) 直播中按钮 = 实心填充胶囊(醒目) + 彩色光晕 + 白色脉冲点  —— .live-status.start a */
.live-status.start a{ background:#2570E8 !important; background:linear-gradient(135deg, color-mix(in srgb,var(--primary-color,#2570E8) 88%,white), var(--primary-color,#2570E8)) !important; color:#fff !important; border:0 !important; border-radius:999px !important; font-weight:800 !important; box-shadow:0 5px 15px -4px rgba(37,112,232,.5) !important; box-shadow:0 5px 15px -4px color-mix(in srgb,var(--primary-color,#2570E8) 50%,transparent) !important; }
.live-status.start a::before{ content:"" !important; display:inline-block; width:7px; height:7px; border-radius:50%; background:#fff; margin-right:8px; animation:rowLiveDot 1.4s infinite; }
@keyframes rowLiveDot{ 0%{box-shadow:0 0 0 0 rgba(255,255,255,.75)} 70%{box-shadow:0 0 0 6px rgba(255,255,255,0)} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0)} }
/* 6) 即将开始按钮 = 描边次要样式(白底+主题色边+主题色字+无光晕, 与直播中一眼区分) —— .live-status:not(.start) a */
.live-status:not(.start) a{ background:#fff !important; background-image:none !important; color:var(--primary-color,#2570E8) !important; border:1.5px solid color-mix(in srgb, var(--primary-color,#2570E8) 48%, transparent) !important; box-shadow:none !important; border-radius:999px !important; font-weight:700 !important; animation:none !important; }
.live-status:not(.start) a::before{ content:none !important; }
/* ===== [横排综合加强 v5] end ===== */

/* ===== [移动端修复 MFIX v2 · moban2] 仅≤640px, 不改桌面/结构/类名/锚点 ===== */
@media (max-width:640px){
  html,body{max-width:100%!important;overflow-x:hidden!important;}
  /* 队徽窄屏收敛(桌面v5的40px撑破队伍行,导致客队名换行到左下) */
  .live-item .live-logo{width:24px!important;height:24px!important;margin:0 3px!important;padding:2px!important;flex:0 0 auto!important;}
  /* VS 收窄 */
  .live-item .live-score{width:auto!important;min-width:40px!important;flex:0 0 auto!important;padding:4px 8px!important;}
  /* 队名自适应+可收缩+省略号: 保证 主队[徽]VS[徽]客队 铁定同一行, 客队名在最右 */
  .live-item .live-team{width:auto!important;max-width:30%!important;min-width:0!important;flex:0 1 auto!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
  .live-item .live-team-a{text-align:left!important;}
  /* 直播详情按钮padding微收 */
  .live-item .live-status a{padding:6px 16px!important;}
}
/* ===== [移动端修复 MFIX v2 · moban2] end ===== */
