/* 弹窗表单 */
.form-container {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	display: flex;
}
.form-container .form-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}
.form-container .form-content {
	display: flex;
	margin: auto;
	max-width: 30%;
	z-index: 4;
}
.info_second {
	background: #fff;
	padding: 0 3rem;
	border-radius: 10px;
	position: relative;
}

.info_second .form-title {
	font-size: 24px;
	text-align: center;
	font-weight: bold;
	margin: 20px 0 0;
}

.info_second .form-close {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 40px;
	cursor: pointer;
}

.info_form {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fafbfd;
	border: 1px solid #eff1f4;
	padding: 0 10px;
}
.info_title:before {
	content: '*';
	color: red;
	margin-right: 4px;
	display: inline-block;
}
.info_img {
	width: 20px;
}
.info_input {
	height: 36px;
	width: 100%;
	font-size: 14px;
	color: #333;
	padding: 0 10px;
	background: none;
	border: none;
}

.info_btn {
	background-color: #226FE2;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	color: #fff;
	border-radius: 4px;
	display: table;
	margin: 20px auto;
	width: 20rem;
	cursor: pointer;
}

@media (max-width:1024px) {
	.form-container .form-content {
		max-width: 60%;
	}
}

@media (max-width:640px) {
	.form-container .form-content {
		max-width: 90%;
	}
	.info_second {
		padding: 0 1rem;
	}
	.info_second .form-title {
		font-size: 2rem;
	}
	.info_second .form-close {
		right: 0;
	}
}