/* 公用样式 */
* {
  margin: 0;
  padding: 0;
  font-family: Arial;
  list-style: none;
  box-sizing: border-box;
}
body {
  background: rgba(29, 29, 29, 1);
  color: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.ad-anchor {
  text-align: center;
}

/* main header */
.header-common {
  padding: 8px;
}
.logo-1 {
  width: 21px;
  height: 22px;
}
.logo-2 {
  width: 100px;
  height: 17px;
  margin-left: 10px;
  margin-bottom: 2px;
}
.header-common .flag {
  float: right;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-main {
  margin-bottom: 8px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(25, 25, 25, 0.1);
  overflow: hidden;
  width: 180px;
  font-size: 12px;
  font-weight: 400;
}
.nav-main a {
  margin: 5px 0;
  color: #fff;
  text-decoration: underline;
  position: relative;
}
.nav-main a.active {
  font-weight: 700;
  color: rgba(255, 143, 11, 1);
  text-decoration: unset !important;
}

/* header with fresh */
.header-refresh {
  padding: 8px 8px 0;
}
.header-refresh .logo {
  width: 84px;
  height: 18px;
}
.header-refresh .refresh {
  float: right;
  width: 22px;
  height: 22px;
}

/* header back */
.header-back {
  padding: 6px;
}
.header-back img {
  width: 10px;
  height: 8px;
}
.header-back span {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 143, 11, 1);
}

/* header-close */
.header-close {
  padding: 8px;
}
.header-close .close {
  float: right;
  width: 22px;
  height: 22px;
}

/* back scores */
.back-scores {
  margin: 4px 0;
}
.back-scores img {
  width: 10px;
  height: 8px;
  margin-left: 8px;
  margin-right: 4px;
  vertical-align: middle;
}
.back-scores span {
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  font-weight: 400;
  line-height: 11px;
  color: rgba(255, 143, 11, 1);
}
.back-scores .match-status {
  float: right;
  margin-top: 3px;
  margin-right: 8px;
  font-size: 11px;
  font-weight: 700;
}

/* news card */
.card-news {
  display: block;
  padding: 4px 6px;
  border-bottom: 1px solid rgba(46, 46, 46, 1);
  overflow: hidden;
}
.card-news .extra {
  height: 18px;
  line-height: 18px;
}
.card-news .main {
  margin-bottom: 2px;
  overflow: hidden;
}
.card-news h3 {
  width: 100%;
  margin-right: 60px;
  font-size: 11px;
  font-weight: 700;
  word-wrap: break-word;
}
.card-news img {
  float: right;
  width: 54px;
  height: 54px;
  margin-left: 6px;
  object-fit: cover;
}
.card-news .source {
  font-size: 11px;
  font-weight: 400;
  color: #e8e8e8;
}
.card-news .time-ago {
  float: right;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 400;
  color: #e8e8e8;
}

/* league card */
.events-header {
  position: relative;
  display: block;
  padding: 2px 8px;
  background-color: rgba(56, 56, 56, 1);
}
.events-header div {
  margin-right: 27px;
  padding: 5px 0;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(56, 56, 56, 1);
}
.events-header img {
  position: absolute;
  top: 2px;
  right: 8px;
  background-color: rgba(56, 56, 56, 1);
  width: 22px;
  height: 22px;
}

/* match card */
.card-event {
  position: relative;
  display: block;
  padding: 5px 8px 4px;
  border-bottom: 1px solid #2e2e2e;
}
.card-event .status {
  position: absolute;
  top: 13px;
  width: 20px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
}
.card-event .teams {
  margin-left: 45px;
  margin-right: 27px;
  font-size: 11px;
  font-weight: 400;
}
.card-event .away {
  margin-top: 2px;
}
.card-event .score {
  float: right;
  font-weight: 700;
}
.card-event .name {
  display: inline-block;
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-event .right {
  position: absolute;
  top: 10px;
  right: 8px;
  width: 22px;
}

/* h2h card */
.card-h2h {
  margin: 8px 6px 4px;
}
.card-h2h .header {
  width: 100%;
  padding: 5px 0;
  overflow: hidden;
}
.card-h2h .header div {
  float: left;
  font-size: 11px;
}
.card-h2h .header .name {
  width: 25%;
  font-weight: 600;
}
.card-h2h .title {
  width: 50%;
  line-height: 12px;
  font-weight: 400;
  text-align: center;
}
.card-h2h .header .title-only {
  width: unset;
  float: unset;
}
.card-h2h .bar {
  margin: 2px 0 6px;
  overflow: hidden;
}
.card-h2h .bar div {
  float: left;
  height: 8px;
}
.card-h2h .bar .win {
  background-color: rgba(87, 165, 75, 1);
}
.card-h2h .bar .draw {
  background-color: rgba(56, 56, 56, 1);
}
.card-h2h .bar .lost {
  background-color: rgba(101, 101, 101, 1);
}
.card-h2h .bar .lost.loose {
  background-color: rgba(255, 107, 151, 1);
}
.card-h2h .footer {
  overflow: hidden;
}
.card-h2h .h2h-block {
  float: left;
  width: 33%;
}
.card-h2h .h2h-block.draw {
  text-align: center;
}
.card-h2h .h2h-block.draw .rate-box {
  text-align: left;
}
.card-h2h .h2h-block.lost {
  text-align: right;
}
.card-h2h .block {
  display: inline-block;
  vertical-align: top;
  width: 30px;
  padding: 9px 0;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.card-h2h .block.win {
  background-color: rgba(87, 165, 75, 1);
}
.card-h2h .block.draw {
  background-color: rgba(56, 56, 56, 1);
}
.card-h2h .block.lost {
  background-color: rgba(101, 101, 101, 1);
}
.card-h2h .block.lost.loose {
  background-color: rgba(255, 107, 151, 1);
  color: rgba(0, 0, 0, 1);
}
.card-h2h .rate-box {
  display: inline-block;
  vertical-align: top;
}
.card-h2h .label {
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
}
.card-h2h .rate {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
}
.card-h2h .see-all {
  margin-top: 6px;
  text-align: center;
}
.card-h2h .see-all a {
  display: inline-block;
  padding: 8px 23px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  color: #000;
  background-color: rgba(255, 143, 11, 1);
}

/* pagination */
.pagination {
  position: relative;
  height: 22px;
  margin-top: 8px;
}
.pagination .arrow {
  position: absolute;
  top: 0;
}
.pagination .arrow span {
  position: absolute;
  top: 5px;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 143, 11, 1);
}
.pagination .prev {
  left: 0;
}
.pagination .next {
  right: 0;
}
.pagination .next span {
  right: 22px;
}
.pagination img {
  width: 22px;
  height: 22px;
}
.pagination .center {
  padding: 4px 0;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  color: rgba(232, 232, 232, 1);
}

/* news detail */
.article-title {
  padding: 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 11px;
}
.article-wrapper {
  padding: 0 4px;
}
#article-render {
  min-height: 312px;
  height: 312px;
  overflow: hidden;
}
#article-render img {
  width: 100%;
  margin-top: 6px;
}
#article-render a {
  text-decoration: underline !important;
}
#article-render h1,
#article-render h2,
#article-render h3,
#article-render h4,
#article-render h5,
#article-render h6,
#article-render p,
#article-render li {
  margin: 4px 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
}
#read-more {
  display: block;
  width: 108px;
  height: 27px;
  margin: 8px auto;
  background: rgba(255, 143, 11, 1);
  font-family: Arial;
  font-size: 11px;
  font-weight: 700;
  line-height: 27px;
  color: rgba(0, 0, 0, 1);
  outline: none;
  border: none;
}
.explore-title {
  margin: 12px 0 8px 8px;
  font-family: Arial;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
}

