*:focus {
	outline: none;
}

body {
	margin:0;
	padding:0;
	font-size: 1.5rem;
}


html {
	width: 100%;
	height: 100%;
}

img {
	display:block;
}

.popwinmask {
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 2222;
}

.popwinmodel h2 {
	color: #000;
	text-align: center;
}

.popwinmodel h3 {
	color: #4463FC;
	font-size: 1.5rem;
}

.popwinmodel h3 {
	color: #4463FC;
	font-size: 1.2rem;
}

.popwinmodel ul,ol,li {
	color: #000;
	font-size: 1rem;
}

.popwinmodel legend {
	color: #000;
	font-size: 1rem;
}

.popwinmodel {
	position: fixed;
	z-index: 3333;
	/* display: none; */
	left: 0;
	right: 0;

	margin: 0 auto;

	/* top: 20%; */
	transform-origin: center;
	max-width: 90%;
	max-height: 60%;
	border-top:8px solid #f1f3f9;
	border-bottom:8px solid #f1f3f9;
	border-radius: 5px;
	overflow: hidden;
	width: 480px;
	background-image: url('flowchart_res/popwinbg.png');
	background-repeat: no-repeat;
	background-position: top;
	background-color: #f1f3f9;
}

.popwinmodel .popwinmodel-title {
	padding: 15px 0;
	opacity: 0;
	color: #333;
	transform: translateY(10px);
	animation: popwinmodel-text-animation 0.3s ease forwards;
	animation-delay: 0.2s;
	font-weight: bold;
	font-size: 1rem;
	text-align: center;
}

.popwinmodel .popwinmodel-text {
	text-align: left;
	overflow-y: auto;
	font-size: 1rem;
	color: #333;
	line-height: 23px;
	padding: 0 20px;
	opacity: 0;
	transform: translateY(10px);
	animation: popwinmodel-text-animation 0.3s ease forwards;
	animation-delay: 0.4s;
	overflow-y: auto;
}

.popwinmodel .popwinmodel-btn {
	display: flex;
	align-items: center;
	border-top: 1px solid rgba(0, 0, 0, 0.7);
	justify-content: center;
	margin-top: 20px;
	opacity: 0;
	animation: popwinmodel-btn-animation 0.6s ease forwards;
	animation-delay: 0.6s;
}

.popwinmodel .popwinmodel-btn button {
	color: #fe5c42;
	cursor: pointer;
	border: 0;
	background: none;
	padding: 12px;
	font-size: 1rem;
}

.popwin-open {
	animation: popwin-open-animation 0.3s ease forwards;
}

.popwin-close {
	animation: popwin-close-animation 0.3s ease forwards;
}

@-webkit-keyframes popwin-open-animation {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes popwin-close-animation {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	30% {
		transform: scale(1.05);
		opacity: 0.5;
	}

	100% {
		transform: scale(0.7);
		opacity: 0;
	}
}

@keyframes popwinmodel-text-animation {
	from {
		transform: translateY(10px);
		opacity: 0;
	}

	to {
		transform: translateY(0px);
		opacity: 1;
	}
}

@keyframes popwinmodel-btn-animation {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
