﻿.modal {
	display: none;
	position: fixed;
	z-index: 222;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.modal>.modal_mask {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
	z-index: 1;
}

.modal .modal_mask {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: rgba(0, 0, 0, .3);
}

.modal>.modal_content {
	position: absolute;
	top: 20%;
	left: calc(50% - 300px);
	width: 688px;
	height: 417px;
	z-index: 10000;
	background: url("../images/modal_bg.png");
	background-size: 688px auto;

}
.modal_content .modal_main{
	position: absolute;
	top: 53px;
	right: 7px;
	width: 626px;
	height: 284px;
}
.modal_content .modal_main img {
	width: 626px;
	height: auto;
}
.modal_content .modal_zs{
	position: absolute;
	right: 4px;
	top: 80px;
	width: 122px;
	height: 61px;
	background: url("../images/modal_zs.png");
	background-size: 122px auto;
}
.modal_content .modal_close {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 10000;
	cursor: pointer;
}

.modal_content .modal_close img {
	width: 100%;
	height: 100%;
	display: block;
}

.modal_input {
	position: absolute;
	bottom: 73px;
	left: 136px;
	width: 300px;
	height: 45px;
	background: #FFFFFF;
	border: 1px solid #BC2042;
	border-radius: 6px;
	color: #F997B1;
}

.modal_input>input {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: none;
	border-radius: 4px;
	background: #fff;
	color: #F997B1;
	text-align: center;
	font-size: 20px;
	outline-style: none;
}
.modal_input>input::-webkit-input-placeholder {
	color:#F996B0;
	outline-style: none;
  }
.modal_btn {
	background: url(../images/btn_bg.png) no-repeat center;
	background-size: cover;
	border-radius: 2px;
	width: 96px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #fff;
	position: absolute;
	bottom: 76px;
	right: 136px;
	cursor: pointer;
	font-size: 20px;
	letter-spacing: 3px;
}

.modal_btn:hover {
	-webkit-transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	-ms-transition: transform 0.5s;
	-o-transition: transform 0.5s;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.modal-msg {
	position: fixed;
	top: calc(50% - 50px);
	left: calc(50% - 178px);
	width: 356px;
	height: 99px;
	background: rgba(255, 255, 255, 1);
	box-shadow: 1px 3px 17px 0px rgba(181, 130, 77, 0.57);
	border-radius: 14px;
	display: flex;
	color: #B5824D;
	justify-content: center;
	align-items: center;
	font-size: 41px;
	font-family: MicrosoftYaHei-Bold;
	font-weight: bold;
	z-index: 999999;
}