body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
}

body main {
  flex: 1;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  body main {
    width: 100%;
  }
}

.container-big {
  margin-left: auto;
  margin-right: auto;
  width: 1560px;
  max-width: 100%;
}

/* icon */
.iconfont.icon {
  line-height: inherit;
}

/* 空列表状态通用状态 */
.list-auto-empty:empty {
  display: block;
  margin: 0;
  padding: 0;
}

.list-auto-empty.empty-like::after,
.list-auto-empty:empty::after {
  display: block;
  content: attr(empty);
  color: gray;
  margin: 50px auto 0;
  background-image: url(../images/empty_data.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 224px;
  height: 140px;
  padding-top: 140px;
  padding-bottom: 30px;
  text-align: center;
}

.list-empty-img {
  width: 224px;
  height: 140px;
  object-fit: contain;
}

/* 加载数据 */
.loading {
  width: 100%;
  margin: 25px auto;
  text-align: center;
  height: 24px;
  line-height: 24px;
  visibility: hidden;
}

.loading.loading-run,
.loading.no-more-data {
  visibility: visible;
}

.loading.loading-run::after {
  content: '';
  display: inline-block;
  height: 24px;
  width: 24px;
  border: 6px dotted #079d50;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.loading.no-more-data::after {
  display: inline-block;
  content: 'No More';
  color: var(--color-text-secondary);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/******************************** bootstrap样式设置 ***********************************/
div.modal[role='dialog'] .modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 10px;
}

div.modal[role='dialog'] .modal-dialog .modal-content {
  max-width: 600px;
  width: 100%;
}

/******************************** 高斯模糊背景 ***********************************/
.blur-bg {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0);
  backdrop-filter: blur(50px);
}

.blur-bg-primary {
  background-color: var(--color-primary);
}

.blur-bg img.blur-bg-img {
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  -o-filter: blur(50px);
  filter: blur(30px);
  object-fit: cover;
  scale: 1.3;
  opacity: 0.5;
}

.blur-bg * {
  color: white !important;
}

.blur-bg a[href]:hover {
  color: var(--color-primary) !important;
}

/* 只有手机端才有效 */
.phone-blur-bg img.phone-blur-bg-img {
  display: none;
}

@media screen and (max-width: 767px) {
  .phone-blur-bg {
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0);
    backdrop-filter: blur(50px);
  }

  .phone-blur-bg-primary {
    background-color: var(--color-primary);
  }

  .phone-blur-bg img.phone-blur-bg-img {
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    -o-filter: blur(50px);
    filter: blur(30px);
    object-fit: cover;
    scale: 1.3;
    opacity: 0.5;
  }

  .phone-blur-bg * {
    color: white !important;
  }
}

/******************************************************************************/
/* 返回页面顶部 */
.back-top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.fixed-btn {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

.back-top-btn {
}

.fixed-btn * {
  color: white;
  font-size: 12rem;
  line-height: 1;
}

.back-top .icon-top {
  font-size: 18rem;
  line-height: 0.8;
}

.back-top:hover {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .back-top {
    bottom: 100px;
  }
}
/********************** 标签 *******************************/
.article-tag-list {
  display: flex;
  gap: 10rem;
}

/* 文章详情tags */
.tagged-box {
  display: flex;
  align-items: center;
  gap: 10rem;
  flex-wrap: wrap;
}

.tagged-box .tagged-title {
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.tagged-box .tagged-item {
  background-color: #f1f1f1;
  padding: 8rem;
  color: #0f2358;
}

.related-tagged {
  margin: 50rem 0;
}

/* 投票tag */
.poll-tag::before {
  content: 'POLL';
  color: transparent;
  background-image: url(../images/poll.gif);
  background-size: 100% 19px;
  width: 43px;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 10px;
}

/** 文章直播标签 */
.article-news-live {
  color: #ff3e3e;
  font-weight: bold;
}
.article-news-live::before {
  content: 'POLL';
  color: transparent;
  background-image: url(../images/live_03.gif);
  background-size: 100% 16px;
  width: 16px;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 10px;
}

/************************************** 资讯信息显示样式 ************************
/* 信息大标题 */
.info-title-big {
  font-size: 25rem;
  font-weight: bold;
  border-bottom: 10rem solid var(--color-primary);
  padding-bottom: 10rem;
  margin-bottom: 20rem;
  color: #0f2358;
}

/* 信息标签 */
.article-info-tag {
  font-size: 11rem;
  font-weight: bold;
  color: #2fc578;
  border: 1px solid #2fc578;
  margin-bottom: 10rem;
  padding: 0 2rem;
}

.article-info-tag:hover {
  color: white;
  background: var(--color-primary);
}

/* 信息 */
.article-info {
  font-weight: bold;
  font-size: 18rem;
  color: #0f2358;
  line-height: 1.3;
}

/* 时间 */
.article-time {
  font-size: 14rem;
  font-style: italic;
  margin-top: 8rem;
}

.article-time,
.article-time *:not(a) {
  color: #515151;
}

/* 时间描述tag */
.article-time .article-by-tag {
  font-weight: bold;
  margin-left: 1rem;
  margin-right: 5rem;
}

.article-time .article-by-tag:hover {
  color: var(--color-primary);
}

/* 资讯图 */
.article-img {
  width: 161rem;
  height: 121rem;
  margin-right: 15rem;
  object-fit: cover;
}

/* 资讯卡片 *******************/
.article-card {
  margin-bottom: 15rem;
}

.article-card-img {
  width: 100%;
  object-fit: cover;
}

.article-card-info {
  padding: 20rem 10rem 10rem;
}

/* 资讯统计通用样式 *******************/
.article-count-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20rem;
}

.article-count-block .count-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
}

