* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-family: "Microsoft YaHei", system-ui, sans-serif;*/
}

html {
	font-size: clamp(14px, 1.2vw, 16px);
	touch-action: manipulation;
}

body {
	background-color: #f8f5ee;
	min-width: 320px;
}


/* 顶部横幅 */

.top-banner {
	width: 100%;
	height: min(280px, 40vh);
	background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("https://www.lxgame.cc/wp-content/uploads/2026/07/1782984114-c130027ae55014b.webp");
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	position: relative;
}

.banner-subtitle {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.875rem;
	color: #e6d9c3;
	letter-spacing: 1px;
	margin-bottom: 14px;
}

.line-decor {
	width: 130px;
	height: 1px;
	background-color: #d4b886;
}

.banner-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: normal;
	margin-bottom: 12px;
	color: #fff;
}

.banner-desc {
	font-size: 1rem;
	color: #eee;
}


/* 主体容器 */

.main-wrap {
	max-width: 1400px;
	margin: 65px auto;
	padding: 0 max(16px, 3vw);
}

.section-head {
	text-align: center;
	margin-bottom: 55px;
}

.section-head h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #333333;
	font-weight: normal;
	margin-bottom: 10px;
}

body.dark-theme .section-head h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #ccc;
	font-weight: normal;
	margin-bottom: 10px;
}

.section-head p {
	font-size: 0.875rem;
	color: #777;
}

body.dark-theme .section-head p {
	font-size: 0.875rem;
	color: #ccc;
}


/* 服务卡片网格 */

.card-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: min(26px, 4vw);
	margin-bottom: 40px;
}

.service-card {
	background: #fff;
	border-radius: 16px;
	padding: min(36px, 6vw) min(22px, 4vw);
	position: relative;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
	cursor: pointer;
	transition: all 0.3s ease;
}

.service-card.active {
	border: 2px solid #c8a468;
	box-shadow: 0 6px 20px rgba(200, 164, 104, 0.18);
}

body.dark-theme .service-card {
	background: #222;
	border-radius: 16px;
	padding: min(36px, 6vw) min(22px, 4vw);
	position: relative;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
	cursor: pointer;
	transition: all 0.3s ease;
}

body.dark-theme .service-card.active {
	border: 2px solid #c8a468;
	box-shadow: 0 6px 20px rgba(200, 164, 104, 0.18);
}

.discount-tag {
	position: absolute;
	top: 18px;
	right: 18px;
	background: #e24444;
	color: #fff;
	font-size: 0.75rem;
	padding: 4px 9px;
	border-radius: 5px;
}

.price-text {
	font-size: clamp(2rem, 4vw, 2.4rem);
	color: #e24444;
	font-weight: bold;
	margin-bottom: 14px;
}

.price-text small {
	font-size: 1rem;
	font-weight: normal;
}

.card-name {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: #222;
	margin-bottom: 12px;
}

body.dark-theme .card-name {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: #ccc;
	margin-bottom: 12px;
}

.card-desc {
	font-size: 0.8125rem;
	color: #777;
	line-height: 1.65;
	margin-bottom: 28px;
}

.card-select-btn {
	width: 100%;
	padding: 13px 0;
	border-radius: 9px;
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #333;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
	transition: 0.25s;
}

.service-card.active .card-select-btn {
	background: #b89458;
	border-color: #b89458;
	color: #fff;
}

.card-select-btn:hover {
	opacity: 0.9;
}


/* 联系模块总样式 */

.contact-title {
	text-align: center;
	font-size: 1rem;
	color: #555;
	margin-bottom: 18px;
}

body.dark-theme .contact-title {
	text-align: center;
	font-size: 1rem;
	color: #ccc;
	margin-bottom: 18px;
}

.contact-wrap {
	display: flex;
	justify-content: center;
	gap: min(24px, 4vw);
	margin-bottom: 22px;
	flex-wrap: wrap;
}

.contact-card {
	background: #ffffff;
	width: min(320px, 100%);
	padding: min(20px, 4vw) min(24px, 5vw);
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	gap: min(18px, 3vw);
}

