.wide1200{
	margin: 0 auto;
	width: 1200px;
	_overflow: hidden;
	zoom: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/* --- Banner 区域 --- */
.hero {
	position: relative;
	background: linear-gradient(135deg, #2086ee 0%, #00c6ff 100%);
	height: 480px; /* 调整高度 */
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 5% 0px; /* 顶部padding加大，避开导航 */
	color: var(--white);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -15%;
	right: 15%;
	width: 450px;
	height: 450px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	pointer-events: none; /* 防止遮挡点击 */
}

.hero-content {
	flex: 1;
	z-index: 2;
	max-width: 650px; /* 略微增加宽度 */
}

.hero h1 {
	font-size: 52px; /* 标题加大 */
	margin-bottom: 15px;
	font-weight: 700;
	letter-spacing: 1.5px;
	line-height: 1.2;
}

.hero p {
	font-size: 22px;
	opacity: 0.9;
	margin-bottom: 40px;
	font-weight: 300;
	letter-spacing: 1px;
}


/* ================= Left Section (Marketing) ================= */
.left-section {
	flex: 1;
	padding-right: 50px;
	margin-top: -30px;
}

.main-title {
	font-size: 80px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
	line-height: 1.1;
	margin-bottom: 20px;
}

.sub-title {
	font-size: 32px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 60px;
}

.download-area {
	display: flex;
	align-items: flex-start;
}

.btn-group {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center; /* 居中对齐 */
	width: 200px;
	height: 64px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: transform 0.2s;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn svg {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}
.btn-android svg{
	width: 28px;
	height: 28px;
	margin-left: -5px;
}
.btn-android {
	background-color: #FFFFFF;
	color: #1877F2;
}


.btn-ios {
	background-color: #000000;
	color: #FFFFFF;
}
.btn-android:hover {
	color: #1877F2;
}
.btn-ios:hover {
	color: #FFFFFF;
}

.qr-group {
	margin-left: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.qr-box {
	width: 130px;
	height: 130px;
	background-color: #fff;
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 模拟二维码图案 */
.qr-img {
	width: 100%;
	height: 100%;
	background-position: 0 0, 10px 10px;
	position: relative;
}
.qr-img img{
	width: 100%;
}

.qr-text {
	font-size: 14px;
	color: #fff;
	margin-top: 15px;
	line-height: 1.5;
	text-align: left;
}


.right-section {
	flex: 1;
	display: flex;
	justify-content: center;
	position: relative;
}

.phone-mockup {
	margin-top: 200px;
	width: 321px;
	height: 600px;
	background: #F5F6FA;
	border: 12px solid #FFFFFF;
	border-radius: 40px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	/* 添加悬浮动画 */
	animation: float 6s ease-in-out infinite;
}

/* 光泽扫过效果 (可选，增加质感) */
.phone-mockup::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.1) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: skewX(-15deg);
	pointer-events: none;
	z-index: 50;
	animation: shimmer 8s infinite linear;
}

/* 刘海/状态栏模拟 */
.status-bar {
	height: 30px;
	background: #2b85f5; /* 配合Header颜色 */
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	font-size: 12px;
	color: white;
	position: relative;
	z-index: 10;
}

/* 简单的刘海形状 */
.notch {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 20px;
	background-color: #fff;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
	z-index: 20;
}







/* Banner 下载区域 - 左右结构 */
@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
	100% { transform: translateY(0px); }
}

/* --- 标题通用样式 --- */
.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 32px;
	color: #333333;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: '';
	display: block;
	width: 50px;
	height: 4px;
	background: #2086ee;
	margin: 10px auto 0;
	border-radius: 2px;
}

.section-title p {
	font-size: 18px;
	color: #666666;
	margin-top: 15px;
	font-weight: 300;
}






/* --- 功能展示 --- */
.features {
	padding: 80px 5%;
	background: #f8f9fa;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 1300px;
	margin: 0 auto;
}

.feature-item {
	background:  #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: 0.3s;
	display: flex;
	flex-direction: column;
	border: 1px solid transparent;
}

.feature-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(32, 134, 238, 0.15);
	border-color: #e0e0e0;
}

.feature-img-box {
	background: #f0f7ff;
	padding: 5px 10px 0 10px; /* 底部无padding，让图片贴底 */
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height:520px;
	overflow: hidden;
}

.feature-screenshot {
	width: 100%;
	height: auto;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
	/* 模拟手机屏幕比例 */
	aspect-ratio: 9/16;
	object-fit: cover;
	object-position: top;
}

.feature-text {
	padding: 25px 20px;
	text-align: center;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-text p {
	font-size: 16px;
	color: #333333;
	font-weight: 500;
	line-height: 1.5;
}

@media (max-width: 1200px) {
	.feature-grid{
		width: 1200px;
	}
}
