body {
  font-family: "Helvetica Neue", "Helvetica", "Arial", "STHeitiTC-Light", "Microsoft JhengHei", sans-serif;
  background-color: #f5eee2;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

header h1 {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 336px;
  background-image: url(/images/topbanner.png);
  background-repeat: no-repeat;
  background-position: top center;
  text-indent: -9999px;
}

@media only screen and (max-width: 768px) {
  header h1 {
    background-size: 180%;
    height: 250px;
  }
}

@media only screen and (max-width: 480px) {
  header h1 {
    background-size: 200%;
    height: 150px;
  }
}

@media only screen and (max-width: 320px) {
  header h1 {
    height: 120px;
  }
}

.con {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.con h2 {
  text-align: center;
  font-size: 2em;
  font-weight: normal;
}

.con .formstyle {
  background-color: #fcf8eb;
  border-radius: 8px;
  width: 80%;
  margin: 15px auto;
  padding: 30px;
}

.con .formstyle h3 {
  text-align: center;
  font-size: 1.5em;
  font-weight: normal;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  width: 80%;
}

@media only screen and (max-width: 1024px) {
  .con .formstyle {
    width: 95%;
    margin: 15px 1.5%;
    padding: 15px 1%;
  }
}

@media only screen and (max-width: 480px) {
  .con {
    width: 98%;
  }
  .con h2 {
    margin: 0;
    font-size: 1.5em;
  }
  .con .formstyle {
    width: 90%;
    margin: 15px auto;
    padding: 3%;
  }
  .con .formstyle h3 {
    font-size: 1.2em;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group:before {
  content: "";
  display: table;
}

.form-group:after {
  content: "";
  display: table;
  clear: both;
  zoom: 1;
}

.form-group label.title {
  font-size: 1.1em;
  width: 120px;
  text-align: right;
  padding-right: 10px;
  display: inline-table;
  vertical-align: middle;
}

.form-group label.title b {
  display: block;
  font-size: 80%;
}

.form-group span.wrap {
  width: calc(100% - 160px);
  display: inline-block;
}

.form-group span.wrap:before {
  content: "";
  display: table;
}

.form-group span.wrap:after {
  content: "";
  display: table;
  clear: both;
  zoom: 1;
}

.form-group span.wrap img {
  max-width: 400px;
}

.form-group span.wrap em {
  display: inline-table;
  vertical-align: middle;
  font-style: normal;
  padding-left: 5px;
  line-height: 1;
}

.form-group span.wrap em b {
  font-size: 80%;
}

.form-group input[type=text], .form-group input[type=num], .form-group textarea, .form-group input[type=password], .form-group input[type=email], .form-group input[type=number] {
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #666666;
  cursor: pointer;
  font-size: 1em;
  padding: 10px;
  width: 50%;
}

.form-group select {
  width: 37%;
  height: 40px;
  padding: 5px;
  border: 1px solid #eee;
}

.form-group input[type=radio] {
  opacity: 0;
  width: 0;
}

.form-group input[type=radio] + label {
  margin: 15px 0 0 30px;
  position: relative;
  cursor: pointer;
}

.form-group input[type=radio] + label::before {
  content: ' ';
  position: absolute;
  left: -25px;
  top: -2px;
  width: 18px;
  height: 18px;
  border-radius: 18px;
  display: block;
  background: white;
  border: 1px solid #A9A9A9;
}

.form-group input[type=radio] + label::after {
  content: ' ';
  position: absolute;
  left: -24px;
  top: -1px;
  width: 18px;
  height: 18px;
  display: block;
  z-index: 1;
  background-color: #000;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  border-radius: 18px;
}

.form-group input[type=radio]:checked + label::after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.form-group input.w_q {
  width: 15%;
  display: inline-block;
  padding-top: 8px;
}

.form-group span.w_q {
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
}

.form-group input.w_small {
  width: 8%;
}

.form-group input.w_large {
  width: 92%;
}

.form-group input.w_mid {
  width: 70%;
}

.form-group .tfl {
  float: left;
}

.form-group .submitstyle {
  border: none;
  border-radius: 7px;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

@media only screen and (max-width: 768px) {
  .form-group label.title {
    vertical-align: top;
  }
  .form-group input[type=text], .form-group input[type=num], .form-group textarea, .form-group input[type=password], .form-group input[type=email] {
    width: 80%;
  }
  .form-group input.w_small {
    width: 20%;
  }
  .form-group input.w_large {
    display: block;
    width: 80%;
    margin-top: 10px;
  }
  .form-group input.w_mid {
    width: 80%;
    margin-top: 10px;
  }
  .form-group input.w_q_mobile {
    width: 45%;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .form-group label.title {
    width: 100%;
    display: block;
    text-align: left;
    margin-bottom: 5px;
  }
  .form-group span.wrap {
    width: 100%;
    display: block;
  }
  .form-group select {
    width: 96%;
  }
  .form-group input[type=text], .form-group input[type=num], .form-group textarea, .form-group input[type=password], .form-group input[type=email] {
    width: 90%;
  }
  .form-group .submitstyle {
    margin-bottom: 5px;
  }
  .form-group input.w_small {
    width: 20%;
  }
  .form-group input.w_large {
    display: block;
    width: 90%;
    margin-top: 10px;
  }
  .form-group input.w_q_mobile {
    width: 51%;
    margin-bottom: 10px;
  }
  .form-group span.w_q_block {
    display: block;
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 320px) {
  .form-group input.w_q_mobile {
    width: 90%;
    margin-bottom: 10px;
  }
  .form-group input.w_small {
    width: 25%;
  }
}

.half {
  display: inline-block;
  width: 48%;
}

.half input[type=text], .half input[type=num], .half textarea, .half input[type=password], .half input[type=email] {
  width: 90%;
}

.center {
  width: 60%;
  padding-left: 25%;
}

@media only screen and (max-width: 768px) {
  .half {
    display: block;
    width: 100%;
  }
  .center {
    width: 80%;
    padding-left: 10%;
  }
}

.btn_group {
  text-align: center;
}

.btn_group .btn {
  border: none;
  background-color: #9f8754;
  padding: 15px 25px;
  color: #fff;
  margin-top: 15px;
  margin-left: 15px;
  font-size: 1.5em;
}

.btn_group .btn_clear {
  background-color: rgba(159, 135, 84, 0.7);
}

@media only screen and (max-width: 320px) {
  .btn_group .btn {
    padding: 10px 17px;
    margin-left: 5px;
  }
}

footer {
  background-color: #b9a272;
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: center;
  color: #fff;
}

footer p {
  margin: 0;
}

.btnTop {
  cursor: pointer;
  width: 3em;
  z-index: 3;
  left: auto;
  top: auto;
  right: 2.5em;
  bottom: 2.5em;
  position: fixed;
  padding: 0;
  margin: 0;
  display: none;
}

.btnTop img {
  max-width: 100%;
  height: auto;
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .btnTop {
    right: 0.5em;
    width: 2.5em;
    bottom: 0.5em;
  }
}

.typesel {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: auto;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}

.typesel li {
  width: 25%;
  background-color: #fff;
  padding: 15px;
  border: 2px solid #f3deba;
  margin: 15px;
  font-size: 125%;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .typesel li {
    width: 30%;
  }
}

@media screen and (max-width: 480px) {
  .typesel li {
    display: block;
    width: 70%;
    margin: 15px auto;
    height: auto;
  }
}
/*# sourceMappingURL=style.css.map */