@charset "utf-8";

* {
	padding: 0;
	margin: 0;
}

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;
}

ul li {
	list-style-type: none;
}

.container {
	min-height: 100vh;
	background-color: #f2f3f7;
}

.top {
	background-color: #00b198;
	line-height: 35px;
	text-align: center;
	position: relative;
	color: #fff;
}

.top .back {
	display: flex;
	align-items: center;
	padding-left: 8px;
	font-size: 14px;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
}

.top .back::before {
	content: "";
	width: 10px;
	height: 10px;
	border-style: solid;
	border-color: #fff transparent transparent #fff;
	border-width: 1px;
	transform: rotate(-45deg);
}

@media screen and (max-width:600px) {
	.container {
		width: 100%;
	}
}

@media screen and (min-width:600px) {
	.container {
		width: 600px;
		margin: 0 auto;
	}
}
.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #fff;
    box-shadow: 0px 0px 10px #dedede;
    width: 160px;
    height: 110px;
}

.loading>img {
	width: 120px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
}

.loading>p {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translate(-50%, 0);
	color: #12c3a8;
}