/* nav scores */
.nav-scores {
  margin: 8px 8px 0;
}
.nav-scores .time-list {
  overflow: hidden;
}
.nav-scores a {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}
.nav-scores span {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}
.nav-scores .time-list a.active {
  color: rgba(255, 143, 11, 1);
  text-decoration: unset;
}

.nav-scores .more {
  margin-top: 4px;
  overflow: hidden;
}
.nav-scores .more span {
  float: left;
}
.nav-scores .more .time-item {
  float: left;
}

.nav-scores .time-refresh {
  float: left;
  margin-top: -4px;
  text-decoration: underline;
}

.nav-scores .time-refresh span {
  float: none;
  display: inline;
  vertical-align: middle;
  font-size: 10px;
  font-weight: 400;
  line-height: 11px;
}

.nav-scores .time-refresh img {
  vertical-align: middle;
  height: 12px;
}

.nav-scores .day-title {
  float: right;
  font-size: 10px;
  font-weight: 700;
}

.events {
  margin-top: 8px;
}

/* scores more */
.scores-more {
  padding: 0 5px;
}
.scores-more .more-list {
  position: relative;
  padding: 7px;
  border-bottom: 1px solid rgba(46, 46, 46, 1);
}
.scores-more .more-list span {
  font-size: 11px;
  font-weight: 400;
}
.scores-more .more-list span.active {
  font-weight: 600;
}
.scores-more .more-list img {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 22px;
  height: 22px;
}

