* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	font-family: 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	overflow: hidden;
}

.container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

#myCar {
	width: 100%;
	max-width: 800px;
	height: auto;
	min-height: 300px;
	margin-bottom: 30px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.info {
	text-align: center;
	color: white;
	animation: fadeIn 1s ease-in;
}

.info h2 {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.info .tips {
	font-size: 16px;
	opacity: 0.9;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
	.container {
		padding: 15px;
	}
	
	#myCar {
		max-width: 100%;
		min-height: 250px;
		margin-bottom: 20px;
	}
	
	.info h2 {
		font-size: 22px;
		margin-bottom: 10px;
	}
	
	.info .tips {
		font-size: 14px;
	}
}

@media screen and (max-width: 480px) {
	.container {
		padding: 10px;
	}
	
	#myCar {
		min-height: 200px;
		margin-bottom: 15px;
		border-radius: 10px;
	}
	
	.info h2 {
		font-size: 18px;
		margin-bottom: 8px;
	}
	
	.info .tips {
		font-size: 12px;
	}
}

@media screen and (orientation: landscape) and (max-height: 600px) {
	.container {
		flex-direction: row;
		padding: 10px;
	}
	
	#myCar {
		max-width: 60%;
		margin-bottom: 0;
		margin-right: 20px;
	}
	
	.info {
		max-width: 35%;
	}
}
