.common_dialog {
  width: 100%;
  height: 100%;
  background: url(../images/optBg.png);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.common_dialog .box_wrapper {
  margin-top:15%;
}
.common_dialog .box {
  width: 300px;
  background: #fff;
  border-radius: 4px;
  padding: 40px 0;
  margin: 0 auto;
  position: relative;
}
.common_dialog .box_close {
  width: 35px;
  height: 35px;
  background: url(../images/icon1.png) no-repeat -275px -58px;
  display: inline-block;
  position: absolute;
  right: -35px;
  top: -20px;
  cursor: pointer;
}
.common_dialog .boxIcon {
  width: 43px;
  height: 43px;
  display: block;
  margin: 0 auto 5px auto;
}
.common_dialog .boxIcon.success {
  background: url(../images/icon1.png) no-repeat -270px -4px;
}
.common_dialog .boxIcon.failed {
  background: url(../images/faile.png) no-repeat left top;
  background-size: 43px 43px;
}
.common_dialog .boxIcon.notice {
  background: url(../images/notice.png) no-repeat left top;
  background-size: 43px 43px;
}
.common_dialog h2 {
  line-height: 30px;
  font-size: 14px;
  color: #222;
  text-align: center;
  font-weight: normal;
}
.common_dialog p {
  line-height: 40px;
  font-size: 14px;
  color: #666;
  text-align: center;
}
.common_dialog .buttons {
  text-align: center;
  margin-top: 20px;
}
.common_dialog .buttons a {
  width: 75px;
  height: 30px;
  border: 1px solid #ff8342;
  color: #ff8342;
  margin-right: 30px;
  display: inline-block;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  line-height: 30px;
}
.common_dialog .buttons .operation_requre {
  color: #fff;
  background: #ff8342;
  margin-right: 0;
}