.article-count-block .count-item .icon,
.article-count-block .count-item .num {
  color: var(--color-text-secondary);
}

.article-count-block a.count-item:hover .icon,
.article-count-block a.count-item:hover .num {
  color: var(--color-primary);
}

/******************* 关联资讯（用于详情关联） *************************/
.related-news .related-title span {
  font-size: 28rem;
  font-weight: bold;
  border-bottom: 5rem solid var(--color-primary);
  padding-bottom: 5rem;
}

.related-article {
  display: flex;
  flex-direction: column;
}

.related-article .related-title {
  margin-bottom: 40rem;
}

.related-article .related-list {
  gap: 20rem;
}

.related-article .article-list-item {
  gap: 20rem;
}

.related-article .related-title span {
  font-size: 28rem;
  font-weight: bold;
  border-bottom: 5rem solid var(--color-primary);
  padding-bottom: 5rem;
}

.related-article .article-img {
  width: 100%;
  height: auto;
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .related-article .article-img {
    width: 104rem;
  }
}

/******************* 关联比赛（用于详情关联） *************************/
.related-Matches-box {
  margin-top: 50rem;
  margin-bottom: 60rem;
}

.related-matches {
  display: flex;
  flex-direction: column;
}

.related-matches .related-title {
  margin-bottom: 40rem;
}

.related-matches .related-list {
  gap: 20rem;
}

.related-matches .article-list-item {
  gap: 20rem;
}

.related-matches .article-list-item:hover .matches-info-title {
  text-decoration: underline;
  color: black;
}

.related-matches .article-list-item:hover .matches-info-des {
  color: #666666;
}

.related-matches .related-title span {
  font-size: 28rem;
  font-weight: bold;
  border-bottom: 5rem solid var(--color-primary);
  padding-bottom: 5rem;
}

.related-matches .matches-info-title {
  font-size: 18rem;
  font-weight: bold;
  padding-bottom: 5rem;
}

.related-matches .matches-info-des {
  font-size: 13rem;
  color: #666666;
  word-wrap: break-word;
}

/*************************** 右侧关联资讯（详情） **************************/
.today-article .article-img {
  width: 80rem;
  height: 80rem;
}

.latest-article {
  margin-bottom: 30rem;
}

.today-article-title {
  border-bottom: 4rem solid #ccc;
  font-size: 18rem;
}

.latest-article-title {
  font-size: 19rem;
  font-weight: normal;
  border-bottom-width: 5rem;
}

.latest-article-list {
  gap: 10rem;
}

/************************** 上下篇 ***********************/
.pre-next-box {
  display: flex;
  justify-content: space-between;
  gap: 100rem;
  /* padding-top: 30rem; */
  /* padding-bottom: 30rem; */
}

