/*下拉*/

.right-side .tooltitle .selectbox {
  text-align: right;
  border: none;
  padding-right: 5px;
  min-width: 80px;
}
/*赛程*/

.schedule .round,
.schedule .stage {
  margin-bottom: 10px;
}
.schedule .round span,
.schedule .stage span {
  min-width: 14px;
  line-height: 26px;
  text-align: center;
  margin: 0 5px 5px 0;
  padding: 0 6px;
  border: 1px solid var(--textcolor-4);
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
}
.schedule .round span.on,
.schedule .stage span.on {
  background: var(--primary-color) !important;
  color: var(--text-white) !important;
  border-color: var(--primary-color);
}
.schedule .round span.current,
.schedule .stage span.current {
  border-color: var(--primary-color);
  color: var(--text-primary);
}
/*对阵图*/

.draw .progress {
  margin-bottom: 10px;
  display: flex;
}
.draw .progress > span {
  background: var(--table_header);
  color: var(--textcolor-2);
  flex: 0 0 200px;
  padding: 4px 10px;
  text-align: center;
}
.draw .bracket-wrap {
  overflow-x: auto;
  padding-bottom: 10px;
}
.draw .bracket-wrap::-webkit-scrollbar {
  background: var(--table_header);
  width: 100%;
  height: 8px;
  border-radius: 10px;
}
.draw .bracket-wrap::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
  cursor: pointer;
}
.draw .bracket-wrap:active {
  cursor: grabbing;
}
.draw .bracket-wrap.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.draw .bracket {
  display: flex;
  position: relative;
}
.draw .round {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.draw .round:first-child {
  margin: 0;
}
.draw .matches {
  width: 200px;
  flex: 1;
  justify-content: space-around;
  flex-direction: column;
  display: flex;
}
.draw .match {
  background: var(--bgcolor-1);
  padding: 5px;
  margin: 4px 0;
  border: 1px solid var(--border-2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.draw .team {
  display: flex;
  align-items: center;
  padding: 0;
}
.draw .team img {
  width: 16px;
  height: 16px;
  object-fit: cover;
}
.draw .team .name {
  line-height: 20px;
  margin: 0 5px;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.draw .team.win .name {
  font-weight: bold;
}
.draw .team .score > span {
  margin: 0 4px;
  font-weight: bold;
}
.draw .connectors {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
/*简介*/

.information {
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  padding: 0 6px 10px 0;
}
/*最佳阵容*/

.top-team .team-box {
  background: #529761 url(/images/lineup-bg.svg) no-repeat center;
  background-size: cover;
  color: var(--text-white);
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  min-height: 305px;
}
.top-team .team-box .row {
  flex: 1;
  display: flex;
  text-align: center;
}
.top-team .team-box .player-box {
  flex: 1;
  margin: 8px 2px;
  cursor: pointer;
}
.top-team .team-box .player-box .logo {
  width: 30px;
  margin: 0 auto;
  position: relative;
}
.top-team .team-box .player-box .logo .player {
  background: var(--bgcolor-1);
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
}
.top-team .team-box .player-box .logo .team {
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: 0;
  right: -12px;
}
.top-team .team-box .player-box .name {
  width: 100%;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-box-pack: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}
/*赔率板块*/

.odds-stat .list .title .rank {
  font-weight: normal;
}
.odds-stat .list .title .team {
  text-align: center;
}
.odds-stat .list .oddlis {
  font-size: 14px;
  padding: 7px 0;
}
.odds-stat .list .rank {
  color: var(--textcolor-2);
  font-size: 12px;
  font-weight: bold;
  width: 25px;
}
.odds-stat .list .team {
  flex: 1;
  text-align: left;
  cursor: pointer;
}
.odds-stat .list .team img {
  width: 16px;
  min-width: 16px;
  min-height: 16px;
  margin: 0 4px;
  vertical-align: -2px;
}
.odds-stat .list .data {
  width: 60px;
  text-align: right;
  padding-right: 6px;
}
