* {
	padding: 0;
	margin: 0
}

[v-cloak] {
	display: none;
}

.wrap {
	position: relative;
	/* padding: 20px; */
	font-size: 15px;
	/* color: #999; */
	height: 100vh;
	box-sizing: border-box;
}

.flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.tips {
	color: #999;
	position: absolute;
	right: 20px;
	bottom: 80px;
}

.u-primary {
	color: #3c9cff;
}

.g-loading {
	position: fixed;
	z-index: 9999;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #FFFFFF;
}

.g-loading>.loader {
	margin-bottom: 50%;
	width: 15vw;
	height: 15vw;
	border: 5px solid  #a1deff;
	border-top-color:  #3c9cff;
	/* 转圈的颜色 */
	border-radius: 50%;
	animation: animation-spin 1s linear infinite;
}

@keyframes animation-spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}