/* ui-dialog */

.ui-dialog-bgb {
	pointer-events: auto;
	display: none;
	background-color: #fff;
	position: absolute;
	max-width: 80%;
}

.ui-dialog-close {
	position: absolute;
	right: 0.1rem;
	top: 0.1rem;
	color: #999;
	width: 0.4rem;
	height: 0.4rem;
	text-align: center;
	line-height: 0.4rem;
	border: 1px solid #ccc;
	border-radius: 0.4rem;
}

.ui-dialog-mask {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: .3;
	display: none;
	filter: alpha(opacity=30);
}

.ui-dialog-title {
	background-color: #288df0;
	color: #fff;
	padding: 0.1rem 0.2rem;
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		-moz-transform: scale3d(.3, .3, .3);
		-ms-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		-moz-transform: scale3d(.3, .3, .3);
		-ms-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	100% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		-moz-transform: scale3d(.3, .3, .3);
		-ms-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	100% {
		opacity: 1;
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		-moz-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		-moz-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	100% {
		opacity: 0;
	}
}

@-moz-keyframes zoomOut {
	0% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		-moz-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	100% {
		opacity: 1;
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
	display: none\0 !important;
}

.animated {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	animation-fill-mode: both;
}

#confirmDialog {
	width: 7rem;
	background-color: #fff;
}

.ui-confirm-title,
.ui-alert-title {
	text-align: center;
	font-weight: normal;
	color: #333;
	line-height: 0.36rem;
	font-size: 0.28rem;
}

.confirm-title2 {
	font-weight: normal;
	color: #666;
	text-align: center;
}

.ui-dialog-submit,
.ui-alert-submit,
.ui-confirm-submit {
	background-color: #f34640;
}

.ui-dialog-cancel {
	background-color: #eee;
}

.ui-dialog-action {
	pointer-events: auto;
	text-align: center;
	margin-top: 0.2rem;
	width: 100%;
	border: none;
}

.ui-dialog-action td {
	text-align: center;
	border: none;
}

.ui-dialog-action button {
	display: inline-block;
	border-radius: 0.1rem;
	padding: 0.1rem 0.3rem;
	font-size: 0.32rem;
	color: #fff;
	border: none;
	outline: none;
	cursor: pointer;
	box-sizing: border-box;
}

.ui-alert {
	border-radius: 0.1rem;
	overflow: hidden;
	padding: 0.4rem;
}

.ui-alert .ui-dialog-close {
	display: none;
}

.ui-alert .ui-alert-submit {
	margin: 0 auto;
}

.ui-alert-info {
	text-align: center;
	margin-top: 0.4rem;
}

.ui-confirm-close,
.ui-confirm-no {
	background-color: #999;
}


