.app-header {
	display: flex;
	padding: 30px;
	background: linear-gradient(135deg, #2B6DFF 0%, #2B57FF 100%);
	color: white;
	flex-direction: column;
	text-align: center;
}



.app-icon {
	width: 90px;
	height: 90px;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
	margin-right: 25px;
	flex-shrink: 0;
	display: flex;
	margin: 0 auto 20px;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 42px;
	position: relative;
}

.app-icon::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
	border-radius: 22px;
}

.app-info {
	flex: 1;
}

/* .app-icon {
	width: 100px;
	height: 100px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	margin-right: 25px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 42px;
	position: relative;
}

.app-info {
	flex: 1;
} */

.app-title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 8px;
}

.app-developer {
	font-size: 16px;
	opacity: 0.9;
	margin-bottom: 15px;
}

.app-description {
	font-size: 15px;
	max-width: 600px;
	opacity: 0.95;
}

.install-btn {
	background: white;
	color: #2B6DFF;
	border: none;
	padding: 12px 28px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	margin-top: 15px;
}

.install-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.screenshots {
	padding: 25px 30px;
	border-bottom: 1px solid #eee;
}

.section-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #222;
	display: flex;
	align-items: center;
}

.section-title:before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 18px;
	background: #2B6DFF;
	margin-right: 10px;
	border-radius: 2px;
}

.screenshot-container {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	padding-bottom: 10px;
}

.screenshot {
	height: 400px;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}

.details {
	padding: 25px 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
	.details {
		grid-template-columns: 1fr;
	}

	.app-info {
		margin-left: 10px;
		/* 根据需要调整 */
	}

	.screenshots .screenshot {
		width: 100%;
		height: auto;
		margin-bottom: 10px;
		/* 根据需要调整 */
	}

	.details .detail-block {
		margin-bottom: 20px;
		/* 根据需要调整 */
	}

	.user-reviews .review-card {
		padding: 10px;
	}

	.card-footer {
		flex-wrap: wrap;
		width: 100%;
		margin-top: 10px;
		/* 根据需要调整 */
	}
}

.update-date {
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
}

.detail-block {
	margin-bottom: 20px;
}

.detail-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #2B6DFF;
}

.update-content {
	background: #f9f9f9;
	padding: 15px;
	border-radius: 8px;
	border-left: 3px solid #2B6DFF;
}

.update-content ul {
	padding-left: 20px;
}

.update-content li {
	margin-bottom: 8px;
}

.user-reviews {
	padding: 25px 30px;
}

.review-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.review-card {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.review-header {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ddd;
	margin-right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #666;
}

.reviewer-name {
	font-weight: 600;
	font-size: 16px;
}

.review-rating {
	color: #FFC107;
	margin-left: auto;
}

.review-text {
	font-size: 14px;
	color: #555;
}

.card-footer {
	padding: 25px 35px;
	background: linear-gradient(to right, #f8fafc, #ffffff);
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #f0f0f0;
}

.app-rating {
	display: flex;
	align-items: center;
}

.stars {
	color: #ffc107;
	font-size: 20px;
	margin-right: 10px;
}

.rating-text {
	font-size: 15px;
	color: #666;
}

.install-btn {
	background: linear-gradient(135deg, #2B6DFF, #2B57FF);
	color: white;
	border: none;
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(2, 60, 188, 0.3);
}

.install-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(2, 60, 188, 0.4);
	background: linear-gradient(135deg, #2B57FF, #457EFC);
}

.install-btn:active {
	transform: translateY(0);
}

.btn-icon {
	font-size: 18px;
}
