﻿.jzt-portal-cat-wrap {
  background-color: #f5f6f7;
  padding: 20px 0 50px;
  font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif
}
.jzt-portal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px
}
.cat-header {
  background: #fff;
  border-top: 4px solid var(--theme-primary);
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05)
}
.breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px
}
.breadcrumb a {
  color: #555;
  text-decoration: none
}
.breadcrumb a:hover {
  color: var(--theme-primary)
}
.cat-title {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  margin: 0;
  display: flex;
  align-items: center
}
.cat-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 24px;
  background: var(--theme-primary);
  margin-right: 12px;
  border-radius: 2px
}
.cat-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start
}
.cat-main {
  flex: 1;
  min-width: 0;
  background: #fff;
  padding: 20px;
  border: 1px solid #eee
}
.cat-sidebar {
  width: 320px;
  flex-shrink: 0
}
.news-list-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed #eee;
  text-decoration: none;
  color: inherit;
  transition: 0.3s
}
.news-list-item:last-child {
  border-bottom: none
}
.news-list-item:hover {
  background-color: #fafafa
}
.news-list-item:hover .news-title {
  color: var(--theme-primary)
}
.news-thumb {
  width: 220px;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s
}
.news-list-item:hover .news-thumb img {
  transform: scale(1.05)
}
.news-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1
}
.news-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}
.news-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}
.news-meta {
  font-size: 13px;
  color: #999;
  display: flex;
  gap: 15px;
  margin-top: 10px
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}
.video-card {
  display: block;
  text-decoration: none;
  color: #333;
  transition: 0.3s
}
.video-card:hover .video-title {
  color: var(--theme-primary)
}
.video-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #000
}
.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: 0.4s
}
.video-card:hover .video-poster img {
  opacity: 1;
  transform: scale(1.05)
}
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: 0.3s
}
.play-btn-overlay::after {
  content: '';
  display: block;
  border-left: 14px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px
}
.video-card:hover .play-btn-overlay {
  background: var(--theme-primary);
  border-color: var(--theme-primary)
}
.video-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px
}
.video-date {
  font-size: 12px;
  color: #999
}
.jzt-side-widget {
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 20px
}
.jzt-jzt-side-widget-hd {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  font-size: 16px;
  border-left: 3px solid var(--theme-primary)
}
.jzt-jzt-side-widget-bd {
  padding: 15px
}
.portal-pagination {
  margin-top: 30px;
  text-align: center
}
.portal-pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #ddd;
  margin: 0 4px;
  color: #333;
  text-decoration: none;
  border-radius: 4px
}
.portal-pagination .page-numbers.current {
  background: var(--theme-primary);
  color: #fff;
  border-color: var(--theme-primary)
}
.portal-pagination .page-numbers:hover:not(.current) {
  background: #f0f0f0
}
@media (max-width:768px) {
  .jzt-portal-cat-wrap {
    padding-top: 0
  }
  .jzt-portal-inner {
    padding: 0
  }
  .cat-header {
    padding: 15px;
    margin-bottom: 10px;
    border-top: none;
    border-bottom: 1px solid #eee
  }
  .cat-title {
    font-size: 20px
  }
  .cat-layout {
    flex-direction: column;
    gap: 0
  }
  .cat-sidebar {
    width: 100%;
    padding: 15px;
    background: #f5f6f7
  }
  .cat-main {
    padding: 0 15px 20px;
    border: none
  }
  .news-list-item {
    gap: 12px;
    padding: 15px 0
  }
  .news-thumb {
    width: 120px;
    height: 85px
  }
  .news-title {
    font-size: 16px;
    margin-bottom: 6px
  }
  .news-excerpt {
    display: none
  }
  .news-meta {
    margin-top: 5px;
    font-size: 12px
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 15px
  }
  .video-title {
    font-size: 13px
  }
  .play-btn-overlay {
    width: 34px;
    height: 34px;
    border-width: 1px
  }
  .play-btn-overlay::after {
    border-left: 10px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent
  }
}
.portal-pagination {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding-top: 20px;
  flex-wrap: wrap;
  width: 100%
}
.portal-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
 /* min-width: 38px;*/
  height: 38px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease
}
.portal-pagination .page-numbers:hover {
  border-color: var(--main-color, var(--theme-primary));
  color: var(--main-color, var(--theme-primary));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}
