.search-history {
	width: 100%;
	position: absolute;
	top: 56px;
	left: auto;
	right: auto;
	border: 1px solid #e6e6e6;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	z-index: 1000;
}
.search-history-show {
	display: block;
}
.search-history-hide {
	display: none;
}
.history-list, .history-list-hot {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 26px;	
}
.history-item {
	font-size: 16px;
	text-align: left;
	cursor: pointer;
	padding: 4px 14px;
	white-space: nowrap;
	overflow: hidden;
	border-bottom: 1px solid #EFEFEF;
}
.history-item:hover {
	/* Hover State */
	background-color: rgba(230,0,18,0.05);
}
.history-item-selected {
	/* Selected State */
	background-color: #EFEFEF;
}
.history-clear {
	font-size: 14px;
	background-color: rgba(230,0,18,0.05);
	padding: 4px 14px;
	white-space: nowrap;
	overflow: hidden;
}
.history-clear .history-clear-text {
	color: rgba(230,0,18,0.5);
	float: left;
}
.history-clear .history-clear-op {
	color: rgba(230,0,18,0.3);
	float: right;
}
.history-clear .history-clear-op:link {
	text-decoration: none;
}
.history-clear .history-clear-op:visited {
}
.history-clear .history-clear-op:active {
}
.history-clear .history-clear-op img {
	border: none;
}
.history-clear:before {
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: table;
	content: "";
}
.history-clear:after {
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: table;
	content: "";
	clear: both;
}
