@charset "utf-8";
/* CSS Document */
/*搜索框开始*/
.suggestions-container {
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	background: white;
	border-radius: 10px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	z-index: 100;
	display: none;
	overflow: hidden;
	border: 1px solid #e0e0e0;
	white-space: nowrap;
}

.suggestion-item {
	padding: 5px 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: all 0.2s;
	border-bottom: 1px solid #f0f5ff;
}

.suggestion-item:last-child {
	border-bottom: none;
}

.suggestion-item:hover {
	background: #f0f7ff;
	transform: translateX(2px);
}

.suggestion-item .rIcon {
	margin-right: 8px;
	color: #990033;/* #3385ff;*/
	font-weight: bold;
	font-size: 16px;
}

.highlight {
	color: #ff4d4d;
	font-weight: bold;
}

.search-input {
	flex: 1;
	border: none;
	padding: 0 25px;
	font-size: 14px;
	outline: none;
	background: #f8faff;
}
.search-input {
		padding: 0 18px;
		font-size: 14px;
	}

/*搜索框结束*/
