@charset "UTF-8";
/*網頁全共用設定*/
/*網路字體引用CSS設定*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*思源黑體 套用名字 Noto Sans TC */
/*Bootstrap3.37 官方基礎CSS*/
@import url(https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/css/bootstrap.min.css);
/*股溝的ICONFONT*/
/*@import url("https://fonts.googleapis.com/icon?family=Material+Icons");*/
/*font-awesome4-7 iconfont*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
/* =============== 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: 1rem;
} /*font-size:100%是為將網頁字體設定成16px，這個文字大小設定會連動到下面的body的字體設定唷*/
html {
  scroll-behavior: smooth;
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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;
}
a:hover, a:focus {
  text-decoration: none;
}

label a {
  display: block;
}

img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /*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;
}

button,
a,
input:focus,
button:focus {
  outline: none !important;
} /*連結或點擊的按鈕 不顯示外虛線*/
p {
  margin: 0 auto;
}

/* 模態視窗樣式 */
.popuppage {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.popup-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}

.popup {
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 20px 40px 30px;
}

.popup-header {
  text-align: center;
  padding: 20px;
  position: relative;
}

.popup-title {
  font-size: 30px;
  color: #b3000e;
  margin: 0;
  font-weight: 700;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #b3000e url(../img/popup-close.png);
  background-size: 100% auto;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  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;
  display: block;
  z-index: 3;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.divider {
  border-top: 1px solid #eee;
  margin: 0 20px 10px;
}

.popup-content {
  padding: 0 20px;
  /* 固定高度為200px */
  height: 300px;
}

.content-page {
  display: none;
  /* 內容區域可捲動 */
  overflow-y: auto;
  height: 100%;
  padding: 20px 15px;
  line-height: 1.75;
}
.content-page p {
  padding: 0 30px 0 0;
}

/* 自定義捲軸樣式 */
.content-page::-webkit-scrollbar {
  width: 6px;
}

.content-page::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.content-page::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.content-page::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.content-page.active {
  display: block;
}

.content-title {
  color: #b3000e;
  margin: 0 auto 30px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25em;
}

.content-list li,
.content-numbered {
  margin-bottom: 8px;
}

.popup-footer {
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin-top: 20px;
}

.pagination-num {
  font-size: 20px;
}

.page-indicator {
  color: #b3000e;
  font-weight: 700;
}

.page-divider {
  color: #999;
  margin: 0 8px;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #151b27;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  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;
  cursor: pointer;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .popuppage {
    display: none;
  }
}
/* =============== 主內容區寬度 ============ */
.wrapper {
  max-width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.wrapper::before, .wrapper::after {
  content: "";
  display: block;
  background-color: #b2000e;
  height: 6px;
  width: 100%;
  position: relative;
}
.wrapper::before {
  top: 0;
}
.wrapper::after {
  bottom: 100%;
}
.wrapper .header {
  width: 100%;
  position: relative;
}
.wrapper .main {
  width: 100%;
  position: relative;
  padding: 0px 0 60px;
  margin: 0 auto;
}
.wrapper .container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.header {
  position: relative;
  height: 70px;
}
.header::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 1600px;
  height: 230px;
  background-color: #ffeff0;
  border-radius: 0px 0px 0px 150px;
  z-index: -1;
  position: absolute;
  top: 0px;
  right: 40%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.header h1.logo-img {
  max-width: 200px;
  position: relative;
  padding: 15px 15px;
  margin: 0 15px;
}

.infoBox {
  width: 100%;
  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;
}
.infoBox .app-info {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
}
.infoBox .app-info .appPhone {
  max-width: 430px;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
}
.infoBox .app-info .appIntroduce {
  margin-bottom: 50px;
}
.infoBox .app-info .appIntroduce-text {
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 15px;
  word-wrap: break-word;
  width: 100%;
}
.infoBox .app-info .appIntroduce-text h3 {
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.25;
}
.infoBox .app-info .appIntroduce-text p {
  width: 100%;
  max-width: 350px;
}
.infoBox .app-info .appIntroduce-download .appIntroduce-download__qrcode {
  width: 100%;
  margin: 0 auto;
}
.infoBox .app-info .appIntroduce-download .appIntroduce-download__qrcode img {
  max-width: 150px;
}
.infoBox .app-info .appIntroduce-download .appIntroduce-download__store {
  display: none;
}
.infoBox .form-container {
  margin: 0 auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: #fff;
  border-radius: 28px;
  -webkit-box-shadow: 0px 0px 23px 2px rgba(255, 215, 215, 0.4);
          box-shadow: 0px 0px 23px 2px rgba(255, 215, 215, 0.4);
  width: 100%;
  max-width: 550px;
  height: 100%;
  padding: 30px 40px;
}

/* ========================= 表單驗證 ========================= */
.login-title {
  color: #b2000e;
  font-weight: 700;
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
}
.login-title span {
  color: #666666;
}

.login-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: 30px 0 20px;
  color: #000;
  font-size: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.login-option {
  margin-right: 15px;
  font-weight: 500;
  position: relative;
}

.login-option-text {
  position: relative;
}
.login-option-text::before {
  content: "*";
  position: absolute;
  color: #b4000c;
  font-size: 36px;
  line-height: 40px;
}
.login-option-text span {
  margin-left: 25px;
}

input[type=radio] {
  display: none;
}

input[type=radio] + label {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

input[type=radio] + label span {
  cursor: pointer;
  vertical-align: bottom;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

input[type=radio] + label .icon {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 5px;
  background: #fff;
  border: 2px solid #dddddd;
  border-radius: 50px;
}

input[type=radio]:checked + label .icon {
  background: #fff;
  border: 2px solid #b2000e;
}

input[type=radio]:checked + label .icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #b2000e;
  border-radius: 50%;
}

/* 登入方式 */
.select-login {
  width: 100%;
  background-color: #b2000e;
  text-align: center;
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  line-height: 50px;
}
.select-login .select-login {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../img/w-downarrow.png") calc(100% - 150px) center no-repeat;
}
.select-login .select-login:focus,
.select-login .select-login :visited {
  outline: none;
}
.select-login .select-login option {
  color: #000;
}

/* 登入表單 */
.login-form {
  width: 100%;
  height: 280px;
  margin-top: 15px;
}
.login-form .form-group {
  width: 100%;
  border-color: #bfbfbf;
  border-radius: 5px;
  margin: 10px 0;
  position: relative;
}
.login-form .form-group input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #dddddd;
  padding: 10px 15px;
  font-size: 18px;
}
.login-form .form-group select {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 5px;
  font-size: 18px;
  padding: 0px 15px;
  line-height: 50px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../img/r-downarrow.png") calc(100% - 30px) center no-repeat;
}
.login-form .form-group select:focus,
.login-form .form-group select :visited {
  outline: none;
}
.login-form .form-group select option {
  color: #000;
}
.login-form .form-group .pw-eye {
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  right: 25px;
  width: 24px;
  height: 24px;
  background: url("../img/eye-close.png") 50% no-repeat;
  background-size: 100% auto;
  cursor: pointer;
}
.login-form .form-group .pw-eye.see {
  background: url("../img/eye-open.png") 50% no-repeat;
  background-size: 100% auto;
}
.login-form .small-group {
  width: 100%;
}
.login-form .small-group input {
  width: 70%;
}
.login-form .refresh-group {
  width: 100%;
}
.login-form .refresh-group img.verification-refresh {
  max-width: 250px;
  height: 50px;
}
.login-form .refresh-group a {
  margin-left: 15px;
  cursor: pointer;
}
.login-form .refresh-group a img.refresh-icon {
  max-width: 50px;
}

#accountForm {
  display: none;
}

.form-submit {
  width: 100%;
  margin: 15px auto 0;
  text-align: center;
}

.form-check {
  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-bottom: 15px;
}

.remember-checkbox {
  font-size: 20px;
  color: #000;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}

input[type=checkbox] + label span {
  vertical-align: baseline;
}

input[type=checkbox] + label .checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  background: #fff;
  background-size: 100%;
  border: 2px solid #dddddd;
  border-radius: 4px;
}

input[type=checkbox]:checked + label .checkmark {
  background: #b2000e url("../img/check-solid.svg") 50% no-repeat;
  background-size: 15px auto;
  border: 1px solid #b2000e;
}

.login-btn {
  width: 60%;
  padding: 12px;
  margin: 0 auto;
  background-color: #b2000e;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

/* 表單footer */
.form-footer {
  margin-top: 30px;
  font-size: 16px;
  text-align: center;
}
.form-footer .no-account {
  color: #000;
  margin-bottom: 15px;
}
.form-footer .footer-links {
  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;
  gap: 20px;
}
.form-footer a.footer-link {
  color: #b2000e;
  border-bottom: 1px solid;
  padding-bottom: 2px;
  margin-left: 3px;
}

/* ========================= 表單驗證 / end ========================= */
@media screen and (min-width: 1981px) {
  .header::after {
    right: 30%;
  }
}
@media screen and (max-width: 1700px) {
  .header::after {
    right: 30%;
  }
}
@media screen and (max-width: 1300px) {
  .infoBox {
    width: 100%;
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 20px;
  }
  .infoBox .app-info {
    width: 100%;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .infoBox .app-info .appPhone {
    max-width: 380px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media screen and (max-width: 992px) {
  .header::after {
    right: 20%;
  }
  .infoBox {
    width: 100%;
    gap: 20px;
    margin-top: 40px;
  }
  .infoBox .app-info .appPhone {
    max-width: 350px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
  }
  .infoBox .app-info .appIntroduce {
    margin-bottom: 50px;
  }
  .infoBox .app-info .appIntroduce-text {
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 15px;
  }
  .infoBox .app-info .appIntroduce-text h3 {
    margin-bottom: 10px;
    font-weight: 800;
  }
  .infoBox .app-info .appIntroduce-text p {
    width: 100%;
    max-width: 350px;
  }
  .infoBox .app-info .appIntroduce-download .appIntroduce-download__store {
    display: none;
  }
  .infoBox .form-container {
    max-width: 480px;
    height: 100%;
    padding: 30px 20px;
  }
  .login-option {
    margin-right: 10px;
  }
  .login-title {
    color: #b2000e;
    font-weight: 700;
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
  }
  .login-title span {
    color: #666666;
  }
  .login-options {
    margin: 30px 0 20px;
    font-size: 18px;
  }
  /* 登入方式 */
  .select-login .select-login {
    background: url("../img/w-downarrow.png") calc(100% - 130px) center no-repeat;
  }
}
@media screen and (max-width: 880px) {
  .infoBox .form-container {
    max-width: 430px;
  }
  /* 登入方式 */
  .select-login .select-login {
    background: url("../img/w-downarrow.png") calc(100% - 110px) center no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .wrapper .container {
    max-width: 100%;
  }
  .wrapper .main {
    padding: 0 0;
  }
  .header {
    position: relative;
    background-color: #f8f9fb;
  }
  .header::after {
    display: none;
  }
  .header div.logo-img {
    margin: 0 auto;
  }
  .infoBox {
    width: 100%;
    gap: 30px;
    margin-top: 20px;
  }
  .infoBox .app-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .infoBox .app-info .appPhone {
    max-width: 330px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
  }
  .infoBox .app-info .appIntroduce-download .appIntroduce-download__qrcode {
    display: none;
  }
  .infoBox .app-info .appIntroduce-download .appIntroduce-download__store {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .infoBox .app-info .appIntroduce-download .appIntroduce-download__store a {
    max-width: 150px;
    width: 100%;
  }
  .infoBox .app-info .appIntroduce-download .appIntroduce-download__store a img {
    width: 100%;
  }
  .infoBox .form-container {
    display: none;
  }
}
/* =============== footer============ */
footer.footer {
  padding: 20px 15px;
  text-align: center;
  font-size: 14px;
  line-height: 1.75;
}
footer.footer br {
  display: none;
}
footer.footer p,
footer.footer a {
  text-align: center;
  color: #44515a;
}

footer.footer01 {
  display: block;
  background-color: #b2000e;
  position: relative;
}
footer.footer01::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 1800px;
  height: 170px;
  background-color: #ffd6d9;
  border-radius: 0px 150px 0px 0px;
  z-index: -1;
  position: absolute;
  bottom: 0px;
  left: 40%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
footer.footer01 p,
footer.footer01 a {
  color: #fff;
}
footer.footer01 a {
  text-decoration: underline;
}

footer.footer02 {
  background-color: #f8f9fb;
}

@media screen and (min-width: 1981px) {
  footer.footer01::before {
    left: 30%;
  }
}
@media screen and (max-width: 767px) {
  footer.footer br {
    display: block;
  }
  footer.footer01 {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */