@CHARSET "UTF-8";
@import url(ag-font/iconfont.css);
@import url(effect-2.0.css);

/*==================== 弹窗控件 ====================*/
.pop-container {
	display: block;
	-webkit-animation: pop-in .2s;
	-moz-animation: pop-in .2s;
	-ms-animation: pop-in .2s;
	animation: pop-in .2s;
}

/*关闭窗口过渡效果*/
.pop-container.closing {
	-webkit-animation: pop-out .1s forwards;
	-moz-animation: pop-out .1s forwards;
	-ms-animation: pop-out .1s forwards;
	animation: pop-out .1s forwards;
}

.pop-container .pop-header {
	position: relative;
}

/*弹框标题样式*/
.pop-header .pop-title {
	display: block;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #fff;
	background-color: #777;
	margin: 0;
	padding: 0px 15px;
	border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
}

/*有标题弹框关闭按钮*/
a.pop-close {
	display: block;
	width: 16px;
	height: 16px;
	line-height: 16px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	margin: -8px 0 0 0;
	padding: 0;
	border: none;
	opacity: .55;
	-moz-opacity: .55;
	filter: alpha(opacity = 55);
	position: absolute;
	top: 50%;
	right: 15px;
	z-index: 999;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

/*有弹框关闭按钮交互*/
a.pop-close:active, a.pop-close:hover {
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity = 100);
}

/*显示内容容器*/
.pop-container .pop-body {
	padding: 0;
	margin: 0;
	background-color: #fff;
	position: relative;
}

/*没有标题样式*/
.no-title .pop-title {
	display: none;
}

.no-title a.pop-close {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #d9534f;
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity = 100);
	top: -15px;
	right: -15px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	box-shadow: 0 0 2px rgba(0, 0, 0, .15);
}

.no-title a.pop-close:active {
	background-color: #c9302c;
}

