body {
	margin: 0;
	background: url('../img/bj.jpg') no-repeat center center fixed;
	background-size: 100vw 100vh;
	overflow-x: hidden;
}

.vehicle {
	width: 100%;
	height: 100vh;
	overflow-y: auto;
}

.close_icon {
	float: right;
	position: fixed;
	right: 25px;
	top: 25px;
	z-index: 999;
}

.head {
	width: 100%;
	height: auto;
	margin-top: 8vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.head img {
	max-width: 90%;
	max-height: 100%;
	object-fit: contain;
}

.main_body {
	width: 100%;
}

.main_body p {
	text-align: center;
	font-size: 60px;
	color: bisque;
	letter-spacing: 2px;
}

.search_cont {
	display: flex;
	justify-content: space-evenly;
}

.search_cont input {
	width: 50%;
	border: 1px solid black;
	border-radius: 12px;
	font-size: 30px;
	padding: 20px;
}

.search_cont button {
	border: none;
	border-radius: 12px;
	font-size: 36px;
	padding: 20px 30px;
	letter-spacing: 2px;
	background-color: #ed4f3b;
	color: white;
}

.content {
	width: 85vw;
	background-color: white;
	margin: 2vh auto;
	padding: 1vh 2vw;
}

.content div {
	display: flex;
	justify-content: space-between;
	padding: 1vh 2vw;
}

.content div p {
	font-size: 36px;
	width: 25vw;
	color: black;
	text-align: left;
	margin: 0;
}

.content div span {
	font-size: 36px;
	width: 60vw;
	color: gray;
}

.notification {
	display: none;
	position: fixed;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	font-size: 36px;
	border-radius: 10px;
	text-align: center;
	z-index: 1000;
}