
.modal_n_m{
	/* display: none; */
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: rgba(0,0,0,0.5);
}
.modal_n_m-content{
	position: relative;
	/* background: url(亚马逊.png) no-repeat; */
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	max-width: 613px;
	/* height:472px; */
	margin: 100px auto;
	/* background-color:#fff; */
	-webkit-animation: zoom 0.6s;
	animation: zoom 0.6s;
	/* resize: both; */
	overflow: auto;
	padding: 30px;
	box-sizing: border-box;

}
@-webkit-keyframes zoom{
	from {-webkit-transform: scale(0)}
	to {-webkit-transform: scale(1)}
}
@keyframes zoom{
	from {transform: scale(0)}
	to {transform: scale(1)}
}
.modal_n_m-content .close{
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 30px;
	width: 40px;
	height: 40px;
	font-size: 30px;
	font-weight: bold; 
	margin-right: 20px;
	transition: all 0.3s;
}  
.modal_n_m-content .close:hover,.modal_n_m-content .close:focus{  
	color: #95b4ed;  
	text-decoration: none;  
	cursor: pointer;  
}  
.modal_n_m-body{
	font-size: 16px;
	box-sizing:border-box;
}


@media only screen and (max-width: 700px){
	.modal_n_m-content {
		width: 80%;
		/* height: 38%; */
	}
}