.popMask {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  z-index:1009;
}

.popMain {
  position: fixed;
  overflow: hidden;
  display: none;
  font-size: 12px;
  border-radius: 4px;
  z-index:1010;
}

.popMain .info_icon {
  background: #fff url(images/info.png) no-repeat center center;
}
.popMain .alert_icon {
  background: #fff url(images/info.png) no-repeat center center;
}
.popMain .success_icon {
  background: #fff url(images/success.png) no-repeat center center;
}

.popMain .error_icon {
  background: #fff url(images/error.png) no-repeat center center;
}

.popMain .loading_icon {
  background: #fff url(images/loading.gif) no-repeat center center;
}

.popTitle {
  background: #fff;
  display: none;
}

.popTitle .text {
  margin-left: 12px;
  line-height: 28px;
}

.popTitle .icon {
  float: left;
  margin: 6px 0 0 6px;
  width: 16px;
  height: 16px;
}

.popTitle .close {
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 16px;
  margin: 0px 12px;
  font-weight: 900;
  cursor: pointer;
}

.popTitle .close:hover {
  color: #ddd;
}

.popContent {
  background: #fff;
  overflow: auto;
  padding: 20px 40px;
  position: relative;
  max-width: 320px;
  min-width: 120px;
}

.popContent .layer_msg {
  width: 80px;
  height: 80px;
  position:absolute;
  left: 50%;
  margin-left: -40px;
  top:0;
}

.popContent p {
  padding-top: 60px;
  margin: 0;
  color: #797979;
  text-align: center;
  font-size: 16px;
  max-width: 320px;
  padding-bottom: 50px;
}

.popContent button {
  border: none;
  cursor: pointer;
  position:absolute;
  left: 50%;
  margin-left: -40px;
  bottom: 20px;
  padding: 6px 20px;
  background-color: #AEDEF4;
  color: #fff;
  width: 80px;
}

.popContent button:hover {
  background-color: #AEDEF4;
}

.popContent button:active {
  background-color: #AEDEF4;
}