@charset "UTF-8";
/* 主檔案 */
/* Meyer Reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 存放所有變數 */
/* 存放可重複使用的程式碼片段 */
h1 {
  color: #D70D18;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

.form-subtitle {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .form-subtitle {
    font-size: 19px;
    padding: 0 10px;
  }
}

.section-header {
  width: 100%;
  height: 36px;
  background-color: #353535;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.section-header h2 {
  color: #ffffff;
  font-size: 14px;
  line-height: 2;
  display: inline-block;
}
@media (max-width: 768px) {
  .section-header {
    height: 60px;
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .section-header h2 {
    color: #ffffff;
    font-size: 18px;
  }
}

.red-color {
  color: #D70D18 !important;
}

[data-err-flag="1"] {
  border-color: #D70D18 !important;
}

small[data-err-flag="1"] {
  color: #D70D18 !important;
  display: inline-block !important;
}

.readonly-input {
  background-color: #f2f6f7 !important;
  color: #888888;
  cursor: not-allowed;
}

.form-hint {
  font-size: 12px;
  color: #888888;
  margin-top: 5px;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 1.4;
  display: block;
}
@media (max-width: 768px) {
  .form-hint {
    font-size: 14px;
  }
}

.form-err-hint {
  font-size: 12px;
  color: #D70D18;
  margin-top: 5px;
  margin-left: 10px;
  line-height: 1.4;
  display: none;
}
@media (max-width: 768px) {
  .form-err-hint {
    font-size: 14px;
  }
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.form-row.no-gap {
  gap: 0;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
}

.form-group {
  flex: 1;
}
.form-group label {
  display: inline-block;
  color: #000000;
  font-weight: 500;
  font-size: 12px;
  transform: translateY(50%) translateX(12px);
  background-color: rgba(255, 255, 255, 0.8);
}
.form-group input[type=text],
.form-group [type=password],
.form-group [type=email],
.form-group [type=number] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: #ffffff;
}
.form-group input[type=text]:focus,
.form-group [type=password]:focus,
.form-group [type=email]:focus,
.form-group [type=number]:focus {
  outline: none;
  border-color: #888888;
  background: #ffffff;
}
.form-group input[type=text]::-moz-placeholder, .form-group [type=password]::-moz-placeholder, .form-group [type=email]::-moz-placeholder, .form-group [type=number]::-moz-placeholder {
  color: #888888;
}
.form-group input[type=text]::placeholder,
.form-group [type=password]::placeholder,
.form-group [type=email]::placeholder,
.form-group [type=number]::placeholder {
  color: #888888;
}
@media (max-width: 768px) {
  .form-group input[type=text],
  .form-group [type=password],
  .form-group [type=email],
  .form-group [type=number] {
    /*             font-size: 16px;
    */
    font-size: 20px;
    padding: 15px 15px;
  }
  .form-group label {
    font-size: 15px;
  }
}

.checkbox-section {
  flex: 1;
}
.checkbox-section .checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
.checkbox-section .checkbox-group input[type=checkbox] {
  margin-right: 10px;
  margin-top: 3px;
  transform: scale(1.1);
  accent-color: #D70D18;
}
.checkbox-section .checkbox-group label {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: #000000;
  cursor: pointer;
  text-align: left;
}
.checkbox-section .checkbox-group label a {
  color: #D70D18;
  text-decoration: none;
}
.checkbox-section .checkbox-group label a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .checkbox-section .checkbox-group input[type=checkbox] {
    margin-top: 6px;
  }
  .checkbox-section .checkbox-group label {
    font-size: 18px;
  }
}

.captcha-section {
  position: relative;
  margin: 0 auto;
  max-width: 450px;
}
.captcha-section .captcha-input {
  position: relative;
  display: block;
}
.captcha-section .captcha-input .captcha-image {
  position: absolute;
  right: 60px;
  top: 28px;
  /*             top: 65%;
  transform: translateY(-50%); */
  height: 18px;
  width: auto;
  border-radius: 4px;
}
.captcha-section .captcha-input .captcha-refresh {
  position: absolute;
  right: 0px;
  top: 20px;
  /*             top: 65%;
  transform: translateY(-50%); */
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: #888888;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
}
.captcha-section .captcha-input .captcha-refresh::after {
  /* content: '⟳';
  font-size: 20px;
  margin-left: 3px; */
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("../img/Button_renew.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
}
@media (max-width: 768px) {
  .captcha-section {
    margin: 0;
    max-width: none;
  }
  .captcha-section .captcha-input .captcha-image {
    right: 75px;
    height: 28px;
  }
  .captcha-section .captcha-input .captcha-refresh {
    right: 5px;
    top: 25px;
    font-size: 18px;
  }
}

.btn {
  width: 230px;
  background: #D70D18;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: unset;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: auto;
  /*     margin-top: 40px;
   */
  display: block;
  text-wrap: nowrap;
  background-origin: border-box;
}
.btn:hover {
  background: #AC0108;
}
.btn.margin-top-30 {
  margin-top: 30px;
}
.btn.disable {
  pointer-events: none !important;
  opacity: 0.5 !important;
}

a.btn {
  display: flex;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
  margin: 0 auto;
}

.button-group {
  display: flex;
  justify-content: space-around;
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
}
.button-group .btn {
  display: inline-block;
  margin: 0;
  /*         margin-top: 20px;
   */
}
.button-group .gray-btn {
  background: #d9d9d9 !important;
  color: #000000 !important;
}
.button-group .gray-btn:hover {
  background: #888888 !important;
}
@media (max-width: 768px) {
  .button-group .btn {
    flex: 1;
    margin: 0;
    padding: 15px;
    width: auto;
  }
  .button-group .btn:nth-child(1) {
    margin-right: 20px;
  }
  .button-group .btn:nth-child(2) {
    margin-left: auto;
  }
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  font-size: 14px;
  background: #ffffff;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-select select:focus {
  outline: none;
  border-color: #888888;
}
.custom-select select:invalid {
  color: #999;
}
.custom-select select option {
  color: #333;
  background: #ffffff;
  padding: 8px 12px;
}
.custom-select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 35px;
  /*             top: 50%;
      transform: translateY(-50%); */
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #888888;
  pointer-events: none;
}
@media (max-width: 768px) {
  .custom-select select {
    /*             font-size: 16px;
    */
    font-size: 20px;
    padding: 15px 40px 15px 15px;
  }
  .custom-select::after {
    top: 40px;
  }
}

.date-group .date-inputs {
  width: 100%;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
  background: #ffffff;
  padding: 12px 15px;
  height: 42px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888888;
}
.date-group .date-inputs:focus-within {
  outline: none;
  border-color: #888888;
}
.date-group .date-inputs select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  flex: 1;
  outline: none;
  border: none;
  color: #888888;
  background: #ffffff;
  /*             // 提示文字樣式
              &:invalid {
                  color: $gray-light;

                  option {
                      background: $white;
                  }
              } */
}
.date-group .date-inputs .arrow::before {
  content: "";
  position: absolute;
  transform: translateX(-20px) translateY(4px);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #888888;
  pointer-events: none;
}
@media (max-width: 768px) {
  .date-group .date-inputs {
    height: 54.5px;
    font-size: 16px;
    padding: 15px;
  }
  .date-group .date-inputs select {
    height: 30px;
    font-size: 20px !important;
  }
}