/* live */
.live-time-refresh {
  margin: 0 0 8px 8px;
}

.live-time-refresh span {
  display: inline;
  vertical-align: middle;
  font-family: Arial;
  font-size: 10px;
  font-weight: 400;
  line-height: 11px;
}

.live-time-refresh img {
  vertical-align: middle;
  width: 10px;
  height: 10px;
}

/* select locale */
.locale-list {
  padding: 0 8px;
}
.locale-list li {
  padding: 5px 0 4px;
  border-bottom: 1px solid rgba(46, 46, 46, 1);
}
.locale-list li span {
  font-size: 11px;
  font-weight: 400;
}
.locale-list li.active {
  border-bottom: 1px solid rgba(86, 144, 255, 1);
}
.locale-list li.active span {
  font-weight: 700;
}

/* page league */
.league-name {
  padding: 1px 6px 7px;
  font-size: 11px;
  font-weight: 700;
}
.nav-league {
  margin-bottom: 6px;
  padding: 0 8px;
  overflow: hidden;
  border-bottom: 1px solid rgba(25, 25, 25, 0.1);
}
.nav-league a {
  font-size: 11px;
  text-decoration: underline;
}
.nav-league span {
  margin: 0 10px;
  font-size: 10px;
}
.nav-league a.active {
  font-weight: 700;
  color: rgba(255, 143, 11, 1);
  text-decoration: unset;
}
.league-matches .date {
  padding: 7px 8px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(56, 56, 56, 1);
}
.league-table {
  margin: 0 5px 5px;
}
.league-table table {
  width: 100%;
  border: 1px solid rgba(46, 46, 46, 1);
  border-spacing: 0;
  border-radius: 8px;
}
.league-table table td {
  height: 30px;
  /*border-top: 1px solid rgba(218, 218, 218, 1);*/
  font-family: Inter;
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
}
.league-table table td.highlight {
  font-weight: 700;
}
.league-table thead td {
  border-top: none;
}
.league-table .rank {
  position: relative;
  width: 22px;
}
.league-table tr td {
  border-bottom: 1px solid rgba(46, 46, 46, 1);
}
.league-table .cursor {
  position: absolute;
  left: 3px;
  width: 16px;
  height: 4px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* match detail */
.match-nav {
  margin-bottom: 8px;
  padding: 0 6px;
  overflow: hidden;
  border-bottom: 1px solid rgba(25, 25, 25, 0.1);
}
.match-nav a {
  font-size: 11px;
  text-decoration: underline;
}
.match-nav a.active {
  font-size: 11px;
  font-weight: 700;
  color: #ff8f0b;
  text-decoration: unset;
}
.match-nav span {
  margin: 0 5px;
  font-size: 10px;
}
.match-info-notstarted {
  padding: 6px;
}
.match-info-notstarted .team {
  margin: 5px 0;
  font-size: 12px;
  font-weight: 700;
}
.match-info-notstarted .vs {
  margin: 6px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(232, 232, 232, 1);
}
.match-info-result {
  margin-bottom: 8px;
  padding: 0 5px;
}
.match-info-result table {
  width: 100%;
  font-size: 12px;
  font-weight: 700;
}
.match-info-result td {
  padding: 5px 0;
}
.match-info-result .score {
  text-align: right;
  font-weight: 700;
}
.match-info-error {
  margin-bottom: 8px;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 1);
}

