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




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

.newsd-title{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
}

.newsd-source{
    display: flex;
    flex-direction: row;
    margin: 10px 0 20px 0;
}

.newsd-source p{
    color: #A5A5A5;
}

.newsd-source a{
    color: #32C5FE;
}

.newsd-content{
    margin-bottom: 10px;
    line-height: 1.5em;
    color: #fff;
    width: 100%;
    overflow: hidden;
}

.newsd-content a{
    color: #fff !important;
}

.newsd-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px
}
.newsd-content h2 {
    margin-bottom: 6px;
    font-size: 18px;
}


.newsd-content img {
    display: block;
    width: 100%;
    padding: 0 20px;
}

.newsd-video{
    position: relative;
    padding-bottom: 57.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000; /* Optional: background color for when video is loading */
}

.newsd-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


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

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

.living-item{
	padding: 15px;
	display: flex;
	flex-direction: row;
	color: #9A9A9A;
	align-items: center;
}

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

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


.living-day{
	 display: flex;
	 flex-direction: row;
	 min-width: 40px;
}

.living-date{
	margin: 0 10px;
}

.living-league{
	margin-right: 6px;
	color: #9A9A9A;
	width: 80px;
}

.living-team{
	width: 150px;
	flex-grow: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	text-align: right;
}
.living-team1{
	width: 150px;
	flex-grow: 1;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
}

.living-name{
	color: #fff;

}

.living-logo{
	width: 30px;
	min-width: 30px;
	height: 30px;
	margin: 0 6px;
}

.living-status{
	flex-direction: column;
	color: #fff;
	display: flex;
	width: 88px;
	align-items: center;
}

.living-status>p{
	font-size: 12px;
	color: #9A9A9A;
}

.living-score {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.living-play{
    max-width: 80px;
	padding: 6px 10px;
    background-color: #4F5567;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    margin-left: 6px;
	transition: all .6s;
}

.living-play-start{
	background-color: #FF1B25;
}


.living-play-active{
	color: #fff;
	background-color: #FF1B25;
}




.game-news{
	
}

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

