
.searchInput {
	position: relative;
	width: 100%;
}

.buyerNameTxt {
	height: 23px;
	width: 100%;
	font-size: 10px;
	text-indent: 8px;
}

.searchInput ul,
.searchInput li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.searchInput .input {
	position: relative;
	width: 100%;
	border: 1px solid #DBDBDB;
	border-radius: 2px;
	padding-right: 24px;
}

.searchIcon {
	position: absolute;
	top: 0;
	right: 0;
	width: 24px;
	height: 100%;
	background: url('./search.png') no-repeat center/18px 18px;
	cursor: pointer;
}

.searchInputList {
	position: absolute;
	left: 0;
	top: 100%;
    z-index: 999;
	width: 100%;
	max-height: 160px;
	padding: 10px 0;
    box-shadow: 0 2px 8px #E6E6E6;
	overflow-y: auto;
    background: #fff;
}

.searchInput li {
	padding: 0 10px;
	margin: 6px;
    cursor: pointer;
}

.searchInput li:hover {
	background: #eef6ff;
    color: #3598FF;
}

.searchInputList li div {
	width: 100%;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.searchInputList .tip {
	color: #faad14;
}

