/* PC和移动端公共样式 */
#logo span {
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  color: #fff;
}
#logo .sitename {
  color: #F8B62A;
}
.video-play-box .video-outer {
  background-color: #000;
  padding-top: 60%;
  position: relative;
}
.video-play-box .video-outer video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.tlc {
  text-align: center;
}
.flexbox {
  display: flex;
  align-items: center;
}
.flex_c {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-page {
  max-width: 1200px;
  margin: 0 auto 80px;
}
.single-page h1 {
  font-size: 30px;
  text-align: center;
  padding: 30px;
  font-weight: bold;
}
.single-page .content {
  border-radius: 10px;
  padding: 100px 50px ;
  background: #fff;
  font-size: 20px;
  line-height: 1.8;
}
.single-page .content p {
  text-indent: 2em;
  margin-bottom: 10px;
}
/* PC端样式 */
@media screen and (min-width:800px) {
  .m-hide {
    display: block;
  }
  .m-show {
    display: none;
  }
  .mobile-nav,.mobile-footer, .sm_title {
    display: none;
  }
  .daily {
    padding-top: 1px;
  }
  .list {
    font-weight: bold;
    color: #525252;
  }
  .zb_item {
    display: flex;
    align-items: center;
    text-align: left;
    border-bottom: 1px solid #EEEEEE;
    padding: 15px 20px;
    line-height: 20px;
    font-size: 14px;
  }
  .zb_item:hover {
    background: #eee;
  }
  .zb_item .col {
    display: flex;
  }
  .zb_item .col2 {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .zb_item .vs {
    width: 100px;
    text-align: center;
  }
  .zb_item .col3 {
    justify-content: flex-end;
    margin-left: 20px;
  }
  .zb_item .time1 {
    width: 125px;
    flex-shrink: 0;
  }
  .zb_item .match {
    display: flex;
    width: 100px;
  }
  .zb_item .match a {
    position: relative;
  }
  .zb_item .hot {
    width: 48px;
    height: 20px;
    /* background: url(../images/popular.png) no-repeat; */
    position: absolute;
    top: 0px;
    right: -52px;
  }
  .zb_item .team {
    display: flex;
    width: 160px;
    align-items: center;
  }
  .zb_item .team:first-child {
    text-align: right;
    flex-direction: row-reverse;
  }
  .zb_item .team_logo {
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }
  .zb_item .team:first-child .team_logo {
    margin-left: 5px;
    margin-right: 0;
  }
  .zb_item .vs span{
    display: inline-block;
  }
  .zb_item .score {
    width: 36px;
    font-size: 14px;
    color: #000;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    background: #F5F5F5;
    border-radius: 4px;
  }
  .zb_item .signal {
    display: block;
    width: 99px;
    height: 29px;
    text-align: center;
    padding: 4px 10px;
    font-size: 0.875rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    line-height: 1.188rem;
    color: #999999;
    border-radius: 3px;
  }
  
  .zb_item .signal.incoming {
    color: #999999;
    background: #F3F3F3;
    border: 1px solid #999999;
  }
  
  .zb_item .signal.live {
    color: #F82A2A;
    background: #FFF2F2;
    border: 1px solid #F82A2A;
  }
  
  .zb_item .signal.end {
    color: #09388C;
    background: #FFFFFF;
    border: 1px solid #09388C;
  }

  .topic_match_box .zb_item .signal.live {
    color: #FFF;
    background: #F82A2A;
  }
  .topic_match_box .zb_item .signal.incoming {
    color: rgb(255, 255, 255);
    background: rgb(153, 153, 153);
  }
  .match_info {
    display: none;
  }
}
/* 移动端 */
@media screen and (max-width: 800px) {
html {
  height: 100%;
}
body {
  min-width: 320px;
  background: #fff;
  font-size: 14px;
  height: 100%;
}
#wrap {
  min-height: 100%;
  padding-top: 128px;
  padding-bottom: 100px;
  position: relative;
  box-sizing: border-box;
}
.m-hide {
  display: none;
}
.m-show {
  display: block;
}
/* 头部 */
#header{
  height: auto;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
#header .container {
  width: auto;
  display: flex;
  flex-direction: column;
}
#logo{
  margin: 5px auto;
}
#logo img {
  max-height: 40px;
}
#nav {
  display: none;
}
.mobile-nav {
  display: block;
}
.mobile-nav .mh {
  height: 40px;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  background: #F8B62A;
}
.mobile-nav  .menu {
  display: flex;
  overflow-x: auto;
}
.mobile-nav .menu li {
  padding: 0 18px;
  white-space: nowrap;
}
.mobile-nav .menu li.active {
  background: url(../images/active.png) no-repeat;
  background-size: 12px 6px;
  background-position: 50% 100%;
}
.mobile-nav .menu a {
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
}
.mobile-nav  a, .mobile-nav  ul {
  display: inline-block;
}
.app-toppic-fixed {
  width: 100%;
  height: 37px;
  background: #fff;
  border-bottom: solid 1px #ddd;
}
.app-toppic-fixed .app-toppic {
  height: 100%;
  margin: 0 10px;
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
  overflow-x: auto;
}
.app-toppic-fixed .app-toppic a {
  display: inline-block;
  height: 100%;
  white-space: nowrap;
  color: #000;
}

