/**********移动版页面**********/

@charset"utf-8";
.container{
	width: 1000px;
	margin: 0 auto;
	padding: 40px 0 50px 0;
}
.search-logo{
	text-align: center;
}
.search-header{
	box-shadow: 0 0 1px rgba(0,0,0,0.25);
	height: 60px;
	background: #FFF;
	margin-top: 20px;
}
.search-input{
	position: relative;
	width: 70%;
	height: 60px;
	float: left;
	padding: 15px 60px 15px 15px;
}
.search-input input#search-input{
	display: block;
	height: 30px;
	width: 100%;
	font-size: 14px;
	line-height: 30px;
	color: #000;
	border: none;
	background: transparent;
}
.search-input input#search-input:focus{outline: none;}
.clear-search-input{
	position: absolute;
	right: 0;
	top: 0;
	height: 60px;
	width: 60px;
	background: url("images/clear-search.png") center center no-repeat;
	background-size: 40px;
	opacity: 0.5;
	cursor: pointer;
	transition:opacity 0.3s linear;
	-webkit-transition:opacity 0.3s linear;
	-moz-transition:opacity 0.3s linear;
	-ms-transition:opacity 0.3s linear;
	-o-transition:opacity 0.3s linear;
}
.clear-search-input:hover{opacity: 1;}
.search-btn{
	display: block;
	float: left;
	height: 60px;
	width: 15%;
	border: none;
	background: #15A5FE;
	color: #FFF;
	font-size: 18px;
	font-family:"宋体";
	text-align: center;
	border-left: 1px solid #EEF4F9;
	line-height: 60px;
	opacity: 0.7;
	transition:opacity 0.1s linear;
	-webkit-transition:opacity 0.1s linear;
	-moz-transition:opacity 0.1s linear;
	-ms-transition:opacity 0.1s linear;
	-o-transition:opacity 0.1s linear;
}
.search-btn:hover{opacity: 1;}

/*搜索结果*/
.search-result{
	padding:20px 10px;
	overflow: hidden;
}
	.search-result-title{
		margin-bottom: 5px;
		font-size: 16px;
	}
		.search-result-list a{
			display: block;
			float: left;
			padding: 0 10px;
			font-size: 16px;
			color: #FE4B00;
			border: 1px solid #FE4B00;
			margin: 5px;
			border-radius: 50px;
			transition:all 0.1s linear;
			-webkit-transition:all 0.1s linear;
			-moz-transition:all 0.1s linear;
			-ms-transition:all 0.1s linear;
			-o-transition:all 0.1s linear;
		}
		.search-result-list a:hover{
			color: #FFF;
			background: #FE4B00;
		}

.hot-pool{
	box-shadow: none;
	background: transparent;
	border-top: 1px solid #CCC;
}
	.hot-pool .search-result-list a{
		border-radius: 4px;
		color: #000;
		border: 1px solid #000;
        cursor:pointer;
	}
	.hot-pool .search-result-list a:hover{
		color: #FFF;
		background: #000;
	}