.li-box .li-text p:nth-of-type(1){
	display: none;
}
.play {
	display: block;
}

.list3 .li-box {
	width: 45%;
}

.re_title {
	background-color: #7061BE !important;
}

.game-info-card {
	display: flex;
	background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e0 100%);
	border: 1px solid #70b522;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(112, 181, 34, 0.1);
	transition: all 0.3s ease;
}

.game-info-card:hover {
	box-shadow: 0 4px 16px rgba(112, 181, 34, 0.2);
	transform: translateY(-2px);
}

.info-left {
	flex-shrink: 0;
}

.info-left img {
	width: 150px;
	height: 150px;
	border-radius: 10px;
	object-fit: cover;
	border: 2px solid #70b522;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-right {
	flex: 1;
	margin-left: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.game-name {
	font-size: 28px;
	color: #2c3e50;
	margin: 0 0 15px 0;
	font-weight: 600;
}

.game-rating {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 16px;
}

.rating-label {
	color: #666;
	margin-right: 8px;
	font-weight: 500;
}

.star-icon {
	color: #f39c12;
	font-size: 20px;
	margin-right: 5px;
}

.rating-score {
	color: #2c3e50;
	font-size: 20px;
	font-weight: bold;
	margin-right: 3px;
}

.rating-max {
	color: #999;
	font-size: 14px;
}

.game-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.tag-label {
	color: #666;
	font-weight: 500;
	margin-right: 5px;
}

.tag-item {
	background-color: #70b522;
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.tag-item:hover {
	background-color: #5a9419;
	transform: scale(1.05);
}

/* 游戏视频区域 */
.game-video {
	width: 100%;
	margin: 20px auto;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 17px -5px #000;
	overflow: hidden;
}

.video-title {
	font-size: 24px;
	font-weight: 600;
	color: #2c3e50;
	padding: 20px 20px 15px;
	border-bottom: 2px solid #70b522;
	background: linear-gradient(to right, #f5f7fa, #e8f5e0);
}

.video-container {
	position: relative;
	width: 100%;
	padding: 20px;
	background-color: #000;
}

.video-container video {
	width: 100%;
	height: auto;
	max-height: 500px;
	border-radius: 8px;
	outline: none;
}

.video-container video::-webkit-media-controls-panel {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

/* 标签页导航设计 */
.tabs-container {
	width: 100%;
}

.tabs-nav {
	display: flex;
	border-bottom: 2px solid #e0e0e0;
	background: linear-gradient(to right, #f5f7fa, #e8f5e0);
	padding: 0;
	margin: 0;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.tab-btn {
	flex: 1;
	padding: 15px 20px;
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	color: #666;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
	position: relative;
}

.tab-btn:hover {
	color: #70b522;
	background-color: rgba(112, 181, 34, 0.05);
}

.tab-btn.active {
	color: #70b522;
	border-bottom-color: #70b522;
	background-color: rgba(112, 181, 34, 0.1);
	font-weight: 600;
}

.tabs-content {
	padding: 25px;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	min-height: 250px;
}

.tab-pane {
	display: none;
	animation: fadeIn 0.3s ease-in;
}

.tab-pane.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tab-pane h3 {
	color: #2c3e50;
	font-size: 22px;
	margin: 0 0 20px 0;
	font-weight: 600;
	border-bottom: 2px solid #70b522;
	padding-bottom: 10px;
}

.tab-pane h4 {
	color: #70b522;
	font-size: 18px;
	margin: 15px 0 10px 0;
	font-weight: 600;
}

.tab-pane p {
	color: #555;
	font-size: 15px;
	line-height: 1.8;
	margin: 10px 0;
}

.tab-pane ul {
	list-style: none;
	padding: 0;
	margin: 15px 0;
}

.tab-pane ul li {
	color: #555;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 15px;
	padding-left: 25px;
	position: relative;
}

.tab-pane ul li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #70b522;
	font-weight: bold;
	font-size: 18px;
}

.tab-pane ul li strong {
	color: #2c3e50;
	font-weight: 600;
}

.how-to-section {
	margin-bottom: 20px;
	padding: 15px;
	background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e0 100%);
	border-left: 4px solid #70b522;
	border-radius: 6px;
}

.how-to-section h4 {
	margin-top: 0;
}

@media (max-width: 960px) {
	.content {
		flex-direction: column;
	}

	.game-info-card {
		padding: 15px 1%;
		margin: 10px auto 20px;
		width: 95%;
	}

	.info-left {
		width: 33%;
		text-align: center;
		margin-bottom: 15px;
	}

	.info-left img {
		width: 110px;
		height: 110px;
	}

	.info-right {

		margin-left: 0;
		text-align: center;
	}

	.game-name {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.game-rating,
	.game-tags {
		justify-content: center;
	}


	.game-video {
		width: 95%;
		margin: 30px auto 20px;
	}

	.video-title {
		font-size: 20px;
		padding: 15px;
	}

	.video-container {
		padding: 10px;
	}

	.video-container video {
		max-height: 300px;
	}



	.tabs-nav {
		/* flex-direction: column; */
	}

	.tab-btn {
		padding: 12px 15px;
		font-size: 14px;
		border-bottom: 1px solid #e0e0e0;
	}

	.tab-btn.active {
		border-bottom: 3px solid #70b522;
	}

	.tabs-content {
		padding: 15px;
	}

	.tab-pane h3 {
		font-size: 18px;
	}

	.tab-pane h4 {
		font-size: 16px;
	}

	.tab-pane p,
	.tab-pane ul li {
		font-size: 14px;
	}

	.c-right {
		display: block;
		width: 96%;
		margin: auto;
	}

	.game-box {
		width: 95%;
		height: auto;
		margin: 30px auto 0;
	}


	.game-inner {
		width: 100%;
		margin: auto;
	}

	.gn-left {
		width: 100%;
		height: 450px;
		position: relative;
		overflow: hidden;
		box-shadow: 0px 0px 17px -5px #000;
		border-radius: 7px;
	}

	.gl-banner {
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		filter: blur(20px);
		border-radius: 7px;
		z-index: 9;
	}

	.gl-mb {
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		background-color: rgba(0, 0, 0, 0.4);

	}

	.play {
		width: 180px;
		height: 180px;
		margin: 22% auto 0;
		position: relative;
		border: 2px solid #fff;
		border-radius: 100%;

	}

	.play img {
		width: 100%;
		height: 100%;
		border-radius: 100%;
	}

	.play-btn {
		position: absolute;
		bottom: -70px;
		width: 100%;
		box-shadow: 0px 0px 17px -5px #000;
		transition: all .2s;
		line-height: 50px;
		border-radius: 8px;
		text-align: center;
		font-size: 23px;
		text-shadow: 1px 1px #505050;
		color: #fff;
		text-transform: uppercase;
		left: 0;
		right: 0;
		margin: auto;
		border: 3px solid #fff;
		overflow: hidden;
		background: #7F7FD5;
		background: #acb6e5;
		/* fallback for old browsers */
		background: -webkit-linear-gradient(to right, #86fde8, #acb6e5);
		/* Chrome 10-25, Safari 5.1-6 */
		background: linear-gradient(to right, #86fde8, #acb6e5);
		/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


	}

	.play-btn::after {
		content: "";
		position: absolute;
		height: 33px;
		width: 25px;
		background-image: url(../image/right.png);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		top: 10px;
		right: -21px;
	}

	.play-btn:hover {
		padding-right: 30px;
	}

	.play-btn:hover::after {
		right: 25px;
	}

	.g-title {
		width: 100%;
		background: linear-gradient(90deg, rgba(30, 87, 153, 0) 0, rgba(0, 0, 0, .3) 50%, rgba(125, 185, 232, 0));
		color: #fff;
		font-size: 23px;
		font-weight: 700;
		letter-spacing: -1px;
		margin-top: 100px;
		padding: 15px 0;
		text-align: center;
		text-shadow: 1px 1px #505050;
	}

	.g-about {
		width: 96%;
		margin: auto;
		border-radius: 0px;
		min-height: 200px;
		box-shadow: 0px 0px 17px -5px rgba(0, 0, 0, .4);
		background-color: #fff;
		color: #000;
		margin-top: 20px;
		border-radius: 8px;
	}

	.gb-title {
		font-size: 20px;
		text-indent: 1em;
		line-height: 2.0;
		border-bottom: 1px solid rgba(0, 0, 0, .2)
	}

	.g-about p {
		width: 95%;
		margin: 10px auto;
		font-size: 15px;
		line-height: 1.5;
		padding-bottom: 10px;

	}

	.main {
		margin: 20px auto !important;
		padding: 20px 0 5px;
		border-radius: 7px;
	}


}

@media (min-width:960px) {
	.content {
		width: 76%;
		margin: 40px auto;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: flex-start;
		align-content: flex-start;
	}

	.li-box img {
		width: 95%;
		height: 98px;
	}

	.c-left {
		width: 72%;
		height: auto;
		border-radius: 7px;
	}

	.c-right {
		width: 25%;
		height: auto;
		padding: 0;
		border-radius: 7px;
	}

	.g_banner {
		width: 100%;
	}

	.game-box {
		width: 100%;
		height: auto;
		border-radius: 8px;

	}

	.game-inner {
		width: 100%;
		margin: auto;
		background-color: #434343;
		border-radius: 8px;
		box-shadow: 0px 0px 17px -5px #000;
	}

	.gn-left {
		width: 100%;
		height: 600px;
		position: relative;
		overflow: hidden;
		border-radius: 8px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.gl-banner {
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		filter: blur(20px);
		border-radius: 8px;
		z-index: 9;

	}

	.gl-mb {
		position: relative;
		width: 80%;
		height: 80%;
		z-index: 10;
		background-color: rgba(255, 255, 255, 0.5);
		border-radius: 20px;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	}

	.play {
		width: 200px;
		height: 200px;
		margin: 10% auto 0;
		position: relative;
		border-radius: 8px;
		border-radius: 100%;
		/* overflow: hidden; */
		box-shadow: 0px 0px 17px -5px #000;

	}

	.gl-mb:hover {
		box-shadow: -2px -2px 10px 1px #ffffff, 10px 20px 21px rgba(0, 0, 0, .4);
	}

	.play img {
		width: 100%;
		height: 100%;
		border-radius: 100%;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		transition: all linear 0.2s;
		/* border-radius: 8px; */
	}

	.play img:hover {
		transform: scale(1.1);
		box-shadow: -2px -2px 10px 1px #ffffff, 10px 20px 21px rgba(0, 0, 0, .4);
	}


	.play-btn {
		position: absolute;
		bottom: -80px;
		width: 90%;
		transition: all .2s;
		line-height: 50px;
		border-radius: 20px;
		text-align: center;
		font-size: 20px;
		text-shadow: 1px 1px #505050;
		color: #fff;
		text-transform: uppercase;
		left: 0;
		right: 0;
		margin: auto;
		text-indent: 1.5em;
		/* border: 3px solid #fff; */
		overflow: hidden;
		background: #7F7FD5;
		box-shadow: 0px 0px 17px -5px #000;
		background: #acb6e5;
		/* fallback for old browsers */
		background: -webkit-linear-gradient(to right, #86fde8, #acb6e5);
		/* Chrome 10-25, Safari 5.1-6 */
		background: linear-gradient(to right, #86fde8, #acb6e5);
		/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
		transition: all linear 0.3s;

	}

	.play-btn::after {
		content: "";
		position: absolute;
		height: 15px;
		width: 15px;
		background-image: url(../image/left.png);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		top: 18px;
		left: 10%;

	}

	.play-btn:hover {
		transform: scale(1.2);
	}

	.play-btn:hover::after {
		animation: wgKnock .3s infinite;
	}

	@keyframes wgKnock {
		0% {
			left: 13%;
		}

		100% {
			left: 8%;
		}
	}

	.g-title {
		width: 100%;
		background: linear-gradient(90deg, rgba(30, 87, 153, 0) 0, rgba(0, 0, 0, .3) 50%, rgba(125, 185, 232, 0));
		color: #fff;
		font-size: 23px;
		font-weight: 700;
		letter-spacing: -1px;
		margin-top: 126px;
		padding: 15px 0;
		text-align: center;
		text-shadow: 1px 1px #505050;
	}

	.g-about {
		width: 100%;
		margin: 20px auto;
		border-radius: 0px;
		min-height: 200px;
		box-shadow: 0px 0px 17px -5px #000;
		background-color: #fff;
		color: #000;
		border-radius: 10px;
	}

	.gb-title {
		font-size: 24px;
		text-indent: 1em;
		color: #000;
		line-height: 2.0;
		border-bottom: 1px solid rgba(0, 0, 0, .2)
	}

	.g-about p {
		width: 98%;
		margin: 10px auto;
		font-size: 16px;
		line-height: 1.5;
		color: #000;
	}

	.main {
		width: 100%;
		margin: 20px 0;
		padding: 10px 0;
		border-radius: 8px;

	}

	.list1 {
		width: 100%;
		padding: 0;

	}

	.li-box {
		width: 12%;
	}

	.m-title {
		justify-content: flex-start;
	}

	.mt-left {
		font-size: 25px;
	}

	.list2 {
		width: 96%;
		border: 1px solid #e5e6e9;
		border-top: 0px;
		padding: 10px 2%;
		margin-top: -4px;
	}

	.list2 .li-box {
		width: 44%;
		margin-bottom: 30px;
	}

}