/* 搜索输入框效果 */
/* .searchDiv1 {
 position: relative;
 }
 暂时不用，写到div的style中。
 */
/** {
	margin: 0;
	padding: 0;
}*/
.keyLike {
	margin-left: 135px;
	width: 397px;
	height: 285px;
	overflow-y: auto;
	background: #fff;
	position: absolute;
	/*top: 89px;*/
	border: 1px solid #0066FF;
	display: none;
	border-top: none;
	z-index: 1000000;
	/*margin-top: 80px;*/
	font-size: 12px;
	text-align: left;
}

.keyLike ul li {
	width: 100%;
	list-style: none;
	line-height: 25px;
	border-bottom: 1px solid #ccc;
	cursor: pointer;
}
/*输入框发光效果添加*/
input {
	transition: all 0.30s ease-in-out;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	border: #35a5e5 1px solid;
	border-radius: 4px;
	outline: none;
}

input:focus {
	border: #35a5e5 1px solid;
	box-shadow: 0 0 5px rgba(81, 203, 238, 1);
	-webkit-box-shadow: 0 0 5px rgba(81, 203, 238, 1);
	-moz-box-shadow: 0 0 5px rgba(81, 203, 238, 1);
}