* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Microsoft YaHei", Arial, sans-serif;
	background: #0a010c;
	color: #fff;
	min-width: 858px;
	position: relative;
	overflow-x: hidden;
	--resize-content-width: 1149px;
	--resize-content-width: 1200px;
}  
.gmhz{
	font-weight:normal;
	font-size:13px;
	border:1px solid #ccc;
	border-radius:5px;
	padding:0 3px;
	margin:5px;
	margin:6px;
}    	
.background-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.2);
	filter: blur(50px);
	opacity: 0.8;
	transition: opacity 0.3s;
}
.background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
}
a {
	text-decoration: none;
	color: #fff;
}
ul, li {
	list-style: none;
}
img {
	border: none;
	vertical-align: middle;
	max-width: 100%;
}

.header {
	width: 100%;
	height:50px;
	background: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	min-width:1000px;
}
.header-inner {
	width: var(--resize-content-width);
	margin: 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ptlogo {
	display: flex;
	align-items: center;
}
.ptlogo img {
	height: 36px;
	margin-right: 10px;
}
.ptlogo-text {
	font-size: 14px;
	color: #fff;
}
.nav {
	display: flex;
}
.nav a {
	margin: 0 15px;
	font-size: 14px;
	color: #ccc;
	transition: color 0.3s;
}
.nav a:hover, .nav a.active {
	color: #fff;color:#FF6505
}
.user-actions {
	display: flex;
	align-items: center;
}
.user-actions a {
	margin-left: 20px;
	font-size: 14px;
	color: #ccc;
}
.user-actions a:hover{color:#FF6505}
.main-content {
	width: var(--resize-content-width);
	margin: 80px auto 0;margin:65px auto 0;
	padding-bottom:50px;
}

.notice-bar {
	display: inline-flex;
	align-items: center;
	height: 27px;
	padding: 0 8px;
	color: hsla(0,0%,100%,.45);
	background: rgba(0,0,0,.3);
	border-radius: 6px;
	font-size: 12px;
	margin: 0 auto 15px auto;
}

.game-detail-container {
	/*background: rgba(30,30,30,0.8);*/
	border-radius: 8px;
	padding: 20px;padding:0px;
	margin-bottom: 30px;margin-bottom:20px;
}

.game-detail {
	display: flex;
	margin-bottom:30px;margin-bottom:20px;
}

.game-main-image {
	flex:1;
	margin-right:30px;margin-right:20px;
}
.game-main-image img {
	width: 100%;
	border-radius: 8px;
}

.game-info {
	width: 350px;
	background: hsla(0,0%,100%,.06);
	padding:20px;
	border-radius:8px;
}
.game-title {
	display:flex;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;margin-bottom:15px;
	color: #fff;
}
.game-score {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.score-value {
	font-size: 20px;
	font-weight: bold;
	color: #ff6600;
	margin-left: 10px;
}
.game-tags {
	margin-top:20px;
	margin-bottom:20px;
}
.tag {
	display: inline-block;
	padding:3px 14px;
	background: rgba(255,255,255,0.1);
	border-radius: 13px;
	font-size: 14px;
	margin-right: 8px;
	color: #ccc;
}
.game_desc_tit{
	margin-top:20px;
	margin-bottom:10px;
	font-size:16px;
	color: #ccc;
	color: #FFF;
}
.game-desc {
	color: #ccc;
	line-height: 1.6;
	margin-bottom: 20px;margin-bottom:40px;
	font-size:14px;font-size:15px;			
	display: -webkit-box; /* 必须设置为这个值 */
	-webkit-box-orient: vertical; /* 必须设置为这个值 */
	overflow: hidden; /* 隐藏溢出的内容 */
	-webkit-line-clamp:8; /* 限制显示的行数 */	
	min-height:179px;
}
.game-gift {
	margin-top:0px;
	margin-bottom: 20px;
}
.game-gift a{
	color:#ffcc00;color:#FF9000;
	font-size: 14px;
	display: flex;
	align-items: center;
}
.game-gift i{			
	margin-right: 5px;
	width:20px;height:20px;background:red;
	background:url(//ku25res.oss-cn-hangzhou.aliyuncs.com/img/gift_ico.png) 0 -31px no-repeat
}
.start-game-btn {
	width: 100%;
	height: 40px;line-height:40px;
	height: 56px;line-height:56px;
	background: linear-gradient(135deg, #ff6600 0%, #ff9900 100%);
	color: #fff;
	border: none;
	border-radius: 28px;
	text-align:center;
	font-size: 16px;font-size:24px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	display:block;
}
.start-game-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255,102,0,0.4);
	background: linear-gradient(315deg, #ff6600 0%, #ff9900 100%);	
}

.game-images {
	margin-bottom: 30px;
}
.images-scroll {
	display: flex;
	align-items: center;
	position: relative;
}
.scroll-btn {
	width: 32px;
	height: 60px;
	background: rgba(0,0,0,0.4);
	color: hsla(0,0%,100%,.6);
	border: none;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s;
}
.scroll-btn:hover {
	background: rgba(0,0,0,0.6);
	color: hsla(0,0%,100%,.9);
}
.scroll-btn.left {
	border-radius: 4px 0 0 4px;
}
.scroll-btn.right {
	border-radius: 0 4px 4px 0;
}
.images-container {
	flex: 1;
	display: flex;
	gap:10px;gap:15px;
	padding: 0 10px;padding: 0 15px;padding: 0 18px;
	overflow: hidden;
}
.game-image-item {
	height: 100px;
	border-radius:8px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s;
	border: 2px solid transparent;
	opacity: 0.7;
}
.game-image-item:hover,
.game-image-item.active {
	border: 2px solid #fff;
	opacity: 1;
}
.game-image-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.related-games {
	margin-top: 40px;margin-top: 20px;
}
.section-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom:20px;margin-bottom:15px;
	color: #fff;
}
.related-games-list {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.related-game-item {
	width: calc(25% - 15px);
	width: calc(20% - 16px);
	background: rgba(0,0,0,0.2);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s;	
	border: 1px solid rgba(255,255,255,0.05);
}
.related-game-item:hover {
	background: rgba(0,0,0,0.4);
	transform: translateY(-2px);
	border-color: rgba(255,255,255,0.1);
}
.related-game-image {
	/*height: 120px;*/
	overflow: hidden;
	background: rgba(0,0,0,0.3);
	cursor: pointer;
}
.related-game-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
.related-game-item:hover .related-game-image img {
	transform: scale(1.05);
}
.related-game-info {
	padding: 12px;
}
.related-game-name {
	font-size: 14px;font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
	color: hsla(0,0%,100%,.9);
}
.related-game-score {
	font-size: 12px;font-size: 14px;
	color: #ff9800;
	margin-top:10px;text-align:right;
	width:100%;
	display:inline-block;
}
.related-game-tags {
	font-size: 11px; font-size:14px;
	color: hsla(0,0%,100%,.5);
}

.footer {
	min-width:1000px;
	background: rgba(0,0,0,0.8);
	color: #666;
	padding: 20px 0;
	text-align: center;
	margin-top: 20px;
}
.footer-links {
	margin-bottom: 20px;
}
.footer-links p{font-size:14px;height:30px;line-height:30px;}
.footer-links a {
	color: #666;
	margin: 0 15px;
	font-size: 12px;
}
.footer-copy {
	font-size: 11px;
}
.hide{display:none;}

/*游戏提要*/
.game_synopsis{
	height:200px;width:100%;position:relative;margin-top:20px;border:0px solid red;
	/*background:url(//ku25h5res.oss-cn-hangzhou.aliyuncs.com/Public/imgs/synopsis_bg.png) center center no-repeat;*/
	background:rgba(0, 0, 0, 0.3);border-radius:8px;
}
.game_synopsis>*{float:left;margin-right:20px;}

.game_synopsis .avatar{height:120px;width:120px;margin-top:40px;margin-left:40px;}
.game_synopsis .avatar img{width:120px;border-radius:15px}

.game_synopsis .content{height:120px;margin-top:40px;border:0px solid red;}
.game_synopsis .content .game_name{font-size:24px;font-size:20px;color:#fff;}
.game_synopsis .content .slogan{color:#fff;opacity:0.5;height:25px;line-height:25px;font-size:14px;}
.game_synopsis .content .btns{margin:11px 0 0 0;height:36px;margin-top:20px;}
.game_synopsis .content .btns a{
	display:inline-block;float:left;width:120px;height:34px;text-align:center;line-height:34px;color:#fff;
	background-color:#0090ED;border:2px solid #0090ED;border:1px solid #ff6600;margin-right:20px;font-size:14px;
	box-sizing:content-box;background:linear-gradient(135deg, #ff6600 0%, #ff9900 100%);border-radius:20px;
}
.game_synopsis .content .btns a:hover{color:#0090ED;color:#ff6600;background:transparent;}

.game_synopsis .app_down{margin-top:30px;text-align:center;border-radius:5px;border:0px solid red;}
.game_synopsis .app_down img{width:120px;height:120px;border-radius:5px;}
.game_synopsis .app_down p{line-height:30px;color:#FFF;}

.game_synopsis .tips_18{position:absolute;top:71px;top:60px;right:370px;right:310px;}
.game_synopsis .qrcode_desc{width:125px;height:70px;font-size:14px;position:absolute;top:75px;top:65px;right:220px;right:170px;line-height:23px;color:#fff;}
.game_synopsis .qrcode_div{
	position:absolute;bottom:20px;bottom:30px;right:28px;height:140px;width:140px;text-align:center;color:#fff;background:#000;border-radius:5px;
}
.game_synopsis .qrcode_div img{width:100%;height:100%;border-radius:5px;}


/*游戏tabbar*/
.game_tabbar{width:880px;width:100%;height:50px;margin-top:20px;border:0px solid red;}
.game_tabbar ul{width:100%;overflow:hidden;border-bottom:0px solid #E5E5E5;}
.game_tabbar ul li{
	float:left;width:120px;height:45px;line-height:45px;text-align:center;font-weight:bold;
	font-size:18px;overflow:hidden;cursor:pointer;color:#FFF;
}
.game_tabbar li.active,.game_tabbar li:hover{
	font-size:18px;color:#25A9FF;border-bottom:4px solid #25A9FF;
	color:#FF6600;border-bottom:4px solid #FF6600;
}


/*游戏礼包*/
.game_gifts{width:880px;width:100%;margin-top:20px;min-height:110px;border:0px solid red;}
.game_gifts li{
	display:block;width:100%;height:110px;margin-bottom:20px;border-bottom:1px solid #E5E5E5;position:relative;
	border-bottom:1px dashed rgba(255,255,255,0.3);
}
.game_gifts li .list_img{float:left;width:90px;height:90px;}
.game_gifts li .list_img img{width:100%;height:100%;border-radius:10px;}
.game_gifts li .content{float:left;width:1088px;width:80%;margin-left:20px;border:0px solid red;}
.game_gifts li .content .gift_title{color:#333;color:#FF6600;height:20px;line-height:20px;margin-top:0px;font-size:16px;}
.game_gifts li:hover .content p.gift_title{color:#25A9FF;color:#FF6600;}
.game_gifts li .content .gift_content{
	color:#666;height:20px;line-height:20px;margin-top:16px;width:900px;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
	color:#FFF;
}
.game_gifts li .content .progress{color:#333;font-size:14px;height:15px;line-height:15px;margin-top:16px;}
.game_gifts li .content .progress .rate_chart{float:left;background-color:#DCDCDC;width:150px;height:13px;margin-top:1px;overflow:hidden}
.game_gifts li .content .progress .rate_chart .deep{display:block;width:75px;height:13px;background-color:#25A9FF;}
.game_gifts li .content .progress .sy_text{float:left;font-size:14px;margin-left:0px;color:#666;color:#ccc;}
.game_gifts li .get_gift{
position:absolute;height:38px;line-height:38px;width:98px;top:25px;right:0px;border:1px solid #25A9FF;
text-align:center;color:#fff;background:#25A9FF;cursor:pointer;box-sizing:content-box;
border:1px solid #ff6600;
background:linear-gradient(135deg, #ff6600 0%, #ff9900 100%);border-radius:20px;
}
.game_gifts li .get_gift:hover{color:#0090ED;color:#ff6600;background:#fff;background:transparent;}

/*领取礼包提示框210720*/
.gift_msg_ts{
width:400px;padding:20px;position:fixed;left:50%;top:50%;margin-left:-220px;margin-top:-105px;display:none;
font-size:16px;background:#F6F6F6;box-shadow:1px 5px 50px #000;border-radius:10px;text-align:center;
z-index:99;background:#342F29;
}
.gift_msg_ts .msg_title{font-weight:700;}
.gift_msg_ts .msg_content{margin-top:40px;}
.gift_msg_ts .msg_close{
width:200px;height:40px;line-height:40px;border-radius:20px;background:#00AAEE;color:#fff;margin:40px auto 0;cursor:pointer;
background:linear-gradient(135deg, #ff6600 0%, #ff9900 100%);
}
.gift_msg_ts .msg_close:hover{
	color:#fff;background-color:#00c2ff;
	background:linear-gradient(315deg, #ff6600 0%, #ff9900 100%);
}	

/*游戏公告列表*/
.game_news{width:880px;width:100%;margin-top:20px;min-height:110px;border:0px solid red;}
.game_news li{
	display:block;width:100%;height:110px;margin-bottom:20px;border-bottom:1px solid #E5E5E5;
	border-bottom:1px dashed rgba(255,255,255,0.3);
}
.game_news li .list_img{float:left;width:90px;height:90px;}
.game_news li .list_img img{width:100%;height:100%;border-radius:10px;}
.game_news li .content{float:left;width:737px;width:1088px;width:80%;margin-left:20px;border:0px solid red;}
.game_news li .content p.title{color:#333;color:#FFF;font-size:16px;margin:0px;line-height:20px;height:20px;}
.game_news li a:hover .content p.title{color:#25A9FF;color:#FF6600;}
.game_news li .content p.main_text{color:#666;color:#CCC;font-size:14px;height:15px;line-height:15px;margin-top:20px;}
.game_news li .content p.time{color:#999;height:15px;line-height:15px;margin-top:20px;}


@media only screen and (min-width: 1760px) {
	body {
		--resize-content-width: 1440px;
	}
	.game-info{width:420px;}
	.game_desc_tit{
		font-size:18px;
	}
	.game-desc{
		font-size:16px;
		line-height:1.8;
		-webkit-line-clamp:10; /* 限制显示的行数 */
		min-height:288px;				
	}
	.game-image-item{
		height: 123px;
	}
}
@media only screen and (max-width: 1200px) {
	body {
		--resize-content-width: 858px;
		--resize-content-width: 1000px;
	}
	.game-desc{
		line-height:1.5;
		-webkit-line-clamp:5; /* 限制显示的行数 */
		min-height:105px;				
	}
	.game-info{width:300px;}
	.game-image-item{
		height: 90px;
	}
}		