  /* dialog */
body.noscroll {
	overflow-y: scroll;
}
#dialogBg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 80000;
	background-color: rgba(0,0,0,0.7);
	display: none;
}
#dialogBg .dialogContainer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 70%;
	height: 80%;
}
#dialogBg .ifBox {
	-webkit-overflow-scrolling: touch;
	overflow: auto;
	height: 100%;
	width: 100%;
	border-radius: 5px;
	-webkit-border-radius: 5px;
}
#dialogFrame {
	background-color: #fff;
	display: none;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}
#dialogBg .tb-dialog-close-btn {
	position: absolute;
}
#dialogBg .tb-dialog-close-btn img {
	width: auto;
	height: auto;
}

@media screen and ( max-width:768px ) {
#dialogBg .ifBox {
	border-radius: 0px;
	-webkit-border-radius: 0px;
}
#dialogBg .dialogContainer {
	width: 90%;
	height: 70%;
	margin:50px auto;
	display: -webkit-flex;
	display: flex;
	border-radius: 0;
	-webkit-border-radius: 0;
}
}/*max-width:769px*/

@media screen and ( max-width:480px ) {

#dialogBg .dialogContainer {
	width: 90%;
	height: 80%;
	margin:50px auto;
	display: -webkit-flex;
	display: flex;
	border-radius: 0;
	-webkit-border-radius: 0;
}

#dialogFrame {
	padding:10px 0 20px 0;
	box-sizing:border-box;
	}

}
