<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* stylelint-disable property-no-vendor-prefix */

/*
 * Style tweaks
 * --------------------------------------------------
 */
html,
body {
  overflow-x: hidden;
  /* Prevent scroll on narrow devices */
}

/*
   * Off Canvas
   * --------------------------------------------------
   */
@media screen and (max-width: 767px) {
  .row-offcanvas {
    position: relative;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }

  .row-offcanvas-right {
    right: 0;
  }

  .row-offcanvas-left {
    left: 0;
  }

  .row-offcanvas-right .sidebar-offcanvas {
    right: -50%;
    /* 6 columns */
  }

  .row-offcanvas-left .sidebar-offcanvas {
    left: -50%;
    /* 6 columns */
  }

  .row-offcanvas-right.active {
    right: 50%;
    /* 6 columns */
  }

  .row-offcanvas-left.active {
    left: 50%;
    /* 6 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 50%;
    /* 6 columns */
  }
}

.zebra-table tr th:nth-child(1) {
  padding-left: 82px;
}

.teams-table tr th:nth-child(1),
.teams-table tr td:nth-child(1) {
  width: 35%;
}

.teams-table tr th:nth-child(2),
.teams-table tr td:nth-child(2) {
  width: 20%;
}

.teams-table tr th:nth-child(3),
.teams-table tr td:nth-child(3) {
  width: 15%;
}

.teams-table tr th:nth-child(4),
.teams-table tr td:nth-child(4),
.teams-table tr th:nth-child(5),
.teams-table tr td:nth-child(5) {
  width: 12.5%;
}

.zebra-table td .name {
  width: 260px;
}

/* æ‰‹æœºç«¯éšè—ï¼ˆæ‰€åœ¨åŸŽå¸‚ã€ä¸»æ•™ç»ƒã€çƒé˜Ÿå¸‚å€¼ï¼‰ */
@media screen and (max-width: 767px) {
  .zebra-table tr th:nth-child(2),
  .zebra-table tr th:nth-child(3),
  .zebra-table tr th:nth-child(4),
  .zebra-table tr th:nth-child(5),
  .zebra-table tr td:nth-child(2),
  .zebra-table tr td:nth-child(3),
  .zebra-table tr td:nth-child(4),
  .zebra-table tr td:nth-child(5) {
    display: none;
  }

  .zebra-table td .name {
    width: 180px;
  }

  .teams-table tr th:nth-child(1),
  .teams-table tr td:nth-child(1) {
    border-radius: 10px;
  }
}

.recommended-player {
  background-color: white;
  border-radius: 10px;
  padding: 0 12px;
  padding-top: 24px;
  padding-bottom: 16px;
}

.recommended-player .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color-primary);
}

.recommended-player .subfield div {
  line-height: 23px;
}

.recommended-player .subfield .box {
  font-size: 14px;
  color: var(--text-color-primary);
  line-height: 14px;
  margin: 0 4px;
}

.recommended-player .subfield .checked,
.recommended-player .subfield .box:hover {
  color: var(--color-primary);
}

.recommended-content .content {
  margin: 18px 0;
  color: var(--text-color-primary);
}

.recommended-content .content:hover,
.recommended-content .checked {
  color: var(--color-primary);
}

.recommended-content .content .head-portrait-name .head-portrait img {
  margin-right: 8px;
}
</pre></body></html>