.p5-dialog-wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	.p5-dialog-mask {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.5);
	}
}
.p5-dialog-box {
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: center;
	transform: translate(-50%, -50%);
	width: 520px;
	background: #fff;
	.p5-dialog-title {
		background: #f8f9fa;
		height: 52px;
		line-height: 52px;
		position: relative;
		text-align: left;
		padding-left: 20px;
		min-width: 200px;
		color: #555;
		font-size: 18px;
		.p5-dialog-close {
			width: 17px;
			position: absolute;
			top: 50%;
			right: 20px;
			margin-top: -8px;
			cursor: pointer;
		}
	}
	.p5-dialog-con {
		font-size: 14px;
		padding: 40px 40px 50px;
		text-align: center;
		color: #585858;
	}
	.p5-dialog-btns {
		text-align: center;
		display: inline-block;
		background: #fff;
		color: #fff;
		width: 100%;
		padding-bottom: 50px;
	}
	.p5-dialog-btns .p5-dialog-btn {
		margin: 10px;
		min-width: 150px;
		padding: 0 10px;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
		border: none;
		@include bgcolor;
		color: currentColor;
		&:hover {
			color: currentColor;
		}
	}
	.p5-dialog-btn.p5-dialog-cancel {
		background: #999;
	}
}
