body {
	background-color: #222;
	font-family: Arial, Helvetica, sans-serif;
}
#container {
	overflow-x: hidden;
}

img {
	width: 100%;
}
.header {
	width: 100%;
	height: 1.32rem;
	text-align: center;
	padding: 0.27rem 0.34rem 0 0.32rem;
	box-sizing: border-box;
	overflow: hidden;
	zoom: 1;
	z-index: 1200;
	position: fixed;
	top: 0;
	left:0;
	background: #222;
}
.header .logo {
	margin-right: 0.2rem;
	width: 2.16rem;
	float: left;
	position: relative;
}
.header .hImg {
	width: 1.4rem;
	float: left;
}
.header .menu {
	margin: 0.14rem 0 0;
	width: 0.64rem;
	float: right;
}
.header .menu.on a {
	display:block;
	background: url(../dkimg/menu_close.png) no-repeat;
	background-size: 100% auto;
}
.header .menu.on a img {
	visibility: hidden;
}
.menuBox {
	padding-top: 1.32rem;
	width: 4.65rem;
	height: 100%;
	position: fixed;
	right: -4.65rem;
	top: 0;
	overflow-y: auto;
	box-sizing: border-box;
	z-index: 1000;
	background: rgba(0,0,0,0.8);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
.menuBox.show {
	right: 0;
}
.menuBox li {
	border-bottom: 1px solid #4C4C4C;
}
.menuBox li:last-child {
	border: none;
}
.menuBox li a {
	padding: 0 0.62rem;
	display: block;
	color: #fff;
	font-size: 0.33rem;
	line-height: 1.1rem;
}
.menuBox li.color a {
	color: #ff0000;
}
.menuBox li a:hover {
	color: #f8fa2d;
}
.banner {
	padding-top: 1.32rem;
	z-index: 1;
	position: relative;
}
.banner img {
	width: 100%;
}

/* 滚动公告样式 */
.tishi-container {
	width: 100%;
	background: #000;
	padding: 0.2rem 0;
	margin-bottom: 0.32rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
	border: 1px solid #3b3b3b;
}

.tishi-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(254, 216, 64, 0.1), transparent);
	transition: left 0.5s;
}

.tishi-container:hover::before {
	left: 100%;
}

.tishi-container:hover {
	transform: translateY(-0.05rem);
	box-shadow: 0 0.1rem 0.3rem rgba(254, 216, 64, 0.3);
}

.tishi-icon {
	width: 0.42rem;
	height: 0.42rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin: 0 0.2rem 0 0.3rem;
}

.tishi-content {
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	height: 0.5rem;
	display: flex;
	align-items: center;
	margin-right: 0.3rem;
}

.tishi {
	display: inline-block;
	padding-left: 100%;
	animation: scrollText 20s linear infinite;
	white-space: nowrap;
	color: #fff;
	font-size: 0.3rem;
}

/* 滚动动画 */
@keyframes scrollText {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

/* 动态调速类 */
.tishi[data-scroll-speed] {
	animation-duration: var(--scroll-speed, 20s);
}

.tishi-container:hover .tishi {
	animation-play-state: paused;
}

/* 公告弹窗样式 */
.announcement-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(0.08rem);
	z-index: 10000;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease;
}

.announcement-popup-overlay.show {
	display: flex;
}

.announcement-popup-content {
	background: #222;
	border-radius: 0.3rem;
	padding: 0.5rem;
	max-width: 90%;
	width: 8rem;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.5);
	animation: slideUp 0.3s ease;
	position: relative;
	border: 1px solid #3b3b3b;
}

.announcement-popup-content > *:first-child {
	margin-top: 0;
}

.announcement-popup-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.3rem;
	padding-bottom: 0.25rem;
	border-bottom: 2px solid #3b3b3b;
}

.announcement-popup-title {
	font-size: 0.36rem;
	font-weight: 700;
	color: #fed840;
	display: flex;
	align-items: center;
	gap: 0.15rem;
}

.announcement-popup-title svg {
	width: 0.4rem;
	height: 0.4rem;
	color: #fed840;
}

.announcement-popup-close {
	width: 0.5rem;
	height: 0.5rem;
	border: none;
	background: #3b3b3b;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	font-size: 0.4rem;
	color: #fff;
}

.announcement-popup-close:hover {
	background: #fed840;
	color: #000;
	transform: rotate(90deg);
}

