.bottom-form {
	position: fixed;
	left: -100vw;
	bottom: 0px;
	width: calc(100vw + 170px);
	overflow: hidden;
	transition: left linear .3s;
	z-index: 10;
}

/* form表单项样式 */
#mInfoForm {
	width: 100%;
	display: flex;
	align-items: center;
}

.form-content-item {
	position: relative;
	/* padding-bottom: 12px; */
	/* width: 20%; */
	/* flex: 1; */
	flex: 1;
	margin-right: 30px;
}

.form-content-item.isSpecial {
	flex: 0.5;
	margin-top: -4px;
}

.form-content-item label.error {
	display: block;
	position: absolute;
	padding-left: 26px;
	color: red;
	font-size: 12px;
}

/* 特殊处理短信验证码的错误提示 */
#mInputCode-error {
	top: 50px;
}

.bottom-from-content {
	background: rgba(153, 153, 153, 0.7);
	padding-left: 20px;
	box-sizing: border-box;
	width: 100vw;
}

.bottom-from-btn {
	width: 170px;
	height: 138px;
	background: url(../img/relation_btn.png) center no-repeat;
	background-size: 100%;
	opacity: 0;
	transition: opacity .3s;
	cursor: pointer;
}

.icon-close-form {
	width: 46px;
	height: 46px;
	background: url(../img/close_form_btn.png) center no-repeat;
	background-size: 100%;
	cursor: pointer;
	margin-top: -12px;
}

.form-content-input {
	width: 100%;
	/* width: 360px; */
	height: 50px;
	background: #FFFFFF;
	border-radius: 10px;
	border: none;
	margin-left: 30px;
	text-indent: 20px;
	position: relative;
}

.form-content-input.error {
	border: 2px solid red;
}

.form-content-input::after {
	/* content: attr(data-content-after); */
	content: '111';
	position: absolute;
	top: 0;
	right: -260px;
	width: 104px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	border-radius: 10px;
	background: #39c778;
	box-shadow: 1px 2px 3px -1px;
	display: block;
}

.form-content-input.isSpecial {
	border-bottom-right-radius: 0px;
	border-top-right-radius: 0px;
	width: 55%;
	/* width: 200px; */
}

.form-content-input::placeholder {
	color: #999999;
}

.form-content-input:focus {
	/* border: none !important; */
	box-shadow: none;
	outline: none;
}

.form-btn {
	width: 138px;
	height: 50px;
	background: #277FFF;
	border-radius: 10px;
	border: none;
	color: white;
	overflow: hidden;
	font-size: 15px;
	/* margin-right: 30px; */
}

.form-btn:active {
	opacity: 0.8;
}

.form-btn.isSpecial {
	text-align: center;
	width: 45%;
	/* flex: 1; */
	/* padding: 12px 10px; */
	border-bottom-left-radius: 0px;
	border-top-left-radius: 0px;
	display: inline-block;
	line-height: 50px;
	height: 50px;
}

.form-content {
	flex-wrap: wrap;
	justify-content: flex-start;
}

/* 小屏幕电脑展示 */
@media screen and (min-width:1024px) and (max-width:1600px) {
	.form-content-input {
		/* width: 230px; */
		height: 40px;
	}
	#mInputCode-error {
		top: 40px;
	}

	.form-btn {
		height: 40px;
	}

	.form-btn.isSpecial {
		/* padding: 2% 10px; */
		height: 40px;
		line-height: 40px;
	}
}

/* 平板 */
@media screen and (min-width:500px) and (max-width:1024px) {
	.bottom-from-content {
		padding-left: 4px;
	}
	.form-content-item {
		margin-right: 10px;
	}
	#mInputCode-error {
		top: 30px;
	}

	.form-content-input {
		/* width: 130px; */
		height: 30px;
		margin-left: 16px;
		text-indent: 2px;
	}

	.form-btn {
		width: 100px;
		font-size: 10px;
		height: 30px;
		margin-right: 10px;
	}

	.form-content-input.isSpecial {
		/* width: 100px; */
	}

	.icon-close-form {
		width: 30px;
		height: 30px;
		margin-left: 20px;
	}

	.form-btn.isSpecial {
		/* padding: 5px 10px; */
		height: 30px;
		line-height: 31px;
	}
}

/* 手机 */
@media screen and (min-width:310px) and (max-width:500px) {
	#mInfoForm {
		flex-wrap: wrap;
	}
	.form-content-item {
		flex: none;
		margin-right: 0;
		margin-top: 20px;
	}
	.form-content-input {
		/* width: 50%; */
		height: 30px;
		margin-left: 4px;
		text-indent: 2px;
	}
	#mInputCode-error {
		top: 30px;
	}

	.form-btn {
		width: 100px;
		font-size: 10px;
		height: 30px;
		margin-right: 10px;
		margin-top: 14px;
	}

	.form-btn.isSpecial {
		/* padding: 5px 10px; */
		height: 30px;
		line-height: 31px;
		margin-top: 0px;
	}

	.icon-close-form {
		width: 50px;
		height: 50px;
	}
}
