@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Roboto:wght@400;500&display=swap");
/*#0066cc*/
.checkboxStyle label:before {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.radioStyle .radioTitle, .radioStyle {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.8px;
}

@-webkit-keyframes listShow {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes listShow {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 10% {
    top: 0;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  80% {
    top: 10px;
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
  100% {
    top: 10px;
    -webkit-transform: scaleX(1.05) scaleY(0.9);
            transform: scaleX(1.05) scaleY(0.9);
  }
}
@keyframes bounce {
  0%, 10% {
    top: 0;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  80% {
    top: 10px;
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
  100% {
    top: 10px;
    -webkit-transform: scaleX(1.05) scaleY(0.9);
            transform: scaleX(1.05) scaleY(0.9);
  }
}
.contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contentBox .leftBox {
  width: 250px;
  padding-right: 65px;
}
.contentBox .rightBox {
  width: calc(100% - 250px);
}
@media (max-width: 1024px) {
  .contentBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contentBox .leftBox,
.contentBox .rightBox {
    width: 100%;
  }
  .contentBox .leftBox {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .contentBox {
    margin-bottom: 30px;
  }
}

.btnBox.double {
  padding-top: 5px;
}

/*註冊頁面*/
.section {
  margin-bottom: 40px;
}
.section h3 {
  position: relative;
  clear: both;
  margin-bottom: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #dadada;
  font-weight: 400;
  font-size: 20px;
}

.condition .textEditor {
  height: 250px;
  margin: 0;
  padding: 15px;
  border: 1px solid #ccc;
  font-size: 13px;
  background-color: #fff;
  overflow-y: scroll;
}
.condition .check {
  margin-top: 10px;
  font-size: 15px;
  color: #db1b60;
}
.condition .check label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.condition .check input[type=checkbox] {
  margin-right: 5px;
  width: 25px;
  height: 25px;
}

.formList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.formList li {
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .formList li {
    width: 100%;
  }
}
.formList .full {
  width: 100%;
}
.formList .noteTxt {
  margin-top: 10px;
  font-size: 13px;
  color: #959595;
  letter-spacing: 0.05em;
}
.formList .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #353535;
  letter-spacing: 0.05em;
}
.formList .left em {
  color: #000000; /*#e24242*/
}
.formList .right {
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #454545;
  font-family: "Noto Sans TC";
}
.formList .right a {
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #454545;
  font-family: "Noto Sans TC";
}
.formList .right a:hover {
  text-decoration: underline;
}
.formList select {
  padding-left: 20px;
  padding-right: 20px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #dfdfdf;
  background-image: url(../images/icon/select_arrowDown.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 19px) center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.formList input[type=text], .formList input[type=password] {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  border: 1px solid #dfdfdf;
  font-size: 14px;
  border-radius: 5px;
  letter-spacing: 0.2em;
}

#data_address {
  /*margin-top: 12px;*/
}

#addressBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#addressBox select {
  width: 120px !important;
}
#addressBox .inner {
  padding-bottom: 15px;
}
#addressBox .inner #data_address {
  width: 100%;
}
#addressBox .inner:last-child {
  padding-bottom: 0;
}
@media (max-width: 1180px) {
  #addressBox label {
    width: 80px;
    margin-bottom: 12px;
  }
  #addressBox label:nth-child(2) {
    width: 60%;
  }
  #addressBox select,
#addressBox #data_zip {
    width: calc(33.33% - 4px) !important;
  }
}
@media (max-width: 414px) {
  #addressBox select {
    width: calc(50% - 4px) !important;
  }
  #addressBox #data_zip {
    width: 100% !important;
    margin-top: 12px;
  }
}

.error {
  border: 1px solid #f00 !important;
  -webkit-box-shadow: 0 0 10px #F00;
          box-shadow: 0 0 10px #F00;
}

.orderTxt {
  font-size: 14px;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
}

/*驗證碼*/
.checkArea {
  clear: both;
  padding-top: 25px;
}
.checkArea a {
  /*送出按鈕*/
  display: block;
  padding: 7px 15px;
  -webkit-box-shadow: 2px 2px 2px #ccc;
          box-shadow: 2px 2px 2px #ccc;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
}

.checkArea .btn,
.sliderBox {
  display: inline-block;
  vertical-align: middle;
}

.sliderBox {
  position: relative;
  margin-right: 8px;
}

.note {
  /*向右滑動解鎖*/
  position: absolute;
  left: 55px;
  top: 7px;
  font-size: 15px;
  font-family: "微軟正黑體";
  color: #999;
}

/*history.php 歷史訂單列表*/
.orderList table {
  border-collapse: collapse;
  color: #222;
}
.orderList th {
  padding: 15px;
  letter-spacing: 0.1em;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  border: 1px solid #dfdfdf;
  background-color: #a09673;
}
.orderList td {
  padding: 15px 10px;
  font-size: 14px;
  color: #434343;
  letter-spacing: 0.05em;
  background: #fff;
  border: 1px solid #dfdfdf;
  vertical-align: middle;
}
.orderList a {
  color: #a09673;
}
.orderList a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .formBox .left {
    display: block;
    float: none;
    width: 100%;
    margin: 0 0 5px 0;
    text-align: left;
  }
  .formBox input[type=text], .formBox input[type=password] {
    width: 100%;
  }
}
.radioStyle {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-right: 10px;
}
.radioStyle:last-child {
  margin-right: 0;
}
.radioStyle .radioItem {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #353535;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.radioStyle .radioItem:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -4px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: #353535;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.radioStyle input[type=radio] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.radioStyle input[type=radio]:checked + .radioItem:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.checkboxStyle {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.7px;
}
.checkboxStyle input {
  display: none;
}
.checkboxStyle input:checked ~ label:before {
  content: "";
  background-color: #bb1b21;
  border-color: #bb1b21;
}
.checkboxStyle input:checked ~ label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  height: 9px;
  padding: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  text-align: center;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
}
.checkboxStyle label {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkboxStyle label:before, .checkboxStyle label:after {
  display: inline-block;
  content: "";
}
.checkboxStyle label:before {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  margin-right: 12px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #dfdfdf;
}
.checkboxStyle label:hover::before {
  border-color: #bb1b21;
}

.orderList img {
  height: 80px;
}