/* common start */
:root {
  --primary-color: #E84B5B;
  --container-width: 1280px;
  --bg-color: #f7f7f8;
  --line-color: #ccc;
  --text-color: #333;
}
body {
  background-color: var(--bg-color);
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.5;
}
.container {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
a.active,
a:hover,
a:active {
  color: var(--primary-color);
}
.bottom-line {
  border-bottom: 1px solid #e5e5e5;
}
.one-line {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.moveside2 {
  position: fixed;
  top: 0;
  margin-top: 45px;
  width: 340px;
  background-color: #fff;
}
#assist-bar {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
}
#assist-bar #go-top > .icon {
  display: block;
  height: 50px;
  width: 50px;
  background: url('../img/up_red.svg') no-repeat center center;
}
.icon2 {
  display: block;
  margin-top: 10px;
  height: 50px;
  width: 50px;
  background: url('../img/up_red.svg') no-repeat center center;
  -webkit-transform: rotate(-180deg);
}
/* common end */
/* header start */
header {
  position: relative;
  height: 64px;
  overflow: hidden;
}
.header-wrapper {
  position: fixed;
  z-index: 1210;
  width: 100%;
  top: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  box-shadow: 0px 3px 4px 1px rgba(133,133,133,0.2);
}
.header-inner {
  width: var(--container-width);
  display: flex;
  align-items: center;
}
.header-inner .logo {
  margin-right: 56px;
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: #f3f3f3 1px 1px 0, #b2b2b2 1px 2px 0;
}
.nav-list {
  display: flex;
}
.nav-link {
  position: relative;
  color: #333;
  font-size: 16px;
  line-height: 64px;
  text-decoration: none;
  margin: 0 20px;
}
.nav-link.active {
  color: var(--primary-color);
}
.nav-link.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--primary-color);
}

/* header end */
/* main start */
.box {
  background-color: #fff;
  border-radius: 5px;
  padding: 0 10px;
}
.box-article {
  padding: 10px;
}
.box-article img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  padding: 5px;
}
.box-article p {
  text-indent: 2em;
}
.box-title {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 14px;
  font-size: 16px;
  color: #333;
  height: 45px;
  border-bottom: 1px solid #e5e5e5;
}
.box-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transform: translateY(-50%);
}
.box-subtitle {
  padding: 10px 14px;
  color: #666666;
  font-size: 12px;
}
main {
  min-height: calc(100vh - 64px - 250px);
}
main > * {
  margin-top: 10px;
}
.match-wrapper {
  background-color: #fff;
  border-radius: 5px;
  padding: 0 10px;
  height: 50px;
  display: flex;
  align-items: center;
}
.match-title {
  text-align: center;
  width: 200px;
  font-size: 18px;
  color: var(--primary-color);
}
.match-line {
  width: 1px;
  height: 14px;
  background-color: var(--line-color);
}
.match-item {
  margin-left: 25px;
}
/* main start */
/* footer start */
footer {
  margin-top: 20px;
}
.footer-wrapper {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
}
.footer-area {
  flex: 1;
}
.footer-line {
  margin: 0 60px;
  width: 1px;
  height: 90px;
  background-color: var(--line-color);
}
.footer-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #666;
}
.footer-title svg {
  width: 22px;
  height: 22px;
  margin-right: 16px;
}
.footer-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  color: #666;
}
.footer-list a {
  margin: 10px 20px;
}
.footer-content {
  margin-top: 16px;
  padding: 16px 0;
  width: 100%;
  background: #1f1f1f;
  text-align: center;
  color: #fff;
}
.footer-content .container > * + * {
  margin-top: 12px;
}
.footer-content a:before {
  content: '|';
  margin: 0 16px;
}
/* footer end */
/*
live start
 */
