*{
    margin: 0;
    padding: 0;
}

body,html { width:100%;height:100%;background-color: #000000;}
.container {
	width:100%;
	height:100%;
	background-image:url("../../assets/images/pc_bg.webp");
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover; /* 等比缩放铺满，可能裁切边缘 */
	position:relative;
	overflow: hidden;
}

.container::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 42%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
	pointer-events: none;
	z-index: 1;
}
.container .tg {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 48px);
	max-width: 1100px;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	box-sizing: border-box;
	padding: 16px 24px 16px 14px;
	border-radius: 14px;
	background: rgba(20, 20, 20, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.tg-brand {
	display: flex;
	align-items: center;
	min-width: 0;
}

.tg .logo {
	display: block;
	width: auto;
	height: 52px;
	object-fit: contain;
	cursor: pointer;
}

.tg-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	gap: 18px;
}

.tg-btn-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	opacity: 0.95;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.tg-btn-item:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.tg-btn-item img {
	display: block;
	width: 28px;
	height: auto;
}

.tg .line {
	width: 1px;
	height: 28px;
	background: rgba(255, 255, 255, 0.22);
}

.container .tel {
	width: 140px;
	position: absolute;
	top: 30px;
	right: 55px;
}

.container .tel img {
	width: 100%;
}

.pc-footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	box-sizing: border-box;
	padding: 0 36px 38px;
	pointer-events: none;
}

.pc-tips {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 180px 8px;
	text-align: center;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

.pc-tips-title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
}

.pc-tips-desc {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.62);
}

.pc-qr {
	position: absolute;
	right: 36px;
	bottom: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	pointer-events: auto;
}

#qrcode {
	padding: 8px;
	background: #fff;
	border-radius: 8px;
	line-height: 0;
}

#qrcode img,
#qrcode canvas {
	display: block;
	width: 140px;
	height: 140px;
}

.pc-qr-label {
	margin: 10px 0 0;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.flex {
	display: flex;
	justify-content: center;
}
