@charset "utf-8";

/* CSS Document */
/*轮播*/
.bg-body{
	position: relative;
}
.title-line {
	height: 4px;
	width: 32px;
	background: #fff;
	border-radius: 10000px;
	margin-bottom: 8px;
}

.title {
	font-size: 36px;
	margin-bottom: 8px;
}

.desc {
	font-size: 24px;
	margin-top: 20px;
}

.left-part {
	color: #1b1b1b;
}

.txt-box {
	margin-left: 20px;
}

.main-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 100px 0 40px;
	gap: 80px;
}

.left-part {
	max-width: 640px;
}

.brand {
	align-items: center;
	gap: 20px;
}

.brand img {
	width: 92px;
}

.app-intro {
	margin-top: 40px;
	color: rgba(0, 0, 0, 0.78);
	font-size: 16px;
	line-height: 1.8;
}

.app-intro p {
	margin: 0 0 16px;
}

.download-section {
	margin-top: 48px;
	display: flex;
	justify-content: flex-start; /* 与顶部文案左对齐 */
}

.qr-card {
	width: 100%;
	max-width: 240px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 24px 24px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	backdrop-filter: blur(6px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.qr-image {
	width: 160px;
	height: 160px;
	border-radius: 12px;
	object-fit: cover;
}

.qr-meta {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: #1b1b1b;
}

.platform-icon {
	width: 32px;
	height: 32px;
}

.platform-text {
	display: flex;
	flex-direction: column;
	line-height: 1.4;
}

.platform-name {
	font-size: 18px;
	font-weight: 600;
}

.platform-desc {
	font-size: 14px;
	opacity: 0.65;
}

.right-part {
	display: flex;
	align-items: flex-end;
}

.right-part img {
	max-width: 420px;
	width: 100%;
	filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.35));
}

.btn {
	border-radius: 4px;
	box-shadow: 0px 6px 20px 0px rgba(13, 55, 140, 0.25);
	width: 305px;
	height: 80px;
	font-size: 28px;
	margin-bottom: 32px;
}

.ios {
	background: #000000;
		color: white;

}

.android {
	background: #a5c845;
	color: white;
}

.btn-ico {
	margin-left: 4px;
}
a{
	color: initial !important; 
	}
	
.bottom{
	bottom: 0;
	color: #333333;
	left: 0;
	right: 0;
	font-size: 12px;
	text-align: center;
	margin-top: 20px;
}

.bottom  a {
	color: #333333 !important;

}

/* Mobile adaptation */
@media (max-width: 768px) {
	.main-content {
		flex-direction: column;
		align-items: flex-start;
		padding: 40px 20px 24px;
		gap: 32px;
	}

	.brand img {
		width: 72px;
	}

	.title {
		font-size: 30px;
	}

	.desc {
		font-size: 18px;
		margin-top: 12px;
	}

	.app-intro {
		margin-top: 24px;
		font-size: 15px;
		line-height: 1.7;
	}

	.download-section {
		width: 100%;
		margin-top: 24px;
		justify-content: flex-start;
	}

	.qr-card {
		max-width: 200px;
		padding: 20px 20px 18px;
	}

	.right-part {
		display: none;
	}

	.contact-info {
		width: 100% !important;
		margin: 32px 0 24px !important;
		padding: 20px 16px !important;
	}

	.bottom {
		padding: 16px 12px !important;
		margin-top: 24px !important;
	}
}