@charset "UTF-8";
.mainArea.successPage {
  height: calc(100vh - 400px);
  /*以防有不支援dvh的瀏覽器*/
  height: calc(100dvh - 400px);
  min-height: 400px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .mainArea.successPage {
    height: auto;
    min-height: 200px;
  }
}
.mainArea.successPage .successTxt {
  color: #8a199c;
  font-size: 30px;
  line-height: 1.3;
}
@media (max-width: 1180px) {
  .mainArea.successPage .successTxt {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .mainArea.successPage .successTxt {
    font-size: 22px;
  }
}
@media (max-width: 400px) {
  .mainArea.successPage .successTxt {
    font-size: 18px;
  }
}
.mainArea.successPage .btnBox {
  margin-top: 40px;
}

.contentBox {
  max-width: 1300px;
  margin: 0 auto;
}

/*感謝資訊*/
.preorderNote {
  margin-bottom: 30px;
}

.dataTable {
  overflow-x: auto;
}
.dataTable::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}
.dataTable::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #ffffff;
}
.dataTable::-webkit-scrollbar-thumb {
  background: #8a199c;
}
.dataTable table {
  min-width: 640px;
  border: 1px solid #e5e5e5;
  border-bottom: 2px solid #8a199c;
  border-collapse: collapse;
}
.dataTable th {
  background-color: #c48ccd;
  border: 1px solid #e5e5e5;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: calc(18 / 18 * 1.5);
  letter-spacing: calc(18 * 0 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.dataTable td {
  border: 1px solid #e5e5e5;
  vertical-align: middle;
  padding: 10px;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: calc(18 / 18 * 1.5);
  letter-spacing: calc(18 * 0 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.dataTable td input[type=text] {
  height: 25px;
  line-height: 20px;
  border: 1px solid #d6d6d6;
  text-align: center;
}
.dataTable td a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.dataTable td a.removepreorderBtn {
  justify-content: center;
}
.dataTable td a img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
  max-width: 100px;
}
.dataTable .error {
  border-color: #f00 !important;
}

.formBox {
  margin-top: 25px;
}