:root {
	--primary-color: #fc8d3a;
	--secondary-color: #f1f2f3;
	--accent-color: #fca324;
	--text-color: #333;
	--light-text: #777;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

body {
	background-color: #fff;
	color: var(--text-color);
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 头部样式 */
header {
	background: linear-gradient(135deg, var(--primary-color), #6c5ce7);
	color: white;
	padding: 60px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

header::after {
	content: "";
	position: absolute;
	bottom: -160px;
	left: 0;
	right: 0;
	height: 320px;
	background-color: #fff;
	transform: skewY(-5deg);
	z-index: 1;
}

.header-content {
	position: relative;
	z-index: 2;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 15px;
	font-weight: 600;
}

.subtitle {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.cta-button {
	display: inline-block;
	background-color: var(--accent-color);
	color: white;
	padding: 20px 60px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
	line-height: 1;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
}

.app-screenshot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	width: 100%;
	max-width: 900px;
	margin: 2.5rem auto;
	margin-bottom: 0;
}
.app-screenshot img{
	width: 31.33%;
	border-radius: 20px;
	box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
/* 特性部分 */
.features {
	padding: 80px 0;
	text-align: center;
}

.section-title {
	font-size: 2rem;
	margin-bottom: 50px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: var(--accent-color);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.feature-card {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.feature-title {
	font-size: 1.3rem;
	margin-bottom: 15px;
}

.feature-desc {
	color: var(--light-text);
}

/* 使用案例部分 */
.use-cases {
	padding: 60px 0;
	background-color: var(--secondary-color);
}

.case-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.case-item {
	background-color: white;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 20px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.case-title {
	color: var(--primary-color);
	margin-bottom: 10px;
}

.case-example {
	background-color: #f5f7ff;
	padding: 15px;
	border-radius: 8px;
	font-family: monospace;
	margin: 10px 0;
}

/* 下载部分 */
.download {
	padding: 80px 0;
	text-align: center;
}

.download-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.download-btn {
	display: flex;
	align-items: center;
	background-color: #333;
	color: white;
	min-width: 210px;
	padding: 12px 25px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.download-btn.apple {
	background-color: #000;
}

.download-btn.android {
	background-color: #3ddc84;
}

.download-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-icon {
	font-size: 1.5rem;
	margin-right: 10px;
	width: 32px;
	height: 32px;
}

/* 页脚 */
footer {
	background-color: #2c3e50;
	color: white;
	padding: 40px 0;
	text-align: center;
}

.footer-links {
	width: 98%;
	margin: auto;
	margin-bottom: 30px;
	color: #bbb;
}

.footer-links a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: white;
}

.copyright {
	color: #bbb;
	font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}
	
	.subtitle {
		font-size: 1rem;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.download-buttons {
		flex-direction: column;
		align-items: center;
	}
}