html,
body {
	height: 100%;
}

.auth-block,
.auth-content {
	height: 100%;
	overflow: hidden;
}
.auth-block {
	background: url('../images/style_1.png') no-repeat center calc(100% - 5%) / 100%;
}
.auth-logo {
	margin: 50px auto 0;
	width: 70%;
}
.auth-logo img {
	display: block;
	width: 100%;
}
.auth-text {
	position: fixed;
	top: calc(50% - 90px);
	left: 0;
	width: 100%;
	color: #444;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}
.auth-button {
	position: fixed;
	top: 50%;
	left: 50px;
	right: 50px;
    transform: translateY(-50%);
}
.auth-button a {
	display: flex;
	width: 100%;
	height: 70px;
	background-color: #62bc4a;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
	border-radius: 70px;
	color: #fff;
	font-size: 24px;
    justify-content: center;
    align-items: center
}
.auth-button a.loading span {
	position: relative;
}
.auth-button a.loading span::after {
	content: "\e79b";
	position: absolute;
	top: 50%;
	left: -30px;
	color: #666;
	font-family: "iconfont" !important;
	font-size: 20px;
	font-style: normal;
	transform: translateY(-50%);
	animation: loading 1s linear infinite;
}

@keyframes loading {
	from {
		transform: translateY(-50%) rotate(0deg);
	}
	to {
		transform: translateY(-50%) rotate(360deg);
	}
}

.protocol-dialog {
	position: fixed;
	left: 10px;
	right: 10px;
	bottom: 10px;
	padding: 30px 30px 0;
	background-color: rgba(245, 245, 245, .9);
	box-shadow: 0 -1px 5px rgba(0, 0, 0, .2);
	border-radius: 30px 30px 0 0;
	transform: translateY(calc(100% + 20px));
	z-index: 1001;
}
.protocol-dialog.show {
	animation: shiftIn .5s forwards;
}
.protocol-dialog.hide {
	animation: shiftOut .5s forwards;
}

@keyframes shiftIn {
	from {
		transform: translateY(calc(100% + 20px));
	}
	to {
		transform: translateY(0%);
	}
}
@keyframes shiftOut {
	from {
		transform: translateY(0%);
	}
	to {
		transform: translateY(calc(100% + 20px));
	}
}

.protocol-dialog-content .title {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.protocol-dialog-content .content {
	padding: 20px 0;
	text-align: justify;
}
.protocol-dialog-content .content p {
	color: #333;
	line-height: 21px;
}
.protocol-dialog-content .content a {
	color: #f3482a;
}
.protocol-dialog-action {
	display: flex;
	padding: 10px 0;
	border-top: 1px solid #ddd;
}
.protocol-dialog-action a {
	display: flex;
	height: 25px;
	color: #62bc4a;
	font-size: 16px;
	font-weight: 700;
    justify-content: center;
    align-items: center;
	flex: 1;
}
.protocol-dialog-action a:first-child {
	border-right: 1px solid #ddd;
}

.dialog-action a {
	height: 65px;
}