﻿#popup_container {
	font-family: PingFang SC,"苹方","微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;

	width: 70%;
		
	background: #fff;
	
	color: #333;

	/* Gecko browsers */
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	
	/* Webkit browsers */
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;

	/* W3C syntax */
	border-top-left-radius: 5px;
	border-bottom-left-radius:  5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	
}

#popup_container .popup_bg{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	z-index: -1;
}

.handle_processing {
	width: 100%;
	text-align: center;
	margin-bottom: 15px;
	margin-top: 10px;
	font-size: 1.7rem;
	color: #000;
	line-height: 24px;
}

.ball-pulse > div:nth-child(0) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
  -moz-animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
  -o-animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
          animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08); }
.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
  -moz-animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
  -o-animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
          animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08); }
.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
  -moz-animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
  -o-animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
          animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08); }
.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
  -moz-animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
  -o-animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
          animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08); }
          
.ball-pulse > div:nth-child(4) {
  -webkit-animation: scale 0.75s 0.48s infinite cubic-bezier(.2, .68, .18, 1.08);
  -moz-animation: scale 0.75s 0.48s infinite cubic-bezier(.2, .68, .18, 1.08);
  -o-animation: scale 0.75s 0.48s infinite cubic-bezier(.2, .68, .18, 1.08); 
          animation: scale 0.75s 0.48s infinite cubic-bezier(.2, .68, .18, 1.08); }

.ball-pulse > div:nth-child(5) {
  -webkit-animation: scale 0.75s 0.60s infinite cubic-bezier(.2, .68, .18, 1.08);
  -moz-animation: scale 0.75s 0.60s infinite cubic-bezier(.2, .68, .18, 1.08);
  -o-animation: scale 0.75s 0.60s infinite cubic-bezier(.2, .68, .18, 1.08);
          animation: scale 0.75s 0.60s infinite cubic-bezier(.2, .68, .18, 1.08); }
                
.ball-pulse > div {
  background-color: rgba(43,168,102,0.7)!important;;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block; 
}

@keyframes scale {
  30% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3); }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } 
}

@-webkit-keyframes scale {
  30% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3); }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } 
}

#popup_container {-webkit-animation:AlertBoxMove  0.5s both 0s;}

@-webkit-keyframes AlertBoxMove{
	0%{top:30%; opacity: 0}
	100%{top: 30%; opacity: 1;}
}

.box_btn_OK {
	display:block;
	width:100%;
	cursor:pointer;
	border:0px;
	font-family: PingFang SC,"苹方","微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	height:45px;
	line-height:45px;
	color: #2ba866;
	background: #fff;
	text-decoration: none;
	text-align:center;
	
	/* Gecko browsers */
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 5px;
	
	/* Webkit browsers */
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-top-right-radius: 0px;
	-webkit-border-bottom-right-radius: 5px;

	/* W3C syntax */
	border-top-left-radius: 0px;
	border-bottom-left-radius:  5px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 5px;
}


.box_btn_left {
	display:block;
	float:left;
	width:50%;
	cursor:pointer;
	border:0px;
	font-family: PingFang SC,"苹方","微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	height:45px;
	line-height:45px;
	color: #2ba866;
	background: #fff;
	text-decoration: none;
	text-align:center;
	
	/* Gecko browsers */
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 0px;
	
	/* Webkit browsers */
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-top-right-radius: 0px;
	-webkit-border-bottom-right-radius: 0px;

	/* W3C syntax */
	border-top-left-radius: 0px;
	border-bottom-left-radius:  5px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;	
}

.box_btn_right {
	display:block;
	margin-left:50%;
	cursor:pointer;
	border:0px;
	font-family: PingFang SC,"苹方","微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	height:45px;
	line-height:45px;
	color: #999;
	background: #fff;
	border-left: solid 1px #e7e7e7;
	text-decoration: none;
	text-align:center;
	
	/* Gecko browsers */
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 5px;
	
	/* Webkit browsers */
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	-webkit-border-bottom-right-radius: 5px;

	/* W3C syntax */
	border-top-left-radius: 0px;
	border-bottom-left-radius:  0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 5px;
}


#popup_title {
	font-size: 17px;
	font-weight: bold;
	text-align: center;
	line-height: 50px;
	color: #000;
	background: #fff;
	cursor: default;
	padding: 0em;
	margin: 0em;
	
	/* Gecko browsers */
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 0px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 0px;
	
	/* Webkit browsers */
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 0px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 0px;

	/* W3C syntax */
	border-top-left-radius: 5px;
	border-bottom-left-radius:  0px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 0px;
}

#popup_content {
	padding-top:0px;
	padding-bottom:0px;
	margin: 0em;
	background: #fff;
	border-radius: 0 0 5px 5px;

}

#popup_content.prompt {
	background-image: url(../images/help.gif);
}

#popup_message {
	text-align:center;
	font-size:15px;
	color: #666;
	line-height:24px;
	padding-left:12%;
	padding-right:12%;
	padding-top:10px;
	padding-bottom:20px;
}

#popup_panel {
	width:100%;
	text-align: center;
	margin: 0px;
	padding:0px;
	border-top: solid 1px #e7e7e7;
}

#popup_panel1 {
	width:100%;
	text-align: center;
	margin: 0px;
	padding:0px;
}

#popup_prompt {
	margin: .5em 0em;
}