body {
	margin: 0;
}

[v-cloak] {
  	display: none;
}

.bg-white{
	background-color:#FFF;
}

/* 等待框 */
.loading-wrapper-bg{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 999;
}

.img-loading-wrapper{
	position: relative;
	top: 50%;
	left: 50%;
	background-color: rgba(0,0,0,0.6);
	width: 50px;
	height: 50px;
	margin-left: -25px;
	margin-top: -25px;
	padding: 15px;
	border-radius: 10px;
}

.img-loading {
	width: 20px;
	height: 20px;
	border-left: 2px solid #FFF;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	border-bottom: 2px solid transparent;
	border-radius: 20px;
	-webkit-animation: loading-rotate 1s linear infinite;
	animation: loading-rotate 1s linear infinite;
}

@-webkit-keyframes loading-rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes loading-rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}
