/* timaBar_2.0 start */
body {
  margin: 0;
  background: #f3f3f3;
  font-size: 12px;
}

ul,
ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
:root {
  --bg: #ffffff;
  --bg2: #f1f1f1;
  --bg3: #333333;
  --bg4: #dfdfdf;
  --font: #fff;
  --font2: #999999;
  --font3: #333333;
  --line: #eaeaea;
  --line2: #8e8e8e;
  --line3: #dddddd;
  --green: #439247;
  --red: #f44336;
  --primary-color2: #d300ff;
}


/*夜间模式CSS定义------------------theme_dark*/

@media (prefers-color-scheme: dark) {
   :root {
      --bg: #333333;
      --bg2: #0e0e0e;
      --bg3: #333333;
      --bg4: #3e3e3e;
      --font: #fff;
      --font2: #999999;
      --font3: #ffffff;
      --line: #0e0e0e;
      --line2: #8e8e8e;
      --green: #3abf40;
      --red: #f44336;
  }
}

.theme--dark {
  --bg: #333333;
  --bg2: #0e0e0e;
  --bg3: #333333;
  --bg4: #000000;
  --font: #fff;
  --font2: #999999;
  --font3: #ffffff;
  --line: #0e0e0e;
  --line2: #8e8e8e;
  --green: #3abf40;
  --red: #f44336;
}

.rsmchar {
  padding: 6px;
  background: var(--bg);
  line-height: 20px;
  font-size: 12px;
  text-align: center;
}

.rsmchar img {
  vertical-align: middle;
  height: 16px;
}

.icon-font-report3,
.icon-font-report21 {
  color: var(--red);
}

.ant {
  margin-right: auto;
  background-color: transparent;
  margin-left: auto;
  font-family: "微软雅黑";
  font-size: 12px;
  color: var(--font);
  overflow: hidden;
  position: relative;
  border-bottom: solid 1px var(--bg2)
}

.ant .TNum {
  /* border-top: solid 1px var(--bg2); */
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  margin: 0;
}

.ant .TNum li {
  display: inline-block;
  color: var(--font2);
  border: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 11px;
  text-align: center;
  height: 100%;
  background: var(--bg2);
  position: relative;
}

.ant .TNum li::after {
  width: 100%;
  background: var(--bg);
  content: "";
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.ant .TNum li>span {
  position: relative;
  display: block;
  height: 16px;
  line-height: 16px;
  /* background-color:var(--bg);*/
  border-bottom: solid 1px var(--bg2);
  /* margin-right:-20px;*/
  /* right:-50%;*/
  width: 200%;
  z-index: 2;
}

.ant .TNum li:nth-child(odd) {
  background: var(--bg);
}

.ant .TNum li.line {
  /* border-right:solid 1px var(--line) */
}

.ant .TNum li:first-child {
  /* border-left:solid 1px #ccc */
}

.ant .left .h,
.ant .left .g {
  height: 50%;
  text-align: center;
  color: var(--font3)
}

.ant .left .h:after,
.ant .left .g:after {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: ""
}

.ant .timeLine {
  width: 100%;
}

.ant .timeLine .info {
  margin-top: 16px;
  float: right;
  height: -webkit-calc(100% - 16px);
  height: calc(100% - 16px);
  width: 100%;
  position: absolute;
  z-index: 2
}

.ant .timeLine .info .xline {
  height: 1px;
  width: 100%;
  /* background-color: var(--line3); */
  background-color: #706f6f;
  top: 50%;
  z-index: 9999;
  position: absolute
}

.ant .timeLine .info .yline {
  height: 100%;
  width: 1px;
  background-color: var(--bg2);
  left: 50%;
  z-index: 9999;
  position: absolute
}

.ant .timeLine .info .timeLine {
  height: 100%;
  background-size: 100% 100%;
  width: 1px;
  overflow: hidden;
  line-height: 113px;
  position: absolute;
  border: solid 1px rgba(255, 255, 255, 0.7);
  box-sizing: content-box;
  top: 0;
  z-index: 99999;
  font-size: 12px;
  color: var(--font);
  text-align: center;
  background-color: #329737;
  animation: fadeIn 3s infinite;
}

.ant .timeLineSetting {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  display: none;
  background: var(--bg3);
  transition: all 0.5s linear;
}

.ant .timeLineSetting h2 {
  font-size: 12px;
  font-weight: normal;
  color: var(--font);
  line-height: 20px;
  padding: 5px;
  background: -o-linear-gradient(top, var(--bg3), var(--bg3));
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bg)), to(var(--bg3)));
  background: linear-gradient(to bottom, var(--bg3), var(--bg3));
}

