.dialogShadow{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999;
}
.dialog{
	position: fixed;
	top: 35%;
	left: 50%;
	z-index: 999;
	margin-left: -200px;
	width: 400px;
	height: auto;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0px 0px 20px #999;
}
.dialog>.d_cont{
	width: 100%;
	height: auto;
	min-height: 140px;
	border-bottom: 1px solid #aaa;
	box-sizing: border-box;
	padding: 15px;
	text-align: center;
	overflow: hidden;
}
.dialog>.d_cont>p{
	font-size: 24px;
}
.dialog>.d_cont>img{
	max-width: 100%;
	max-height: 600px;
}
.dialog>.btns{
	width: 100%;
	height: auto;
	overflow: hidden;
	text-align: center;
}
.dialog>.btns>.ibtn{
	float: left;
	width: 100%;
	height: 100%;
	font-size: 18px;
	box-sizing:border-box;
	padding: 10px 0;
	cursor: pointer;
	color: #333;
	font-weight: bold;
	letter-spacing: 10px;
}
.dialog>.btns>.ibtn.w-red{
	color: rgb(235, 110, 98);
}
.dialog>.btns>.ibtn:nth-child(2){
	border-left: 1px solid #aaa;
}
#uploadShadow{
	position: fixed;
	top:0;
	left: 0;
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
	z-index: 9999;
}
#uploadShadow p {
	text-align: center;
	font-size: 50px;
	color: #fff;
	padding-top: 350px;
	/*font-weight: bold;*/
}
/*dialog 部分 end*/