body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
fieldset,
img {
  border: none;
}
input,
button {
  vertical-align: middle;
  color: #333;
  outline: none;
}
div {
  outline: none;
}
caption,
th {
  text-align: left;
}
a {
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a:hover {
  color: #c93535;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-decoration: none;
}
body {
  width: 100%;
  font: 14px 'Microsoft YaHei', Arial, Helvetica, sans-serif;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.clearfloat {
  *zoom: 1;
}
.clearfloat:after {
  display: block;
  content: "";
  clear: both;
  width: 0;
}
.redtxt {
  color: red;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
}
.wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.maintit {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 10px;
}
.btn {
  display: inline-block;
  background-color: #c93535;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  border-radius: 30px;
  outline: none;
  border: 2px solid #c93535;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.btn:hover {
  background-color: #fff;
  color: #c93535;
  font-weight: bold;
}
input[type="checkbox"] {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  margin-right: 5px;
  margin-top: -2px;
  border-radius: 5px;
}
input[type="checkbox"]:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 5px;
}
input[type="checkbox"]:checked:after {
  content: url(../images/gou.png);
  position: absolute;
  top: 0;
  left: 4px;
}
input[type="radio"] {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  margin-right: 5px;
  border-radius: 50%;
}
input[type="radio"]:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
}
input[type="radio"]:after {
  display: none;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background-color: #c93535;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
input[type="radio"]:checked:before {
  border-color: #c93535;
}
input[type="radio"]:checked:after {
  display: block;
}
.banner {
  margin-bottom: 40px;
}
.banner img {
  display: block;
  width: 100%;
}
.has-error .form-input {
  border: 1px solid red !important;
  box-shadow: 0 0 5px red;
}
.formbox {
  margin-top: 30px;
  font-size: 16px;
}
.formbox .form-row {
  margin-bottom: 25px;
}
.formbox .name {
  margin-bottom: 10px;
  font-weight: bold;
}
.formbox .name .sign {
  color: red;
}
.formbox .name .tip {
  color: #999999;
  font-size: 14px;
  font-weight: normal;
}
.formbox .form-input {
  width: 100%;
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 15px 10px;
  border: 0;
  outline: none;
  font-size: 16px;
}
.formbox .uploadbox .file-input {
  opacity: 0;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.formbox .uploadbox .upload-btn {
  background-color: #f4f4f4;
  width: 210px;
  height: 180px;
  text-align: center;
  line-height: 180px;
  border-radius: 8px;
  font-size: 0;
  position: relative;
}
.formbox .uploadbox .upload-btn img {
  vertical-align: middle;
}
.formbox .uploadbox .sigleimg {
  position: relative;
  background-color: #f4f4f4;
  width: 210px;
  height: 180px;
  text-align: center;
  line-height: 180px;
  border-radius: 8px;
  font-size: 0;
}
.formbox .uploadbox .sigleimg img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}
.formbox .uploadbox .file-container {
  display: none;
}
.formbox .uploadbox .close-img {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 28px;
  height: 28px;
  background-color: #c93535;
  border-radius: 50%;
  line-height: 28px;
  text-align: center;
  font-size: 0;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.formbox .uploadbox .close-img:hover {
  opacity: 0.8;
}
.formbox .uploadbox .close-img img {
  vertical-align: middle;
}
.formbox .uploadbox .showimgsbox .item {
  padding-bottom: 30px;
  margin: 30px 0;
  border-bottom: 1px solid #cccccc;
  display: flex;
  align-items: center;
  width: 100%;
}
.formbox .uploadbox .showimgsbox .item .imgbox {
  margin-right: 20px;
  position: relative;
}
.formbox .uploadbox .showimgsbox .item .txtbox {
  flex: 1;
}
.formbox .uploadbox .showimgsbox .item .txtrow {
  margin: 20px 0;
  display: flex;
  align-items: center;
}
.formbox .uploadbox .showimgsbox .item .name {
  margin-bottom: 0;
  flex: 1;
}
.formbox .uploadbox .showimgsbox .item .form-input {
  width: auto;
  flex: 8;
}
.formbox .uploadbox .file-video .item {
  position: relative;
  width: 100%;
  margin: 30px 0;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 30px;
}
.formbox .uploadbox .file-video video {
  width: 100%;
}
.formbox .chkbox {
  padding: 20px 30px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
}
.formbox .chkbox .chkitem {
  display: inline-block;
  vertical-align: top;
  width: 31%;
  margin: 10px 0;
  *zoom: 1;
}
.formbox .chkbox .chkitem:after {
  display: block;
  content: "";
  clear: both;
  width: 0;
}
.formbox .chkbox .chkitem .chkbtn {
  float: left;
  margin-top: 0;
}
.formbox .chkbox .chkitem .chktxt {
  float: left;
  width: calc(100% - 25px);
}
.formbox .chkbox .chkother {
  width: 100%;
}
.formbox .chkbox .input-ohter {
  border: 0;
  outline: none;
  border-bottom: 1px solid #cccccc;
  width: calc(100% - 65px);
  padding: 5px 10px;
}
.formbox .btnbox {
  margin-top: 40px;
}
.formbox .btnbox .btn {
  width: 100%;
  font-size: 18px;
}
.formbox .form-rowbox .form-rowcon {
  max-height: 307px;
  overflow-y: auto;
  position: relative;
}
.formbox .form-rowbox .name {
  font-size: 14px;
}
.formbox .form-rowbox .row {
  margin-bottom: 25px;
  *zoom: 1;
}
.formbox .form-rowbox .row:after {
  display: block;
  content: "";
  clear: both;
  width: 0;
}
.formbox .form-rowbox .row .close-btn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: #c93535;
  text-align: center;
  cursor: pointer;
  border: 0;
  font-size: 0;
  margin-top: 37px;
  margin-left: 10px;
}
.formbox .form-rowbox .row .close-btn:hover {
  opacity: 0.8;
}
.formbox .form-rowbox .row .close-btn img {
  vertical-align: middle;
}
.formbox .form-rowbox .item {
  float: left;
  width: calc((100% - 40px)/3 - 13.4px);
  margin-right: 20px;
  margin-bottom: 0;
}
.formbox .form-rowbox .item:nth-child(3) {
  margin-right: 0;
}
.formbox .form-rowbox .btnbox {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}
.formbox .form-rowbox .btnbox .btn {
  width: auto;
  font-size: 16px;
}
.moreinfo {
  text-align: center;
  padding: 50px;
}
.moreinfo .p {
  margin-bottom: 10px;
  font-size: 16px;
}
.moreinfo .ewmbox {
  width: 255px;
  margin: 20px auto 0;
  background-color: #000;
  padding: 10px;
}
.moreinfo .ewmbox img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .formbox .chkbox {
    padding: 20px;
  }
  .formbox .chkbox .chkitem {
    width: 48%;
  }
  .formbox .chkbox .chkother {
    width: 100%;
  }
  .formbox .uploadbox .showimgsbox .item {
    display: block;
  }
  .formbox .uploadbox .showimgsbox .item .txtrow {
    display: block;
  }
  .formbox .uploadbox .showimgsbox .item .name {
    margin-bottom: 10px;
  }
  .formbox .uploadbox .showimgsbox .item .form-input {
    width: 100%;
  }
  .formbox .uploadbox .upload-btn {
    width: 130px;
    height: 100px;
    line-height: 100px;
  }
  .formbox .uploadbox .upload-btn img {
    width: 45px;
  }
}