.app-toppic-fixed .app-toppic a.active {
  color: #006FFF;
}

.app-toppic-fixed .app-toppic a.active .line_wrap {
  display: flex !important;
}

/* 谷歌 */
.app-toppic-fixed .app-toppic::-webkit-scrollbar {
  display: none;
}

.app-toppic-fixed .badge {
  padding: 0 10px;
  height: 100%;
  position: relative;
}
.line_wrap {
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: none !important;
}

.line_wrap .line {
  width: 20px;
  height: 3px;
  background: #006FFF;
  border-radius: 5px 5px 0px 0px;
}
/* 内容 */
#content {
  width: 100%;
  padding-top: 0;
  margin-bottom: 0;
}
#content_main {
  width: 100%;
}
#aside {
  display: none;
}
.topic_match_box {
  width: auto;
}
.content_header_ver2, .index_tag_title {
  width: auto;
  padding-left: 16px !important;
  border-top: 1px solid #eee;
  height: 35px;
  line-height: 35px;
  text-align: left;
  font-size: 18px;
  color: #262626;
  background: #F8B62A;
  font-weight: 600;
  position: relative;
  border-radius: 0;
  justify-content: space-between;
}
.index_tag_title {
  padding: 0;
}
.content_header_ver2 h1::before, .index_tag_title > div::before {
  display: none;
}
.kind_list {
  display: flex;
  justify-content: flex-end;
}
.kind_list li {
  width: auto;
  padding-right: 15px;
  padding-left: 15px;
}
.kind_list li:first-child {
  padding-left: 0;
}
.kind_list a {
  font-size: 14px;
}
.kind_list li h2 {
  font-weight: normal;
  line-height: 1;
}
.kind_list li.show a {
  color: #006FFF ;
}
.kind_list li:hover, li.show {
  border-bottom: 2px solid #006FFF;
}
.kind_list li .icon_header {
  left: 0;
  top: 8px;
}
.kind_list li span::before {
  font-size: 14px;
}
.zb_item {
  display: flex;
  position: relative;
  padding: 15px;
  align-items: center;
  font-size: 12px;
}
.zb_item:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(0.5);
  overflow: hidden;
  bottom: -1px;
  transform-origin: 0 0;
  border-bottom: 1px solid #ddd;
}
.zb_item .col1 {
  width: 25%;
  margin-right: 10px;
}
.zb_item .col2 {
  width: 50%;
  font-weight: bold;
}
.zb_item .col3 {
  width: 25%;
  text-align: right;
}
.zb_item .time1 {
  color: #2A83F8;
}
.zb_item .match a{
  color: #959595;
}
.zb_item .team_logo {
  width: 16px;
  height: 16px;
  vertical-align: -4px;
}
.zb_item .team:first-child {
  margin-bottom: 5px;
}
.zb_item .vs {
  position: absolute;
  top: 15px;
  right: 30%
}
.zb_item .vs span {
  display: block;
}
.zb_item .vs span:first-child {
  margin-bottom: 5px;
}
.zb_item .vs .syb {
  display: none;
}
.zb_item .hot {
  width: 40px;
  height: 17px;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 100px 0px 0px 100px;
  background-color: #FF892B;
  background-image: url(../images/hot.png);
  background-repeat: no-repeat;
  background-size: 20px 17px;
  background-position-x: 50%;
}
.zb_item .signal {
  display: inline-block;
  padding: 3px 9px;
  font-size: 12px;
  line-height: 18px;
  color: #999999;
  border-radius: 3px;
}