.no-title a.pop-close:hover, .no-title a.pop-close:focus {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.no-title .pop-body {
	padding-top: 20px;
	border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}

.no-title .pop-bottom {
	padding-bottom: 20px;
	border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
}

/*显示内容*/
.pop-container .pop-content {
	padding: 15px;
	line-height: 1.8em;
	color: #444;
}

.pop-container.has-icon .pop-content {
	margin-left: 50px;
}

.pop-container.has-icon .pop-content.multiline {
	padding-top: 8px;
}

.pop-content b, .pop-content strong {
	color: #d9534f;
}

.alert-type .pop-content {
	margin-left: 50px;
}

.pop-content .agfont {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	vertical-align: middle;
	margin-top: -2px;
}

.pop-content a {
	margin: 0 2px;
	padding: 1px 2px;
	color: #337ab7;
	border-radius: 2px;
}

.pop-content a:active, .pop-content a:hover, .pop-content a:focus {
	color: #286090;
}

.pop-loading {
	text-align: center;
	overflow: hidden;
}

.pop-loading>.agfont {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 30px;
	color: #d9534f;
	animation: pop-loading 1s linear infinite;
	-ms-animation: pop-loading 1s linear infinite;
	-moz-animation: pop-loading 1s linear infinite;
	-webkit-animation: pop-loading 1s linear infinite;
}

/*警告,成功,错误提示前置图标*/
.pop-body .agfont.pop-wran, .pop-body .agfont.pop-success, .pop-body .agfont.pop-error
	{
	width: 40px;
	height: 40px;
	line-height: 53px;
	font-size: 40px;
	margin-left: 15px;
	float: left;
}

.agfont.pop-wran {
	color: #f0ad4e;
}

.agfont.pop-success {
	color: #5FB878;
}

.agfont.pop-error {
	color: #d9534f;
}

/*顶部按钮容器*/
.pop-bottom {
	display: block;
	padding: 0 10px 15px;
	background-color: #fff;
	text-align: center;
}

.pop-bottom .pop-btn {
	min-width: 80px;
	margin: 0 5px;
}

/*原始样式*/
.pop-bottom .pop-btn {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
}

.pop-ok {
	color: #fff;
	background-color: #aaa;
	border-color: #aaa;
}

.pop-ok.active, .pop-ok.focus, .pop-ok:active, .pop-ok:focus, .pop-ok:hover
	{
	background-color: #666;
	border-color: #666;
}

/*取消按钮样式*/
.pop-bottom .pop-cancel {
	color: #333;
	background-color: #fff;
	border-color: #ccc;
}

/*取消按钮交互*/
.pop-bottom .pop-cancel.active, .pop-bottom .pop-cancel.focus,
	.pop-bottom .pop-cancel:active, .pop-bottom .pop-cancel:focus,
	.pop-bottom .pop-cancel:hover {
	color: #333;
	background-color: #e6e6e6;
	border-color: #adadad;
}

/*默认标题背景*/
.default .pop-title {
	background-color: #ff7f14;
}

/*默认确认按钮样色*/
.default .pop-ok {
	color: #fff;
	background-color: #ff7f14;
	border-color: #ff7f14;
}

.default .pop-ok.active, .default .pop-ok.focus, .default .pop-ok:active,
	.default .pop-ok:focus, .default .pop-ok:hover {
	background-color: #f26005;
	border-color: #f26005;
}

/*红色皮肤*/
.red .pop-title {
	background-color: #d9534f;
}

.red .pop-ok {
	color: #fff;
	background-color: #d9534f;
	border-color: #d9534f;
}

.red .pop-ok.active, .red .pop-ok.focus, .red .pop-ok:active, .red .pop-ok:focus,
	.red .pop-ok:hover {
	background-color: #c9302c;
	border-color: #c9302c;
}

/*蓝色皮肤*/
.blue .pop-title {
	background-color: #337ab7;
}

.blue .pop-ok {
	color: #fff;
	background-color: #337ab7;
	border-color: #337ab7;
}

.blue .pop-ok.active, .blue .pop-ok.focus, .blue .pop-ok:active, .blue .pop-ok:focus,
	.blue .pop-ok:hover {
	color: #fff;
	background-color: #286090;
	border-color: #286090;
}

/*绿色皮肤*/
.green .pop-title {
	background-color: #5cb85c;
}

.green .pop-ok {
	color: #fff;
	background-color: #5cb85c;
	border-color: #5cb85c;
}

.green .pop-ok.active, .green .pop-ok.focus, .green .pop-ok:active,
	.green .pop-ok:focus, .green .pop-ok:hover {
	color: #fff;
	background-color: #449d44;
	border-color: #449d44;
}

/*天蓝色皮肤*/
.skyblue .pop-title {
	background-color: #5bc0de;
}

.skyblue .pop-ok {
	color: #fff;
	background-color: #5bc0de;
	border-color: #5bc0de;
}

.skyblue .pop-ok.active, .skyblue .pop-ok.focus, .skyblue .pop-ok:active,
	.skyblue .pop-ok:focus, .skyblue .pop-ok:hover {
	color: #fff;
	background-color: #31b0d5;
	border-color: #31b0d5;
}

/*黄色皮肤*/
.yellow .pop-title {
	background-color: #f0ad4e;
}

.yellow .pop-ok {
	color: #fff;
	background-color: #f0ad4e;
	border-color: #f0ad4e;
}

.yellow .pop-ok.active, .yellow .pop-ok.focus, .yellow .pop-ok:active,
	.yellow .pop-ok:focus, .yellow .pop-ok:hover {
	color: #fff;
	background-color: #ec971f;
	border-color: #ec971f;
}

/*黄色皮肤*/
.purple .pop-title {
	background-color: #E14DB0;
}

.purple .pop-ok {
	color: #fff;
	background-color: #E14DB0;
	border-color: #E14DB0;
}

.purple .pop-ok.active, .purple .pop-ok.focus, .purple .pop-ok:active,
	.purple .pop-ok:focus, .purple .pop-ok:hover {
	color: #fff;
	background-color: #CC3399;
	border-color: #CC3399;
}

.pop-wait {
	display: inline-block;;
	padding: 10px;
	background-color: #fff;
	border-radius: 5px;
	-webkit-animation: pop-in .2s;
	-moz-animation: pop-in .2s;
	-ms-animation: pop-in .2s;
	animation: pop-in .2s;
}

.pop-wait .agfont {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 30px;
	color: #d9534f;
	vertical-align: middle;
	animation: pop-loading 1s linear infinite;
	-ms-animation: pop-loading 1s linear infinite;
	-moz-animation: pop-loading 1s linear infinite;
	-webkit-animation: pop-loading 1s linear infinite;
}

.pop-wait .wait-text {
	display: inline-block;
	color: #444;
	vertical-align: middle;
	margin: 0 8px;
}

/**
 *下拉选择框 
 */
.ag_seldiv {
	display: block;
	border: 1px solid #aaa;
	background-color: #fff;
	margin: 0px;
	overflow: hidden;
	position: absolute;
}

.ag_seldiv ul {
	display: block;
	max-height: 200px;
	padding: 0;
	margin: 0;
	overflow: auto;
}

.ag_seldiv ul li {
	display: block;
	color: #444;
	height: 30px;
	line-height: 30px;
	padding: 0 5px;
	font-size: 12px;
	list-style: none;
	overflow: hidden;
	cursor: pointer;
}

.ag_odd {
	background-color: #eee;
}

.ag_seled {
	color: #fff !important;
	background-color: #f0ad4e;
}

/*==================== 侧边栏弹窗 ====================*/
.pop-fix-right {
	display: block;
	width: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
}

.pop-fix-body {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	box-shadow: -6px 0px 8px rgba(0, 0, 0, .15);
}

.fix-right-close {
	display: block;
	width: 30px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background-color: #d9534f;
	margin-top: -25px;
	position: absolute;
	left: 32px;
	top: 50%;
	z-index: 999;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity = 0);
	box-shadow: 2px 0px 6px rgba(0, 0, 0, .15);
	-webkit-border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

.active .fix-right-close {
	left: 2px;
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity = 100);
}

.fix-right-close>i.agfont {
	display: block;
	font-size: 22px;
	color: #fff;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

.fix-right-close:hover>i.agfont {
	-webkit-transform: translateX(4px);
	-moz-transform: translateX(4px);
	-ms-transform: translateX(4px);
	-o-transform: translateX(4px);
	transform: translateX(4px);
}

/*==================== 下拉框控件 ====================*/
.ag-select-box {
	display: block;
	max-height: 210px;
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity = 0);
	position: absolute;
	z-index: 99;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: transform .2s, opacity .2s, visibility .2s;
	-moz-transition: transform .2s, -moz-opacity .2s, visibility .2s;
	-ms-transition: transform .2s, filter .2s, visibility .2s;
	-o-transition: transform .2s, opacity .2s, visibility .2s;
	transition: transform .2s, opacity .2s, visibility .2s;
}

.ag-select-box.slide-down {
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	-ms-transform: translateY(10px);
	-o-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.ag-select-box.slide-up {
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.175);
	-moz-box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.175);
}

.ag-select-box.active {
	visibility: visible;
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity = 100);
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.ag-select-box ul {
	display: block;
	cursor: pointer;
	overflow: hidden;
	background-color: #f0f0f0;
}

.ag-select-box ul>li {
	display: block;
	color: #444;
	margin: 0;
	padding: 0px 8px 0px 30px;
	position: relative;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

.ag-select-box ul>li:first-child {
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}

.ag-select-box ul>li:last-child {
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}

.ag-select-box ul>li:hover {
	color: #fff;
	background-color: #f0ad4e;
}

.ag-select-box ul>li .agfont {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #555;
	font-size: 12px;
	text-align: center;
	margin-top: -15px;
	overflow: hidden;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity = 0);
	position: absolute;
	left: -10px;
	top: 50%;
	z-index: 10;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

.ag-select-box ul>li.active .agfont {
	left: 0px;
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity = 100);
}

.ag-select-box ul>li span {
	display: block;
	min-height: 30px;
	font-size: 12px;
	padding: 7px 0px;
	word-wrap: break-word;
	word-break: break-all; /*强制英文单词断行*/
}

.ag-select-box ul>li:hover span {
	text-shadow: 1px 1px 2px rgba(0, 0, 0, .15);
}

.ag-select-box::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #f1f1f1;
}

.ag-select-box::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.ag-select-box::-webkit-scrollbar-thumb:hover {
	background: #f0ad4e;
}
/*==================== 消息控件 ====================*/
.ag-notification-container {
	display: block;
	width: 300px;
	position: fixed;
	z-index: 99999;
}

.ag-notification-container.top-left {
	top: 20px;
	left: 20px;
}

.ag-notification-container.top-center {
	top: 20px;
	left: 50%;
	margin-left: -150px;
}

.ag-notification-container.top-right {
	top: 20px;
	right: 30px;
}

.ag-notification-container.bottom-right {
	right: 30px;
	bottom: 20px;
}

.ag-notification-container.bottom-center {
	bottom: 20px;
	left: 50%;
	margin-left: -150px;
}

.ag-notification-container.bottom-left {
	bottom: 20px;
	left: 20px;
}

