* {
	margin: 0;
	padding: 0;
	outline: none;
	list-style: none;
}

html{
	width: 100%;
	height: 100%;
	font-family: "Arial", "微软雅黑";
	margin: 0 auto;
	font-size: 14px;
	color: #4d4d4d;
}

body{
	width: 100%;
	min-height: 100%;
	overflow: hidden;
}

body:before{
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	/*background: url(../img/cloud.jpg) top repeat-x #308fcf;*/
	-webkit-animation: moveCloud 20s linear infinite;
	animation: moveCloud 20s linear infinite;
	background-color: #308fcf;
}

.icon {
	width: 1em;
	height: 1em;
	vertical-align: -0.15em;
	fill: currentColor;
	overflow: hidden;
}

.hide{
	display: none !important;
}

@-webkit-keyframes moveCloud {
	from {
		background-position: 600px 0;
	}
	to {
		background-position: 0 0;
	}
}

@keyframes moveCloud {
	from {
		background-position: 600px 0;
	}
	to {
		background-position: 0 0;
	}
}

a{
	color: #333333;
	text-decoration: none;
}

.login-container{
	width: 460px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

@keyframes FadeIn {
	0% {
		transform: translateY(2.5em);
		opacity: 0
	}
	35% {
		transform: translateY(2.5em);
		opacity: 0
	}
	100% {
		transform: translateY(0);
		opacity: 1
	}
}

@-webkit-keyframes FadeIn {
	0% {
		transform: translateY(2.5em);
		opacity: 0
	}
	35% {
		transform: translateY(2.5em);
		opacity: 0
	}
	100% {
		transform: translateY(0);
		opacity: 1
	}
}

/** 登录样式 **/
.flex {
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo{
	background: center no-repeat;
	background-size: contain;
	height: 80px;
}
.login-d{
	background: #fff;
	-webkit-box-shadow: 5px 4px 10px rgba(0, 0, 0, .3);
	box-shadow: 5px 4px 10px rgba(0, 0, 0, .3);
	max-width: 400px;
	margin: auto;
	padding: 20px 30px;
	position: relative;
	animation: FadeIn 1s cubic-bezier(0, 0, 0.2, 1);
}
.login-d .qrcode{
	text-align: center;
	margin: 23px 0;
}
.login-d .qrcode img{
	display: inline-block !important;
}
.login-d .change-login{
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 2rem;
}
.login-d .login-form.show{
	display: block !important;
}
.login-d .login-form{
	display: none;
}
.login-d h2{
	font-size: 1.4rem;
}
.login-d h2,.login-d form{
	text-align: center;
}
.login-ul li{
	width: 100%;
	height: 3.5rem;
	margin: 15px 0;
}
.login-ul li .icon{
	width: 2rem;
	height: 2rem;
	vertical-align: middle;
}
.login-ul li.error-tips{
	height: 1rem;
	color: #ff0000;
	margin-top: 0;
}
.login-ul li.error-tips.hide{
	display: none;
}
.login-ul li.error-tips .icon{
	width: 2rem;
	height: 2rem;
	vertical-align: middle;
}
.login-btn{
	background-color: #169bd5;
	border: 1px solid #169bd5;
	border-radius: 4px;
	color: #fff;
	padding: 7px 0;
	margin: 0 30px;
	width: 100%;
	font-size: 16px;
	cursor: pointer;
	transition: opacity .5s;
	-webkit-transition: opacity .5s;
}

.login-btn:hover{
	opacity: .8;
}
.login-btn[disabled]{
	cursor: not-allowed;
	opacity: .8;
}

#close {
	color: #333;
	background-color: #fff;
	border: 1px solid #ccc;
}

.login-code p{
	text-align: center;
}
.verification-code-img {
	position: absolute;
	right: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 1000;
	cursor: pointer;
}
.change-login span{
	position: relative;
	font-size: 12px;
	border: 1px solid #2486FF;
	color: #2486FF;
	background: #def0ff;
	padding: 5px 10px;
	top: -6px;
	right: 10px;
}
.change-login span:before,
.change-login span:after{
	position:absolute;
	content:'';
	border: 6px solid;
}
.change-login span:before{
	right: -12px;
	top: 6px;
	border-color: transparent transparent transparent #2486FF;
}
.change-login span:after{
	border-color: transparent transparent transparent #def0ff;
	right: -10px;
	top: 6px;
}
/** 占位符过渡效果 **/
.fill{
	display: inline-block;
	/*width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;*/
	position: relative;
	border-bottom: 1px solid #ccc;
}
.fill .fill-input, .fill select{
	border: none;
	background: transparent;
	outline: none;
	font-size: 16px;
	z-index: 999;
	position: relative;
	width: 80%;
	height: 3rem;
	vertical-align: middle;
}
/** placeholder隐藏 **/
.fill .fill-input:placeholder-shown::placeholder{
	color: transparent;
}
/** 这样focus可以操作父元素 **/
.fill:focus-within::after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
.fill:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	border-bottom: 2px solid #4483cf;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: transform .2s;
	transition: transform .2s;
}
/** 输入框已有内容 **/
.fill-input:not(:placeholder-shown) ~ .fill-label,
.fill .fill-input:focus ~ .fill-label{
	color: #4483cf;
	transform: scale(.7) translateY(-25px);
}
.fill .fill-label{
	position: absolute;
	display: inline-block;
	top: 12px;
	left: 0;
	width: 100%;
	/* transform-origin: 0 0; 靠左变化 */
	color: #9e9e9e;
	font-size: 16px;
	-webkit-transition: transform .2s;
	transition: transform .2s;
}
.ie .fill .fill-label{
	display: none;
}
#particles-js {
	position: absolute;
	width: 100vw;
	height: 90vh;
}


.fill .fill-label-phon{
    position: absolute;
    display: inline-block;
    top: 12px;
    left: 0;
    width: 100%;
    /* transform-origin: 0 0; 靠左变化 */
    color: #9e9e9e;
    font-size: 16px;
    -webkit-transition: transform .2s;
    transition: transform .2s;
}
.emailLoginTips {
	font-size: 18px;
	text-align: left;
}

.phoneLoginTips{
	font-size: 18px;
	text-align: left;
}

#getTwoCheckCode {
	width: 100px;
	padding-top: 15px;
}