@charset "UTF-8";
/* CSS Document */
.condition .textEditor::-webkit-scrollbar {
  -webkit-appearance: none;
}
.condition .textEditor::-webkit-scrollbar:vertical {
  width: 5px;
}
.condition .textEditor::-webkit-scrollbar:horizontal {
  height: 8px;
}
.condition .textEditor::-webkit-scrollbar-thumb {
  background-color: #ffd79b;
  border-radius: 5px;
  border: 0;
}
.condition .textEditor::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #fff3e1;
}

/*註冊頁面*/
.condition .textEditor {
  height: 250px;
  margin: 0;
  padding: 15px;
  border: 1px solid #f4e9da;
  border-radius: 4px;
  font-size: 13px;
  background-color: #fff;
  overflow-y: scroll;
}
.condition .agree {
  margin-top: 20px;
  margin-bottom: 20px;
}
.condition .agree label {
  position: relative;
  display: flex;
  cursor: pointer;
}

/*會員資料*/
@media (min-width: 1181px) {
  .formBox > [class*=g-]:nth-of-type(odd) {
    border-right: 0;
  }
}
@media (min-width: 641px) and (max-width: 1180px) {
  .formBox input[type=text],
.formBox input[type=password] {
    width: 100%;
  }
}
.formBox .addressList {
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .formBox .addressList select[name=data_city],
.formBox .addressList select[name=data_town],
.formBox .addressList input[name=data_zip] {
    width: 100% !important;
  }
  .formBox .addressList select[name=data_city], .formBox .addressList select[name=data_town] {
    margin-bottom: 10px;
  }
}
@media (min-width: 1181px) {
  .formBox .checkArea {
    margin-top: 30px;
  }
}

.noteTxt {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #ac9a85;
}

.dropSuccess {
  /*成功*/
  color: #4e8b37;
}

.dropError {
  /*錯誤*/
  display: none;
}

/*history.php 歷史訂單列表*/
.orderList .btn_remove {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 23px;
  background: url("../images/icon-garbage.svg") no-repeat;
  background-size: contain;
}
.orderList .btn_add {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 23px;
  background: url("../images/icon-plus.svg") 50%/contain no-repeat;
}

.orderTxt {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff9f2;
}
@media (min-width: 1181px) {
  .orderTxt {
    margin-left: -40px;
    margin-right: -30px;
    padding-left: 40px;
    padding-right: 30px;
  }
}
@media (max-width: 1180px) {
  .orderTxt {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.orderTxt span {
  color: #ff9900;
}
.orderTxt + .orderTxt {
  margin-top: 10px;
}

.error {
  box-shadow: 0 0 10px #f00;
}

.orderTipList {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.8;
  font-size: 12px;
}

/*****匯款回報*****/
.remitArea {
  width: 360px;
  max-width: 100%;
  border: 1px solid #f4e9da;
  background-color: #fff;
}
.remitArea .wrap {
  position: relative;
  width: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
.remitArea .itemTitleBox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  letter-spacing: 0.025em;
}
.remitArea .itemTitleBox i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  background-color: #ff9900;
}
.remitArea .itemTitleBox b {
  margin: 0 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #ff9900;
}
.remitArea .itemBox {
  position: relative;
}
.remitArea .itemBox label {
  display: block;
  margin-bottom: 3px;
  margin-top: 10px;
}
.remitArea .itemBox input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 50px 0 10px;
  border: 1px solid #f4e9da;
  font-size: 14px;
}
.remitArea .btnBox {
  margin-top: 20px;
}
#closeRemit {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 30px;
  height: 30px;
}
#closeRemit:before, #closeRemit:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -0.5px;
  width: 20px;
  height: 1px;
  background-color: #553817;
  transition: all 0.5s;
}
#closeRemit:before {
  transform: rotate(45deg);
}
#closeRemit:after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 480px) {
  #closeRemit {
    top: 5px;
    right: 5px;
  }
}