.zb_item .signal.incoming {
  color: #717171;
  background: #F3F3F3;
  border: 1px solid #717171;
}

.zb_item .signal.live {
  background: #FFF2F2;
  color: #FF4D4D;
  border: 1px solid #FF4D4D;
}

.zb_item .signal.end {
  color: #09388C;
  background: #FFFFFF;
  border: 1px solid #09388C;
}
.list-card {
  display: flex;
  overflow-x: auto;
  padding: 10px;
}
.list-card .zb_item {
  margin-right: 10px;
  box-shadow: 2px 2px 5px #e9e9e9;
  border: 1px #ededed solid;
  border-radius: 4px;
  width: 155px;
  padding: 6px;
  flex-direction: column;
  flex-shrink: 0;
}
.list-card .zb_item .col1 {
  width: 100%;
  margin-right: 0;
  margin-bottom: 5px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.list-card .zb_item .col2 {
  width: 100%;
  position: relative;
  margin-bottom: 6px;
}
.list-card .zb_item .col3 {
  width: 100%;
  /* text-align: center; */
}
.list-card .zb_item .team:first-child {
  margin-bottom: 3px;
}
.list-card .zb_item .vs {
  right: 10px;
  top: 0px
}
.list-card .zb_item .vs span:first-child {
  margin-bottom: 3px;
}
.list-card .zb_item .signal {
  padding: 0 10px;
}
.topic_match_box .zb_item .signal.live {
  color: #FFF;
  background: #F82A2A;
}
.topic_match_box .zb_item .signal.incoming {
  color: rgb(255, 255, 255);
  background: rgb(153, 153, 153);
}
/* 底部 */
.footer {
  display: none;
}
.mobile-footer {
  margin-top: 15px;
  padding: 15px 0;
  background: #CBCBCB;
  font-size: 12px;
  font-family: Microsoft YaHei;
  line-height: 16px;
  color: #888888;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: -1;
}
.mobile-footer a {
  color: #888888;
}
#gotoTop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  opacity: 0.8;
  right: 20px;
}
#gotoTop span {
  display: none;
}

/* 关于我们 */
.single-page  h1{
  font-size: 16px;
  text-align: left;
}
.single-page .content {
  padding: 0 30px 20px;
  font-size: 14px;
}
/* 直播页面 */
.topic_name_video_box {
  display: none;
}
.info {
  display: none;
}
/* 视频页面 */
#content_main .header_container {
  display: none;
}
.header_container {
  height: 40px;
  background: #F8B62A;
  font-size: 18px;
  font-weight: bold;
  color: #262626;
  display: block;
  padding: 0 16px;
  line-height: 40px;
}
.header_container .header{
  padding: 0;
}
.header_container .header img {
  display: none;
}
.header_container .header span {
  margin-left: 0;
}

