@charset "UTF-8";
/*網頁全共用設定*/
/*網路字體引用CSS設定*/
@import url(../css/googleFont_notosanstc.css);
/*思源黑體 套用名字 Noto Sans TC */
/* =============== base 頁面基本設定 ============ */
html,
body {
  font-family: "Noto Sans TC", "PingFang TC", Microsoft JhengHei, "微軟正黑體", Helvetica, sans-serif;
  position: relative;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px;
} /*font-size:100%是為將網頁字體設定成16px，這個文字大小設定會連動到下面的body的字體設定唷*/
html {
  scroll-behavior: smooth;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #141a26;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  word-break: break-all;
}
a:hover, a:focus {
  text-decoration: none;
}

label a {
  display: block;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: 0;
  /*image-rendering:-moz-crisp-edges;*/ /* Firefox        */
  image-rendering: -o-crisp-edges; /* Opera          */
  image-rendering: -webkit-optimize-contrast; /* Safari         */
  image-rendering: optimize-contrast; /* CSS3 Proposed  */
  -ms-interpolation-mode: nearest-neighbor; /* IE8+           */
} /*圖片更銳利化*/
/* 應用於GIF和PNG圖片; 防止邊緣模糊 */
img[src$=".gif"],
img[src$=".png"] {
  image-rendering: auto;
}

/* 移除svg 縮放設定 */
button,
a,
input:focus,
button:focus {
  outline: none !important;
} /*連結或點擊的按鈕 不顯示外虛線*/
p {
  margin: 0;
  padding: 0;
  letter-spacing: 1.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.d-inline {
  display: inline;
}

.navbar {
  margin: 0 auto;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 60px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  max-width: 190px;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav-logo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width: 600px) {
  .navbar {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 0 0;
  }
}
.header {
  width: 100%;
  height: 100px;
  background-color: #b3000e;
  margin: 0 auto;
  padding: 70px 0 10px;
  border-bottom-left-radius: 75px;
  border-bottom-right-radius: 75px;
}
.header .header-container {
  width: 100%;
  padding: 10px 0px;
}
.header .header-container h2 {
  font-size: 1.9rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
.header .header-container h2 span {
  color: #ffd500;
}

/* =============== 主內容區寬度 ============ */
.wrapper {
  max-width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

/* 內容區 */
.container {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  background: #fbbdc1;
}

.container::-webkit-scrollbar {
  display: none;
}

/* 主內容 */
.main {
  width: 100%;
  position: relative;
}

/* --------- form 表單樣式 -------- */
.form-card {
  max-width: 560px;
  width: 100%;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
.form-card::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 38%;
  z-index: -1;
  bottom: 0;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
  background-color: #f6f6f6;
}

.form-cotanier {
  padding: 15px 30px 30px;
}

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

label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  color: #141a26;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  gap: 0.65rem;
}

.required-badge {
  background-color: #b3000e;
  color: #fff;
  padding: 2px 6px;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 2px;
  text-align: center;
}

input[type=text],
input[type=email],
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #707070;
  border-radius: 15px;
  outline: none;
  font-size: 1.125rem;
  color: #141a26;
}

input:focus,
select:focus,
.addr-btn:focus,
.check-item input[type=checkbox]:focus {
  color: #141a26;
  border-color: #b3000e;
}

select.filter-style {
  /* 1. 隱藏預設箭頭 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 2. 添加自定義樣式 */
  background-image: url("../img/arrow_01.svg");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 20px auto;
  color: #707070;
}
select.filter-style:has(option[value=opdefault]:checked) {
  color: #707070;
}
select.filter-style:has(option:checked) {
  color: #141a26;
}

.input-error {
  background-color: #fff5f5 !important;
  border-color: #feb2b2 !important;
}

.hidden {
  display: none;
}

.uppercase {
  text-transform: uppercase;
}

/* --------- 申請補發公司 style -------- */
.label-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.link-why {
  background: none;
  border: none;
  color: #707070;
  font-size: 0.875rem;
  text-decoration: underline;
  cursor: pointer;
}

/* --------- 地址按鈕 style -------- */
.address-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.addr-btn {
  padding: 0.6rem;
  border: 2px solid #707070;
  border-radius: 15px;
  background-color: #fff;
  color: #6b7280;
  cursor: pointer;
  font-size: 1.125rem;
}

.addr-btn-selected {
  background-color: #b3000e !important;
  border-color: #b3000e !important;
  color: #fff !important;
}

/* --------- 驗證碼 style -------- */
.captcha-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

input#captchaInput {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.captcha-display {
  background-color: #f3f4f6;
  border-radius: 15px;
  border: 2px solid #707070;
  max-width: 130px;
  width: 100%;
  height: 48px;
  cursor: pointer;
}

.refresh-btn {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
}
.refresh-btn img {
  width: 25px;
  height: 25px;
}

/* --------- 免責聲明 style -------- */
.statement-title {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  background-color: #b3000e;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 8px 0px;
  font-weight: 700;
  margin-bottom: 15px;
}

