.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 85%;
	min-height: 6.888888rem;
	text-align: center;
	border-radius: 8px;
	background-color: #FFFFFF;
	padding-bottom: 1.638888rem;
	box-sizing: border-box;
	flex-direction: column;
	-webkit-transform: translate3d(-50%, -50%, 0) scale(.5);
	transform: translate3d(-50%-50%, 0) scale(.5);
	transition: all 500ms cubic-bezier(.36, .66, .04, 1);
	z-index: -1;
	opacity: 0;
	text-align: center;
}

.popup.show {
	webkit-transform: translate3d(-50%, -50%, 0) scale(1);
	transform: translate3d(-50%, -50%, 0) scale(1);
	z-index: 1;
	opacity: 1;
}

.popup .content {
	text-align: left;
}

.popup-btn--ok {
	border: none;
    color: #FFFFFF;
    padding: 0.305555rem 1.166666rem;
	background:linear-gradient(-90deg,rgba(255,216,74,1),rgba(255,150,33,1));
	border-radius: 0.611111rem;
	position: absolute;
	bottom: 0.527777rem;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.popup-btn--close{
	display: block;
	width: 1.111111rem;
	height: 1.111111rem;
	position: absolute;
	bottom: -1.527777rem;
	left: 50%;
	margin-left: -0.555555rem;
	border-radius: 50%;
	background: url(../img/icon_close.png) no-repeat center;
	background-size: 100%;
}

.mask {
	width: 100%;
	height: 100%;
	background-color: #000000;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 500ms cubic-bezier(.36, .66, .04, 1);
	z-index: -1;
}

.mask.show {
	z-index: 0;
	opacity: .7;
}

.msg {
	position: fixed;
	bottom: 20%;
	left: 50%;
	transform: translateX(-50%);
	transform: -webkit-translateX(-50%);
	transform: -moz-translateX(-50%);
	padding: 0.277777rem 0.3rem;
	background-color: gray;
	color: #FFF;
	font-size: 0.388888rem;
	border-radius: 0.2rem;
	min-width: 1.111111rem;
	text-align: center;
	z-index: 999;
	opacity: 0;
	transition: all 500ms cubic-bezier(.36, .66, .04, 1);
	z-index: -1;
}

.msg.show {
	opacity: 1;
	z-index: 2;
	bottom: 25%;
}