.portal-pagination .page-numbers.current {
  background: var(--main-color, var(--theme-primary));
  color: #fff;
  border-color: var(--main-color, var(--theme-primary));
  pointer-events: none
}
.portal-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  pointer-events: none;
  padding: 0 5px
}
.tag-live-guide-card {
  background: linear-gradient(135deg, #ffffff 0%, #fcfaff 100%);
  border: 1px solid #eee;
  border-left: 4px solid var(--theme-primary);
  border-radius: 8px;
  padding: 20px;
  margin-top: 15px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s
}
.tag-live-guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08)
}
.tag-live-info {
  flex: 1
}
.tag-live-tip {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
  display: flex;
  align-items: center
}
.tag-live-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff4d5f;
  border-radius: 50%;
  margin-right: 6px;
  animation: tagBlink 1s infinite
}
@keyframes tagBlink {
  50% {
    opacity: 0.3
  }
}
.tag-live-match-name {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin: 0;
  line-height: 1.4
}
.tag-live-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 20px
}
.tag-btn-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--theme-primary);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid var(--theme-primary)
}
.tag-btn-live:hover {
  background: #fff;
  color: var(--theme-primary)
}
.tag-btn-live.line2 {
  background: #fff;
  color: var(--theme-primary)
}
.tag-btn-live.line2:hover {
  background: var(--theme-primary);
  color: #fff
}
@media (max-width:768px) {
  .tag-live-guide-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 15px
  }
  .tag-live-actions {
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr
  }
  .tag-live-match-name {
    font-size: 16px
  }
  .tag-btn-live {
    width: 100%;
    padding: 8px 0;
    font-size: 13px
  }
}
.jzt-portal-cat-wrap {
  padding: 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif
}
.clean-breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px
}
.clean-breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: 0.2s
}
.clean-breadcrumb a:hover {
  color: var(--cat-theme-color)
}
.clean-breadcrumb .sep {
  margin: 0 10px;
  color: #ccc;
  font-size: 12px
}
.cat-hub-header {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 4px solid var(--cat-theme-color)
}
.cat-hub-header h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px
}
.cat-hub-header h1 i {
  color: var(--cat-theme-color)
}
.hub-jzt-nav-links {
  display: flex;
  gap: 5px;
  flex-wrap: wrap
}
.hub-btn {
  font-size: 13px;
  color: #555;
  background: #f5f6f7;
  padding: 6px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid #eee
}
.hub-btn:hover {
  background: var(--cat-theme-color);
  color: #fff;
  border-color: var(--cat-theme-color)
}
.cat-main-col {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03)
}
.cat-news-list {
  list-style: none;
  padding: 0;
  margin: 0
}
.cat-news-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed #f0f0f0;
  transition: background 0.3s
}
.cat-news-item:last-child {
  border-bottom: none
}
.cat-news-item:hover {
  background: #fafafa
}
.cn-img {
  flex-shrink: 0;
  width: 220px;
  height: 140px;
  overflow: hidden;
  border-radius: 6px;
  position: relative
}
.cn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s
}
.cat-news-item:hover .cn-img img {
  transform: scale(1.05)
}
.cn-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}
.cn-title {
  margin: 0 0 8px 0
}
.cn-title a {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  text-decoration: none;
  transition: 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  line-height: 1.5
}
.cn-title a:hover {
  color: var(--cat-theme-color)
}
.cn-excerpt {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  margin-bottom: 10px
}
.cn-meta {
  font-size: 12px;
  color: #aaa;
  display: flex;
  gap: 15px
}
.cat-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px
}
.v-card {
  display: block;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f9fa;
  border: 1px solid #eee;
  transition: 0.3s
}
.v-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--cat-theme-color)
}
.v-thumb {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden
}
.v-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: 0.3s
}
.v-card:hover .v-thumb img {
  opacity: 1;
  transform: scale(1.05)
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 40px;
  z-index: 2
}
.v-card:hover .play-btn {
  color: var(--cat-theme-color)
}
.v-title {
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}
.side-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden
}
.side-card-hd {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: baseline
}
.side-card-hd span {
  border-bottom: 2px solid var(--cat-theme-color);
  padding-bottom: 10px;
  margin-bottom: -12px;
  display: inline-block
}
.side-card-hd a {
  font-size: 12px;
  color: #888;
  text-decoration: none
}
.side-table {
  width: 100%;
  font-size: 13px;
  text-align: left;
  border-collapse: collapse
}
.side-table th {
  padding: 8px 5px;
  color: #888;
  border-bottom: 1px solid #eee;
  font-weight: normal
}
.side-table td {
  padding: 10px 5px;
  border-bottom: 1px dashed #f5f5f5
}
.side-team-logo {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px
}
.side-match-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #eee;
  gap: 10px
}
.side-match-time {
  color: #888;
  font-size: 11px;
  width: 35px;
  flex-shrink: 0;
  line-height: 1.3;
  text-align: center
}
.side-match-vs {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  align-items: center;
  min-width: 0;
  gap: 5px
}
.side-match-vs .team {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}
.side-match-vs .team.h {
  text-align: right
}
.side-match-vs .team.a {
  text-align: left
}
.side-match-vs .vs {
  text-align: center;
  color: #ccc;
  font-size: 11px
}
.side-match-btn {
  background: #f5f6f7;
  color: #555;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  flex-shrink: 0;
  transition: 0.3s;
  border: 1px solid #eaeaea
}
.side-match-btn:hover {
  background: var(--cat-theme-color);
  color: #fff;
  border-color: var(--cat-theme-color)
}
.side-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding-top: 5px
}
.st-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333
}
.st-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #f8f9fa;
  padding: 4px;
  border: 1px solid #eee;
  transition: transform 0.3s, border-color 0.3s
}
.st-card span {
  font-size: 11px;
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
  transition: color 0.3s
}
.st-card:hover img {
  border-color: var(--cat-theme-color);
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}
.st-card:hover span {
  color: var(--cat-theme-color);
  font-weight: bold
}
.side-news-ul {
  list-style: none;
  padding: 0;
  margin: 0
}
.side-news-ul li {
  padding: 10px 0;
  border-bottom: 1px dashed #f0f0f0
}
.side-news-ul li a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  line-height: 1.6;
  word-break: break-all
}
.side-news-ul li a:hover {
  color: var(--cat-theme-color)
}
.side-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}
.side-tag-cloud a {
  font-size: 12px;
  color: #666;
  background: #fcfcfc;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #eaeaea
}
.side-tag-cloud a:hover {
  background: var(--cat-theme-color);
  color: #fff;
  border-color: var(--cat-theme-color)
}
.nav-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}
.nav-matrix a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #fcfcfc;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
  font-weight: 500
}
.nav-matrix a:hover {
  background: var(--cat-theme-color);
  color: #fff;
  border-color: var(--cat-theme-color)
}
@media (max-width:768px) {
  .clean-breadcrumb {
    margin-bottom: 10px !important;
    padding-left: 15px !important
  }
  .cat-hub-header {
    padding: 12px 15px !important;
    margin-bottom: 12px !important;
    gap: 10px !important;
    border-radius: 6px !important
  }
  .cat-hub-header h1 {
    font-size: 18px !important
  }
  .hub-jzt-nav-links {
    gap: 6px !important
  }
  .hub-btn {
    padding: 4px 12px !important;
    font-size: 12px !important
  }
  .cat-news-item {
    gap: 12px;
    padding: 15px 0
  }
  .cn-img {
    width: 120px;
    height: 85px
  }
  .cn-title a {
    font-size: 15px
  }
  .cn-excerpt {
    display: none
  }
  .cat-video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }
  .play-btn {
    font-size: 30px
  }
  .side-team-grid {
    gap: 5px
  }
  .side-match-time {
    width: 30px;
    font-size: 10px
  }
  .side-match-vs {
    gap: 2px
  }
}