#fastSearch {
	display: flex;
	justify-content: center;
	align-items: center;	
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw; 
	height: 100vh; 
	backdrop-filter: blur(1px); 
	-webkit-backdrop-filter: blur(1px); 
	background-color: rgba(250, 250, 250, 0.5); 
	z-index: 1000; 
}

#searchPanel {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 24%;
	width: 50%; /* 或根据需求调整 */
	padding: 20px;
	background: rgba(255, 255, 255, 0.9); /* 给搜索面板一点背景，以便在毛玻璃效果上突出 */
	border-radius: 10px; /* 可选的圆角边框 */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 可选的阴影效果增加立体感 */
}

#searchPanel input {
	width: calc(100% - 20px);
	height: 24px;
	padding: 5px 10px;
	border: 1px solid #ccc;
	background-color: #fff; /* 浅灰色背景 */
	color: #333; /* 深灰色字体 */
	font-size: 0.8em;
	font-weight: bold;
	outline: none;
	text-align: left;
	display: inline-block;
}

#searchHint {
	font-size: 0.6em;
	margin: 0;
	margin-bottom: 10px; /* 保持输入框和下方列表的间距 */
	color: gray;
	text-align: right;
}

#searchResults li {
	list-style: none;
	margin-left: 0em;
	border-bottom: 1px dotted gray;
}

#searchResults li:nth-child(odd) {
	background-color: #f6f6f6;
}

#searchResults li .title {
	font-size: 0.8em;
	margin: 0;
	display: inline-block;
}

#searchResults {
	visibility: inherit;
	display: inline-block;
	width: 100%;
	margin: 0;
	padding: 0;
	max-height: calc(100vh - 120px);
	overflow: hidden;
}

#searchResults a {
	padding: 5px;
	display: inline-block;
	width: 100%;
	text-decoration: none !important;
}

#searchResults a:hover, #searchResults a:focus {
	outline: 0;
	background-color: #16982B;
	color: #fff;
}

#search-btn {
	border: none;
	background: none;
	width: 32px;
	height: 32px;
}
#search-btn svg {
	color: gray;
	width: 24px;
	height: 24px;
}

@media (max-width:683px) {
	#fastSearch, #search-btn {
		top: 64px;
	}

	#searchPanel {
		width: 100%;
	}
}

