@charset "UTF-8";
.banner {
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
a:hover {
  text-decoration: unset;
}

.basic-btn .btn {
  transition: 0.3s;
}
.basic-btn .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1024px) {
  .basic-btn .basic_btn .btn {
    font-size: 16px;
  }
}

.btn-1 {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.btn-2 {
  display: block;
  background-color: #16192d;
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  border: none;
}
.btn-2:hover {
  background-color: #777878;
  color: #fff;
}
.btn-2.active {
  background-color: #777878;
  color: #fff;
}

.btn-3 {
  background-color: #0071bc;
  padding: 8px 60px;
}
.btn-3:hover {
  background-color: #023370;
}

.btn-4 {
  border: 1px solid #777878;
  background-color: #f1f1f1;
  color: #333;
  padding-top: 8px;
  padding-bottom: 8px;
}
.btn-4:hover {
  background-color: #f0794d;
}

.btn-5 {
  background-color: transparent;
  color: #0071bc;
  padding-top: 8px;
  padding-bottom: 8px;
}
.btn-5:hover {
  background-color: #cccccc;
  color: #0071bc;
}

.btn-6 {
  background: linear-gradient(to bottom, #5d87e1, #426ec3);
  color: #fff;
  padding: 4px 20px;
  transition: 0.3s;
}
.btn-6:hover {
  color: #fff;
  background: linear-gradient(to bottom, #426ec3, #5d87e1);
}

.btn-7 {
  background: linear-gradient(to bottom, #ff6b6b, #e03131);
  color: #fff;
  padding: 4px 20px;
  transition: 0.3s;
}
.btn-7:hover {
  color: #fff;
  background: linear-gradient(to bottom, #e03131, #ff6b6b);
}

.btn-8 {
  background: linear-gradient(to bottom, #f1f1f1, #bababa);
  color: #000;
  padding: 4px 20px;
  transition: 0.3s;
  border: 1px solid #ced4da;
}
.btn-8:hover {
  color: #000;
  border: 1px solid #ced4da;
  background: linear-gradient(to bottom, #bababa, #f1f1f1);
}
.btn-8 svg {
  margin-right: 5px;
}

.btn-9 {
  background: linear-gradient(to bottom, #f1f1f1, #bababa);
  color: #000;
  padding: 4px 20px;
  transition: 0.3s;
  border: 1px solid #ced4da;
}
.btn-9:hover {
  color: #000;
  border: 1px solid #ced4da;
  background: linear-gradient(to bottom, #bababa, #f1f1f1);
}
.btn-9 svg {
  margin-right: 5px;
}

.btn-clear {
  background: linear-gradient(to bottom, #ffa8a8, #fa5252);
  color: #fff;
  padding: 4px 20px;
  border-top: none;
  border-bottom: none;
  transition: 0.3s;
}
.btn-clear:hover {
  color: #fff;
  background: linear-gradient(to bottom, #fa5252, #ffa8a8);
}

.btn-export {
  background: linear-gradient(to bottom, #63e6be, #40c057);
  color: #fff;
  padding: 4px 20px;
  border-top: none;
  border-bottom: none;
  transition: 0.3s;
}
.btn-export:hover {
  color: #fff;
  background: linear-gradient(to bottom, #40c057, #63e6be);
}

body {
  font-family: "Noto Sans TC", sans-serif;
}

.img-div {
  overflow: hidden;
}
.img-div img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-div-block {
  width: 270px;
}

.img-div-01 {
  position: relative;
  height: 0;
  overflow: hidden;
}
.img-div-01 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.icon {
  color: #0071bc;
}

.question-mark {
  margin-left: 8px;
  width: 12px;
  cursor: pointer;
}

.main_input {
  width: 100%;
  border: 1px solid #777878;
  color: #333;
  border-radius: 4px;
  padding: 10px 20px;
}

.checkbox-block {
  display: flex;
  align-items: center;
  position: relative;
}
.checkbox-block .checkbox-wrap {
  display: flex;
  align-items: center;
  /* outline: 1px solid #ced4da;*/
  /* max-height: 350px; */
  /* overflow-y: scroll; */
  /* background-color: #f1f1f1; */
}
.checkbox-block .checkbox-wrap span {
  white-space: nowrap;
  padding-left: 5px;
}
.checkbox-block .checkbox-wrap .checkmark-container {
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #cccccc;
}
.checkbox-block .checkbox-wrap .checkmark-wrap {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 100%;
}
.checkbox-block .checkbox-wrap .checkmark-wrap input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.checkbox-block .checkbox-wrap .checkmark-wrap input:checked ~ .checkmark {
  background-color: #023370;
}
.checkbox-block .checkbox-wrap .checkmark-wrap input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-block .checkbox-wrap .checkmark-wrap input:disabled ~ .checkmark {
  background-color: #fff;
  cursor: not-allowed;
}
.checkbox-block .checkbox-wrap .checkmark-wrap .checkmark {
  position: absolute;
  top: 50%;
  left: 0%;
  height: 20px;
  width: 20px;
  background-color: #fff;
  transform: translateY(-50%);
}
.checkbox-block .checkbox-wrap .checkmark-wrap .checkmark:after {
  content: "";
  left: 6px;
  top: 5px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
  position: absolute;
  display: none;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
  padding-bottom: 15px;
}

#loading {
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  font-size: 10vh;
  height: 100vh;
  justify-content: center;
  left: 0;
  pointer-events: none;
  transition: opacity, 0.5s;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 200;
}
#loading.active {
  opacity: 1;
}
#loading.active i {
  animation-duration: 2s;
  animation-name: loading;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes loading {
  from {
    color: rgba(255, 255, 255, 0.5);
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    color: white;
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  to {
    color: rgba(255, 255, 255, 0.5);
    transform: rotate(360deg);
  }
}
.modal .modal-title {
  font-size: 20px;
  color: #3f6bbe;
}
.modal .form-group {
  margin-bottom: 0.75rem;
  position: relative;
}
.modal .form-check-input {
  margin-top: 3px;
}
.modal .form-check + .form-check {
  margin-left: 15px;
}
.modal .form-account label {
  padding-bottom: 10px;
}
.modal .form-title {
  font-size: 16px;
  color: #3e3e3e;
}
.modal .txt-ps {
  display: block;
  padding-top: 5px;
  font-size: 14px;
  color: #eb5a26;
}
.modal .psd {
  margin-top: 8px;
}
.modal .toggle-password {
  padding: 10px;
  position: absolute;
  top: 27px;
  right: 5px;
  cursor: pointer;
}
.modal .generate-password {
  padding: 2px 20px;
  font-size: 14px;
  position: absolute;
  top: 32px;
  right: 49px;
}
.modal#passwordModal .generate-password {
  padding: 6px 12px;
  font-size: auto;
  position: static;
}

/* 歡迎使用 Nathan's \\ Nootstrap // */
.w-01 {
  width: 1%;
}

.w-02 {
  width: 2%;
}

.w-03 {
  width: 3%;
}

.w-04 {
  width: 4%;
}

.w-05 {
  width: 5%;
}

.w-06 {
  width: 6%;
}

.w-07 {
  width: 7%;
}

.w-08 {
  width: 8%;
}

.w-09 {
  width: 9%;
}

.w-10 {
  width: 10%;
}

.w-11 {
  width: 11%;
}

.w-12 {
  width: 12%;
}

.w-13 {
  width: 13%;
}

.w-14 {
  width: 14%;
}

.w-15 {
  width: 15%;
}

.w-16 {
  width: 16%;
}

.w-17 {
  width: 17%;
}

.w-18 {
  width: 18%;
}

.w-19 {
  width: 19%;
}

.w-20 {
  width: 20%;
}

.w-21 {
  width: 21%;
}

.w-22 {
  width: 22%;
}

.w-23 {
  width: 23%;
}

.w-24 {
  width: 24%;
}

.w-26 {
  width: 26%;
}

.w-27 {
  width: 27%;
}

.w-28 {
  width: 28%;
}

.w-29 {
  width: 29%;
}

.w-30 {
  width: 30%;
}

.w-31 {
  width: 31%;
}

.w-32 {
  width: 32%;
}

.w-33 {
  width: 33%;
}

.w-34 {
  width: 34%;
}

.w-35 {
  width: 35%;
}

.w-36 {
  width: 36%;
}

.w-37 {
  width: 37%;
}

.w-38 {
  width: 38%;
}

.w-39 {
  width: 39%;
}

.w-40 {
  width: 40%;
}

.w-41 {
  width: 41%;
}

.w-42 {
  width: 42%;
}

.w-43 {
  width: 43%;
}

.w-44 {
  width: 44%;
}

.w-45 {
  width: 45%;
}

.w-46 {
  width: 46%;
}

.w-47 {
  width: 47%;
}

.w-48 {
  width: 48%;
}

.w-49 {
  width: 49%;
}

.w-51 {
  width: 51%;
}

.w-52 {
  width: 52%;
}

.w-53 {
  width: 53%;
}

.w-54 {
  width: 54%;
}

.w-55 {
  width: 55%;
}

.w-56 {
  width: 56%;
}

.w-57 {
  width: 57%;
}

.w-58 {
  width: 58%;
}

.w-59 {
  width: 59%;
}

.w-60 {
  width: 60%;
}

.w-61 {
  width: 61%;
}

.w-62 {
  width: 62%;
}

.w-63 {
  width: 63%;
}

.w-64 {
  width: 64%;
}

.w-65 {
  width: 65%;
}

.w-66 {
  width: 66%;
}

.w-67 {
  width: 67%;
}

.w-68 {
  width: 68%;
}

.w-69 {
  width: 69%;
}

.w-70 {
  width: 70%;
}

.w-71 {
  width: 71%;
}

.w-72 {
  width: 72%;
}

.w-73 {
  width: 73%;
}

.w-74 {
  width: 74%;
}

.w-76 {
  width: 76%;
}

.w-77 {
  width: 77%;
}

.w-78 {
  width: 78%;
}

.w-79 {
  width: 79%;
}

.w-80 {
  width: 80%;
}

.w-81 {
  width: 81%;
}

.w-82 {
  width: 82%;
}

.w-83 {
  width: 83%;
}

.w-84 {
  width: 84%;
}

.w-85 {
  width: 85%;
}

.w-86 {
  width: 86%;
}

.w-87 {
  width: 87%;
}

.w-88 {
  width: 88%;
}

.w-89 {
  width: 89%;
}

.w-90 {
  width: 90%;
}

.w-91 {
  width: 91%;
}

.w-92 {
  width: 92%;
}

.w-93 {
  width: 93%;
}

.w-94 {
  width: 94%;
}

.w-95 {
  width: 95%;
}

.w-96 {
  width: 96%;
}

.w-97 {
  width: 97%;
}

.w-98 {
  width: 98%;
}

.w-99 {
  width: 99%;
}

.h-01 {
  height: 1%;
}

.h-02 {
  height: 2%;
}

.h-03 {
  height: 3%;
}

.h-04 {
  height: 4%;
}

.h-05 {
  height: 5%;
}

.h-06 {
  height: 6%;
}

.h-07 {
  height: 7%;
}

.h-08 {
  height: 8%;
}

.h-09 {
  height: 9%;
}

.h-10 {
  height: 10%;
}

.h-11 {
  height: 11%;
}

.h-12 {
  height: 12%;
}

.h-13 {
  height: 13%;
}

.h-14 {
  height: 14%;
}

.h-15 {
  height: 15%;
}

.h-16 {
  height: 16%;
}

.h-17 {
  height: 17%;
}

.h-18 {
  height: 18%;
}

.h-19 {
  height: 19%;
}

.h-20 {
  height: 20%;
}

.h-21 {
  height: 21%;
}

.h-22 {
  height: 22%;
}

.h-23 {
  height: 23%;
}

.h-24 {
  height: 24%;
}

.h-26 {
  height: 26%;
}

.h-27 {
  height: 27%;
}

.h-28 {
  height: 28%;
}

.h-29 {
  height: 29%;
}

.h-30 {
  height: 30%;
}

.h-31 {
  height: 31%;
}

.h-32 {
  height: 32%;
}

.h-33 {
  height: 33%;
}

.h-34 {
  height: 34%;
}

.h-35 {
  height: 35%;
}

.h-36 {
  height: 36%;
}

.h-37 {
  height: 37%;
}

.h-38 {
  height: 38%;
}

.h-39 {
  height: 39%;
}

.h-40 {
  height: 40%;
}

.h-41 {
  height: 41%;
}

.h-42 {
  height: 42%;
}

.h-43 {
  height: 43%;
}

.h-44 {
  height: 44%;
}

.h-45 {
  height: 45%;
}

.h-46 {
  height: 46%;
}

.h-47 {
  height: 47%;
}

.h-48 {
  height: 48%;
}

.h-49 {
  height: 49%;
}

.h-51 {
  height: 51%;
}

.h-52 {
  height: 52%;
}

.h-53 {
  height: 53%;
}

.h-54 {
  height: 54%;
}

.h-55 {
  height: 55%;
}

.h-56 {
  height: 56%;
}

.h-57 {
  height: 57%;
}

.h-58 {
  height: 58%;
}

.h-59 {
  height: 59%;
}

.h-60 {
  height: 60%;
}

.h-61 {
  height: 61%;
}

.h-62 {
  height: 62%;
}

.h-63 {
  height: 63%;
}

.h-64 {
  height: 64%;
}

.h-65 {
  height: 65%;
}

.h-66 {
  height: 66%;
}

.h-67 {
  height: 67%;
}

.h-68 {
  height: 68%;
}

.h-69 {
  height: 69%;
}

.h-70 {
  height: 70%;
}

.h-71 {
  height: 71%;
}

.h-72 {
  height: 72%;
}

.h-73 {
  height: 73%;
}

.h-74 {
  height: 74%;
}

.h-76 {
  height: 76%;
}

.h-77 {
  height: 77%;
}

.h-78 {
  height: 78%;
}

.h-79 {
  height: 79%;
}

.h-80 {
  height: 80%;
}

.h-81 {
  height: 81%;
}

.h-82 {
  height: 82%;
}

.h-83 {
  height: 83%;
}

.h-84 {
  height: 84%;
}

.h-85 {
  height: 85%;
}

.h-86 {
  height: 86%;
}

.h-87 {
  height: 87%;
}

.h-88 {
  height: 88%;
}

.h-89 {
  height: 89%;
}

.h-90 {
  height: 90%;
}

.h-91 {
  height: 91%;
}

.h-92 {
  height: 92%;
}

.h-93 {
  height: 93%;
}

.h-94 {
  height: 94%;
}

.h-95 {
  height: 95%;
}

.h-96 {
  height: 96%;
}

.h-97 {
  height: 97%;
}

.h-98 {
  height: 98%;
}

.h-99 {
  height: 99%;
}

.table-default {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border: 1.5px solid #c6e2e4;
}
.table-default th,
.table-default td {
  padding: 0;
}
.table-default .thead {
  position: sticky;
  top: 0;
  z-index: 2;
  border-radius: 25px;
}
.table-default .thead tr {
  border: none;
}
.table-default .thead th {
  border: none;
  background-color: #c6e2e4;
  font-size: 1rem;
}
.table-default .thead .content {
  padding: 10px;
}
.table-default .content {
  padding: 15px 10px;
  font-weight: 700;
  color: #3e3e3e;
}
.table-default .tbody tr {
  border: none;
}
.table-default .tbody tr.odd {
  background-color: #fafcfc;
}
.table-default .tbody tr.odd .content {
  color: #3e3e3e;
}
.table-default .tbody tr.even {
  background-color: #fff;
}
.table-default .tbody tr.even .content {
  color: #3e3e3e;
}
.table-default .tbody td {
  border: none;
}
.table-default .tbody .tr-total {
  background-color: #c6e2e4;
}
.bootstrap-table {
  width: 100%;
  border-collapse: collapse;
}
.bootstrap-table thead .custom-header th {
  border: 1px solid #bababa;
}
.bootstrap-table thead tr:not(.custom-header) th {
  border: 1px solid #bababa;
  border-bottom: none;
}
.bootstrap-table td {
  border: 1px solid #bababa;
  text-align: center;
}
.bootstrap-table tbody tr:nth-child(even) {
  background-color: #f7fbff;
}

.txt {
  margin-bottom: 0;
  letter-spacing: 3px;
  line-height: 1.6;
}

.btn {
  letter-spacing: 3px;
}

.txt-h1 {
  font-size: 38px;
  font-size: 2.375rem;
}

.txt-h2 {
  font-size: 28px;
  font-size: 1.75rem;
}

.txt-h3 {
  font-size: 18px;
  font-size: 1.125rem;
}

.txt-h4 {
  font-size: 16px;
  font-size: 1rem;
}

.txt-s {
  font-size: 14px;
  font-size: 0.875rem;
}

.txt-p1 {
  font-size: 16px;
  font-size: 1rem;
}

.txt-p2 {
  font-size: 14px;
  font-size: 0.875rem;
}

.txt-light-blue {
  color: #00ffff !important;
}

.txt-primary {
  color: #0071bc !important;
}

.txt-orange {
  color: #eb5a26 !important;
}

.txt-green {
  color: !important;
}

.txt-blue2 {
  color: #4d77c7 !important;
}

.title-square {
  display: flex;
  align-items: center;
}
.title-square > .txt {
  padding-left: 8px;
}
.title-square::before {
  content: "■";
  display: block;
  color: #0071bc;
  font-size: 16px;
  position: relative;
  top: -2px;
}

.small {
  font-size: 12px;
}

.tick::before {
  content: "✓";
  display: inline-block;
  padding-right: 6px;
  color: #000;
}

.line-height-32 {
  line-height: 32px;
}

.line-delete {
  position: relative;
}
.line-delete::after {
  content: "";
  display: block;
  width: 124%;
  height: 1px;
  background-color: #16192d;
  position: absolute;
  left: -12%;
  bottom: 50%;
  transform: translateY(-50%);
}

.discontinued {
  margin-top: 8px;
  padding: 3px 6px !important;
  color: #fff !important;
  background-color: #eaeaea;
  border-radius: 4px;
}

.required {
  position: relative;
}
.required::after {
  content: "*";
  color: #e03131;
  padding-left: 5px;
}

.required-blue {
  position: relative;
}
.required-blue::after {
  content: "*";
  color: #4d77c7;
  padding-left: 5px;
}

.gray-line-double {
  position: relative;
}
.gray-line-double::before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #bababa;
  position: absolute;
  left: -15px;
}
.gray-line-double::after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #bababa;
  position: absolute;
  right: -15px;
}

.list-n {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

body {
  position: relative;
}

.banner.login {
  background-image: url(../images/login/login_bg.png);
  height: calc(100vh - 86px);
}
.banner.login > .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.login-block {
  width: 460px;
  color: #3e3e3e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  padding: 50px;
}
.login-block .title {
  text-align: center;
  padding-bottom: 30px;
  font-weight: 700;
}
.login-block .input-block .txt {
  font-weight: 600;
  padding-bottom: 8px;
}
.login-block .input-block + .input-block {
  padding-top: 12px;
}
.login-block .checkbox-block {
  justify-content: space-between;
  padding-top: 24px;
}
.login-block .checkbox-block .link {
  display: block;
  color: #eb5a26;
  transition: 0.3s;
  font-weight: 600;
}
.login-block .checkbox-block .link:hover {
  color: #023370;
}
.login-block .btn-block {
  padding-top: 60px;
}
.login-block .btn-block .btn {
  width: 100%;
  background-color: #16192d;
  border: none;
}
.login-block .btn-block .btn:hover {
  background-color: #777878;
}

footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
}/*# sourceMappingURL=login.css.map */