.pre-next-box .pre-next-block {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pre-next-box .pre-next-block .name {
  color: #515151;
  font-size: 16rem;
}

.pre-next-box .pre-next-block .text {
  font-weight: bold;
  font-size: 14rem;
  margin-top: 10rem;
}

.pre-next-box .next-block {
  align-items: flex-end;
}

.pre-next-box .next-block .text {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .pre-next-box {
    flex-direction: column;
    gap: 30rem;
  }

  .pre-next-box .next-block {
    align-items: flex-start;
  }

  .pre-next-box .next-block .text {
    text-align: left;
  }
}

/*************************** 常用分割线 ***********************/
.split-line-regular,
.split-line-regular-change {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 20rem 0;
}

.split-line-regular-vertical,
.split-line-regular-vertical-change {
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 20rem;
}

/* 列表分割线 */
.split-list-line > .split-list-item:not(:last-child) {
  padding-right: 20rem;
  margin-right: 20rem;
  border-right: 1px solid var(--border-color-base);
}

@media screen and (max-width: 767px) {
  .split-list-line > .split-list-item {
    width: 100%;
  }

  .split-list-line > .split-list-item:not(:last-child) {
    padding-right: 0;
    padding-bottom: 20rem;
    margin-right: 0;
    margin-bottom: 20rem;
    border-right: 0;
    border-bottom: 1px solid var(--border-color-base);
  }
}

/* 小屏幕(手机端) */
@media screen and (max-width: 767px) {
  .split-line-regular-change {
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 20rem;
  }

  .split-line-regular-vertical-change {
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 20rem;
  }
}

/***************************** 分页 ***************************/
.pagination > li > a,
.pagination > li > span {
  background-color: #eef4fd;
  color: #0f2358e6;
  font-weight: bold;
  font-size: 16rem;
  border: none;
  margin-right: 10rem;
  padding: 8rem 15rem;
}

.pagination > li .border-green {
  background: #0f2358e6;
  color: white;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #0f2358e6;
  cursor: not-allowed;
  background-color: #f0eeee;
  border-color: #ddd;
}

/**************** 资讯详情共用头部 *****************************/
.article-detail-header {
  padding-bottom: 20rem;
  margin-bottom: 20rem;
  border-bottom: 1px solid var(--border-color-base);
}

.article-detail-header .article-info-tag {
  font-size: 14rem;
  font-weight: normal;
  padding: 3rem 5rem;
}

.article-detail-header .article-detail-title {
  font-size: 30rem;
  color: #0f2358;
  font-weight: bold;
  margin-bottom: 20rem;
}

.article-detail-header .article-detail-time {
  font-size: 16rem;
}

/**************************** 比赛信息显示样式 **************************/
.match-list {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}

.match-list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  position: relative;
  padding: 20rem;
  background: white;
  border-radius: var(--border-radius-base);
  font-size: var(--font-size-small);
  line-height: 1.4;
  cursor: pointer;
}

.match-list-item.match-list-item-select {
  border: solid 2rem var(--color-primary);
}

.match-list-item .match-date-type {
  background-image: url(../images/game_card_header_bg.png);
  background-size: 100% 100%;
  padding: 5rem 10rem;
  border-radius: var(--border-radius-base);
  min-width: 330rem;
}

.match-list-item .match-team-box {
  position: absolute;
  width: 100%;
  height: 1;
  overflow: visible;
  padding: 0 20rem;
}

.match-list-item .match-team {
  gap: 10rem;
  align-items: center;
  flex: 1;
  text-align: center;
}

.match-list-item .match-team-logo {
  width: 52rem;
  height: 52rem;
}

.match-team-info {
  width: 100%;
  max-width: 1000rem;
}

.match-list-item .match-info {
  font-size: 14rem;
  margin-top: 15rem;
  align-items: center;
  gap: 5rem;
  padding: 0 15rem;
  width: 360rem;
}

.match-list-item .match-date-year {
  color: white;
  text-align: center;
  font-size: var(--font-size-small);
}

.match-type,
.match-type:hover {
  text-align: center;
  color: white;
}

.match-list-item .match-date-time {
  color: #333;
  font-size: 20rem;
}

.match-score-status {
  font-size: 20rem;
}

.match-list-item .match-status {
  color: #333;
  font-size: var(--font-size-normal);
  text-align: center;
  line-height: 1;
  padding: 4rem 5rem;
  min-width: 44rem;
  border-radius: 6px;
}

