.theme-bg-linear {
  background: linear-gradient(270deg, #66E4B5 0%, #29ACC4 32%, #2976C4 62%, #6630E6 100%);
}
.flex-right {
  display: flex;
  justify-content: flex-end;
}
.flex-right-middle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.flex-left {
  display: flex;
  justify-content: flex-start;
}
.flex-left-middle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.flex-center-middle {
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news-other-wrap {
  margin: 0.24rem 0.32rem;
}
.detail-tags-item {
  background: #FFFFFF;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  opacity: 1;
  border-radius: 8px;
  margin-top: 1rem;
}
.detail-tags-item .tags-item {
  padding: 0.2rem;
}
.detail-tags-item .tags-item .subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccd5f7;
  position: relative;
}
.detail-tags-item .tags-item .subtitle::after {
  content: ' ';
  width: 141px;
  height: 3px;
  position: absolute;
  background: #201753;
  left: 0px;
  bottom: -2px;
  border-radius: 100px;
}
.detail-tags-item .tags-item .label {
  padding: 0.4rem 0;
}
.detail-tags-item .tags-item .label a {
  color: #ff9900;
  border: 0.01rem solid #ff9900;
  padding: 0.1rem 0.2rem;
  margin-bottom: 0.2rem;
  margin-right: 0.2rem;
  display: inline-block;
  cursor: pointer;
  border-radius: 3rem;
  max-width: 3rem;
  font-size: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 欧冠赛事 */
.match-list {
  font-size: 18px;
  color: #ffffff;
  border: 1px solid #CC7A00;
  margin: 30px 40px 0 40px;
  padding: 30px 20px;
  position: relative;
}
.match-list__label {
  background: #CC7A00;
  width: 86px;
  padding: 8px 15px;
  position: absolute;
  top: -20px;
}
.match-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.match-list__team {
  display: flex;
  align-items: center;
}
.match-list__team-vs {
  margin: 0 15px;
}
.match-list__home-team,
.match-list__visitor-team {
  display: flex;
  align-items: center;
}

.match-list__home-team > img,
.match-list__visitor-team > img {
  width: 40px;
  height: 40px;
}
.match-list__home-team-name {
  margin-right: 10px;
}
.match-list__visitor-team-name {
  margin-left: 10px;
}
.match-list__play-btn {
  border: 1px solid #CC7A00;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  color: red;
  font-weight: bold;
}