@charset "UTF-8";

* {
  /* font-family: "Roboto", "Arial", "NotoSans", "Noto Sans TC", "微軟正黑體", "Meiryo", "Hiragino Kaku Gothic Pro", "sans-serif"; */
  font-family: "Microsoft JhengHei UI", "微軟正黑體", "Microsoft JhengHei", "Microsoft YaHei UI", "微軟雅黑", "Microsoft YaHei", sans-serif;
  font-weight: normal;
  box-sizing: border-box;
  /* outline: 1px solid red;  */
  list-style: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  /* font-family: "Roboto", "Arial", "NotoSans", "Noto Sans TC", "微軟正黑體", "Meiryo", "Hiragino Kaku Gothic Pro", "sans-serif"; */
  font-family: "Microsoft JhengHei UI", "微軟正黑體", "Microsoft JhengHei", "Microsoft YaHei UI", "微軟雅黑", "Microsoft YaHei", sans-serif;

  color: #000;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}

#main_content_child {
  background-color: transparent;
  /* background-color: rgb(234, 240, 234); */
}

#supply-btn {
  cursor: pointer;
}

.activity_container {
  max-width: 630px;
  margin: auto;
}

.activity_container .form {
  /* padding: 60px 50px; */
}

.max_width530{
  max-width: 530px;
}

.form .row {
  display: flex;
  margin-left: 0px;
  margin-right: 0px;
}

.form .row .row-col {
  width: 100%;
}

.form .row .row-col input {
  margin-bottom: 10px;
  width: 100%;
  border: 2px solid #D6CABE;
  padding: 18px 30px;
  letter-spacing: 0px;
  font-size: 24px;
  border-radius: 2px;
}

.form .row .row-col input::placeholder {
  color: #000;
  letter-spacing: 0px;
}

.form .row .row-col select {
  width: 100%;
  border: 2px solid #D6CABE;
  padding: 18px 30px;
  letter-spacing: 2px;
  font-size: 24px;
  padding-right: 30px;
  border-radius: 0px;
  color: #000;
}

.form .row .row-col:nth-child(1) select {
  width: 95%;
}

.agree_block {
  /* text-align: center; */
  margin-top: 30px;
  margin-bottom: 40px;
  position: relative;
}

.agree_block label {
  font-weight: normal;
  color: #000;
  letter-spacing: 0px;
  font-size: 22px;
  cursor: pointer;
  padding-left: 52px;
  margin-bottom: 0px;
}

.agree_block label a {
  font-weight: normal;
  color: #000;
  letter-spacing: 0px;
  border-bottom: 1px solid#9C7F62;
  text-decoration: none;
}

.full_width {
  text-align: center;
}

.mb-40{
  margin-bottom: 40px;
}

.form-tips {
  color: #222;
  font-size: 18px;
  padding: 0;
}

.form-tips li {
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

#supply-btn {
  border-bottom: 1px solid#80806f;
}

.btn_notic {
  font-size: 22px;
  letter-spacing: 2px;
}

#confirm-btn {
  max-width: 100%;
  cursor: pointer;
}

.agree_block input {
  display: none;
}

.agree_block i {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #D6CABE;
  transform: translate(0, 10%);
  top: -10px;
  pointer-events: none;
  background-color: #fff;
}

.agree_block input:checked~i {
  background-image: url(../images/icon-check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form .row .row-col select {
  /*移除箭頭樣式*/
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;

  /*改變右邊箭頭樣式*/
  background: url("../images/arrow_down_pc.png") no-repeat right center transparent;
  background-size: 7%;
  background-position-x: 97%;
  outline: none;
  background-color: #fff;
}

/*IE隱藏箭頭樣式*/
.form .row .row-col select::-ms-expand {
  display: none;
}

/*# sourceMappingURL=default.css.map */
.thank_container {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
  top: -1px;
}

.thank_container .thank {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 59%;
  padding-top: 30%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url(../images/thanks_page.jpg);
  z-index: 999;
}

.thank_container .thank .close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.thank_container .thank .close_btn::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background-color: black;
  border-radius: 3px;
  transform: rotate(45deg);
}

.thank_container .thank .close_btn::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background-color: black;
  border-radius: 3px;
  transform: rotate(-45deg);
}

.btn-send {
  color: #fff;
  /* background-color: #222; */
  background-image: url(../images/submit_btn.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 20px;
  /* padding: 15px 62px 25px; */
  border-radius: 2px;
  width: 205px;
  padding-top: 15px;
  padding-bottom: 25px;
}

.btn-send.disable{
  pointer-events: none;
}

.btn:hover {
  color: #fff;
}

.btn:focus {
  color: #fff;
  outline: none;
}

@media screen and (max-width:767px) {

  .mb-40{
    margin-bottom: 10px;
  }

  .thank_container .thank {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 620px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url(../images/thanks_page.jpg);
    z-index: 999;
  }

  .activity_container .form {
    /* padding: 20px 10px; */
  }

  .form .row .row-col input {
    margin-bottom: 20px;
    width: 100%;
    border: 1px solid #D7C29D;
    padding: 8px 13px;
    letter-spacing: 1px;
    font-size: 18px;
  }

  .form .row .row-col select {
    margin-bottom: 20px;
    width: 100%;
    border: 1px solid #D7C29D;
    padding: 8px 13px;
    letter-spacing: 1px;
    font-size: 18px;
    padding-right: 20px;
    background-color: #fff;

  }

  .form .row .row-col:nth-child(1) select {
    width: 96%;
  }

  .form .row {
    display: flex;
    /* flex-wrap: wrap; */
  }

  .form .row .row-col select {
    background-size: 7%;
  }

  .agree_block {
    margin-top: 0px;
    margin-bottom: 25px;
    position: relative;
  }

  .agree_block label {
    font-weight: normal;
    color: #797979;
    letter-spacing: 2px;
    font-size: 18px;
    cursor: pointer;
    padding-left: 52px;
    margin-bottom: 0px;
  }

  .agree_block label a {
    color: #9C7F62;
  }

  .form-tips {
    color: #6C6C6C;
    font-size: 12px;
    padding: 0;
  }

  .btn-send {
    color: #fff;
    font-size: 20px;
    border-radius: 2px;
    margin-bottom: 0px;
  }

  .btn:hover {
    color: #fff;
  }

  .btn:focus {
    color: #fff;
    outline: none;
  }

  .btn-send span {
    font-family: monospace;
    position: relative;
    bottom: 2px;
  }
}

@media screen and (max-width:330px) {
  .form .row .row-col input {
    margin-bottom: 14px;
    width: 100%;
    border: 1px solid #D7C29D;
    padding: 4px 13px;
    letter-spacing: 1px;
    font-size: 18px;
  }

  .form .row .row-col select {
    margin-bottom: 20px;
    width: 100%;
    border: 1px solid #D7C29D;
    padding: 4px 13px;
    letter-spacing: 1px;
    font-size: 16px;
    padding-right: 20px;
    background-color: #fff;
  }

  .btn-send {
    font-size: 20px;
    border-radius: 2px;
    margin-bottom: 0px;
  }

  .agree_block {
    margin-top: 0px;
    margin-bottom: 20px;
    position: relative;
  }
}