.announcement-popup-body {
	font-size: 0.28rem;
	line-height: 1.8;
	color: #fff;
	white-space: normal;
	word-wrap: break-word;
	text-align: left;
	direction: ltr;
	text-indent: 0;
	padding: 0;
	margin: 0;
}

.announcement-popup-body p {
	text-indent: 0;
	margin: 0;
	padding: 0;
}

.announcement-popup-body::first-line {
	text-indent: 0;
}

.announcement-popup-body br:first-child {
	display: none;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(0.5rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.text {
	margin-bottom: 0.32rem;
	padding: 0 0.2rem;
	background: #222;
	color: #fff;
	font-size: 0.3rem;
	line-height: 0.7rem;
}
.text span {
	color: #fed840;
}
.text img {
	margin: -0.04rem 0.2rem 0 0;
	width: 0.42rem;
	display: inline-block;
	vertical-align: middle;
}
.btnUl {
	margin: 0 auto -0.05rem;
	width: 9.05rem;
	overflow: hidden;
	zoom: 1;
}
.btnUl li {
	width: 50%;
	float: left;
}
/* 线路检测 */
.testing {
	line-height: 1;
	margin: 0 0.38rem 0.26rem;
	position: relative;
	z-index: 100;
	border-radius: 5px;
	border: 1px solid #3b3b3b;
	background: #000;
}
.testing .bd {
	padding-left: 0;
	padding-right: 0;
padding-top:.36rem;
padding-bottom:.15rem
}
.testing .bd ul {
padding-left:.35rem;
padding-right:.35rem;
	padding-top: 0;
}
.testing .bd li {
	zoom: 1;
margin-bottom:.25rem;
}
.testing .bd li p {
	width: 6.05rem;
	float: left;
	border: 1px solid #3b3b3b;
	border-radius: 5px;
	overflow: hidden;
	zoom: 1;
}
.testing .bd .ms {
	float: left;
font-size:.32rem;
height:.8rem;
line-height:.8rem;
	width: 1.2rem;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
border-radius:.11rem;
	color: #fed840;
}
.testing .bd .url {
	display: block;
font-size:.32rem;
height:.8rem;
line-height:.8rem;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
border-radius:.11rem;
	color: #fff;
	text-align: left;
	width: 3.4rem;
	float: left;
	margin-right: 0.2rem;
}
.testing .bd .btn-open {
	line-height: 1;
	float: right;
font-size:.32rem;
height:.8rem;
line-height:.8rem;
	display: block;
	text-align: center;
	border: 0;
	width: 2.2rem;
}
.testing .bd .btn-open a {
	display: block;
	padding-left:.3rem;
	padding-right:.4rem;
	padding-top: 0;
	padding-bottom: 0;
	border: 1px solid #fed840;
	background: #fed840;
	color: #000;
	border-radius:5px;
	height:.8rem;
	line-height:.8rem;
}
.testing .bd .btn-open a:hover {
	background: #FF9400;
	border: 1px solid #FF9400;
	color: #fff;
}
.testing li {
	overflow: hidden;
	zoom: 1;
}
.testing .img01 {
	margin: 0.2rem 0.2rem 0 0;
	width: 0.4rem;
	float: left;
}
.testing .img02 {
	margin: 0.3rem 0.2rem 0 0;
	width: 0.6rem;
	float: left;
}
.refresh img {
	width: 5.55rem;
}
.refresh {
	width: 5.55rem;
	margin: 0 auto 0.2rem;
}
.refresh a {
	display: block;
}
#footer {
	padding: 0.2rem 0;
	overflow: hidden;
	background-color: #000;
}
#footer p {
	margin-bottom: 0.2rem;
	color: #666;
	font-size: 0.3rem;
	text-align: center;
}
#footer .img {
	margin: 0 auto;
	width: 9.2rem;
}


	.focus{   margin:0 auto; position:relative; overflow:hidden;   }
	.focus .hd{ width:100%; height:11px;  position:absolute; z-index:1; bottom:5px; text-align:center;  }
	.focus .hd ul{ display:inline-block; height:5px; padding:3px 5px; background-color:rgba(255,255,255,0.7); 
		-webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; font-size:0; vertical-align:top;
	}
	.focus .hd ul li{ display:inline-block; width:5px; height:5px; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; background:#8C8C8C; margin:0 5px;  vertical-align:top; overflow:hidden;   }
	.focus .hd ul .on{ background:#FE6C9C;  }

	.focus .bd{ position:relative; z-index:0; }
	.focus .bd li img{ width:100%; }
	.focus .bd li a{ -webkit-tap-highlight-color:rgba(0, 0, 0, 0); /* 取消链接高亮 */  }

/* ========== 页面加载动画样式 ========== */
.page-loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #222;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loading-overlay.hidden {
	opacity: 0;
	visibility: hidden;
}

.page-loading-logo {
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 0.32rem;
	box-shadow: 0 0.16rem 0.6rem rgba(0, 255, 255, 0.3);
	animation: pulse-logo 1.5s ease-in-out infinite;
	margin-bottom: 0.4rem;
	object-fit: contain;
}

@keyframes pulse-logo {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.05); opacity: 0.8; }
}