.match-list-item .match-status-start {
  color: white;
  background: linear-gradient(123deg, #ffd511, #ff621e);
  font-size: var(--font-size-small);
}

.match-list-item .match-status-end {
  color: white;
  background-color: #128449;
  font-size: var(--font-size-small);
}

.match-date-all-o {
  color: #00a69c;
  margin-top: 10rem;
}

.match-date-year:hover,
.match-date-all-o:hover {
  text-decoration: underline !important;
}

.match-list-item .btn-select-date {
  position: absolute;
  right: 15rem;
  top: 15rem;
  color: var(--color-primary);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.match-list-item .btn-select-date:not(.btn-color-gray[disabled]):hover {
  color: var(--color-primary);
}

.match-list-item .btn-select-date[disabled],
.match-list-item .btn-select-date[disabled]:hover {
  color: var(--color-text-secondary);
}

.match-list-item .btn-select-date[disabled]:hover {
  opacity: 0.8;
}

.match-list-item .normal-team-score {
  color: #0c0c0c;
}

.match-list-item .highlight-team-score {
  color: #ff7e1b;
}

.highlight-team-score::after {
  content: '';
  display: inline-block;
  height: 14px;
  width: 14px;
  margin-left: 5px;
  background-size: 100% 100%;
  background-image: url(../images/highlight_score.png);
}

.match-list-item .lowlight-team-score {
  color: var(--color-text-regular);
}

@media screen and (max-width: 767px) {
  .match-list-item {
    padding: 10rem;
  }

  .match-team-info {
    justify-content: space-between;
  }

  .match-list-item .match-info {
    width: auto;
    flex: 1;
    padding: 0;
  }

  .match-list-item .match-team {
    width: 70rem;
    flex: auto;
    max-width: 70rem;
  }

  .match-list-item .match-date-type {
    width: calc(100% - 15rem);
  }

  .match-list-item .btn-select-date {
    position: static;
    margin-top: 5rem;
  }

  .match-list-item .match-date-year,
  .match-list-item .match-type,
  .match-list-item .match-team-score,
  .match-list-item .match-status,
  .match-list-item .match-score-status {
    font-size: 14rem;
  }

  .highlight-team-score::after {
    height: 12px;
    width: 12px;
    margin-bottom: -2px;
  }
}

/* 比赛地址列表item */
.addr-list-item .match-addr {
  font-size: 36rem;
}

/******************** 阅读更多news *************************************/
.read-more-news {
  background: #eeeeee;
  padding: 20rem;
}

.read-more-news .read-more-list {
  gap: 20rem;
}

.read-more-news .read-more-name {
  font-size: 18rem;
  padding-bottom: 5rem;
  margin-bottom: 20rem;
  border-bottom: 5rem solid #0f2358;
}

.read-more-news .read-more-item .article-info {
  font-size: 12rem;
}

.read-more-news .read-more-item:not(:last-child) {
  border-right: 1px solid var(--border-color-base);
}

.read-more-news .article-img {
  width: 100rem;
  height: auto;
  margin-right: 0;
}

.read-more-news .read-more-item {
  gap: 10rem;
}

/* 小屏幕(手机端) */
@media screen and (max-width: 767px) {
  .read-more-news .read-more-list,
  .read-more-news .read-more-item {
    flex-direction: column;
  }

  .read-more-news .read-more-item {
    border-right-width: 0 !important;
  }
}

/* icon-btn */
.icon-btn {
  width: 36rem;
  height: 36rem;
  line-height: 36rem;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid var(--border-color-base);
}

.icon-btn .icon {
  font-size: 20rem;
}

ul.nav > li,
.nav .nav-item {
  cursor: pointer;
}

.nav-tabs-border-bottom.nav-tabs > .nav-item > a,
.nav-tabs-border-bottom.nav-tabs > .nav-item.active > a:hover,
.nav-tabs-border-bottom.nav-tabs > .nav-item.active > a:focus {
  font-weight: bold;
  border: none;
  background: none;
  position: relative;
  padding: 6rem 15rem;
}

.nav-tabs-border-bottom.nav-tabs > .nav-item.active > a::after {
  content: '';
  display: block;
  height: 4px;
  margin: 6rem auto -6rem;
  width: 100%;
  line-height: 14px;
  background-color: var(--color-primary);
}

.nav.nav-tabs-regular {
  border: none;
  background: none;
  position: relative;
  padding: 6rem 0;
  margin-left: -15px;
  margin-right: -15px;
}

.nav.nav-tabs-regular > .nav-item > a {
  font-size: var(--font-size-normal);
  color: var(--color-text-regular);
}

.nav.nav-tabs-regular > .nav-item.active > a {
  font-weight: bold;
  color: var(--color-primary);
}

.nav.nav-tabs-regular > .nav-item.active > a::after {
  content: '';
  display: block;
  height: 4px;
  margin: 6rem auto -6rem;
  width: 80%;
  line-height: 14px;
  background-color: var(--color-primary);
  border-radius: 4px;
}

/* 快讯列表 */
.flash-news-list {
}

.flash-news-list .flash-list-item {
}

.flash-news-list .flash-news-time {
  display: inline-block;
  border: 1px solid var(--border-color-base);
  border-radius: 16px;
  padding: 4px 8px;
  line-height: 16px;
  font-size: var(--font-size-small);
}

.flash-news-list .flash-news-time::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  line-height: 16px;
  border-radius: 50%;
  background-color: var(--color-primary);
  margin-right: 5px;
}

.flash-news-list .flash-news-author {
  color: var(--color-text-secondary);
}

.flash-news-list .flash-news-info {
  border-left: 2px solid var(--border-color-light);
  margin-left: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.flash-news-list .flash-news-title {
  font-size: var(--font-size-small);
  line-height: 1.6;
  font-weight: bold;
}

.flash-news-list .share-btn {
  width: 26rem;
  height: 26rem;
  line-height: 26rem;
  display: inline-block;
  border: none;
}

.flash-news-list .share-btn .icon {
  color: var(--color-text-regular);
  font-size: 16rem;
}

.flash-news-list .flash-news-item.active .flash-news-info {
  color: var(--color-primary);
  border-left-color: var(--color-primary);
}

.flash-news-list .flash-news-info .article-img {
  height: 78rem;
  width: 109rem;
  max-width: 100%;
}
