<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.page-bg {
  background-color: #f7f7f7;
}

.page-bg .container {
  position: relative;
}

.fight-box {
  padding: 15px 0 5vh;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 80vh;
  overflow: auto;
  background-color: #f7f7f7;
}

.full-screen-btn {
  position: absolute;
  top: 30px;
  right: -110px;
}

.fight-list {
  width: 420px;
}

.fight-list .round-name {
  font-size: 16px;
  padding-bottom: 15px;
  color: #333;
  text-align: center;
  font-weight: bold;
}

.game-item-box {
  border-right: 4px solid #ccc;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 100;
}

.game-item-box::before {
  content: "";
  width: 4px;
  height: 84px;
  background-color: #f7f7f7;
  position: absolute;
  right: -4px;
  top: 0;
  z-index: 200;
}

.game-item-box::after {
  content: "";
  width: 4px;
  height: 87px;
  background-color: #f7f7f7;
  position: absolute;
  right: -4px;
  bottom: 0;
  z-index: 200;
}

.fight-list:last-child .game-item-box {
  border-right: none;
}

.game-item {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 0 5px;
  display: block;
  color: #333;
  text-decoration: none;
  position: relative;
}

.game-item:hover {
  cursor: pointer;
}

.game-item::before {
  content: "";
  width: 20px;
  height: 4px;
  position: absolute;
  top: 84px;
  left: -20px;
  background-color: #ccc;
}

.fight-list:first-child .game-item::before {
  display: none;
}

.game-item::after {
  content: " ";
  width: 20px;
  height: 4px;
  position: absolute;
  top: 84px;
  right: -20px;
  background-color: #ccc;
}

.fight-list:last-child .game-item::after {
  display: none;
}

.fight-list:first-child .game-item {
  margin-bottom: 20px;
}

.game-item .game-detail {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.game-item .player-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0 10px;
}

.game-item .home-info {
  align-items: flex-start;
}

.game-item .visitor-info {
  align-items: flex-end;
}

.game-detail .player-avatar {
  width: 80px;
  margin-bottom: 10px;
  text-align: center;
}

.game-detail .player-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}

.player-info .player-detail {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.player-info .home-detail {
  justify-content: flex-start;
}

.player-info .visitor-detail {
  justify-content: flex-end;
}

.player-info .player-desc {
  width: 80px;
  font-weight: bold;
  text-align: center;
}

.player-info .home-color {
  border-left: 5px solid #b2250f;
}

.player-info .visitor-color {
  border-right: 5px solid #0f6bb5;
}

.player-info .player-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.player-info .game-result {
  width: 50px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #f1f1f1;
  font-size: 12px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.home-detail .game-result {
  margin-left: 5px;
}

.visitor-detail .game-result {
  margin-right: 5px;
}

.player-info .home-win {
  background-image: url("../../images/usercenter/outscore/home_win.png");
}

.player-info .home-flat {
  background-image: url("../../images/usercenter/outscore/home_flat.png");
}

.player-info .visitor-win {
  background-image: url("../../images/usercenter/outscore/visitor_win.png");
}

.player-info .visitor-flat {
  background-image: url("../../images/usercenter/outscore/visitor_flat.png");
}

.game-item .game-info {
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.game-detail .game-name {
  width: 100%;
  color: #fff;
  height: 35px;
  line-height: 35px;
  background: url("../../images/usercenter/outscore/game_name.png");
  background-size: 100% 100%;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}

.game-detail .game-info .game-process {
  font-weight: bold;
}

.game-info .not-play {
  color: #ccc;
}

.game-item .winner-holes {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 0 8px;
  flex-wrap: wrap;
  height: 43px;
}

.game-item .winner-holes .icon-home-win,
.game-item .winner-holes .icon-flat,
.game-item .winner-holes .icon-visitor-win {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin-right: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #ffffff;
  font-size: 10px;
}

.game-item .winner-holes .icon-home-win {
  background-color: #b2250f;
}

.game-item .winner-holes .icon-flat {
  background-color: black;
}

.game-item .winner-holes .icon-visitor-win {
  background-color: #0f6bb5;
}

.fight-list:nth-child(2) .game-item {
  margin-top: calc((175px + 20px) * 2 - 175px);
}

.fight-list:nth-child(2) .game-item-box:nth-child(2) .game-item:first-child {
  margin-top: calc((175px + 20px) / 2);
}

.fight-list:nth-child(3) .game-item {
  margin-top: calc((175px + 20px) * 4 - 175px);
}

.fight-list:nth-child(3) .game-item-box:nth-child(2) .game-item:first-child {
  margin-top: calc((175px + 20px) * (2 - 1) + (175px + 20px) / 2);
}

.fight-list:nth-child(4) .game-item {
  margin-top: calc((175px + 20px) * 8 - 175px);
}

.fight-list:nth-child(4) .game-item-box:nth-child(2) .game-item:first-child {
  margin-top: calc((175px + 20px) * (4 - 1) + (175px + 20px) / 2);
}

.fight-list:nth-child(5) .game-item {
  margin-top: calc((175px + 20px) * 16 - 175px);
}

.fight-list:nth-child(5) .game-item-box:nth-child(2) .game-item:first-child {
  margin-top: calc((175px + 20px) * (8 - 1) + (175px + 20px) / 2);
}

.fight-list:nth-child(6) .game-item {
  margin-top: calc((175px + 20px) * 32 - 175px);
}

.fight-list:nth-child(6) .game-item-box:nth-child(2) .game-item:first-child {
  margin-top: calc((175px + 20px) * (16 - 1) + (175px + 20px) / 2);
}

.fight-list:nth-child(7) .game-item {
  margin-top: calc((175px + 20px) * 64 - 175px);
}

.fight-list:nth-child(7) .game-item-box:nth-child(2) .game-item:first-child {
  margin-top: calc((175px + 20px) * (32 - 1) + (175px + 20px) / 2);
}</pre></body></html>