
.history-nav{
    display: flex;
    flex-direction: row;
    width: 1200px;
    margin: 20px auto;
    color: #949494;
    font-size: 12px;
}

.history-nav a{
    color: #949494;
}

.game{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
     transition: all .6s;
}


.game-left{
    width: 840px;
    display: flex;
    flex-direction: column;
     transition: all .6s;
}

.game-right{
    width: 340px;
    display: flex;
    flex-direction: column;
     transition: all .6s;
}



.team-detail{
    background-color: #31363C;
    border-radius: 8px;
    padding: 20px;
}

.team-logo{
    width: 100%;
    background-color: #000;
   display: flex;
   flex-direction: column;
   align-items: center; 
   padding: 30px 0;
   margin-top: 20px;
}

.team-logo img{
    width: 80px;
}

.team-logo p{
    font-size: 16px;
    color: #fff;
}

.team-info-title{
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
    color: #fff;
}

.team-info-list{
    flex-direction: row;
    display: flex;
    border: 1px solid #fff;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.team-info-list div{
    border: 1px solid #fff;
    width: 33%;
    flex-grow: 1;
    flex-direction: column;
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.team-info-list div p:nth-child(1){
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.team-info-list div p:nth-child(2){
    font-size: 12px;
    color: #ADADAD;
}








.game-player{
    margin-top: 20px;
}

.game-match {
    
}

.match-nav{
    width: 100%;
    background-color: #31363C;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 10px;
}

.match-nav-item{
    font-size: 14px;
  font-weight: 400;
  margin: 2px;
  padding: 5px 12px;
  line-height: 22px;
  background: #141618;
  color: #FCC222;
  border-radius: 6px;
}



.game-video{
    margin-top: 20px;
}

.video-list{
    margin-top: 10px;
    width: 100%;
    border-radius: 8px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    background-color: #31363C;
}

.video-item{
    display: flex;
    flex-direction: row;
    padding: 12px;
    align-items: center;
}

.video-item img{
    width: 37px;
    margin-right: 10px;
}

.video-item div{
    display: flex;
    flex-direction: column;
}

.video-item .title{
    font-size: 14px;
    padding-bottom: 2px;
    color: #fff;
}

.video-item .time{
        font-size: 12px;
    color: #999999;
}




.game-news{
    margin-top: 20px;
}

.news-list{
    margin-top: 10px;
}

.news-item{
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}

.news-image{
    width: 136px;
  height: 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #31363C;
  flex-shrink: 0;
}

.news-image1{
    background-size: 40%;
  }

.news-content{
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title{
    line-height: 1.5;
  font-size: 14px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  box-orient: vertical;
  overflow: hidden;
}

.news-time{
    color: #8A8A8A;
    font-size: 12px;
}