.video_box_list {
  padding: 0;
}
.video_box_list .video_item {
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 0;
  position: relative;
}
.video_box_list .video_item:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(0.5);
  overflow: hidden;
  bottom: -1px;
  transform-origin: 0 0;
  border-bottom: 1px solid #ddd;
}
.video_item .fl{
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
}
.video_item .fl img {
  display: none;
}
.video_item .fr {
  color: #999;
  font-size: 12px;
}
/* 新闻页面 */
.news_content {
  border-radius: 0;
  margin-top: 10px;
}
.news_content .news_box {
  margin: 0;
  padding: 10px 15px;
  border-bottom: 0;
}
.news_content .news_box .leftBox {
  width: 120px;
  height: 90px;
  margin-right: 18px;
}
.news_content .news_box .imageBox img {
  width: 120px;
  height: auto;
}
.news_content .news_box .rightBox p {
  font-size: 14px;
  font-weight: 500;
    color: #333;
    height: 50px;
    padding-top: 2px;
}
.news_content .news_box .rightBox .text {display: none;}
.news_content .news_box .rightBox .created_at {
  color: #999;
  font-size: 12px;
}
/* 视频详情 */
.video_info {
  padding: 15px;
  text-align: left;
}
.video_info .title {
  font-size: 16px;
}
.video_info .desc {
  display: flex;
  justify-content: space-between;
}
.video_info .desc span {
  margin-left: 0;
}
.video_info .desc span:nth-child(2) {
  display: none;
}
/* 新闻详情 */
.content_block_left {
  width: 100%;
}
.articles_text {
  padding: 15px;
}
.articles_text .title {
  margin-top: 0;
}
.articles_text .title h1 {
  font-size: 18px;
}
.articles_text .title time {
  margin-top: 0;
  font-size: 12px;
}
.articles_text p {
  font-size: 14px;
  line-height: 1.5;
}
.articles_text p span {
  font-size: 14px !important;
}
.articles_text section span {
  font-size: 14px !important;
}
.articles_text img {
  max-width: 100%;
}
.articles_tag_text li {
  height: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
}
.articles_tag_text li a {
  font-size: 14px;
}
.news_content .rightBox time {
  font-size: 12px;
}
/* 直播详情 */
.daily-title {
  height: 40px;
  background: #F8B62A;
  font-size: 16px;
  font-weight: bold;
  color: #262626;
  display: block;
  padding: 0 12px;
  line-height: 40px;
  border-radius: 0
}
/* 直播 */
.record_video_box {
  margin-bottom: 10px;
}
.match_video_container {
  margin-bottom: 10px;
}
.match_video_box {
  padding: 0;
}
.match_bg {
  height: auto;
}
.teamvs {
  height: 100px;
  background: #fff;
}
.team_group img {
  width: 40px;
  height: 40px;
}
.match_video_box .team_name {
  font-size: 14px;
}
.team_group {
  width: 30%;
}
.match_info {
  display: block;
}
.match_info span {
  text-align: center;
  display: block;
}
.match_info .status {
  color: #FF4D4D;
  margin-bottom: 5px;
}
.match_info .miantitle {
  font-weight: bold;
}
.match_info .match_time {
  font-size: 12px;
  color: #666;
}
.match_title,.match_video_container .status_wrap, .score_container{
  display: none;
}
.live-info {
  border-bottom: 1px solid #F2F3F5;
  background: #F2F3F5;
}
.live-info .live_address {
  width: auto;
}
.icon_signal_new {
  width: 18px;
  background-size: 100%;
}
.signalCon {
  width: auto;
}
.signalCon_list {
  font-size: 13px;
  margin-right: 5px;
  padding: 2px 6px;
  color: #fff;
  height: 25px;
  line-height: 25px;
  border: 0;
  background: linear-gradient(
    90deg, rgba(255, 122, 72, 1) 0%, rgba(255, 147, 67, 1) 100%);
}
.signalCon_list_active {
  background: #0080FF;
}
.signalCon_list > h5{
  padding: 0 5px;
}
/*  详情页 title*/
/*详情页头*/
.sm_title {
  height: 45px;
  width: 100%;
  text-align: center;
  background: #272725;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.sm_title .title_content {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  color:#fff;
}

.sm_title .arrow {
  width: 50px;
  height: 100%;
}

.sm_title .arrow img {
  width: 20px;
  margin: 0 auto;
}
.detail-page #header {
  display: none;
}
.detail-page #wrap {
  padding-top: 50px;
}
/* 分页 */
.pagination {
  display: none;
}
.tocname_list > ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px;
}
.tocname_list > ul:last-child > li{
  margin-left: 0;
  margin-right: 0;
  width: 50%;
  padding-right: 30px;
  box-sizing: border-box;
}
.toc_left_w665 {
  margin-bottom: 0;
}
}