body{
	height: 100vh;
	background: url(/template/default/style/img/search_bg.jpg)no-repeat center center;
}

.menu-icon{
	position: fixed;
	right:30px;
	top:30px;
}

#app{
	position: fixed;
	top: 0px;
	left: 0px;
	width:100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main{
	width:450px;
	max-width: 90%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 10%;
}
.main .logo{
    display: flex;
    align-items: center;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.main .logo img{
	height: 120px;
}
.main .search{
	background-color: rgba(255, 255, 255, 0.3);
	padding:10px;
	border-radius: 50px;
	margin:35px 0 10px 0;
	width:100%;
}
.main .search .sbar{
	background-color: rgba(255, 255, 255, 1);
	border-radius: 50px;
	display: flex;
	align-items: center;
}
.main .search .sbar .icon{
	flex-shrink: 0;
	height: 50px;
	width:50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.main .search .sbar .icon .iconfont{
	color:#999;
	font-size:30px;
}
.main .search .sbar .input{
	width:100%;
}
.main .search .sbar input{
	height: 50px;
	line-height: 50px;
	border:none;
	width:100%;
	font-size:16px;
}
.main .search .sbar .btn{
	flex-shrink: 0;
	background-color: #383838;
	color:#fff;
	height: 50px;
	width:100px;
	border-radius: 50px;
	text-align: center;
	line-height: 50px;
	font-size:18px;
	border:none;
	cursor: pointer;
}
.main .search .sbar .btn:hover{
	background-color: #222222;
}
.main .keys{
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
.main .keys a{
	padding:5px 10px;
	margin-right: 7px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 30px;
	font-size:15px;
}
.main .keys a:last-child{
	margin-right: 0px;
}
.main .keys a.on{
	background-color: #383838;
	color:#fff;
}
