* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(to bottom, #fff0f6, #ffffff);
	min-height: 100vh;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

/* 容器 */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.max-w-6xl {
	max-width: 1152px;
	margin: 0 auto;
}

.max-w-3xl {
	max-width: 768px;
	margin: 0 auto;
}

/* 布局 */
.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.items-center {
	align-items: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.gap-2 {
	gap: 0.5rem;
}

.gap-3 {
	gap: 0.75rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-6 {
	gap: 1.5rem;
}

.gap-8 {
	gap: 2rem;
}

.grid {
	display: grid;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 间距 */
.mb-2 {
	margin-bottom: 0.5rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mb-12 {
	margin-bottom: 3rem;
}

.mr-2 {
	margin-right: 0.5rem;
}

.mt-2 {
	margin-top: 0.5rem;
}

.mt-12 {
	margin-top: 3rem;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.py-20 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.pt-8 {
	padding-top: 2rem;
}

.pt-16 {
	padding-top: 4rem;
}

.pb-8 {
	padding-bottom: 2rem;
}

.pb-16 {
	padding-bottom: 4rem;
}

.p-6 {
	padding: 1.5rem;
}

/* 文本 */
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-xs {
	font-size: 0.75rem;
}

.text-sm {
	font-size: 0.875rem;
}

.text-lg {
	font-size: 1.125rem;
}

.text-xl {
	font-size: 1.25rem;
}

.text-3xl {
	font-size: 1.875rem;
}

.text-4xl {
	font-size: 2.25rem;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.font-bold {
	font-weight: 700;
}

/* 颜色 */
.text-white {
	color: #ffffff;
}

.text-gray-400 {
	color: #9ca3af;
}

.text-gray-600 {
	color: #4b5563;
}

.text-gray-800 {
	color: #1f2937;
}

.text-pink-600 {
	color: #f01d5c;
}

.text-pink-700 {
	color: #d10a4a;
}

.bg-white {
	background-color: #ffffff;
}

.bg-black {
	background-color: #000000;
}

.bg-gray-800 {
	background-color: #1f2937;
}

.bg-gray-900 {
	background-color: #111827;
}

.bg-pink-50 {
	background-color: #fff0f6;
}

.bg-pink-100 {
	background-color: #ffe0eb;
}

.bg-pink-500 {
	background-color: #ff3377;
}

.border-gray-800 {
	border-color: #1f2937;
}

.border-t {
	border-top-width: 1px;
	border-top-style: solid;
}

/* 形状 */
.rounded-lg {
	border-radius: 0.5rem;
}

.rounded-xl {
	border-radius: 0.75rem;
}

.rounded-3xl {
	border-radius: 1.5rem;
}

.rounded-full {
	border-radius: 9999px;
}

/* 阴影 */
.shadow-md {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 尺寸 */
.w-10 {
	width: 2.5rem;
}

.w-12 {
	width: 3rem;
}

.w-full {
	width: 100%;
}

.h-5 {
	height: 1.25rem;
}

.h-6 {
	height: 1.5rem;
}

.h-8 {
	height: 2rem;
}

.h-10 {
	height: 2.5rem;
}

.h-12 {
	height: 3rem;
}

.h-\[380px\] {
	height: 380px;
}

/* 变换 */
.transform {
	transform: translateZ(0);
}

.rotate-6 {
	transform: rotate(6deg);
}

.rotate-2 {
	transform: rotate(2deg);
}

.-rotate-2 {
	transform: rotate(-2deg);
}

.-rotate-6 {
	transform: rotate(-6deg);
}

/* 过渡 */
.transition {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.duration-300 {
	transition-duration: 300ms;
}

/* 位置 */
.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.z-10 {
	z-index: 10;
}

.z-20 {
	z-index: 20;
}

.z-30 {
	z-index: 30;
}

/* 动画 */
@keyframes bounce {

	0%,
	100% {
		transform: translateY(-25%);
		animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
	}

	50% {
		transform: translateY(0);
		animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
	}
}

.animate-bounce {
	animation: bounce 1s infinite;
}

/* 悬停效果 */
.hover\:bg-gray-800:hover {
	background-color: #1f2937;
}

.hover\:text-pink-400:hover {
	color: #ff6699;
}

.hover\:text-pink-600:hover {
	color: #f01d5c;
}

.hover\:text-pink-700:hover {
	color: #d10a4a;
}

.hover\:shadow-lg:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:-translate-y-2:hover {
	transform: translateY(-0.5rem);
}

/* 自定义组件样式 */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.75rem;
	font-weight: 500;
	cursor: pointer;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	border: none;
}

.btn-black {
	background-color: #000000;
	color: #ffffff;
}

.btn-black:hover {
	background-color: #1f2937;
}

.btn-pink {
	background-color: #f01d5c;
	color: #ffffff;
}

.btn-pink:hover {
	background-color: #d10a4a;
}

.screenshot-container {
	position: relative;
	width: 100%;
	height: 480px;
	transform: translateZ(0);
	transition: transform 0.3s ease;
}

.screenshot-container:hover {
	transform: translateY(-0.5rem);
}

.screenshot-bg {
	position: absolute;
	inset: 0;
	border-radius: 1.5rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.screenshot-inner {
	position: absolute;
	inset: 0;
	background-color: #ffffff;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.screenshot-img {
	width: 100%;
	height: 100%;
}

.feature-card {
	background-color: #ffffff;
	padding: 1.5rem;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.15s ease;
}

.feature-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
	width: 3rem;
	height: 3rem;
	background-color: #ffe0eb;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.feature-icon i {
	color: #f01d5c;
	font-size: 1.5rem;
}

/* 响应式设计 */
@media (min-width: 768px) {
	.md\:flex {
		display: flex;
	}

	.md\:hidden {
		display: none;
	}

	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.md\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.md\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.md\:flex-row {
		flex-direction: row;
	}

	.md\:mb-0 {
		margin-bottom: 0;
	}

	.md\:gap-6 {
		gap: 1.5rem;
	}

	.md\:text-5xl {
		font-size: 3rem;
	}

	.md\:py-24 {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

@media (min-width: 1024px) {
	.lg\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.lg\:flex-row {
		flex-direction: row;
	}

	.lg\:w-1\/2 {
		width: 50%;
	}

	.lg\:mb-0 {
		margin-bottom: 0;
	}

	.lg\:pr-8 {
		padding-right: 2rem;
	}
}

/* 移动端菜单 */
.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 50;
}

.mobile-menu.active {
	display: block;
}

.mobile-menu-content {
	background-color: white;
	padding: 2rem;
	height: 100%;
	width: 80%;
	max-width: 300px;
}

.mobile-menu-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
}

.mobile-menu-links {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2rem;
}

.mobile-menu-links a {
	font-size: 1.25rem;
	color: #333;
}

.hamburger {
	display: block;
	cursor: pointer;
}

@media (min-width: 768px) {
	.hamburger {
		display: none;
	}
}

.android-btn{
    background-color: #f01d5c;
    color: #ffffff;
    text-align: center;
    padding: 0 15px;
    border-radius: 8px;
    height: 50px;
    line-height: 50px;
    display: block;
    width: fit-content;
    margin: 0 auto;
}