input {
	background: none;
	outline: none;
	border: none;
}
button:focus{
	outline: none;
}

.img01 {
	display: block;
	animation: rotate 2s linear infinite;
}

@keyframes rotate {
	0% {
		transform: rotateZ(0deg);
		/*从0度开始*/
	}

	100% {
		transform: rotateZ(360deg);
		/*360度结束*/
	}
}

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

html {
	height: 100%;
	background: linear-gradient(182deg, #FFFFFF 0%, #E9F4F9 100%);
}

.loding-box {
	position: fixed;
	right: 40vw;
	top: 40vh;
	width: 20vw;
	height: 20vw;
	background-color: gray;
	border-radius: 5vw;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 4vw;
	opacity: 0.5;
}

.countent {
	width: 100vw;
	display: flex;
	flex-direction: column;
}

.title-box {
	width: 100vw;
	padding-top: 20vw;
	display: flex;
	justify-content: center;
}

.title-text {
	display: flex;
	justify-content: flex-start;
	width: 90vw;
	font-size: 7vw;
}

.title-box img {
    height: 10vw;
    margin-right: 10px;
    margin-left: 20px;
}

.login-switch {
    color: rgba(17, 108, 162, 1);
    margin-top: 10px;
    margin-right: 10px;
    margin-left: 20px;
    display: inline-block;
    width: 100px;
}

.input-box {
	width: 100vw;
	display: flex;
	justify-content: center;
}

.input-box-column {
	width: 90vw;
	display: flex;
	flex-direction: column;
}

.country-code {
    width: 15vw;
    height: 7vw;
    font-size: 4vw;
    background: none;
    border: none;
    display: none;
	padding-bottom: 19px;
}

.input-box-text {
	width: 90vw;
	height: 20vw;
	display: flex;
	align-items: flex-end;
	border-bottom: 1px solid silver;
	position: relative;
}

.input-style {
	width: 90vw;
	height: 8vw;
	font-size: 4vw;
	background: none;
	border: none;
	padding-bottom: 19px;
}

.toggle-password {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 14px;
}

.input-box-text .separator {
    width: 1px;
    height: 24px;
    background: #ccc;
    margin: auto;
}

.code-input-style {
    width: 90vw;
    height: 8vw;
    font-size: 4vw;
	padding-bottom: 19px;
    background: none;
    border: none;
}

.get-code {
    width: 80vw;
    font-size: 16px;
    color: rgba(17, 108, 162, 1);
    margin: auto;
    background: none;
    border: none;

}

.button-box {
	width: 100vw;
	display: flex;
	justify-content: center;
}

.button-bg {
	width: 90vw;
	height: 12vw;
	margin-top: 10vw;
	background: linear-gradient(to left, #8de3f9,#549be2,#116ca2);
	color: white;
	border-radius: 2vw;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5vw;
}

.button-bg-gray {
	width: 90vw;
	height: 12vw;
	margin-top: 10vw;
	/*background-color: #E7BC65;*/
	background: #D6D6D6;
	color: white;
	border-radius: 2vw;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5vw;
	pointer-events: none;
}

.loader {
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid white;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    margin-right: 10px;
    animation: spin 1s linear infinite;
}


.tips-box {
	width: 100vw;
	margin-top: 5vw;
	display: flex;
	justify-content: center;
}

.tips-box-area {
	width: 90vw;
	display: flex;
	flex-direction: column;
}

.tips-box-text {
	width: 90vw;
	display: flex;
	justify-content: center;
	color: silver;
	font-size: 3vw;
}


.protocol-alter-bg{
	position: fixed;
	top: 0;
	width: 100vw;
	height: 100%;
	background-color: #000;
	opacity: 0.5;
	z-index: 9;

}

.protocol-alter-box  {
	position: fixed;
	left: 50%;
	top: 40%;
	width: 90vw;
	background-color: #fff;
	opacity: 1;
	border-radius: 3vw;
	z-index: 10;
	transform: translate(-50%, -50%);
}

.protocol-button-box {
	display: flex;
	justify-content: space-between;
	padding: 28px 20px;
}

.alter-close-box {
	width: 14px;
	height: 14px;
	position: fixed;
	right: 20px;
	top: 33px;
	background: url("../img/close.png") no-repeat;
	background-size: cover;
}

.protocol-cancel-button {
	position: relative;
	left: 0;
	width: 38vw;
	height: 10vw;
	background: #fff;
	color: #116ca2;
	border-radius: 2vw;
	border: 1px #116ca2 solid;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 4vw;
	font-family: NotoSansSC-Bold, NotoSansSC;
}


.protocol-submit-button {
	position: relative;
	right: 0;
	width: 38vw;
	height: 10vw;
	background: linear-gradient(to left, #8de3f9,#549be2,#116ca2);
	color: white;
	border-radius: 2vw;
	padding: 1px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 4vw;
	font-weight: bold;
	font-family: NotoSansSC-Bold, NotoSansSC;
}

.protocol-text-title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5vw;
	font-weight: bold;
	padding: 28px 20px;
	font-family: PingFangSC-Semibold, PingFang SC;
}

.protocol-text-content {
	padding: 0 20px;
	font-size: 3.5vw;
	line-height: 1.8;
	font-family: PingFangSC-Regular, PingFang SC;
}

.alter-box {
	position: fixed;
	left: 50%;
	top: 40%;
	background-color: #000;
	border-radius: 3vw;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	padding: 20px;
	text-align: center;
	transform: translate(-50%, -50%);
	line-height: 22px;
	max-width: 242px;
	white-space: nowrap;
	font-family: PingFangSC-Regular, PingFang SC;
}

.footer-bottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1vh;
}

.footer-copyright {
	color: silver;
	text-align: center;
	font-size: 2.5vw;
}

.footer-copyright a {
	color: silver;
	text-decoration: none;
}

.footer-networkSecurityInfo{
	color: silver;
	text-align: center;
	margin-top: 0.2vh;
}

.footer-networkSecurityInfo a {
	font-size: 2.5vw;
	color: silver;
	text-decoration: none;
	vertical-align: middle;
}

.protocol-box {
	width: 100vw;
	display: flex;
	justify-content: center;
	font-size: 3vw;
	padding-top: 6vh;
}

.protocol-box-area {
	width: 90vw;
	display: inherit;
}

.protocol-box-text {
	padding-top: 0.9vw;
}

.disagree {
	border: 0;
	background: url("../img/disagree.png") no-repeat;
	background-size: 100% 100%;
	outline: none;
	width: 4vw;
	height: 4vw;
	vertical-align: middle;
	/*background-color: #ffffff;*/
	/*border: solid 0.5vw #000000;*/
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin: 0.9vw 2vw;
	padding: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.agree {
	border: 0;
	background: url("../img/agree.png") no-repeat;
	background-size: 100% 100%;
	outline: none;
	width: 4vw;
	height: 4vw;
	vertical-align: middle;
	/*background-color: #ffffff;*/
	/*border: solid 0.5vw #000000;*/
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin: 0.9vw 2vw;
	padding: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

#agree-protocol-checkbox:checked {
	border: 0;
	background: url("../img/agree.svg") no-repeat;
	background-size: 100% 100%;
}

.protocol-loading-box {
	padding-top: 6vh;
	display: flex;
	justify-content: center;
}

.protocol-box-a {
	text-decoration: none;
	color: #116ca2;
}

#protocol-loading-id {
	font-size: 3vw;
	color: rgb(166, 166, 166);
	background-color: rgb(166, 166, 166, 0.1);
	padding: 0.5vw 2vw;
	width: auto;
	border-radius: 3vw;
	opacity: 0;
}

.protocol-loading {
	animation: 5s opacity2 0s 1;
	-webkit-animation: 5s opacity2 0s 1;
	-moz-animation: 5s opacity2 0s 1;
}
.networkSecurityIcon{
	width: 4vw;
	height: 4vw;
	vertical-align: middle;
}

.downApk-box {
    color: silver;
    text-align: center;
    font-size: 2.5vw;
}

@keyframes opacity2 {
	0% {
		opacity: 0
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@-webkit-keyframes opacity2 {
	0% {
		opacity: 0
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@-moz-keyframes opacity2 {
	0% {
		opacity: 0
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

#agree-protocol-checkbox,
#agree-protocol-checkbox:hover,
#agree-protocol-checkbox:active,
#agree-protocol-checkbox:visited,
#agree-protocol-checkbox:link,
#agree-protocol-checkbox:focus {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-decoration: none;
}