.statement-subtitle {
  color: #707070;
  font-size: 1.125rem;
  padding: 15px 0;
  line-height: 1.5;
  border-bottom: 2px dashed #707070;
}

.check-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.check-item p {
  font-weight: normal;
  color: #707070;
  font-size: 1.125rem;
  line-height: 1.5;
}
.check-item p span {
  color: #b3000e;
}

.check-item input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #707070;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 0.4rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.check-item input[type=checkbox]:checked {
  background-color: #b3000e;
  border-color: #b3000e;
  background-image: url(../img/check-solid.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8rem;
}

.statement-error {
  text-align: center;
  margin-top: 0.5rem;
}

/* --------- btn style -------- */
.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-submit,
.btn-reset {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 22px;
  letter-spacing: 2px;
}

.btn-submit {
  background-color: #b3000e;
  color: #fff;
}

.btn-reset {
  background-color: #707070;
  color: #fff;
}

/* --------- 錯誤訊息 -------- */
.field-error-msg {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
  min-height: 1rem;
  font-weight: 500;
}

/* --------- 彈跳 style -------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background-color: #fff;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 450px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-header {
  background-color: #b3000e;
  padding: 1rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.modal-body {
  padding: 1.2rem;
  font-size: 1rem;
  color: #141a26;
}

.modal-footer {
  padding: 1rem;
  background-color: #f9fafb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}

.btn-close-x {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-close-x span {
  font-size: 1.25rem;
}

.why-list-content {
  padding: 0 0 0 15px;
}
.why-list-content li {
  margin: 0.5rem 0;
}
.why-list-content .why-list {
  list-style: disc;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  color: #707070;
}
.why-list-content .why-list li {
  margin-bottom: 0.5rem;
}

.confirmMsg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.confirmMsg strong {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
  word-break: break-all;
  text-align: right;
}

.modalbtn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
}

.btnBack {
  background: #707070;
}

.btnConfirm {
  background: #b3000e;
}

.confirmCheck {
  background: #fff5f5;
  color: #b3000e;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.modalTxt {
  text-align: center;
  font-size: 1.125rem;
}

/* --------- breakpoints -------- */
@media screen and (min-width: 600px) {
  .wrapper {
    overflow: clip;
  }
  .full-container-pc {
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: url("../img/pc-bg.png") no-repeat top;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-attachment: fixed;
    background-size: 100% 100%;
  }
  .container {
    max-width: 600px;
    width: 100%;
    position: relative;
    margin: 0 0;
  }
}
@media screen and (max-width: 570px) {
  .form-card {
    max-width: 96%;
    width: 100%;
  }
  .form-card::after {
    height: 555px;
  }
}
@media screen and (max-width: 500px) {
  .form-card::after {
    height: 580px;
  }
}
@media screen and (max-width: 450px) {
  .form-cotanier {
    padding: 15px 15px 30px;
  }
  label {
    font-size: 1rem;
    gap: 0.45rem;
  }
  .required-badge {
    font-size: 12px;
  }
  /* --------- 申請補發公司 style -------- */
  .link-why {
    padding: 0;
    font-size: 12px;
  }
  /* --------- 驗證碼 style -------- */
  .captcha-row {
    gap: 0.2rem;
  }
  input#captchaInput {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
  }
  .refresh-btn {
    padding: 0 5px;
  }
  .refresh-btn img {
    width: 30px;
    height: 30px;
  }
  /* --------- 免責聲明 style -------- */
  .statement-subtitle {
    font-size: 1rem;
  }
  .check-item p {
    font-size: 1rem;
  }
  /* --------- btn style -------- */
  .btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .btn-submit {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .btn-submit,
  .btn-reset {
    font-size: 18px;
  }
  /* --------- 彈跳 style -------- */
  .confirmMsg strong {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
}
@media screen and (max-width: 430px) {
  .form-card::after {
    height: 600px;
  }
}
@media screen and (max-width: 370px) {
  .form-card::after {
    height: 670px;
  }
}
@media screen and (max-width: 350px) {
  .form-card {
    max-width: 96%;
    width: 100%;
  }
  .form-card::after {
    height: 690px;
  }
  .form-cotanier {
    padding: 15px 10px 30px;
  }
  label {
    gap: 0.15rem;
  }
  /* --------- 申請補發公司 style -------- */
  .link-why {
    text-align: right;
  }
  /* --------- 彈跳 style -------- */
  .confirmMsg strong {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  .modalTxt {
    font-size: 1rem;
  }
}
/* =============== footer============ */
footer.footer {
  text-align: left;
  font-size: 14px;
}
footer.footer p {
  padding: 20px;
}
footer.footer .ft-copyr {
  background-color: #b3000e;
}
footer.footer .ft-copyr p {
  color: #fff;
  line-height: 1.8;
}

@media screen and (max-width: 599px) {
  footer.footer p {
    padding: 20px 12px;
  }
}/*# sourceMappingURL=style.css.map */