.page-loading-spinner {
	width: 0.8rem;
	height: 0.8rem;
	border: 0.06rem solid rgba(0, 255, 255, 0.2);
	border-top: 0.06rem solid #00FFFF;
	border-radius: 50%;
	animation: spin-loading 1s linear infinite;
	margin-bottom: 0.24rem;
}

@keyframes spin-loading {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.page-loading-text {
	font-size: 0.28rem;
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 0.24rem;
}

.page-loading-progress-container {
	width: 4rem;
	height: 0.08rem;
	background: rgba(0, 255, 255, 0.2);
	border-radius: 0.08rem;
	overflow: hidden;
}

.page-loading-progress-bar {
	height: 100%;
	background: linear-gradient(135deg, #00FFFF 0%, #00CCCC 100%);
	width: 0%;
	transition: width 0.3s ease;
	border-radius: 0.08rem;
}

.page-loading-percent {
	font-size: 0.24rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 0.16rem;
}

/* ========== PC端适配 - 等比例缩小保持移动端效果 ========== */
@media screen and (min-width: 768px) {
	/* 重置html字体大小，确保rem单位正确计算 */
	html {
		font-size: 43px !important;
	}
	
	/* body居中布局，添加背景 */
	body {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding: 0 !important;
		margin: 0 !important;
		min-height: 100vh;
		background: #1a1a1a !important;
	}
	
	/* 主容器限制宽度 - 430px，无上下间距 */
	#container {
		max-width: 430px !important;
		width: 430px !important;
		margin: 0 !important;
		box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
		position: relative;
		background: #222;
		overflow: hidden !important;
		min-height: 100vh;
	}
	
	/* header固定定位调整 - 限制在容器宽度内并居中 */
	.header {
		max-width: 430px !important;
		width: 430px !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		margin-top: 0 !important;
		box-sizing: border-box;
	}
	
	/* 菜单侧边栏调整 - 改为absolute定位，相对于容器定位 */
	.menuBox {
		position: absolute !important;
		width: 4.65rem !important;
		max-width: 4.65rem !important;
		/* 默认隐藏：在容器右侧外 */
		right: -4.65rem !important;
		left: auto !important;
		margin-top: 0 !important;
		height: 100vh !important;
		top: 0 !important;
	}
	
	.menuBox.show {
		/* 显示时：菜单右边缘对齐容器右边缘 */
		right: 0 !important;
		left: auto !important;
	}
	
	/* 页面加载动画居中 */
	.page-loading-overlay {
		max-width: 430px !important;
		width: 430px !important;
		left: 50% !important;
		right: auto !important;
		transform: translateX(-50%) !important;
		margin-top: 0 !important;
		height: 100vh !important;
		bottom: auto !important;
	}
	
	/* banner间距调整 */
	.banner {
		position: relative;
		z-index: 1;
	}
	
	/* 确保内容区域不溢出 */
	.testing,
	.text,
	#footer,
	.btnUl {
		max-width: 100%;
		box-sizing: border-box;
	}
	
	/* 确保图片不超出容器 */
	img {
		max-width: 100%;
		height: auto;
		display: block;
	}
	
	/* 确保按钮和链接可点击 */
	.testing .bd .btn-open,
	.testing .bd .btn-open a,
	.menuBox li a,
	.header .menu a,
	.banner a {
		cursor: pointer;
		pointer-events: auto;
	}
	
	/* 修复可能的文字溢出 */
	.testing .bd .ms,
	.testing .bd .url {
		box-sizing: border-box;
	}
	
	/* footer样式调整 */
	#footer {
		width: 100%;
	}
	
	#footer .img {
		max-width: 100%;
		box-sizing: border-box;
	}
}