.notification-item {
	display: block;
	background-color: #5AB6DF;
	position: relative;
	overflow: hidden;
	padding: 10px;
	margin-bottom: 5px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .15);
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, .15);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, .15);
}

.top-right .notification-item, .bottom-right .notification-item {
	-webkit-transform: translateX(350px);
	-moz-transform: translateX(350px);
	-ms-transform: translateX(350px);
	-o-transform: translateX(350px);
	transform: translateX(350px);
	-webkit-animation: notification-slide-left .3s ease-in-out forwards;
	-moz-animation: notification-slide-left .3s ease-in-out forwards;
	-ms-animation: notification-slide-left .3s ease-in-out forwards;
	-o-animation: notification-slide-left .3s ease-in-out forwards;
	animation: notification-slide-left .3s ease-in-out forwards;
}

.top-left .notification-item.removing, .bottom-left .notification-item.removing
	{
	-webkit-animation: notification-slide-left-hide .3s ease-in-out forwards;
	-moz-animation: notification-slide-left-hide .3s ease-in-out forwards;
	-ms-animation: notification-slide-left-hide .3s ease-in-out forwards;
	-o-animation: notification-slide-left-hide .3s ease-in-out forwards;
	animation: notification-slide-left-hide .3s ease-in-out forwards;
}

.top-left .notification-item, .bottom-left .notification-item {
	-webkit-transform: translateX(-350px);
	-moz-transform: translateX(-350px);
	-ms-transform: translateX(-350px);
	-o-transform: translateX(-350px);
	transform: translateX(-350px);
	-webkit-animation: notification-slide-right .3s ease-in-out forwards;
	-moz-animation: notification-slide-right .3s ease-in-out forwards;
	-ms-animation: notification-slide-right .3s ease-in-out forwards;
	-o-animation: notification-slide-right .3s ease-in-out forwards;
	animation: notification-slide-right .3s ease-in-out forwards;
}

.top-right .notification-item.removing, .bottom-right .notification-item.removing
	{
	-webkit-animation: notification-slide-right-hide .3s ease-in-out
		forwards;
	-moz-animation: notification-slide-right-hide .3s ease-in-out forwards;
	-ms-animation: notification-slide-right-hide .3s ease-in-out forwards;
	-o-animation: notification-slide-right-hide .3s ease-in-out forwards;
	animation: notification-slide-right-hide .3s ease-in-out forwards;
}

.top-center .notification-item, .bottom-center .notification-item {
	-webkit-transform: scale(1, 0) translateY(-30px);
	-moz-transform: scale(1, 0) translateY(-30px);
	-ms-transform: scale(1, 0) translateY(-30px);
	-o-transform: scale(1, 0) translateY(-30px);
	transform: scale(1, 0) translateY(-30px);
	-webkit-animation: notification-scale-height .3s ease-in-out forwards;
	-moz-animation: notification-scale-height .3s ease-in-out forwards;
	-ms-animation: notification-scale-height .3s ease-in-out forwards;
	-o-animation: notification-scale-height .3s ease-in-out forwards;
	animation: notification-scale-height .3s ease-in-out forwards;
}

.top-center .notification-item.removing, .bottom-center .notification-item.removing
	{
	-webkit-animation: notification-scale-close .3s ease-in-out forwards;
	-moz-animation: notification-scale-close .3s ease-in-out forwards;
	-ms-animation: notification-scale-close .3s ease-in-out forwards;
	-o-animation: notification-scale-close .3s ease-in-out forwards;
	animation: notification-scale-close .3s ease-in-out forwards;
}

.notification-item.has-icon {
	padding-left: 50px;
}

.notification-item .notification-icon {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 30px;
	color: #fff;
	overflow: hidden;
	margin-top: -15px;
	position: absolute;
	left: 10px;
	top: 50%;
	z-index: 11;
}

.notification-item.notification-info {
	background-color: #5AB6DF;
}

.notification-item.notification-info:hover, .notification-item:hover {
	background-color: #4eabd4;
}

.notification-item.notification-success {
	background-color: #65CEA7;
}

.notification-item.notification-success:hover {
	background-color: #5ac29b;
}

.notification-item.notification-error {
	background-color: #FC8675;
}

.notification-item.notification-error:hover {
	background-color: #f07968;
}

.notification-item.notification-warn {
	background-color: #EBC85E;
}

.notification-item.notification-warn:hover {
	background-color: #e1be53;
}

