.dialog {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(51, 51, 51, 0.62);
  display: none;
}

.dialog .cancel {
  width: 36px;
  height: 42px;
  background: url(./../images/components/cancel.png) center no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 10000;
  transform: translate3d(185px, -315px, 0);
}

.dialog .cancel:hover {
  cursor: pointer;
}

.dialog .form {
  width: 388px;
  height: 550px;
  background: #fff;
  border-radius: 6px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  padding: 30px 56px 0;
}

.dialog .form h4 {
  font-size: 24px;
  font-weight: 600;
  color: #00a1e3;
  line-height: 33px;
  text-align: center;
  margin: 0;
  margin-bottom: 17px;
}

.dialog .form p {
  font-size: 16px;
  line-height: 22px;
  color: #333;
  line-height: 22px;
  margin-bottom: 10px;
}

.dialog .form p span {
  color: #eb4e3d;
}

.dialog .form input {
  width: 276px;
  height: 35px;
  border-radius: 2px;
  border: 1px solid #cccccc;
  margin-bottom: 20px;
  padding: 0 15px;

}

::-webkit-input-placeholder {
  color: #999;
}

.dialog .form button {
  width: 280px;
  height: 40px;
  background: #ffb514;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  border: none;
  margin-top: 7px;
}

.dialog .form .information {
  font-size: 14px;
  color: #333;
  line-height: 20px;
  margin-top: 16px;
  text-align: center;
}