.match-info-basic {
  margin: 8px 8px 0;
}
.match-info .info-item {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
}
.match-info .float {
  float: right;
  font-weight: 700;
}
.match-info-tabs {
  margin-bottom: 8px;
  padding: 0 6px;
}
.match-info-tabs a {
  font-size: 11px;
  text-decoration: underline;
}
.match-info-tabs span {
  margin: 0 5px;
  font-size: 10px;
}
.match-info-tabs a.active {
  font-weight: 700;
  color: #ff8f0b;
  text-decoration: unset;
}
.match-info-events {
  margin: 0 8px;
}
.match-info-events .event {
  position: relative;
  padding: 6px 0;
  border-bottom: 1px solid rgba(46, 46, 46, 1);
  overflow: hidden;
}
.match-info-events .time {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  color: rgba(126, 243, 109, 1);
}
.match-info-events .icon {
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 2px;
}
.match-info-events span {
  vertical-align: middle;
  font-size: 11px;
  font-weight: 400;
}
.match-info-events .event-items {
  float: left;
  margin-left: 22px;
}
.match-info-comments .comment {
  margin: 0 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(46, 46, 46, 1);
}
.match-info-comments .time {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  color: rgba(126, 243, 109, 1);
}
.match-info-comments .content {
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
}
.h2h-tabs {
  padding: 0 5px;
  overflow: hidden;
}
.h2h-tabs a {
  font-size: 11px;
  text-decoration: underline;
}
.h2h-tabs a.active {
  font-weight: 700;
  color: #ff8f0b;
  text-decoration: unset;
}
.h2h-tabs span {
  margin: 0 10px;
  font-size: 10px;
}
.h2h-items {
  margin-top: 12px;
}
.h2h-item-header {
  position: relative;
  font-size: 10px;
  font-weight: 400;
  background-color: rgba(56, 56, 56, 1);
  overflow: hidden;
  height: 17px;
}
.h2h-item-header .name {
  background-color: rgba(56, 56, 56, 1);
  width: 65%;
  padding-left: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: left;
  height: 100%;
  line-height: 15px;
  margin-top: 1px;
}
.h2h-item-header .date {
  position: absolute;
  top: 0;
  right: 0;
  background: unset;
}
.h2h-item-header .result {
  display: inline-block;
  padding: 3px 3px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  width: 17px;
  height: 17px;
  box-sizing: border-box;
}
.h2h-item-header .time {
  margin-right: 3px;
  background: unset;
  display: inline-block;
  height: 15px;
  line-height: 15px;
}
.h2h-item-header .result.L {
  background-color: rgba(255, 107, 151, 1);
}
.h2h-item-header .result.W {
  background-color: rgba(87, 165, 75, 1);
}
.h2h-item-header .result.D {
  color: rgba(25, 25, 25, 1);
  background-color: rgba(218, 218, 218, 1);
}

/* status empty */
.status-empty {
  margin: 12px 8px;
}

/* page error */
.page-err {
  padding: 20px;
}
.page-err .msg {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.page-err .tips {
  margin-top: 5px;
  text-align: center;
  color: rgba(25, 25, 25, 0.75);
}

/* footer */
.footer-operate {
  padding: 8px 8px 0;
}
.footer-operate div,
.footer-operate a {
  display: inline-block;
  width: 45%;
  padding: 3px 0;
  text-align: center;
  border: 1px solid rgba(46, 46, 46, 1);
}
.footer-operate span {
  margin-left: 8px;
  font-size: 10px;
  font-weight: 700;
}
.footer-operate a {
  float: right;
}
.footer-operate .back img {
  width: 10px;
  height: 8px;
}
.footer-operate .top img {
  position: relative;
  top: 2px;
  width: 8px;
  height: 10px;
}
.footer-items {
  padding: 8px 8px 0;
}
.footer-items a,
.footer-items div {
  display: block;
  margin: 2px 0;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 143, 11, 1);
  text-decoration: unset !important;
}
.footer-items div {
  height: 19px;
  font-size: 11px;
}
.footer-items .refresh {
  color: rgba(255, 143, 11, 1);
}
.footer-items .refresh-img {
  width: 17px;
  height: 18px;
}
.footer-items div img {
  margin-top: -3px;
  vertical-align: middle;
}
.footer .desc {
  padding: 8px;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
}