.notification-item:last-child {
	margin-bottom: 0;
}

.notification-item .notification-close {
	display: block;
	width: 26px;
	height: 26px;
	line-height: 26px;
	color: #000;
	font-size: 12px;
	text-align: center;
	overflow: hidden;
	opacity: .3;
	-moz-opacity: .3;
	filter: alpha(opacity = 30);
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
}

.notification-item .notification-close:hover, .notification-item .notification-close:active
	{
	opacity: .6;
	-moz-opacity: .6;
	filter: alpha(opacity = 60);
}

.notification-item .notification-title {
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 0px 20px 7px 0px;
}

.notification-item .notification-content {
	display: block;
	color: #fff;
	max-height: 48px;
	overflow: hidden;
	word-wrap: break-word;
	word-break: break-all;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

.notification-item .notification-content:hover {
	max-height: 160px;
}

.notification-item.no-title .notification-content {
	margin-right: 20px;
}

/*手机-弹框标题样式*/
.mobile {
	background-color: #fff;
	overflow: hidden;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.mobile.iframe {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.mobile a.pop-close {
	display: none;
}

.mobile.no-title .pop-body {
	padding-top: 30px;
}

.mobile .pop-header {
	padding: 18px 22px 7px;
}

.mobile .pop-header .pop-title {
	color: #444;
	height: 24px;
	line-height: 24px;
	font-size: 18px;
	font-weight: 400;
	padding: 0;
	background-color: #fff;
	text-align: center;
	overflow: hidden;
}

.mobile.pop-container .pop-body {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	position: relative;
}

.mobile.pop-container.has-icon .pop-body {
	padding-top: 58px;
}

.mobile .pop-body .agfont.pop-wran, .mobile .pop-body .agfont.pop-success,
	.mobile  .pop-body .agfont.pop-error {
	width: 50px;
	height: 50px;
	line-height: 53px;
	font-size: 48px;
	margin-left: -24px;
	float: none;
	position: absolute;
	top: 10px;
	left: 50%;
	z-index: 9;
}

.mobile.pop-container.has-icon .pop-content {
	margin-left: 0;
}

.mobile.pop-container .pop-content {
	font-size: 15px;
	line-height: 18px;
	word-wrap: break-word;
	text-align: center;
	word-break: break-all;
	padding: 0 24px 18px;
	color: #999999;
}

.mobile.pop-container.has-icon .pop-content {
	padding: 18px 24px;
}

.mobile.no-title .pop-content {
	color: #353535;
}

.mobile.pop-container .pop-bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	padding: 0;
	position: relative;
}

.mobile.pop-container .pop-bottom:after {
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 1px;
	border-top: 1px solid #D5D5D6;
	color: #D5D5D6;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: scaleY(0.5);
	transform: scaleY(0.5);
}

.mobile .pop-bottom .pop-btn {
	display: block;
	height: 48px;
	line-height: 48px;
	font-size: 18px;
	color: #ff3b3b;
	background-color: transparent;
	border: none;
	margin: 0;
	padding: 0;
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.mobile.confirm .pop-bottom .pop-btn.pop-ok {
	color: #fff;
	background-color: #ff3b3b;
}

.mobile.confirm .pop-bottom .pop-btn.pop-ok:active {
	background-color: #c9302c;
}

.mobile .pop-bottom .pop-btn:active {
	color: #fff;
	background-color: #ff3b3b;
}

.mobile .pop-bottom .pop-btn.pop-cancel {
	color: #444;
}

.mobile .pop-bottom .pop-btn.pop-cancel:active {
	background-color: #EEEEEE;
}

.mobile.pop-container.iframe {
	-webkit-animation: none;
	-moz-animation: none;
	-ms-animation: none;
	animation: none;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.mobile.pop-container.iframe .pop-header {
	padding: 12px 40px;
}

.mobile.iframe a.pop-close {
	display: block;
	color: #444;
	width: 38px;
	height: 38px;
	line-height: 38px;
	margin-top: -19px;
	left: 4px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.mobile.iframe a.pop-close:hover, .mobile.iframe a.pop-close:active {
	background-color: #f1f1f1;
}

.mobile.pop-wait {
	width: 80px;
	min-height: 60px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.mobile.pop-wait.has-txt {
	width: 84px;
	min-height: 84px;
}

.mobile.pop-wait .agfont {
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 60px;
}

.mobile.pop-wait .wait-text {
	display: block;
	margin-top: 8px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}