*{
	padding: 0;
	margin: 0;
}
select,input{
	background: transparent;
}
.layui-input{
	border:none !important;
	flex: 1;
}
.container{
	height: 100vh;
	display: flex;
	flex-direction: column;
}

.top {
    background: #0dbfad;
    color: #ffffff;
    text-align: center;
    position: relative;
}
a {
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-user-select: none;
	-moz-user-focus: none;
	-moz-user-select: none;
}
.top a {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0, -50%);
	display: flex;
}

.top a::after {
	content: "";
	border-style: solid;
	border-width: 2px;
	border-radius: 3px;
	border-color: transparent transparent #ffffff #ffffff;
	transform: rotate(45deg);
	box-sizing: border-box;
}
.cover{
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.2);
	position: fixed;
	top: 0;
	left: 0;
	display: none;
}
@media screen and (max-width:600px) {
	.container{
		width: 100%;
	}
	.top {
	    line-height: 10vw;
	    font-size: 3.8vw;
	}
	.top a::after {
		width: 3.8vw;
		height: 3.8vw;
	}
}
@media screen and (min-width:600px) {
	.container{
		width: 600px;
		margin: 0 auto;
	}
	body{
		background:#f5f5f5;
	}
	.top {
	    line-height: 45px;
	    font-size: 18px;
	}
	.top a::after {
		width: 20px;
		height: 20px;
	}
}