.dialog-box {
	bottom: 20px;
	display: none;
	font: 14px "å¾®è½¯é›…é»‘";
	height: auto !important;
	position: fixed;
	right: 20px;
	z-index: 99999;
	width: auto !important;
}
.dialog-box-container.normal::after {
  content: "";
  display: block;
}
.dialog-box-content:after{   content: "";
  display: block; clear: both;}
	.dialg-content:after{   content: "";
	  display: block; clear: both;}
.dialog-box-container.normal img {
  float: left;
  margin-right: 10px;
  width: 85px;
}
.dialg-content {
  margin: 0 0 10px;
}
.show{
	display: block;
}
.normal{
	background: #fff;
}
.correct{
	border-top: 4px solid #66be8c;
	background: #f8fffb;
}
.error{
	border-top: 4px solid #f5694b;
	background: #fff8f7;
}
.success .dialog-box-container.normal {
  background: #fff none repeat scroll 0 0;
  border:5px solid #29b87e;
  box-shadow: 0 0 10px -5px #000;
  padding: 10px;
  width: 370px;
}
.danger .dialog-box-container.normal {
  background: #fff none repeat scroll 0 0;
  border: 5px solid #F2584C;
  box-shadow: 0 0 10px -5px #000;
  padding: 10px;
  width: 370px;
}
.dialog-box-container{
	position: relative;
	margin: 0 auto;
	border-radius: 5px;
	box-shadow: 0 0 10px #bbb;
}
.dialog-box-title {
  color: #333;
  display: block;
  height: auto;
  line-height: 34px;
  margin: 0 0 5px;
  padding: 0;
  width: 100%;
}
.dialog-box-title:after{content: ""; display: block; clear: both}
.dialog-box-title h3 {
  color: #333;
  float: left;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 6px;
}
.dialog-box-close {
  color: #333;
  cursor: pointer;
  display: inline-block;
  float: right;
  font-size: 26px;
  font-weight: normal;
  margin-left: 20px;
  position: absolute;
  right: 5px;
  top: 0;
}
.dialog-box-close:hover{
	color: #f5694b;
}
.dialog-box-content {
  color: #eee;
  font-family: "å¾®è½¯é›…é»‘";
  font-size: 14px;
  height: auto !important;
  line-height: 24px;
  margin: 0;
  padding: 0;
}
.dialog-btn{
	height:34px;
	padding: 0 20px 20px;
	text-align: center;
}
.dialog-btn span{
	width: 90px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	display: inline-block;
	border-radius: 3px;
	margin: 0 10px;
	cursor: pointer;
}
.dialog-btn-cancel{
	background: #ddd;
}
.dialog-btn-cancel:hover{
	background: #d6d6d6;
}
.dialog-btn-confirm{
	color: #fff;
	background: #66be8c;
}
.dialog-btn-confirm:hover{
	background: #58B781;
}

#dialog-box-mask{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99998;
	opacity: .3;
	filter: alpha(opacity=30);
	background: #000;
	display: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

#dialog-box-iframe body{
	margin: 0;
	padding: 0;
	border: 0;
}
/* effect */

/* effect-fade */
.effect-fade .dialog-box-container{
	-webkit-transform: scale(0.6);
	-ms-transform: scale(0.6);
	transform: scale(0.6);
	opacity: 0;
	transition: all .3s;
}
.show.effect-fade .dialog-box-container{
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* effect-newspaper */
.effect-newspaper .dialog-box-container{
	-webkit-transform: scale(0) rotate(720deg);
	-ms-transform: scale(0) rotate(720deg);
	transform: scale(0) rotate(720deg);
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.show.effect-newspaper .dialog-box-container{
	-webkit-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	opacity: 1;
}

/* effect-fall */
.effect-fall{
	-webkit-perspective: 1300px;
	perspective: 1300px;
}
.effect-fall .dialog-box-container{
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(600px) rotateX(20deg);
	-ms-transform: translateZ(600px) rotateX(20deg);
	transform: translateZ(600px) rotateX(20deg);
	opacity: 0;
}
.show.effect-fall .dialog-box-container{
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform: translateZ(0px) rotateX(0deg);
	-ms-transform: translateZ(0px) rotateX(0deg);
	transform: translateZ(0px) rotateX(0deg);
	opacity: 1;
}

/* effect-scaled */
.effect-scaled .dialog-box-container{
	-webkit-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.show.effect-scaled .dialog-box-container{
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* effect-flip-horizontal */
.effect-flip-horizontal{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}
.effect-flip-horizontal .dialog-box-container{
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-70deg);
	-ms-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}
.show.effect-flip-horizontal .dialog-box-container{
	-webkit-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;
}

/* effect-flip-vertical */
.effect-flip-vertical{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}
.effect-flip-vertical .dialog-box-container{
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-70deg);
	-ms-transform: rotateX(-70deg);
	transform: rotateX(-70deg);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}
.show.effect-flip-vertical .dialog-box-container{
	-webkit-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* effect-sign */
.effect-sign{
	-webkit-perspective: 1300px;
	perspective: 1300px;
}
.effect-sign .dialog-box-container{
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-60deg);
	-ms-transform: rotateX(-60deg);
	transform: rotateX(-60deg);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.show.effect-sign .dialog-box-container{
	-webkit-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}
#sucess_Message.dialog-box.danger .fa.fa-bell {
  background: #f2584c none repeat scroll 0 0;
  border: 1px solid #f2584c;
  border-radius: 30px;
  color: #eee;
  float: left;
  font-size: 15px;
  height: 35px;
  left: 12px;
  margin-right: 10px;
  padding: 9px 0;
  position: static;
  text-align: center;
  width: 35px;
}
#sucess_Message.dialog-box.success  .fa.fa-bell {
  background: #29b87e none repeat scroll 0 0;
  border: 1px solid #29b87e;
  border-radius: 30px;
  color: #eee;
  float: left;
  font-size: 15px;
  height: 35px;
  left: 12px;
  margin-right: 10px;
  padding: 9px 0;
  position: static;
  text-align: center;
  width: 35px;
}
