html {
  background: #f5f5f5;
}
.tab-wrap {
  background: #FFFFFF;
  box-shadow: 1px 2px 6px 0px rgba(0,0,0,0.2);
}
.tab-wrap .container {
  display: flex;
}
.tab-wrap a {
  padding: 20px 10px;
  position: relative;
  display: block;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}
.tab-wrap a.active::after {
  background: var(--main-theme-color);
}
.tab-wrap a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.tab-wrap a + a {
  margin-left: 40px;
}

@media screen and (max-width: 750px) {
  .tab-wrap {
    background: #FFFFFF;
    box-shadow: 1px 2px 6px 0px rgba(0,0,0,0.2);
  }
  .tab-wrap .container {
    display: flex;
  }
  .tab-wrap a {
    padding: 20px 5px;
    position: relative;
    display: block;
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
  }
  .tab-wrap a.active::after {
    background: var(--main-theme-color);
  }
  .tab-wrap a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
  }
  .tab-wrap a + a {
    margin-left: 10px;
  }
}


.cons-wrap {
  padding-bottom: 60px;
}
.cons-wrap > .container {
  display: none;
}
.cons-wrap > .container.active {
  display: block;
}
.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 53px 0;
}
.tab > .col {
  width: 172px;
  height: 48px;
  background: unset;
  border: 1px solid var(--main-theme-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--main-theme-color);
  transition: all .3s ease;
  cursor: pointer;
}
.tab > .col.active {
  background: var(--main-theme-color);
  color: #fff;
}
.tab > .col + .col {
  margin-left: 15px;
}
.cons-wrap > .container > input {
  display: none;
}
.cons-wrap .form-content {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.2);
  border-radius: 20px;
  padding: 60px 30px;
}
.cons-wrap .form-content h2 {
  text-align: center;
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
}
.cons-wrap .form-content .rows {
  margin-bottom: 22px;
  padding-bottom: 40px;
}
.cons-wrap .form-content h3 {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  margin: 0 0 34px;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--main-theme-color);
}
.cons-wrap .form-content .row {
  /* display: flex; */
  /* align-items: center; */
  margin: 0 -40px;
}
/* .cons-wrap .form-content .row + .row {
  margin-top: 20px;
} */
.cons-wrap .form-content .row .col {
  display: flex;
  align-items: center;
  padding: 10px 40px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #4D4D4D;
  text-align: right;
}
.cons-wrap .form-content .row .col .wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.cons-wrap .form-content .rows .col .ct {
  width: 100px;
  margin-right: 15px;
}
/* .cons-wrap .form-content .rows:nth-of-type(2) .col .ct {
  width: 130px;
  margin-right: 15px;
} */
/* .cons-wrap .form-content .rows:nth-of-type(2) .row {
  margin: 0 -2px;
} */
/* .cons-wrap .form-content .rows:nth-of-type(2) .row + .row {
  margin-top: 20px;
} */
.cons-wrap .form-content .row .col .ct span {
  color: red;
}
.cons-wrap .form-content .row .col .ct i {
  font-style: normal;
}
.cons-wrap .form-content .row .col .con {
  flex: 1;
  display: flex;
  align-items: center;
}
.cons-wrap .form-content .row .col .input-wrap input {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
}
.cons-wrap .form-content .tc .col {
  align-items: start;
}
.cons-wrap .form-content .tc .ct {
  margin-top: 15px;
}
.cons-wrap .submit {
  display: block;
  width: 202px;
  height: 49px;
  background: var(--main-theme-color);
  border-radius: 4px;
  outline: unset;
  border: unset;
  color: #fff;
  margin: 0 auto;
  transition: all .3s ease;
  cursor: pointer;
  margin-top: 30px;
}
.cons-wrap .submit:hover {
  background: #009147;
}


@media screen and (max-width: 750px) {
  html {
    background: #fff;
  }
  .tab > .col {
    width: 155px;
  }
  .radio-wrap label + label {
    margin-left: unset;
  }
  .radio-wrap label {
    margin-right: 15px;
  }
  .cons-wrap .form-content {
    padding: 30px 0;
    background: unset;
    box-shadow: unset;
    border: unset;
  }
  .cons-wrap .form-content .row .col .con {
    flex-wrap: wrap;
  }
  .cons-wrap .form-content .rows .col .ct {
    width: 80px;
    margin-right: 10px;
  }
  .cons-wrap .form-content .row .col {
    padding: 10px 10px;
  }
  .cons-wrap .form-content .row {
    margin: 0 -10px;
  }
}
