iframe {
	min-width: 100%;
	min-height: calc(100% - 60px);
	max-width: 100%;
	border: none;	
}
.simple_modal {
	display: none;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	overflow-y:hidden;
	position: fixed;
	padding:0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: rgba(0,0,0,0.7);
 }
.load_iframe_tip {
	float: left;
	position: absolute;
	left: 0;
	top: 0;	
	width: 140px;
	height:46px;
	overflow: hidden;
	font-size: 14px;
	color: #fff;
 	background:url(loadimage.svg) 8px 10px no-repeat #d0323c;
 	display: none;
 }
.simple_modal_show {
	position: relative;
	max-width: 100%;
	padding:0;
	width: 100%;
	margin-top: 60px;
	margin-bottom: 0;
	height:calc(100% - 60px);
	z-index: 1001;
	background-color: #fff;
	border-radius: none;
	overflow-y:auto;
}
.page_activated {
	overflow: hidden;
}
.simple_modal_page_close:after {
	content: "Close";
	float: left;
	display: block;
	text-align: center;
	font-size: 14px;
	width: 140px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 60px;
	background:#d0323c;
	z-index: 1005;
	cursor: pointer; 
}
@media screen and (max-width: 480px) {
.simple_modal_show {
	margin-top: 0px;
	margin-bottom: 0;
	height:100%;
}
.simple_modal_page_close:after {
	font-size: 16px;
	width: 100%;
	height: 50px !important;
	line-height: 50px !important;
	right: 0;
	top: 0;
	cursor: default; 
}	
}