.verification-fail-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.verification-fail-content.padding-left-right {
  padding: 0 50px;
}
.verification-fail-content .fail-illustration img {
  width: 150px;
}
.verification-fail-content .error-message p {
  font-size: 16px;
  margin-top: 5px;
  line-height: 1.2;
}
.verification-fail-content .error-message .important-msg {
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .verification-fail-content {
    flex-direction: column;
    text-align: center;
  }
  .verification-fail-content.padding-left-right {
    padding: 0;
  }
  .verification-fail-content .fail-illustration img {
    width: 250px;
  }
  .verification-fail-content .error-message p {
    display: inline;
    font-size: 18px;
    line-height: 1.5;
  }
  .verification-fail-content .error-message .important-msg {
    display: block;
    font-size: 20px;
  }
}

/* 佈局樣式 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100dvh;
}

header {
  background-color: #D70D18;
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}
header .logo {
  padding: 0 100px;
}
header .logo img {
  height: 40px;
  width: auto;
}
@media (max-width: 768px) {
  header .logo {
    padding: 0 30px;
  }
  header .logo img {
    height: 40px;
    width: auto;
  }
}

footer {
  height: 56px;
  width: 100%;
  z-index: 10;
}
footer .footer-content {
  display: flex;
  align-items: center;
  height: 100%;
}
footer .footer-content .footer-text {
  width: 60%;
  height: 100%;
  background-color: #D70D18;
  padding: 0 100px;
  display: flex;
  align-items: center;
}
footer .footer-content .footer-text p {
  color: #ffffff;
  font-size: 14px;
}
footer .footer-content .footer-logo {
  width: 40%;
  height: 100%;
  background-color: #d9d9d9;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
footer .footer-content .footer-logo img {
  height: 20px;
  width: auto;
}
@media (max-width: 768px) {
  footer .footer-content .footer-text {
    width: 100%;
    justify-content: center;
  }
  footer .footer-content .footer-text p span {
    display: none;
  }
  footer .footer-content .footer-logo {
    display: none;
  }
}

main .background-container {
  width: 100%;
  height: 100%;
  background-image: url("../img/BG 1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  position: relative;
}
main .background-container .form-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  main .background-container {
    background-image: url("../img/Mobile_BG 1.png");
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
  }
}

.form-card {
  width: 550px;
  margin: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (max-width: 768px) {
  .form-card {
    width: 100%;
    margin: 0;
    padding-top: 50vw;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;
    box-shadow: none;
  }
}

.password-memo p {
  flex: 1;
  display: block;
  font-size: 10px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .password-memo {
    gap: 0;
  }
  .password-memo p {
    font-size: 14px;
  }
}

.form-group {
  position: relative;
}
.form-group .password-toggle {
  position: absolute;
  right: 12px;
  top: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.form-group .password-toggle::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../img/Button_Hide.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.3s ease;
}
.form-group .password-toggle.show-password::after {
  background-image: url("../img/Button_Show.svg");
}
@media (max-width: 768px) {
  .form-group .password-toggle {
    top: 28px;
    width: 29px;
    height: 29px;
  }
  .form-group .password-toggle::after {
    width: 25px;
    height: 25px;
  }
}

.button-group .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.button-group .btn .loading-icon {
  width: 16px;
  height: 16px;
}

#confirmLoanForm .apply-amount {
  position: relative;
}
#confirmLoanForm .apply-amount::after {
  content: "萬元";
  font-size: 12px;
  margin-left: 5px;
  position: absolute;
  top: 30px;
  right: 15px;
}
@media (max-width: 768px) {
  #confirmLoanForm .apply-amount::after {
    top: 35px;
    font-size: 15px;
  }
}
#confirmLoanForm .phone-group {
  flex: 1;
  width: 100%;
}
#confirmLoanForm .phone-group label {
  display: inline-block;
  color: #000000;
  font-weight: 500;
  font-size: 12px;
  transform: translateY(50%) translateX(12px);
  background-color: rgba(255, 255, 255, 0.8);
}
#confirmLoanForm .phone-group .companyPhone {
  width: 100%;
  display: flex;
  gap: 3px;
}
#confirmLoanForm .phone-group .companyPhone input {
  padding: 12px 15px;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: #ffffff;
}
#confirmLoanForm .phone-group .companyPhone input:focus {
  outline: none;
  border-color: #888888;
  background: #ffffff;
}
#confirmLoanForm .phone-group .companyPhone input:nth-child(1) {
  width: 25%;
}
#confirmLoanForm .phone-group .companyPhone input:nth-child(2) {
  width: 45%;
}
#confirmLoanForm .phone-group .companyPhone input:nth-child(3) {
  width: 30%;
}
@media (max-width: 768px) {
  #confirmLoanForm .phone-group label {
    font-size: 15px;
  }
  #confirmLoanForm .phone-group .companyPhone input {
    /*                 font-size: 16px;
    */
    font-size: 20px;
    padding: 15px 15px;
  }
}
#confirmLoanForm .form-address-row {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  width: 100%;
}
#confirmLoanForm .form-address-row .address-group {
  display: flex;
  gap: 3px;
}
#confirmLoanForm .form-address-row .address-group .address-box {
  width: 100%;
}
#confirmLoanForm .form-address-row .address-group .address-box label {
  display: inline-block;
  color: #000000;
  font-weight: 500;
  font-size: 12px;
  transform: translateY(50%) translateX(12px);
  background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  #confirmLoanForm .form-address-row .address-group .address-box label {
    font-size: 15px;
  }
}
#confirmLoanForm .form-address-row .address-group .address-box input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: #ffffff;
}
#confirmLoanForm .form-address-row .address-group .address-box input:focus {
  outline: none;
  border-color: #888888;
  background: #ffffff;
}
@media (max-width: 768px) {
  #confirmLoanForm .form-address-row .address-group .address-box input {
    /*                         font-size: 16px;
    */
    font-size: 18px;
    padding: 15px 15px;
  }
}
@media (max-width: 768px) {
  #confirmLoanForm .form-address-row .address-group .address-box select {
    font-size: 18px;
    padding: 15px 25px 15px 15px;
  }
}
#confirmLoanForm .form-address-row .address-group .address-box .postal-code-display {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 3px;
}
#confirmLoanForm .form-address-row .address-group .address-box .postal-code-display .postal-label {
  flex: 1.2;
  color: #888888;
  font-size: 9px;
  font-weight: 400;
  transform: none;
  background-color: transparent;
}
#confirmLoanForm .form-address-row .address-group .address-box .postal-code-display .postal-number {
  flex: 1;
  border: none;
  font-size: 14px;
  outline: none;
  padding: 0;
}
#confirmLoanForm .form-address-row .address-group .address-box .postal-code-display:focus-within {
  outline: none;
  border-color: #888888;
}
@media (max-width: 768px) {
  #confirmLoanForm .form-address-row .address-group .address-box .postal-code-display {
    font-size: 16px;
    padding: 15px 8px;
  }
  #confirmLoanForm .form-address-row .address-group .address-box .postal-code-display .postal-label {
    font-size: 11px;
  }
  #confirmLoanForm .form-address-row .address-group .address-box .postal-code-display .postal-number {
    font-size: 18px;
  }
}
#confirmLoanForm .form-address-row .address-group .address-box .address-check-box {
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-left: 8px;
}
#confirmLoanForm .form-address-row .address-group .address-box .address-check-box input[type=checkbox] {
  margin: 0;
  accent-color: #D70D18;
  width: 15px;
  height: 15px;
  transform: scale(0.8);
}
#confirmLoanForm .form-address-row .address-group .address-box .address-check-box label {
  font-size: 12px;
  color: #000000;
  cursor: pointer;
  margin: 0;
  background: none;
  transform: none;
  font-weight: 400;
}
@media (max-width: 768px) {
  #confirmLoanForm .form-address-row .address-group .address-box .address-check-box {
    position: absolute;
    margin-top: 0px;
    transform: translateY(80px) scale(0.9);
  }
  #confirmLoanForm .form-address-row .address-group .address-box .address-check-box label {
    font-size: 15px;
  }
}
#confirmLoanForm .form-address-row .address-group .address-box.set-width-33 {
  width: 33.33%;
}
#confirmLoanForm .form-address-row .address-group:nth-child(1) {
  width: 55%;
}
#confirmLoanForm .form-address-row .address-group:nth-child(2) {
  width: 45%;
}
@media (max-width: 768px) {
  #confirmLoanForm .form-address-row {
    flex-direction: column;
    margin-bottom: 30px;
  }
  #confirmLoanForm .form-address-row.more-margin-bottom.first {
    margin-bottom: 65px;
  }
  #confirmLoanForm .form-address-row.more-margin-bottom.second {
    margin-bottom: 95px;
  }
  #confirmLoanForm .form-address-row .address-group:nth-child(1) {
    width: 100%;
  }
  #confirmLoanForm .form-address-row .address-group:nth-child(2) {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #stareLoanForm .flex-reverse {
    flex-direction: column-reverse;
  }
}

#privacyModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
#privacyModal .modal-content {
  background-color: white;
  border-radius: 12px;
  width: 860px;
  padding: 30px 0;
}
#privacyModal .modal-content .modal-body {
  margin-bottom: 30px;
}
#privacyModal .modal-content .modal-body .pdf-viwer {
  height: 250px;
  width: 100%;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  overflow: scroll;
  overflow-x: hidden;
}
#privacyModal .modal-content .modal-body .pdf-viwer canvas {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  #privacyModal {
    background-color: #ffffff;
  }
  #privacyModal .modal-content {
    width: 100%;
    height: calc(100dvh - 116px);
    box-sizing: border-box;
    border-radius: 0;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
  }
  #privacyModal .modal-content .modal-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #privacyModal .modal-content .modal-body .pdf-viwer {
    height: 100%;
  }
  #privacyModal .modal-content .button-group {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-in-statement {
    overflow: hidden;
  }
}

.id-card-upload .example-images {
  width: 100%;
  height: 100px;
  background-image: url("../img/IdCardErr_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .id-card-upload .example-images {
    height: 250px;
    background-image: url("../img/mobil_IdCardErr_1.png");
  }
}
.id-card-upload .upload-section .upload-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}
.id-card-upload .upload-section .upload-row .upload-box {
  width: 300px;
  height: 170px;
  position: relative;
}
.id-card-upload .upload-section .upload-row .upload-box input[type=file] {
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  color: transparent;
  /*                 &.has-preview {
      border-radius: 10px; // 加點圓角比較好看
      border: 2px solid #EDEDED; // 選填：加上細邊框
      box-sizing: border-box;
      border-style: dashed;
  } */
}
.id-card-upload .upload-section .upload-row .upload-box input[type=file]::-webkit-file-upload-button {
  display: none;
}
.id-card-upload .upload-section .upload-row .upload-box input[type=file]::-moz-file-upload-button {
  display: none;
}
.id-card-upload .upload-section .upload-row .upload-box .watermark {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.id-card-upload .upload-section .upload-row .upload-box .re_upload {
  display: none;
  position: absolute;
  top: 20px;
  left: 15px;
  background-image: url("../img/re_upload.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  width: 116px;
  height: 30px;
  transition: all 0.3s ease;
}
.id-card-upload .upload-section .upload-row .upload-box .re_upload:hover {
  background-image: url("../img/re_upload_hover.png");
}
.id-card-upload .upload-section .upload-row .upload-box.has-file input[type=file] {
  background-size: contain;
  transform: scale(95%);
}
.id-card-upload .upload-section .upload-row .upload-box.has-file .watermark,
.id-card-upload .upload-section .upload-row .upload-box.has-file .re_upload {
  display: block;
}
.id-card-upload .upload-section .upload-row .upload-area.uploading::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 50%;
  width: 50%;
  height: 10px;
  transform: translate(-50%, -50%);
  background-image: url("../img/loading.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.id-card-upload .upload-section .upload-row .upload-area_1:not(.has-preview) {
  background-image: url("../img/Upload_ID_1.png");
}
.id-card-upload .upload-section .upload-row .upload-area_1:not(.has-preview):hover {
  background-image: url("../img/Upload_ID_1_hover.png");
}
.id-card-upload .upload-section .upload-row .upload-area_2:not(.has-preview) {
  background-image: url("../img/Upload_ID_2.png");
}
.id-card-upload .upload-section .upload-row .upload-area_2:not(.has-preview):hover {
  background-image: url("../img/Upload_ID_2_hover.png");
}
@media (max-width: 768px) {
  .id-card-upload .upload-section .upload-row {
    flex-direction: column;
    align-items: center;
  }
  .id-card-upload .upload-section .upload-row .upload-box {
    width: 330px;
    height: 200px;
  }
  .id-card-upload .upload-section .upload-row .upload-box .upload-area.uploading::after {
    bottom: 15%;
  }
}

#companyVerificationForm .computer-icon {
  margin-bottom: 20px;
}
#companyVerificationForm .computer-icon img {
  max-width: 450px;
  margin: auto;
  display: block;
}
@media (max-width: 768px) {
  #companyVerificationForm .computer-icon {
    margin: 30px 0;
  }
  #companyVerificationForm .computer-icon img {
    width: 80vw;
  }
}/*# sourceMappingURL=main.css.map */