.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;
}


.game-video{

}

.video-header{
    width: 100%;
    border-radius: 8px 8px 0 0;
    background-color: #31363C;
    padding: 20px;
    margin-top: 10px;
}

.video-header div{
    width: 120px;
    text-align: center;
    border-radius: 6px;
    background-color: #FCC222;
    margin-right: 5px;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0;
    color: #000;
}

.video-item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
}

.video-item:nth-child(even){
    background-color: #31363C;
}

.video-item:nth-child(odd){
    background-color: #202529;
}

.video-title{
    color: #fff;
}

.video-time{
    color: #9B9B9B;
    font-size: 12px;
}

.video-page{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    list-style-type: none;
}


.video-page li{
    margin: 0 3px;
    background: #34393F;
    color: #9B9B9B;
    padding: 2px 6px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-page li a{
    color: #9B9B9B;
}


.game-recomm{
    transition: all .6s;
    margin-top: 20px;
}

.recomm-list{
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.recomm-item{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px 0;
}

.recomm-item>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.33%;
    flex-grow: 1;
}

.recomm-item:nth-child(odd){
    background-color: #31363C;
}

.recomm-item:nth-child(even){
    background-color: #202529;
}

.recomm-type,.recomm-team{
    color: #fff;
    text-align: center;
}

.recomm-logo{
    width:38px;
}

.recomm-time{
    color: #9B9B9B;
    font-size: 12px;
}

.recomm-score{
    font-size: 24px;
    font-weight: bold;
    color: #9B9B9B;
}

.recomm-detail{
    font-size: 14px;
    width: 80px;
    line-height: 32px;
    background: #4F5567;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    margin-top: 10px;
}


.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-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;
}

