body {
	background: url(../static/images/bg1.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}

.main {
	text-align: center;
}

.main .login {
	display: none;
	width: 370px;
	max-height: 500px;
	background: #fff;
	opacity: 1.0;
	border-radius: 4px;
}

@keyframes dynamics {
	0% {
		background-position: 0% 0%;
	}

	50% {
		background-position: 50% 100%;
	}

	100% {
		background-position: 100% 0%;
	}
}

.hdr {
	background-color: white;
}

#methods {
	display: flex;
}

.nav span {
	color: black;
}

.tab-tit {
	float: left;
	padding: 15px 0 0 20px;
}

.tab-tit ul {
	color: #555;
	font-size: 16px;
	font-weight: bold;
	display: inline-flex;
	padding-inline-start: 10px;
	padding-inline-end: 10px;
	margin: 15px 0;
}

.tab-tit li {
	display: block;
	width: 155px;
	float: left;
	list-style-type: none;
}

.tab-con {
	clear: both;
	overflow: hidden;
	margin-top: 15px;
	padding: 25px 3px 20px 3px;
}

.tab-con input {
	width: 260px;
	height: 35px;
	#border: 1px solid #333;
	border-left-style: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-width: thin;
	margin-bottom: 15px;
}

.tab-con input:focus {
	outline: none;
}

.tab-con input:disabled {
	background-color: #ccc;
}

.login-btn-valid {
	pointer-events: visible;
	text-decoration: none;
	width: 265px;
	color: white;
	height: 35px;
	/* background-color: #e4701e; */
	display: block;
	text-align: center;
	margin: 25px 0 15px 50px;
	line-height: 35px;
	cursor: pointer;
	opacity: 1;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	border-radius: 4px;
}

.login-btn-invalid {
	pointer-events: none;
	text-decoration: none;
	width: 265px;
	color: white;
	height: 35px;
	background-color: grey;
	display: block;
	text-align: center;
	margin: 25px 0 15px 50px;
	line-height: 35px;
	cursor: pointer;
	opacity: 1;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	border-radius: 4px;
}

input::-webkit-input-placeholder {
	color: #555;
	font-size: 14px;
}

.tab-con>.code {
	width: 216px;
	display: inline-block;
	margin-left: 6px;
}

.tab-con>#code {
	width: 94px;
	display: inline-block;
	margin-left: 14px;
	cursor: pointer;
}

.hide,
.none {
	display: none;
}

.sronly {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.sronly-focusable:active,
.sronly-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

.alert {
	padding: 15px;
	margin: 10px;
	border: 1px solid transparent;
	border-radius: 4px;
}

.alert-dismissable,
.alert-dismissible {
	padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
	position: relative;
	top: -2px;
	right: -21px;
	color: inherit;
}

.alert-info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

.alert-info hr {
	border-top-color: #a6e1ec;
}

.alert-info .alert-link {
	color: #245269;
}

.alert-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}

.alert-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.close {
	float: right;
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .5;
	margin-top: -8px;
	margin-right: -8px;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: .5;
}

.loader {
	margin-top: 10px;
	border: 16px solid #f3f3f3;
	/* 设置边框样式 */
	border-top: 16px solid gray;
	/* 设置顶部边框样式，即转圈的颜色 */
	border-radius: 50%;
	/* 设置圆形边框 */
	width: 120px;
	/* 设置宽度 */
	height: 120px;
	/* 设置高度 */
	animation: spin 2s linear infinite;
	/* 设置动画效果 */
	margin: 0 auto;
	/* 设置居中 */
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	/* 设置起始位置 */
	100% {
		transform: rotate(360deg);
	}

	/* 设置结束位置 */
}

.QRCode {
	position: absolute;
	display: none;
	text-align: center;
	width: 370px;
	max-height: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 25%);
	background: #fff;
	opacity: 1.0;
	border-radius: 4px;
}

.QRCode-font {
	position: relative;
	color: #000;
	font-size: 14px;
	line-height: 20px;
	margin: 20px 0px 20px;
}

#QRCode {
	width: 200px;
	height: auto;
}

.vscode input {
	width: 110px;
}

#vcode-pic {
	width: 100px;
	height: 30px;
	margin-left: 30px;
}

#sms-btn {
	width: 100px;
	height: 35px;
	margin-left: 30px;
}