.footer {
	margin-bottom: 0px;
}

.mt-box {
	text-transform: none;
	font-size: 24px;
	padding: 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	border-radius: 10px;
	margin-bottom: 20px;
}

body{
	background-color: #fff;
}

.search-suggestions {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	max-height: 400px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
}

.suggestion-title {
	padding: 10px 15px;
	font-size: 12px;
	color: #999;
	background: #f5f5f5;
	border-bottom: 1px solid #e0e0e0;
}

.suggestion-item {
	padding: 10px 15px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: background 0.2s;
	border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:hover {
	background: #f0f8ff;
}

.suggestion-item:last-child {
	border-bottom: none;
}

.suggestion-img {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	margin-right: 12px;
	object-fit: cover;
}

.history-item::before {
	content: "🕐";
	margin-right: 8px;
	font-size: 14px;
}

.search-result-item {
	width: 30%;
	display: flex;
	align-items: center;
	padding: 15px;
	margin-bottom: 15px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: all 0.3s;
	border: 1px solid #f0f0f0;
}

.search-result-item:hover {
	box-shadow: 0 4px 16px rgba(0,166,237,0.2);
	transform: translateY(-2px);
	border-color: #00a6ed;
}

.result-img {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	margin-right: 15px;
	object-fit: cover;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.result-content {
	flex: 1;
}

.result-title {
	font-size: 18px;
	font-weight: 600;
	color: #222;
	margin-bottom: 8px;
	line-height: 1.4;
}

.search-result-item:hover .result-title {
	color: #00a6ed;
}

.result-desc {
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.result-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 13px;
	color: #888;
}

.result-rating {
	display: flex;
	align-items: center;
	color: #F88A28;
	font-weight: 500;
}

.star-small {
	width: 14px;
	height: 14px;
	margin-left: 4px;
}

.result-type {
	background: #f0f8ff;
	color: #00a6ed;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 12px;
}

.result-size {
	color: #999;
}

.no-results {
	text-align: center;
	padding: 60px 20px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 20px;
	margin: 40px auto;
	max-width: 600px;
}

.no-results-icon {
	font-size: 80px;
	margin-bottom: 20px;
	opacity: 0.5;
}

.no-results-title {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.no-results-text {
	font-size: 16px;
	color: #666;
	margin-bottom: 30px;
}

.search-tips {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	margin-top: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tips-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	text-align: left;
}

.tips-item {
	font-size: 14px;
	color: #666;
	line-height: 2;
	text-align: left;
}

@media(max-width:750px) {
	.main {
		min-height: calc(100vh - 160px);
		padding: 20px 15px;
	}

	.search-result-item {
		padding: 12px;
		margin-bottom: 10px;
	}

	.result-img {
		width: 60px;
		height: 60px;
	}

	.result-title {
		font-size: 16px;
	}

	.result-desc {
		font-size: 13px;
	}

	.result-meta {
		flex-wrap: wrap;
		gap: 8px;
	}

	.mt-box {
		font-size: 18px;
		padding: 15px;
	}

	.no-results {
		padding: 40px 15px;
		margin: 20px auto;
	}

	.no-results-icon {
		font-size: 60px;
	}

	.no-results-title {
		font-size: 22px;
	}
}


@media(min-width:750px) {
	.main {
		display: block;
		min-height: calc(100vh - 200px);
		background-color: #FFF;
		padding: 20px 2%;
		width: 70%;
		margin: 0 auto;
	}

	.m-title {
		width: 100%;
	}

	.list2 {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		justify-content: space-between;
	}
}