.search-container{
  min-height: 100vh;

}


.search{
  margin: 20px 0px;
	padding: 0px 15px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  color: #999;
}
.search-box{
  flex: 1;
	background-color:#F4F4F4 ;
	height: 35px;
	border-radius: 18px;
	display: flex;
	align-items: center;
  overflow: hidden;
  margin-right: 10px;
}
.search-box>img{
	width: 14px;
	height: 14px;
	margin: 0px 7px 0px 15px;
	display: block;
}
.search-box form{
	flex: 1;
	height: 100%;
}
.search-box input{
	width: 100%;
	height: 100%;
	display: block;
	color: #333;
	font-size: 12px;
	padding-right: 16px;
	box-sizing: border-box;
	border: none;
	outline: none;
	background-color: #F4F4F4;
}

.search-history{
  padding: 0px 15px;
  margin-bottom: 10px;
}
.history-title{
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  height: 45px;
}
.history-title img{
  width: 45px;
  height: 45px;
  padding: 15px;
  display: block;
  margin-left: auto;
}
.history-list , .exam-list{
  display: flex;
  flex-wrap: wrap;
}
.search-item , .search-item:hover , .search-item:visited{
  height: 30px;
  display: block;  
  background-color: #ededed;
  font-size: 14px;
  color: #666;
  line-height: 30px;
  text-align: center;
  margin: 0px 10px 10px 0px;
  padding: 0px 13px;
  border-radius: 15px;
}