<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*************** æ¯”èµ›è®°å½•ç»Ÿè®¡ ****************/
.record-count {
  display: grid;
  grid-template-columns: repeat(3, 33.33%);
  grid-row-gap: 50px;
  grid-column-gap: 100px;
  padding-right: 300px;
  padding-left: 100px;
}

.record-count .record-count-home {
  color: #ff3535;
}

.record-count .record-count-vs {
  color: #358fff;
}

.record-count .progress-bar {
  height: 6px;
  width: 100%;
  margin-top: 15px;
  background: #c2c2c2;
}

@media screen and (max-width: 767px) {
  .record-count {
    grid-template-columns: repeat(2, 50%);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    padding-right: 10px;
    padding-left: 0;
  }

  .record-count-item * {
    font-size: var(--font-size-min);
  }
}

/***************** æ—¶é—´äº‹ä»¶ *****************/

.record-event .team-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.record-event .team-content .team-name {
  width: 80px;
}

.record-event .team-content .team-logo {
  width: 39px;
  height: 39px;
  min-width: 39px;
  border-radius: 50%;
  margin: 10px;
}

.record-event .record .record-item {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  width: 140px;
  height: auto;
}

.record-event .record .record-item:last-child {
  width: auto;
  height: auto;
}

.record-event .record .time-block {
  margin: -10px 0;
}

.record-event .record .time-block::after {
  content: '';
  height: 6px;
  background-color: #ff9c00;
  flex: 1;
  margin-left: -50px;
}

.record-event .record .record-item:last-child .time-block::after {
  display: none;
}

.record-event .record .time {
  position: relative;
  left: -50px;
  text-align: center;
  line-height: 50px;
  width: 50px;
  height: 50px;
  background: var(--background-regular);
  border: 1px solid #ff9c00;
  border-radius: 50%;
  z-index: 10;
}

.record-event .record .record-item .logo {
  width: 90px;
  height: 90px;
  overflow-y: auto;
}

.record-event .record .record-item .logo:first-child {
  align-items: flex-end;
  justify-content: flex-start;
}

.record-event .record .logo i,
.record-event .record .logo img {
  margin-bottom: 2px;
  margin-right: 2px;
}

@media screen and (max-width: 767px) {
  .record-event {
    align-items: center;
    justify-content: center;
    display: none;
  }
  .record-event .record-list {
    flex-direction: column;
  }
  .record-event .team-content {
    flex-direction: row;
  }
  .record-event .team-content :nth-child(2).team-info .team-name {
    order: 2;
  }
  .record-event .record {
    flex-direction: column;
  }
  .record-event .record .record-item {
    flex-direction: row;
    padding-left: 0;
    padding-top: 50px;
    height: 140px;
    width: auto;
  }
  .record-event .record .record-item .logo:first-child {
    align-items: flex-start;
    justify-content: flex-end;
  }
  .record-event .record .record-item .time-block {
    flex-direction: column;
  }
  .record-event .record .time-block .time {
    top: -50px;
    left: unset;
  }
  .record-event .record .time-block::after {
    width: 6px;
    height: 100%;
    margin-top: -50px;
    margin-left: 0;
  }
}

/***************** å›¾ä¾‹è¯´æ˜Ž *****************/
.rule-logo-icon {
  width: auto;
  height: 20px;
  object-fit: contain;
}

.rule-logo {
  padding: 20px 0;
  border-top: 1px solid #ededed;
  border-radius: 10px;
  gap: 20px;
}

.rule-logo .rule-logo-name {
  font-size: 16px;
  margin-left: 5px;
}

/***************** æ–‡å­—ç›´æ’­ ******************/
.record-word-list {
  padding-top: 15px;
}

.record-word-list .record-word-item,
.record-word-list .record-word-time {
  gap: 15px;
}

.record-word-list .record-word-time {
  width: 90px;
}

.record-word-list :not(:last-child).record-word-item .record-word-label::after {
  content: '';
  width: 2px;
  min-height: 50px;
  height: 100%;
  background: #ededed;
  align-self: flex-end;
  margin-right: 10px;
}

.record-word-list .record-word-info {
  float: left;
  margin-top: -8px;
}

.record-word-list .record-word-info.tag-dot-home::before,
.record-word-list .record-word-info.tag-dot-vs::before {
  float: left;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 15px;
  margin-right: 15px;
}

.record-word-list .record-word-info.tag-dot-home::before {
  background-color: #ff3535;
}

.record-word-list .record-word-info.tag-dot-vs::before {
  background-color: #358fff;
}

.record-word-list .record-word-info .record-word-text {
  position: relative;
  float: left;
  max-width: calc(100% - 50px);
  margin-bottom: 30px;
  font-size: var(--font-size-normal);
}

.record-word-list .record-word-info .record-word-text.record-word-bg {
  background: var(--background-primary);
}

.record-word-list .record-word-info .record-word-team-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: -25px;
}

@media screen and (max-width: 767px) {
  .record-word-list .record-word-info.tag-dot-home::before,
  .record-word-list .record-word-info.tag-dot-vs::before {
    margin-right: 5px;
  }

  .record-word-list .record-word-item,
  .record-word-list .record-word-time {
    gap: 5px;
  }

  .record-word-list .record-word-info .record-word-text {
    max-width: calc(100% - 30px);
    font-size: var(--font-size-small);
  }
}
</pre></body></html>