.my_dialog {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	display: none;
	z-index: 1000;
}

.my_dialog .my_dialog-box {
	box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
	border-radius: 20px;
	background-color: #fff;
	width: 670px;
	height: 820px;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	padding: 40px 44px;
	font-size: 28px;
	line-height: 1.8;
}

.my_dialog .my_btn-father .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: #00c300;
	width: 582px;
	height: 82px;
	border-radius: 12px;
	font-weight: bold;
}

.my_dialog .my_btn-father .text {
	font-size: 22px;
	color: #777;
	margin-top: 18px;
}

.my_dialog .my_close-btn {
	font-size: 60px;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555;
	position: absolute;
	top: 0;
	right: 0;
}

.my_dialog .title {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 24px;
	font-size: 30px;
	font-weight: bold;
}

.my_dialog .my_yellow-my_box {
	background: #fffbe6;
	padding: 12px 20px;
	border-radius: 12px;
	margin-top: 12px;
}

.my_dialog .my_btn-father {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 582px;
	margin: auto;
	margin-top: 60px;

}