
.match-introduction {
  padding: 8px 24px 24px 24px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background-color: var(--foreground-color);
  border-radius: var(--border-radius-md);
  margin-top: 16px;
}

.match-introduction h1,
.match-introduction h2 {
  font-size: 16px;
  color: var(--text-color-t1);
  font-weight: 500;
  margin: 10px 0;
  font-family: "Oswald", sans-serif;
}

.match-introduction ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.match-introduction strong {
  color: var(--text-color-t2);
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

.match-introduction p {
  color: var(--text-color-t2);
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .match-introduction{
    padding: 8px 16px;
    margin-top: 8px;
  }
}



.live-container-box {
  display: flex;
  flex-direction: column;
}

.live-container-box.football-bg {
  border-radius: 8px;
  height: 300px;
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.live-container-box.lanqiu-bg {
  border-radius: 8px;
  height: 300px;
  background-image: url("../img/lanqiu-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.live-container-box .match-live {
  flex: 1;

  height: 250px;
  display: grid;
  grid-template-columns: 40% 20% 40%;
  justify-items: center;
  align-items: center;


}

.live-container-box .match-live .team-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.live-container-box .match-live .team-info .team-logo {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-container-box .match-live .team-info .team-name {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin-top: 12px;
  font-family: 'oswald', sans-serif;
}

.live-container-box .match-live .match-live-status {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.live-container-box .match-live .match-live-status .league-name {
  font-size: 18px;
  color: #e7e7e7;
  font-weight: 500;
  height: 32px;
  width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-family: 'oswald', sans-serif;
}


.live-container-box .match-live .match-live-status .start-time {
  font-size: 14px;
  color: #e7e7e7;
  text-align: center;
  margin-bottom: 16px;
  font-family: 'oswald', sans-serif;
}


.live-container-box .match-live .match-live-status .match-status {
  width: 80px;
  background-color: rgba(120, 120, 120, 0.8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  min-height: 26px;
  flex-direction: column;
}


.live-container-box .match-live .match-live-status .match-time {
  position: relative;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}
.live-container-box .match-live .match-live-status .match-state{
  font-size: 12px;
  color: #fff;
}


.live-container-box .match-live .match-live-status .score {
  font-size: 26px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-family: 'Anton', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}





.match-statistics {
  align-items: center;
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.match-statistics .team-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.match-statistics .data {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.match-statistics .data .vs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
}

.match-statistics .data .team .data-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.match-statistics .data .team .data-item span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  height: 30px;
  font-size: 14px;
  color: #fff;

}

.match-statistics .data .team .data-item span img {
  margin-right: 6px;
}




@media screen and (max-width: 1024px) {
  .match-statistics .data .team .data-item.stats-number{
    display: none;
  }
}