.main-title {
  font-size: 24px;
  font-weight: bold;
}
.main-wrapper {
  display: flex;
}
.main-left {
  flex: 1;
}
.main-left > * + * {
  margin-top: 10px;
}
.main-right {
  margin-left: 10px;
  width: 300px;
}
.main-right > * + * {
  margin-top: 10px;
}
.live-type {
  padding: 0 25px;
  display: flex;
  align-items: center;
  position: relative;
}
.live-type:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #e1e1e1;
}
.live-type svg {
  font-size: 16px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.live-item {
  display: flex;
  align-items: center;
  height: 47px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.6);
  font-size: 12px;
}
.live-item > div {
  display: flex;
  align-items: center;
}
.live-item > div:first-child {
  flex: 1;
}
.live-icon {
  font-size: 20px;
}
.live-icon.icon-lanqiu {
  color: #E97F39;
}
.live-time {
  width: 80px;
  font-size: 14px;
  color: var(--primary-color);
  text-align: center;
}
.live-date {
  width: 80px;
  font-size: 12px;
  text-align: center;
}
.live-match {
  width: 100px;
  text-align: center;
}
.live-status {
  width: 80px;
  font-size: 12px;
  text-align: center;
  color: #666666;
}
.live-team {
  width: 120px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.live-team-h {
  text-align: right;
}
.live-team-a {
  text-align: left;
}
.live-logo {
  margin: 0 5px;
  width: 16px;
  height: auto;
}
.live-score {
  width: 60px;
  text-align: center;
  color: var(--primary-color);
}
.live-see {
  color: #fff;
  width: 27px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 3px;
  font-size: 19px;
  background-color: #178058;
}
.live-see-begin {
  background-color: #f5677d;
}
.live-see:hover {
  color: #fff;
}
.live-arrow {
  margin-left: 15px;
  color: rgba(64, 64, 64, 0.39);
  font-weight: bold;
  font-size: 18px;
}
/*
live end
*/
/* news start */
.news-header {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 14px;
  font-size: 16px;
  color: #333;
  height: 45px;
  border-bottom: 1px solid #e5e5e5;
  justify-content: space-between;
}
.news-header:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transform: translateY(-50%);
}
.news-more {
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color);
}
.news-item {
  display: flex;
  align-items: center;
  line-height: 39px;
  font-size: 12px;
}
.news-title {
  flex: 1;
  margin-right: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news-time {
  color: var(--primary-color);
}
/* news end */
/* article start */
.article-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e5e5;
}
.article-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
}
.article-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 24px;
  flex: 1;
  font-size: 16px;
}
.article-time {
  color: #666;
}
/* article end */
/* page start */
.page-wrapper {
  padding: 8px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-wrapper a {
  margin: 4px;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 1;
  color: var(--text-color);
  border: 1px solid #ccc;
}
.page-wrapper a.active {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
/* page end */
/* zhibo start */
.zb-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /*color: #fff;*/
  font-size: 20px;
  font-weight: bold;
}
.zb-wrapper-lq {
  /*background-image: url(../img/lq_banner_trans.png);*/
}
.zb-wrapper-zq {
  /*background-image: url(../img/zq_banner_trans.png);*/
}
.zb-time {
    color: #666;
    font-size: 14px;
}
.zb-team {
  display: flex;
  /*flex-direction: column;*/
  align-items: center;
  font-weight: 400;
}
.zb-team img {
  margin: 0 20px;
  width: 80px;
  height: 80px;
}
.zb-info {
  width: 200px;
  text-align: center;
}
.zb-vs {
  margin: 12px 0;
}
.zb-score {
  margin: 0 20px;
  font-size: 32px;
}
.zb-detail {
  font-size: 14px;
  padding: 12px 0;
}
.zb-detail > * + * {
  margin-top: 10px;
}
.zb-detail > div {
  display: flex;
  align-items: center;
}
.zb-btn {
  padding: 0 8px;
  border-radius: 16px;
  color: #fff;
  background-color: var(--primary-color);
  line-height: 32px;
  display: flex;
  align-items: center;
}
.zb-btn > i {
  margin-right: 4px;
  font-size: 16px;
}
.zb-btn:hover {
  color: #fff;
}
/* zhibo end */
@media screen and (max-width: 991px) {
  :root {
    --container-width: 100%;
  }
  header {
    height: auto;
  }
  .header-wrapper {
    padding-top: 16px;
    position: static;
    height: auto;
  }
  .header-inner {
    padding: 0 24px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-list {
      flex-wrap: wrap;
  }
  .nav-link {
      margin: 0;
      width: 33%;
      line-height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .nav-link:first-child {
      display: none;
  }
  .nav-link.active:after {
    content: none;
  }
  .match-wrapper {
    flex-wrap: wrap;
    height: auto;
  }
  .match-title {
    width: 100%;
    line-height: 32px;
  }
  .match-line {
    width: 100%;
    height: 1px;
    display: none;
  }
  .match-item {
    line-height: 32px;
  }
  .main-wrapper {
    flex-direction: column;
  }
  .main-left {
    flex: auto;
    width: 100%;
  }
  .main-right {
    margin-left: 0;
    margin-top: 10px;
    flex: auto;
    width: 100%;
  }
  .live-item {
    padding: 10px 0;
    height: auto;
    flex-wrap: wrap;
    position: relative;
  }
  .live-item > div:first-child {
    flex: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .live-icon {
    margin-right: 80px;
  }
  .live-match {
    text-align: right;
  }
  .live-status {
    width: 100%;
    margin-bottom: 8px;
  }
  .live-team {
    width: calc(50% - 56px);
  }
  .live-see {
    margin-top: 8px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .live-arrow {
    position: absolute;
    margin: 0;
    inset: 0;
    opacity: 0;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-area {
    padding: 0 12px;
    flex: auto;
  }
  .footer-line {
    margin: 12px 12px;
    width: auto;
    height: 1px;
  }
  .main-title {
    margin-left: 10px;
  }
  .zb-team {
    flex-direction: column;
  }
  .zb-team img {
    margin: 0;
  }
  .zb-team div{
    order: 1;
  }
  .zb-info {
    width: 120px;
  }
}
/*# sourceMappingURL=base.css.map */
