.wrap .head {
  width: 100%;
  height: 120px;
  background-color: rgb(242, 242, 242);
  opacity:.7;
  filter:alpha(opacity=70);
}

.wrap .head .head-inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.head .head-inner .logo {
  width: 210px;
  height: 74px;
}

.head .head-inner .logo img {
  width: 100%;
  height: 100%;
}

.wrap .main {
  width: 100%;
  background-color: #FAF7F8;
  /*padding-top: 60px;*/
  overflow-y: auto;
}

.wrap .main .main-inner {
  width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
}

.main-inner form {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 30px;
  margin-bottom: 50px;
}

form h2 {
  text-align: center;
  font-size: 30px;
  margin: 40px 0;
}

form .form-item {
  padding: 20px 0;
  display: flex;
  align-items: center;
}

form .form-item label {
  height: 20px;
  width: 120px;
  display: inline-block;
  font-size: 16px;
  text-align: right;
  margin-right: 20px;
  float:left;
}

.form-item .form-con {
  display: inline-flex;
  float:left;
}

.form-item .form-con input {
  width: 420px;
  height: 40px;
  border: 1px solid rgb(210, 210, 210);
  border-radius: 6px;
  padding: 0 14px;
}

.form-item .form-con input[type="checkbox"] {
  width: 14px;
  height: 14px;
  background: rgb(248, 248, 248);
  border: 1px solid rgb(102, 102, 102);
  border-radius: 0;
  padding: 0;
  margin-right: 4px;
}

.form-item .form-con input[type="checkbox"]:checked {
  background-image: url(../img/icon-check.png);
  background-size: 100% 100%;
}

.form-item.code-item .form-con input {
  width: 260px;
  margin-right: 30px;
}

.form-item.code-item .form-con .send {
  width: 130px;
  height: 40px;
  border: 1px solid rgb(210, 210, 210);
  border-radius: 6px;
  font-size: 16px;
  color: #5086FF;
}

.form-item .form-con .agree {
  color: #999999;
  float:right;
}

.form-item .form-con .agree .protol {
  color: #EF1B1B;
}

form .form-item .tip {
  margin-left: 30px;
  color: #666666;
}

.form-item .form-con button {
  width: 120px;
  height: 42px;
  border-radius: 6px;
  font-size: 16px;
}

.form-con button.submit {
  background-color: #E42020;
  color: #ffffff;
}

.form-con button.submit.disabled {
  background-color: #E5E5E5;
  color: #666666;
}

.form-con button.reset {
  background-color: #E5E5E5;
  color: #666666;
  margin-left: 40px;
}

.foot {
  text-align: center;
  padding: 0 0 40px;
  background-color: #FAF7F8;
}

.foot p {
  line-height: 30px;
  color: #666666;
}