body.dark-theme .contact-card {
	background: #222;
	width: min(320px, 100%);
	padding: min(20px, 4vw) min(24px, 5vw);
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	gap: min(18px, 3vw);
}

.avatar {
	width: min(68px, 15vw);
	height: min(68px, 15vw);
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #d4b886;
	image-rendering: -webkit-optimize-contrast;
}

.contact-text h4 {
	font-size: 0.9375rem;
	color: #777;
	font-weight: normal;
	margin-bottom: 6px;
}

.contact-text .num {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: #b89458;
	font-weight: bold;
	left: auto;
	position: static;
	text-align: left;
}

@media(max-width: 768px) {
	.num {
		top: auto;
		margin-top: -2px;
	}
}


/* 远程工具下载卡片单独样式 */

.download-card {
	background: #ffffff;
	width: min(320px, 100%);
	padding: min(20px, 4vw) min(24px, 5vw);
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}

.download-card h4 {
	font-size: 0.9375rem;
	color: #777;
	font-weight: normal;
}

body.dark-theme .download-card {
	background: #222;
	width: min(320px, 100%);
	padding: min(20px, 4vw) min(24px, 5vw);
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}

body.dark-theme .download-card h4 {
	font-size: 0.9375rem;
	color: #777;
	font-weight: normal;
}

.download-btn {
	display: inline-block;
	background: #b89458;
	color: #fff;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 9px;
	transition: 0.2s;
	font-size: 0.9375rem;
}

.download-btn:hover {
	background: #a07f49;
}

body.dark-theme .download-btn:hover {
	background: #fff;
}


/* 底部安全提示 */

.safe-tips {
	text-align: center;
	font-size: 0.8125rem;
	color: #888;
	margin-bottom: 45px;
}


/* 底部支付结算栏 */

.pay-footer-bar {
	max-width: 1400px;
	margin: 0 auto 60px;
	padding: 0 max(16px, 3vw);
}

.bar-inner {
	background: #fff;
	padding: min(20px, 4vw) min(28px, 5vw);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

body.dark-theme .bar-inner {
	background: #222;
	padding: min(20px, 4vw) min(28px, 5vw);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.selected-info {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0.9375rem;
	color: #444;
}

body.dark-theme .selected-info {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0.9375rem;
	color: #fff;
}

.check-box {
	width: 24px;
	height: 24px;
	border: 1px solid #ddd;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pay-submit-btn {
	background: #b89458;
	color: #fff;
	border: none;
	padding: 15px min(36px, 6vw);
	border-radius: 9px;
	font-size: 1.0625rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 9px;
	transition: 0.2s;
	white-space: nowrap;
}

.pay-submit-btn:hover {
	background: #a07f49;
}


/* 扫码弹窗遮罩 */

.mask {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.65);
	z-index: 999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.pop-box {
	background: #fff;
	border-radius: 16px;
	padding: min(30px, 6vw);
	text-align: center;
	max-width: 420px;
	width: 100%;
	position: relative;
}


/* 新增：容器内图片自动居中 */

.pop-box img {
	display: block;
	margin: 16px auto;
}

.close-pop {
	position: absolute;
	right: 16px;
	top: 12px;
	font-size: 1.5rem;
	color: #999;
	cursor: pointer;
}

.close-pop:hover {
	color: #333;
}

.pop-qrcode {
	width: min(260px, 60vw);
	height: min(260px, 60vw);
	object-fit: cover;
	border-radius: 10px;
	margin: 16px 0;
}

.pop-desc {
	color: #666;
	font-size: 0.9375rem;
	margin-bottom: 10px;
	line-height: 1.7;
}


/* 平板手机适配 */

@media(max-width: 1100px) {
	.card-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 660px) {
	.card-container {
		grid-template-columns: 1fr;
	}
}

.site-content {
	padding: 0px;
	/*background: #FFF;*/
}

.term-bar {
	display: none;
}


/*.lang__4 {*/


/*	display: none;*/


/*}*/