.ant .timeLineSetting h2 .iconfont {
  float: right;
  font-size: 20px;
}

.ant .timeLineSetting .info {
  color: var(--font);
  margin-top: 0;
  padding: 5px 5px 0 5px;
  height: 100%;
  background: var(--bg4);
}

.ant .timeLineSetting label {
  cursor: pointer;
  float: left;
  margin: 5px;
}

.ant .timeLineSetting label input {
  display: none;
}

.ant .timeLineSetting label span {
  display: block;
  line-height: 28px;
  padding: 0 7px;
  border-radius: 20px;
  background: var(--bg3);
}

.ant .timeLineSetting label input:checked~span {
  background-color: #FFF1E7;
  color: #FF6D59;
  line-height: 28px;
}

.ant .timeLineSetting label i {
  display: inline-block;
  position: static !important;
  width: 15px;
  height: 15px;
  border: 1px solid #c7c7c7;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: -3px;
}

.ant .timeLineSetting label input:checked~span i {
  background: url(/images/match-c.png) no-repeat center;
  width: 15px;
  height: 15px;
  float: left;
  border: none;
  margin: 7px 4px 0 0;
}

.ant.basketball {
  padding-left: 20px;
  border: none;
  box-sizing: border-box;
  background: var(--bg);
  float: right;
  margin: 5px 5px 5px 0;
  float: unset;
  overflow: hidden;
}

.ant.basketball .timeLine {
  position: relative;
}

.ant.basketball .TNum {
  border: solid 1px var(--line3)
}

.ant.basketball .TNum li>span {
  width: 100%;
}

.textLive {
  padding: 10px;
  margin-bottom: -10px;
}

.textLive .tit {
  line-height: 20px;
}

.textLive .info {
  padding-left: 20px;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--font2)
}

.textLive .tit::before {
  margin: 5px;
  display: block;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  float: left;
  background: var(--primary-color);
}

.textLive .tit.g::before {
  background: var(--primary-color2);
}

.textLive2 {
  padding: 10px;
  overflow: hidden;
}

.textLive2 ul li {
  display: flex;
  margin-bottom: 3px;
}

.textLive2 .timeSpan {
  background: var(--bg2);
  margin-right: 1px;
  flex: 0 0 30px;
  text-align: center;
}

.textLive2 .tit {
  line-height: 20px;
  background: var(--bg2);
  flex: 1;
  padding: 0 5px;
}

@-webkit-keyframes fadeIn {
  0% {
      opacity: 0
  }
  50% {
      opacity: 1
  }
  100% {
      opacity: 0
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0
  }
  50% {
      opacity: 1
  }
  100% {
      opacity: 0
  }
}

.ant .timeLine .info #timeBar {
  height: 100%;
  width: 2px;
  line-height: 113px;
  position: absolute;
  top: 0;
  z-index: 99999;
  font-size: 12px;
  border-left: solid 2px #ff4f00;
  color: var(--font);
  text-align: center;
  background-color: transparent
}

.ant .timeLine .info #timeBar.right i {
  top: 10px;
  overflow: hidden;
  line-height: 18px;
  background: #ff4f00;
  position: absolute;
  border: solid 1px #ff4f00;
  border-radius: 3px;
  left: -2px;
  font-style: normal;
  font-size: 12px;
  width: auto;
  height: 20px;
  color: var(--font);
  padding-right: 5px;
  padding-left: 5px;
}

