body {
	margin: 0;
	padding: 0;
	/* width: 100%;
	height: 100%;
	background: url(../img/img1.jpg) no-repeat center;
	overflow: hidden;
	background-attachment: fixed;
	background-size: cover; */
	background-color: #ccc;
}

.box {
	width: 400px;
	height: 500px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.box .box-1 {
	display: flex;
	justify-content: space-around;
	position: absolute;
	width: 100%;
	bottom: 20px;
}

.box .box-1 button {
	display: inline-block;
	text-align: center;
	border: none;
	width: 120px;
	height: 40px;
	background-color: skyblue;
	border-radius: 5px;
}

.box .box-1 button a {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	font-size: 14px;
}

.box .dengdai {
	font-size: 24px;
	text-align: center;
	margin-top:60px;
}

.box .circle_process .masge #code{
	font-size: 60px;
	color: skyblue;
	position: absolute;
	left: 65px;
	top: 40px;
}
.box .circle_process .masge .minter-right{
	font-size: 36px;
    position: absolute;
    top: 60px;
    left: 114px;
}

.box .circle_process .masge .lv{
	position: absolute;
    top: 120px;
    left: 50px;
    font-size: 20px;
}
/* 效果 */
.circle_process {
	position: relative;
	width: 199px;
	height: 200px;
	top: 50px;
	left: 100px;
}

.circle_process .wrapper {
	width: 100px;
	height: 200px;
	position: absolute;
	top: 0;
	overflow: hidden;
}

.circle_process .right {
	right: 0;
}

.circle_process .left {
	left: 0;
}

.circle_process .circle {
	width: 200px;
	height: 200px;
	border: 20px solid transparent;
	border-radius: 50%;
	position: absolute;
	top: 0;
	transform: rotate(-135deg);
}

.circle_process .rightcircle {
	border-top: 20px solid skyblue;
	border-right: 20px solid skyblue;
	right: 0;
	-webkit-animation: circle_right 2.9s linear infinite;
}

.circle_process .leftcircle {
	border-bottom: 20px solid skyblue;
	border-left: 20px solid skyblue;
	left: 0;
	-webkit-animation: circle_left 2.9s linear infinite;
}

@-webkit-keyframes circle_right {
	0% {
		-webkit-transform: rotate(-135deg);
	}
	50%,
	100% {
		-webkit-transform: rotate(45deg);
	}
}

@-webkit-keyframes circle_left {
	0%,
	50% {
		-webkit-transform: rotate(-135deg);
	}
	100% {
		-webkit-transform: rotate(45deg);
	}
}
/* 效果 */


