@charset 'utf-8';

ul,
li,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

dl,
dt,
dd {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

li img,
dt img,
dd img {
	vertical-align: top;
}

img {
	border: 0;
}

form {
	margin: 0;
	padding: 0;
}

a {
	cursor: pointer;
	outline: none;
}

* {
	box-sizing: border-box;
	text-decoration: none;

}

.wrapper,
.head_nav,
.function,
.body {
	max-width: 640PX;
}

body {
	height: 100%;
	max-width: 640PX;
	margin: 0 auto;
	position: relative
}

html {
	background-color: #fff;
}

:root {
	--app-height: 100%;
}

html,
body {
	padding: 0;
	margin: 0;
	width: 100vw;
	height: var(--app-height);
}

body {
	padding: 0;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-variant: tabular-nums;
	background: #fff;
}

.wrapper {
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	margin: 0 auto;
	width: 80%;
	padding-top: 38%;
}

.head_nav {
	/* border-bottom: #fff 1px solid; */
	width: 100%;
	box-sizing: border-box;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: .14rem 0 .1rem;
}

.head_nav a .logo {
	width: 80%;
	margin: auto;
	vertical-align: middle;
}

.logo img {
	width: 4.4rem;
}

.zright {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.zright p {
	font-size: .46rem;
	font-weight: 400;
	margin: auto;
	color: #666666;
	text-align: center;
}

.verification-box {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: .1rem;
	width: 100%;
	padding: .3rem .2rem;
	background: url(../img/v_bg.svg) no-repeat right center;
	background-size: 30%;
	margin: 0 auto;
}

.checkbox label {
	color: #333;
	font-size: .38rem;
}

.checkbox {
	display: flex;
	align-items: center;
	height: 1.5rem;
}

.checkbox input[type="checkbox"] {
	margin-right: .1rem;
	width: .5rem;
	height: .5rem;
}

.zleft {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	margin: .1rem auto;
	height: 20%;
}

.spinner {
	border: .2rem solid rgba(0, 0, 0, 0.1);
	border-left-color: #28a745;
	border-radius: 50%;
	width: 0.75rem;
	height: 0.75rem;
	animation: spin 1s linear infinite;
	display: inline-block;
	margin-right: .25rem;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* 绿色的勾 */
.checkmark {
	display: inline-block;
	width: 0.75rem;
	height: 0.75rem;
	background-color: #28a745;
	border-radius: 50%;
	position: relative;
	margin-right: 0.25rem;
}

.checkmark:after {
	content: '';
	position: absolute;
	left: 0.25rem;
	top: 0.175rem;
	width: 0.15rem;
	height: 0.35rem;
	border: solid white;
	border-width: 0 0.1rem 0.1rem 0;
	transform: rotate(45deg);
}


#verification-status {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	height: 1.5rem;
	box-sizing: border-box;
}

.footer p {
	font-size: .4rem;
	color: #999;
	text-align: center;
}
#verification-text{
	font-size: .4rem;
	color: #333;
}