.ant .timeLine .info #timeBar.left i {
  top: 10px;
  overflow: hidden;
  line-height: 18px;
  background: #ff4f00;
  position: absolute;
  border: solid 1px #ff4f00;
  border-radius: 3px;
  right: 0px;
  font-style: normal;
  font-size: 12px;
  width: auto;
  height: 20px;
  color: var(--font);
  padding-right: 5px;
  padding-left: 5px
}

.ant .timeLine .info i {
  font-size: 0;
  position: absolute;
  line-height: 14px;
}

.ant .timeLine .info i .icon {
  font-size: 13px !important;
}

.ant .timeLine .info i.b {
  color: var(--font3);
  background-color: var(--bg);
  line-height: 13px;
  border-radius: 50%;
  height: 13px;
  width: 13px;
  font-weight: normal;
  z-index: 888 !important;
}

.ant .timeLine .info i.rc,
.ant .timeLine .info i.yc {
  background-color: #f04545;
  height: 11px;
  width: 8px;
  transform: rotateZ(25deg);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  border: solid 1px #ffffff;
  border-radius: 2px;
}

.ant .timeLine .info i.yc {
  background-color: yellow;
}


/* 2黄变红开始 */

.ant .timeLine .info i.y2r {
  background: transparent;
  border: none;
  box-shadow: none;
  height: 11px;
  width: 8px;
  transform: rotateZ(25deg);
}

.ant .timeLine .info i.y2r::after,
.ant .timeLine .info i.y2r::before {
  content: "";
  z-index: 4;
  background-color: #f04545;
  height: 10px;
  width: 6px;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0 2px 2px 0;
  background-image: none;
  position: absolute;
  top: 0;
  left: 0;
  border: solid 1px #ffffff;
  border-left: none;
  box-sizing: content-box;
}

.ant .timeLine .info i.y2r::before {
  background-color: yellow;
  border: solid 1px #ffffff;
  border-radius: 2px;
  top: 0;
  left: -4px;
}


/* 2黄变红结束 */

.ant .timeLine .info i.f {
  color: #f44336;
  height: 14px;
  width: 14px;
}

.ant .timeLine .info i.s {
  background-color: #026a29;
  display: none;
}

.ant .timeLine .info .home {
  height: 50%;
  position: relative;
  left: 0;
  top: 0;
}

.ant .timeLine .info .homeLine .label {
  position: absolute;
  left: -20px;
  text-align: center;
  width: 20px;
  top: 0;
  color: var(--font2);
}

.ant .timeLine .info .home i {
  bottom: 3px;
  z-index: 999;
}

.ant .timeLine .info .home i.yc,
.ant .timeLine .info .home i.rc,
.ant .timeLine .info .home i.y2r {
  bottom: 10px !important;
}

.ant .timeLine .info .home i.b {
  top: 0;
  bottom: unset;
}

.ant .timeLine .info .home i.f {
  top: 5px;
  z-index: 999
}

.ant .timeLine .info .guest {
  height: 50%;
  position: relative;
  left: 0;
  top: 0
}

.ant .timeLine .info .guestLine .label {
  position: absolute;
  left: -20px;
  text-align: center;
  width: 20px;
  bottom: 0;
  color: var(--font2);
}

.ant .timeLine .info .guest i {
  position: absolute;
  top: 3px
}

.ant .timeLine .info .guest i.yc,
.ant .timeLine .info .guest i.rc,
.ant .timeLine .info .guest i.y2r {
  top: 10px !important;
}

.ant .timeLine .info .guest i.b {
  bottom: 0;
  top: unset;
}

.ant .timeLine .info .guest i.f {
  bottom: 5px;
  z-index: 999;
  top: unset;
}

.home .t,
.guest .t {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px !important;
  font-style: normal;
  color: #ccc;
  white-space: nowrap;
  width: 20px !important;
  text-align: center;
  height: 38px;
  line-height: 38px !important;
}

.guest .t {
  bottom: 0;
  top: unset !important
}


/* timaBar_2.0 end */
