@charset "UTF-8";
/*
-----------------------------------
  0. Reset
  1. 變數
  2. mixin
  3. 樣式共用
  4. 欄位flex 
  5. 按鈕button
  6. 表單form
  7. checkbox & radio & 驗證碼
  8. 滑桿silder
  9. 頁籤tab
  10. 面板panel
  11. 提示面板well
  12. 標籤tag
  13. list style列表樣式
  14. 漲跌箭頭
  15. 表格table
  16. 表格scrollbar
  17. 跳窗modal
  18. 桌機版nav
  19. 手機版nav
  20. 二級tab選單
  21. 主要內容區
  22. 麵包屑breadcrumbs
  23. 統計數據圖表顯示切換按鈕
  24. 頁尾footer 
  25. 載入loading
  26. 動畫animated
-----------------------------------
*/
/*===============================
  Reset
================================*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/*===============================
  變數
================================*/
:root {
  --fontFamily: "PingFangTC", NotoSans, Microsoft JhengHei, "微軟正黑體", "Helvetica", "sans-serif";
  /*語意化顏色變數*/
  --mainColor:#186B8D;
  --primaryColor: #027C9B;
  --primaryColor_hover: #006B87;
  --primaryText: #242424;
  --primaryLinear:linear-gradient(to right, #186b8d 0%, #027c9b);
  --secondaryColor: #007BBA;
  --secondaryColor_hover: #006AA0;
  --secondaryText: #114B7E;
  --secondaryBg: #D8EEFF;
  --tertiaryColor:#FFD37C;
  --tertiaryColor_hover: #F9B302;
  --tertiaryBg:#FFFDEE;
  --tertiaryBg_light: #FFFCF6;
  --infoColor: #2174D7;
  --infoColor_hover: #1762a5;
  --lightGreenColor:#EEFAFF;
  --lightGreenColor_hover: #DEEFF4;
  --purpleColor:#5667d2;
  --purpleColor_hover: #3f53cc;
  --text:#3F3F3F;
  --text_ligth:#676767;
  --border:#D7D7D7;
  --border_light:#E3E3E3;
  --grayBg:#f5f5f5;
  --lightGrayBg:#fcfcfc;
  --disabled:#EEEEEE;
  --disabledText:#656565;
  --headerMenuText:#765B27;
  --headerMenuBorder: #977431;
  --headerMenuBg:#fff2d1;
  --tableCaptionBG:#A4D7FF;
  --tableThBG: #D8EEFF;
  --tableTdBG: #F2F9FF;
  --tableTdStripe:#fcfcfc;
  --tableText:#114b7e;
  --red:#D70000;
  --inputFocus:#0C69D9;
  --outlineBrown:#765B27;
  --outlineYellow:#FFD37C;
}

/*===============================
  mixin
================================*/
/*===============================
  樣式共用
================================*/
* {
  transition: font-size 0.3s ease;
}
*:focus {
  outline: 3px dashed var(--outlineBrown);
}

html {
  font-size: 1rem;
}
html:has(.modal-open) {
  overflow: hidden;
  padding-right: 15px;
}

body {
  font-family: var(--fontFamily);
  font-size: 1rem;
  width: 100%;
  line-height: 1.4;
  color: var(--primaryText);
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
}
body.mobile-menu-open {
  overflow: hidden;
}

.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.float-right {
  float: right;
}

.clearfix::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  clear: both;
}

.bold {
  font-weight: bold;
}

.red {
  color: var(--red);
}

.blue {
  color: var(--secondaryColor);
}

.dark-blue {
  color: var(--secondaryText);
}

.ellipsis-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.nowrap {
  white-space: nowrap;
}

.new-icon {
  width: 32px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.link {
  font-size: 1rem;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--secondaryColor);
  text-decoration: underline;
  cursor: pointer;
}
.link:has(.outlink-icon) {
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}

.outlink-icon {
  display: inline-flex;
  width: 1.125rem;
  height: 1.125rem;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
  margin-left: 0.375rem;
}

.divide {
  width: 0;
  min-height: 2.75rem;
  height: 100%;
  border-left: 1px solid var(--border_light);
  align-self: center;
}

.seperate {
  border: 0;
  border-top: 1px dotted var(--border_light);
}

.goMainContent {
  display: block;
  width: auto;
  height: auto;
  position: absolute;
  top: 5px;
  left: -1000px;
  z-index: 100;
  background-color: var(--tertiaryColor);
  padding: 0.625rem;
  white-space: nowrap;
  color: var(--primaryText);
  text-decoration: none;
  overflow: hidden;
}
.goMainContent:link {
  color: var(--primaryText);
}
.goMainContent:visited {
  color: var(--primaryText);
}

.goMainContent:focus {
  left: 5px;
  outline: 1px solid var(--outlineYellow);
}

a#key_U:focus,
a#key_C:focus,
a#key_B:focus {
  position: relative;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
}

.w100 {
  width: 100% !important;
}

/*===============================
  欄位flex
================================*/
.flex-row {
  display: flex;
  position: relative;
}
.flex-row.align-items-start {
  align-items: flex-start;
}
.flex-row.align-items-center {
  align-items: center;
}
.flex-row.align-items-end {
  align-items: flex-end;
}
.flex-row.justify-content-start {
  justify-content: flex-start;
}
.flex-row.justify-content-center {
  justify-content: center;
}
.flex-row.justify-content-end {
  justify-content: flex-end;
}
.flex-row.justify-content-between {
  justify-content: space-between;
}
.flex-row.gap-0 {
  -moz-column-gap: 0;
       column-gap: 0;
}
.flex-row.gap-4 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
.flex-row.gap-6 {
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}
.flex-row.gap-8 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.flex-row.gap-10 {
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
.flex-row.gap-12 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.flex-row.gap-16 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.flex-row.gap-20 {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.flex-row.gap-24 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.flex-row.gap-32 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.flex-row.gap-40 {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
.flex-row.flex-wrap {
  flex-wrap: wrap;
}
.flex-row.column {
  flex-direction: column !important;
}

.col-12-md {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.col-11-md {
  width: 91.6666%;
  box-sizing: border-box;
  position: relative;
}

.col-10-md {
  width: 83.3333%;
  box-sizing: border-box;
  position: relative;
}

.col-9-md {
  width: 75%;
  box-sizing: border-box;
  position: relative;
}

.col-8-md {
  width: 66.6666%;
  box-sizing: border-box;
  position: relative;
}

.col-7-md {
  width: 58.3333%;
  box-sizing: border-box;
  position: relative;
}

.col-6-md {
  width: 50%;
  box-sizing: border-box;
  position: relative;
}

.col-5-md {
  width: 41.6666%;
  box-sizing: border-box;
  position: relative;
}

.col-4-md {
  width: 33.3333%;
  box-sizing: border-box;
  position: relative;
}

.col-3-md {
  width: 25%;
  box-sizing: border-box;
  position: relative;
}

.col-2-md {
  width: 16.6666%;
  box-sizing: border-box;
  position: relative;
}

.col-1-md {
  width: 8.3333%;
  box-sizing: border-box;
  position: relative;
}

.mobile-show {
  display: none;
}

@media screen and (max-width: 992px) {
  .col-12-sm {
    width: 100%;
  }
  .col-11-sm {
    width: 91.6666%;
  }
  .col-10-sm {
    width: 83.3333%;
  }
  .col-9-sm {
    width: 75%;
  }
  .col-8-sm {
    width: 66.6666%;
  }
  .col-7-sm {
    width: 58.3333%;
  }
  .col-6-sm {
    width: 50%;
  }
  .col-5-sm {
    width: 41.6666%;
  }
  .col-4-sm {
    width: 33.3333%;
  }
  .col-3-sm {
    width: 25%;
  }
  .col-2-sm {
    width: 16.6666%;
  }
  .col-1-sm {
    width: 8.3333%;
  }
  .flex-row.mobile-column {
    flex-direction: column;
  }
  .flex-row.mobile-column.gap-0 {
    row-gap: 0;
  }
  .flex-row.mobile-column.gap-4 {
    row-gap: 0.25rem;
  }
  .flex-row.mobile-column.gap-6 {
    row-gap: 0.375rem;
  }
  .flex-row.mobile-column.gap-8 {
    row-gap: 0.5rem;
  }
  .flex-row.mobile-column.gap-10 {
    row-gap: 0.625rem;
  }
  .flex-row.mobile-column.gap-12 {
    row-gap: 0.75rem;
  }
  .flex-row.mobile-column.gap-16 {
    row-gap: 1rem;
  }
  .flex-row.mobile-column.gap-20 {
    row-gap: 1.25rem;
  }
  .flex-row.mobile-column.gap-24 {
    row-gap: 1.5rem;
  }
  .flex-row.mobile-column.gap-32 {
    row-gap: 2rem;
  }
  .flex-row.mobile-column.gap-40 {
    row-gap: 2.5rem;
  }
  .mobile-show {
    display: block;
  }
}
/*===============================
  按鈕button
================================*/
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.625rem 1rem;
  font-size: 1rem;
  color: var(--primaryText);
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: normal;
  line-height: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s;
}
.button.disabled, .button:disabled {
  cursor: not-allowed;
  opacity: 0.6 !important;
}
.button:focus {
  outline: 2px dashed var(--outlineYellow);
}
.button .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.button:has(.icon) {
  padding: 0.5625rem 1rem;
}

.button-primary {
  color: #fff;
  background-color: var(--primaryColor);
}
.button-primary:not(.disabled):hover, .button-primary:not(.disabled):focus, .button-primary:not(:disabled):hover, .button-primary:not(:disabled):focus {
  background-color: var(--primaryColor_hover);
}

.button-outline-primary {
  background-color: #fff;
  border-color: var(--primaryColor);
  color: var(--primaryColor);
  filter: none;
}
.button-outline-primary:not(.disabled):hover, .button-outline-primary:not(:disabled):hover {
  background-color: var(--primaryColor);
  color: #fff;
}
.button-outline-primary:not(.disabled):hover .icon, .button-outline-primary:not(:disabled):hover .icon {
  filter: brightness(0) invert(1);
}

.button-secondary {
  background-color: var(--secondaryColor);
  color: #fff;
}
.button-secondary:not(.disabled):hover, .button-secondary:not(.disabled):focus, .button-secondary:not(:disabled):hover, .button-secondary:not(:disabled):focus {
  background-color: var(--secondaryColor_hover);
}

.button-tertiary {
  background-color: var(--tertiaryColor);
  color: var(--primaryText);
}
.button-tertiary:not(.disabled):hover, .button-tertiary:not(.disabled):focus, .button-tertiary:not(:disabled):hover, .button-tertiary:not(:disabled):focus {
  background-color: var(--tertiaryColor_hover);
}

.button-info {
  color: #fff;
  background-color: var(--infoColor);
}
.button-info:not(.disabled):hover, .button-info:not(.disabled):focus, .button-info:not(:disabled):hover, .button-info:not(:disabled):focus {
  background-color: var(--infoColor_hover);
}

.button-purple {
  color: #fff;
  background-color: var(--purpleColor);
}
.button-purple:not(.disabled):hover, .button-purple:not(.disabled):focus, .button-purple:not(:disabled):hover, .button-purple:not(:disabled):focus {
  background-color: var(--purpleColor_hover);
}

.button-lightGreen {
  color: var(--primaryColor);
  background-color: var(--lightGreenColor);
}
.button-lightGreen:not(.disabled):hover, .button-lightGreen:not(.disabled):focus, .button-lightGreen:not(:disabled):hover, .button-lightGreen:not(:disabled):focus {
  background-color: var(--lightGreenColor_hover);
}

.button-size-md {
  padding: 0.625rem !important;
}

.button-size-sm {
  padding: 0.1875rem 0.625rem !important;
}
.button-size-sm .icon {
  width: 2rem;
  height: 2rem;
}

.button-sm {
  width: 140px;
}

.button-md {
  width: 196px;
}

.button-block {
  width: 100%;
}

.button-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  gap: 1.25rem;
}
.button-box.col-6 {
  grid-column: span 1;
}
.button-box.col-12 {
  grid-column: span 2;
}
.button-box.offset-md {
  padding-left: 6rem;
}
.button-box.offset-lg {
  padding-left: 9.65rem;
}
.button-box.offset-xl {
  padding-left: 10.375rem;
}
.button-box.justify-content-center {
  justify-content: center;
}
.button-box.margin-top {
  margin-top: 1.5rem;
}

@media screen and (max-width: 992px) {
  .button-box {
    justify-content: center;
  }
  .button-box.col-6, .button-box.col-12 {
    grid-column: span 2;
  }
  .button-box.offset-md, .button-box.offset-lg, .button-box.offset-xl {
    padding-left: 0;
  }
  .button-box.margin-top {
    margin-top: 0;
  }
}
/*===============================
  欄位grid
================================*/
.grid-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.grid-row .divide-border {
  position: relative;
}
.grid-row .divide-border::before {
  content: "";
  display: block;
  width: 0;
  height: 90%;
  border-left: 1px solid var(--border_light);
  position: absolute;
  top: 50%;
  right: -0.75rem;
  transform: translateY(-50%);
}

.grid-4-md {
  grid-column: span 4;
}

.grid-6-md {
  grid-column: span 6;
}

.grid-8-md {
  grid-column: span 8;
}

.grid-12-md {
  grid-column: span 12;
}

@media screen and (max-width: 992px) {
  .grid-row .divide-border::before {
    display: none;
  }
  .grid-12-sm {
    grid-column: span 12;
  }
}
/*===============================
  表單form
================================*/
.form-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.375rem;
}
.form-group .remind {
  width: 100%;
}
.form-group.col-6 {
  grid-column: span 1;
}
.form-group.col-12 {
  grid-column: span 2;
}
.form-group:has(.align-top) {
  align-items: flex-start;
}
.form-group.align-items-start {
  align-items: flex-start;
}
.form-group:has(.height-sm) .control-label, .form-group:has(.height-sm) .radio-inline, .form-group:has(.height-sm) .checkbox-inline {
  min-height: 2rem;
}

.mt-10 {
  margin-top: 10px;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.label {
  flex-shrink: 0;
}

.field {
  flex-grow: 1;
  position: relative;
}

.function {
  flex-shrink: 0;
}

.control-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--primaryText);
}
.control-label.label-md {
  width: 11.5rem;
}
.control-label.label-lg {
  width: 9.3rem;
}
.control-label.label-xl {
  width: 10rem;
}

.form-control {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 0.625rem;
  font-size: 1rem;
  color: var(--primaryText);
  background-color: #fff;
  border: 1px solid var(--primaryText);
  border-radius: 4px;
  box-sizing: border-box;
}
.form-control::-moz-placeholder {
  color: var(--disabledText);
}
.form-control::placeholder {
  color: var(--disabledText);
}
.form-control:disabled {
  color: var(--disabledText);
  background-color: var(--disabled);
  cursor: not-allowed;
}
.form-control.error {
  border-color: var(--red);
}
.form-control.error ~ .error-tooltip {
  display: block;
}
.form-control.error + .error-tooltip {
  display: block;
}

.form-control-size {
  width: 110px;
}

.form-control-size-middle {
  width: 150px;
}

.notice {
  width: 100%;
  font-size: 1rem;
  color: var(--red);
  margin-bottom: 0.625rem;
}

/*錯誤提示*/
.error-tooltip {
  display: none;
  font-size: 0.875rem;
  padding: 0.4375rem;
  background-color: var(--red);
  border-radius: 4px;
  color: #fff;
  white-space: nowrap;
  position: absolute;
  bottom: 100%;
  right: 0;
}
.error-tooltip::before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  margin-right: 2px;
  background-image: url(../images/icon_alert_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  vertical-align: text-bottom;
}
.error-tooltip::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: var(--red) transparent transparent transparent;
  position: absolute;
  top: 100%;
  right: 15px;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-6 {
  order: 6 !important;
}

.order-7 {
  order: 7 !important;
}

.order-8 {
  order: 7 !important;
}

.order-9 {
  order: 7 !important;
}

.order-9 {
  order: 7 !important;
}

.order-10 {
  order: 10 !important;
}

.order-11 {
  order: 11 !important;
}

.order-12 {
  order: 12 !important;
}

@media screen and (max-width: 992px) {
  .form-group {
    width: 100% !important;
    flex-direction: column;
    align-items: flex-start;
    order: 0;
  }
  .form-group.col-6, .form-group.col-12 {
    grid-column: span 2;
  }
  .form-group > label.control-label {
    width: 100%;
    min-height: auto;
  }
  .form-group .field {
    width: 100%;
  }
  .form-control-size {
    width: 100%;
  }
  .form-control-size-middle {
    width: 100%;
  }
  .flex-inline-mobile {
    display: inline;
  }
  .control-label {
    min-height: auto;
    width: auto !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-6 {
    order: 6 !important;
  }
  .order-sm-7 {
    order: 7 !important;
  }
  .order-sm-8 {
    order: 8 !important;
  }
  .order-sm-9 {
    order: 9 !important;
  }
  .order-sm-10 {
    order: 10 !important;
  }
  .order-sm-11 {
    order: 11 !important;
  }
  .order-sm-12 {
    order: 12 !important;
  }
  .mixSection_Content select {
    width: 80vw;
  }
}
/*===============================
  checkbox & radio & 驗證碼
================================*/
.checkbox-inline,
.radio-inline {
  width: -moz-fit-content;
  width: fit-content;
  min-height: 2.75rem;
  line-height: normal;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-inline:has(:disabled),
.radio-inline:has(:disabled) {
  cursor: not-allowed;
}

input[type=checkbox], input[type=radio] {
  margin: 0;
}

input[type=checkbox]:disabled,
input[type=radio]:disabled {
  cursor: not-allowed;
}

/*radio上方提示*/
.radio-tooltip,
.check-tooltip {
  position: relative;
}
.radio-tooltip .tooltip-inner,
.check-tooltip .tooltip-inner {
  display: none;
  min-width: 120px;
  padding: 0.5rem;
  font-size: 0.875rem;
  box-shadow: 0 0 4px 0 #ddd;
  border: 1px solid var(--border);
  background-color: #fff;
  border-radius: 4px;
  word-wrap: break-word;
  box-sizing: border-box;
  position: absolute;
  bottom: 90%;
  z-index: 1;
}
.radio-tooltip .tooltip-inner::before,
.check-tooltip .tooltip-inner::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #ddd transparent transparent transparent;
  position: absolute;
  left: 6px;
  bottom: -7px;
}
.radio-tooltip .tooltip-inner::after,
.check-tooltip .tooltip-inner::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  left: 6px;
  bottom: -5px;
}
.radio-tooltip:hover .tooltip-inner,
.check-tooltip:hover .tooltip-inner {
  display: block;
}

.radio-tooltip .tooltip-inner {
  min-width: 400px;
}

/*驗證碼*/
.captcha-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.captcha-box .button {
  height: 2.75rem;
}

.captcha-img {
  width: 120px;
  display: inline-flex;
  border: 1px solid var(--border);
}

@media screen and (max-width: 992px) {
  .captcha-box {
    flex-direction: column;
  }
  .captcha-box .button {
    width: 100%;
  }
}
/*===============================
  滑桿slider
================================*/
.slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.slider button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 32px;
  height: 32px;
  font-size: 1.5rem;
  border: none;
  border-radius: 4px;
  background-color: var(--border_light);
  cursor: pointer;
}

.slider-wrapper {
  position: relative;
  flex: 1;
}
.slider-wrapper input[type=range] {
  width: 100%;
  height: 8px;
  border-radius: 1000px;
  background: linear-gradient(to right, #188dff 0%, #d7d7d7 0%);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
.slider-wrapper input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 32px;
  width: 32px;
  background-color: #fff;
  border: 8px solid #0058af;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: border-box;
}
.slider-wrapper input[type=range]::-moz-range-thumb {
  height: 32px;
  width: 32px;
  background-color: #fff;
  border: 8px solid #0058af;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: border-box;
}
.slider-wrapper .slider-tooltip {
  display: none;
  width: 40px;
  height: 30px;
  background-color: #3f3f3f;
  color: #fff;
  text-align: center;
  padding: 4px 6px;
  font-size: 1rem;
  border-radius: 4px;
  position: absolute;
  top: -41px;
  left: 50%;
  white-space: nowrap;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 1;
}
.slider-wrapper .slider-tooltip::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4.5px 0px;
  border-color: #3f3f3f transparent transparent;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

/*===============================
  頁籤tab
================================*/
.tab-control {
  display: flex;
  background-color: var(--lightGrayBg);
  border: 1px solid var(--border);
  box-sizing: border-box;
}
.tab-control .tab > a {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: var(--primaryText);
  text-decoration: none;
  padding: 0.625rem 1.5rem;
  text-align: center;
  background-color: var(--lightGrayBg);
  border-top: 4px solid transparent;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  box-sizing: border-box;
  position: relative;
}
.tab-control .tab > a::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
.tab-control .tab > a:focus {
  outline: 2px dashed var(--outlineYellow);
  outline-offset: -2px;
}
.tab-control .tab.tab-table > a::before {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.375rem;
  background-image: url(../images/tab_table_black.png);
}
.tab-control .tab.tab-diagram > a::before {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.375rem;
  background-image: url(../images/tab_charts_black.png);
}
.tab-control .tab.active > a {
  color: var(--primaryColor);
  font-weight: 600;
  background-color: #fff;
  border-top: 4px solid var(--primaryColor);
}
.tab-control .tab.active > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.tab-control .tab.active:last-child > a {
  border-right: 1px solid var(--border);
}
.tab-control .tab.active.tab-table > a::before {
  background-image: url(../images/tab_table_green.png);
}
.tab-control .tab.active.tab-diagram > a::before {
  background-image: url(../images/tab_charts_green.png);
}
.tab-control .tab + .tab > a {
  border-left: 0;
}
.tab-control .tab:first-child > a {
  border-left: 0;
}
.tab-control .tab:last-child > a {
  border-right: 0;
}

.tab-content .tab-pane {
  display: none;
}
.tab-content .tab-pane > .block {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-top: 0;
  background-color: #fff;
  box-sizing: border-box;
}
.tab-content .tab-pane.active {
  display: block;
}
.tab-content .title {
  font-size: 1.25rem;
  color: var(--primaryColor);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/*===============================
  面板panel
================================*/
.panel {
  width: 100%;
  padding: 1.25rem;
  box-sizing: border-box;
}

.panel-default {
  background-color: #fff;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
  border: solid 1px var(--border_light);
  border-radius: 4px;
}

.panel-gray {
  background-color: var(--grayBg);
  border-radius: 8px;
}

.panel-pad-lg {
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 6vw, 4.5rem);
}

/*===============================
  提示面板well
================================*/
.well {
  width: 100%;
  padding: 0.625rem;
  background-color: var(--grayBg);
  box-sizing: border-box;
  font-family: PingFangTC;
}

.well-pad-sm {
  padding: 0.5rem;
}

/*===============================
  標籤tag
================================*/
.tag-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem;
  border-radius: 4px;
  box-sizing: border-box;
}
.tag .txt {
  flex-grow: 1;
  font-size: 1rem;
  font-weight: bold;
}
.tag .remove {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.tag .remove img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  margin: auto;
}

.tag-warning {
  background-color: #fff2d1;
}
.tag-warning .txt {
  color: var(--primaryText);
}
.tag-warning .remove:focus {
  outline-color: var(--outlineBrown);
}

/*===============================
  list style列表樣式
================================*/
.list-style-disc {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.125rem;
}
.list-style-disc > li {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
}
.list-style-disc > li ol,
.list-style-disc > li ul {
  padding-left: 2.25rem;
}

.list-style-decimal {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.125rem;
}
.list-style-decimal > li {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
}
.list-style-decimal > li ol,
.list-style-decimal > li ul {
  padding-left: 2.25rem;
}

.list-style-decimal-brackets {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.125rem;
  counter-reset: list-item;
}
.list-style-decimal-brackets > li {
  counter-increment: list-item;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
}
.list-style-decimal-brackets > li::marker {
  content: "(" counter(list-item, decimal) ") ";
}
.list-style-decimal-brackets > li ol,
.list-style-decimal-brackets > li ul {
  padding-left: 2.25rem;
}

.list-style-cjk-ideographic {
  list-style-type: cjk-ideographic;
  list-style-position: outside;
  padding-left: 2.25rem;
}
.list-style-cjk-ideographic > li {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
}
.list-style-cjk-ideographic > li ol,
.list-style-cjk-ideographic > li ul {
  padding-left: 2.25rem;
}

/*===============================
  漲跌箭頭
================================*/
.grow-value {
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 1.625rem;
  white-space: nowrap;
  position: relative;
}
.grow-value::before {
  content: "";
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.grow-value.up {
  color: var(--red);
}
.grow-value.up::before {
  background-image: url(../images/arrow_up_big_red.png);
}
.grow-value.down {
  color: #028600;
}
.grow-value.down::before {
  background-image: url(../images/arrow_down_big_green.png);
}

/*===============================
  表格table
================================*/
/*table*/
.note {
  margin-top: 0.625rem;
}

.table-container + .table-container {
  margin-top: 1.25rem;
}

table {
  width: 100%;
}
table thead tr th {
  font-size: 1rem;
  padding: 0.625rem;
  word-break: break-word;
  box-sizing: border-box;
  vertical-align: middle;
}
table tbody tr th,
table tbody tr td,
table tfoot tr th,
table tfoot tr td {
  font-size: 1rem;
  padding: 1rem 0.625rem;
  word-break: break-word;
  position: relative;
  box-sizing: border-box;
  vertical-align: middle;
}
table tbody tr th:has(.td-tooltip-trigger),
table tbody tr td:has(.td-tooltip-trigger),
table tfoot tr th:has(.td-tooltip-trigger),
table tfoot tr td:has(.td-tooltip-trigger) {
  cursor: default;
}
table.sm thead tr th,
table.sm thead tr td,
table.sm tbody tr th,
table.sm tbody tr td,
table.sm tfoot tr td {
  font-size: 0.875rem;
}
table .red {
  color: var(--red) !important;
}

/*統計查詢 表單頁主要表格*/
.striped-table {
  position: relative;
}
.striped-table thead tr th {
  height: 60px;
  color: var(--tableText);
  font-weight: bold;
  text-align: left;
  background-color: var(--tableThBG);
  border-top: 1px solid var(--border);
  padding: 0.625rem 0.5rem;
  box-sizing: border-box;
}
.striped-table thead tr th.text-center {
  text-align: center;
}
.striped-table thead tr th.text-right {
  text-align: right;
}
.striped-table thead tr th:first-child {
  border-left: 1px solid var(--border);
}
.striped-table thead tr th:last-child {
  border-right: 1px solid var(--border);
}
.striped-table tbody tr th,
.striped-table tbody tr td,
.striped-table tfoot tr th,
.striped-table tfoot tr td {
  height: 56px;
  padding: 0.625rem 0.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}
.striped-table tbody tr th:first-child,
.striped-table tbody tr td:first-child,
.striped-table tfoot tr th:first-child,
.striped-table tfoot tr td:first-child {
  border-left: 1px solid var(--border);
}
.striped-table tbody tr th:last-child,
.striped-table tbody tr td:last-child,
.striped-table tfoot tr th:last-child,
.striped-table tfoot tr td:last-child {
  border-right: 1px solid var(--border);
}
.striped-table tbody tr:nth-child(even),
.striped-table tfoot tr:nth-child(even) {
  background-color: var(--tableTdBG);
}
.striped-table tbody tr.tr-sum,
.striped-table tfoot tr.tr-sum {
  background-color: var(--tertiaryBg);
}
.striped-table.col-lg tbody tr td {
  height: 120px;
}
.striped-table.col-lg tbody tr.tr-thin-td td {
  height: 56px;
}
.striped-table.bordered-thead-only thead tr th,
.striped-table.bordered-thead-only thead tr td {
  border: 1px solid var(--border);
}

.tr-fixed-bottom {
  position: sticky;
  bottom: 0;
  z-index: 5;
}

/*統計查詢 表單頁表頭表格*/
.blue-table thead tr th {
  font-weight: 500;
  background-color: #a4d7ff;
  color: var(--tableText);
  border: 1px solid var(--border);
  padding: 0.625rem 0.5rem;
  box-sizing: border-box;
}
.blue-table tbody tr th,
.blue-table tbody tr td,
.blue-table tfoot tr th,
.blue-table tfoot tr td {
  font-weight: 500;
  color: var(--tableText);
  background-color: var(--tableThBG);
  border: 1px solid var(--border);
  padding: 0.625rem 0.5rem;
  box-sizing: border-box;
}
.blue-table tbody tr.tr-sum th,
.blue-table tbody tr.tr-sum td,
.blue-table tfoot tr.tr-sum th,
.blue-table tfoot tr.tr-sum td {
  background-color: var(--tertiaryBg);
}

.bordered-table thead tr th,
.bordered-table thead tr td {
  border: 1px solid var(--border);
}
.bordered-table tbody tr th,
.bordered-table tbody tr td,
.bordered-table tfoot tr th,
.bordered-table tfoot tr td {
  border: 1px solid var(--border);
}

/*視覺化圖表表格*/
.chart-table {
  border-collapse: collapse;
}
.chart-table caption {
  padding: 0.625rem;
  border: solid 1px var(--border);
  background-color: var(--tableCaptionBG);
  text-align: center;
  color: var(--tableText);
  font-weight: bold;
}
.chart-table thead tr th {
  padding: 0.625rem;
  border: solid 1px var(--border);
  background-color: var(--tableThBG);
  text-align: center;
  color: var(--tableText);
  font-weight: bold;
}
.chart-table thead tr th.text-left {
  text-align: left;
}
.chart-table thead tr th.text-right {
  text-align: right;
}
.chart-table tbody tr td {
  padding: 0.625rem;
  border: solid 1px var(--border);
  background-color: #fff;
  text-align: center;
  color: var(--primaryText);
}
.chart-table tbody tr td.text-left {
  text-align: left;
}
.chart-table tbody tr td.text-right {
  text-align: right;
}
.chart-table tbody tr.highlight td {
  background-color: var(--tableTdBG) !important;
  font-weight: bold;
}
.chart-table tbody tr.yellow td {
  background-color: var(--tertiaryBg) !important;
}
.chart-table tbody tr:nth-child(even) td {
  background-color: var(--tableTdStripe);
}

.first-td-sticky {
  border-collapse: separate;
  border-spacing: 0;
}
.first-td-sticky thead tr th:first-child {
  position: sticky;
  left: 0;
  z-index: 5;
}
.first-td-sticky tbody tr th:first-child, .first-td-sticky tbody tr td:first-child {
  position: sticky;
  left: 0;
  z-index: 5;
}

/*儲存格tooltip*/
.td-tooltip {
  display: none;
  width: 390px;
  font-size: 0.875rem;
  padding: 0.5rem;
  border-radius: 6px;
  box-shadow: 0 0 4px 0 #ddd;
  border: 1px solid var(--border);
  background-color: #fff;
  box-sizing: border-box;
  position: absolute;
  z-index: 99;
}

@media screen and (max-width: 992px) {
  .chart-table caption {
    text-align: left;
  }
}
.table-container:has(> .striped-table.no-th) {
  border-top: 6px solid var(--tableThBG);
}

.dataTable-container {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #114b7e #f5f5f5;
  /* width */
  /* Handle */
  /* Track */
  /*某些元素的corner部分的部分样式(例:textarea的可拖动按钮)*/
}
.dataTable-container::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.dataTable-container::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #114b7e;
}
.dataTable-container::-webkit-scrollbar-track {
  background-color: #eee;
}
.dataTable-container::-webkit-scrollbar-corner {
  background-color: transparent;
}
.dataTable-container::-webkit-resizer {
  background-color: transparent;
  border-color: transparent;
}
.dataTable-container table {
  min-width: 1134px;
}

.desk-w-auto table {
  min-width: auto;
}

@media screen and (max-width: 992px) {
  .dataTable-container table {
    min-width: 1134px;
  }
}
.introduction-table tbody tr td:nth-child(1) {
  width: 220px;
  height: 62px;
  gap: 10px;
  margin: 0 980px 38px 0;
  padding: 9px 16px;
  border: solid 1px #d7d7d7;
  background-color: #d8eeff;
}
.introduction-table tbody tr td:nth-child(1) span {
  height: 22px;
  font-family: PingFangTC;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #114b7e;
  white-space: nowrap;
}
.introduction-table tbody tr td:nth-child(2) {
  width: 981px;
  height: 62px;
  gap: 10px;
  margin: 0 0 38px 219px;
  padding: 9px 16px;
  border: solid 1px #d7d7d7;
  background-color: #fff;
  text-align: left;
}
.introduction-table tbody tr td:nth-child(2) span {
  color: #d70000;
}

/*===============================
  表格scrollbar
================================*/
/*統計表格表頭與高度固定*/
.limitHeight-container {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #114b7e #f5f5f5;
  /* width */
  /* Handle */
  /* Track */
  /*某些元素的corner部分的部分样式(例:textarea的可拖动按钮)*/
}
.limitHeight-container::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.limitHeight-container::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #114b7e;
}
.limitHeight-container::-webkit-scrollbar-track {
  background-color: #eee;
}
.limitHeight-container::-webkit-scrollbar-corner {
  background-color: transparent;
}
.limitHeight-container::-webkit-resizer {
  background-color: transparent;
  border-color: transparent;
}
.limitHeight-container .striped-table {
  border-collapse: separate;
}
.limitHeight-container .striped-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

/*===============================
  跳窗modal
================================*/
.modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(36, 36, 36, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  overflow-x: hidden;
  box-sizing: border-box;
  display: none;
  overflow-y: auto;
}

.modal-dialog {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  box-sizing: border-box;
  margin-top: 80px;
  margin-bottom: 80px;
}
.modal-dialog.modal-sm {
  max-width: 600px;
}
.modal-dialog.modal-md {
  max-width: 720px;
}
.modal-dialog.modal-lg {
  max-width: 900px;
}
.modal-dialog.modal-xl {
  max-width: 1100px;
}

.modal.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.modal.fade .modal-dialog {
  transform: translate(-50%, -25%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.modal.fade.in {
  opacity: 1;
}
.modal.fade.in .modal-dialog {
  transform: translate(-50%, 0);
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

.modal-wrap {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.modal-wrap .modal-close {
  display: block;
  width: 20px;
  height: 20px;
  border: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
}
.modal-wrap .modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-wrap .modal-header {
  padding: 16px 24px 13px 24px;
  border-bottom: 1px solid #eee;
}
.modal-wrap .modal-header .modal-title {
  font-size: 1.375rem;
  color: var(--primaryColor);
  font-weight: 500;
}
.modal-wrap .modal-content .modal-body {
  padding: 24px;
}
.modal-wrap .modal-content table thead tr th {
  padding: 0.75rem 0.625rem;
}
.modal-wrap .modal-content table tbody tr th, .modal-wrap .modal-content table tbody tr td {
  padding: 1rem 0.625rem;
}
.modal-wrap .modal-footer {
  padding: 1.25rem 1.25rem 2.5rem;
  text-align: center;
}
.modal-wrap .button-box {
  justify-content: center;
}

@media screen and (max-width: 992px) {
  .modal-dialog {
    padding: 0 0.625rem;
  }
}
/*===============================
  桌機版nav
================================*/
.desktop-nav {
  width: 100%;
  background-image: var(--primaryLinear);
  position: fixed;
  z-index: 99;
}
.desktop-nav .nav-flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}
.desktop-nav .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-right: auto;
}
.desktop-nav .logo a {
  padding-right: 0.625rem;
  transition: all 0.5s;
  vertical-align: middle;
  position: relative;
}
.desktop-nav .logo a img {
  width: 250px;
  height: 74px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}
.desktop-nav .logo a:focus {
  outline: 2px solid var(--outlineYellow);
}
.desktop-nav .logo a::after {
  content: "";
  display: block;
  width: 0;
  height: 45px;
  border-right: 1px solid #0fa0c5;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.desktop-nav .logo span {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}
.desktop-nav .mobile-logo {
  display: none;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 0;
}
.desktop-nav .mobile-logo > img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
.desktop-nav .mobile-logo .mobile-logo-txt {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.desktop-nav .mobile-logo .mobile-logo-txt > span:first-child {
  font-size: 1rem;
}
.desktop-nav .mobile-logo .mobile-logo-txt > span:nth-child(2) {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: -1px;
}
.desktop-nav .function-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.desktop-nav .function-list .menu-list {
  display: flex;
  align-items: center;
}
.desktop-nav .function-list .icon-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.desktop-nav .function-list .icon-list > li > a,
.desktop-nav .function-list .icon-list > li > button {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 10px;
  box-sizing: border-box;
  text-decoration: none;
  transform: translateY(0);
  transition: all 0.3s;
  cursor: pointer;
}
.desktop-nav .function-list .icon-list > li > a img,
.desktop-nav .function-list .icon-list > li > button img {
  width: 100%;
  vertical-align: middle;
}
.desktop-nav .function-list .icon-list > li > a:hover,
.desktop-nav .function-list .icon-list > li > button:hover {
  transform: translateY(-5px);
}
.desktop-nav .function-list .icon-list > li > a:focus,
.desktop-nav .function-list .icon-list > li > button:focus {
  outline: 2px solid var(--outlineYellow);
}
.desktop-nav .function-list .icon-list > li:first-child > a {
  background-color: #009cc7;
}
.desktop-nav .function-list .icon-list > li:nth-child(2) > a {
  background-color: #7854f6;
  padding: 0;
  line-height: 40px;
  text-align: center;
}
.desktop-nav .function-list .icon-list > li:nth-child(3) > button {
  background-color: #0095e0;
}
.desktop-nav .function-list .fontSize-group {
  position: relative;
}
.desktop-nav .function-list .fontSize-group .fontSize-toggle:focus {
  outline: 2px solid var(--outlineYellow);
}
.desktop-nav .function-list .fontSize-group .dropdown-menu {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.625rem;
  background-color: var(--primaryText);
  color: #fff;
  line-height: normal;
  border-radius: 4px;
  white-space: nowrap;
  position: absolute;
  top: 50px;
  right: 0;
}
.desktop-nav .function-list .fontSize-group .dropdown-menu.active {
  display: flex;
}
.desktop-nav .function-list .fontSize-group .dropdown-menu > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  line-height: normal;
  border-radius: 4px;
  background-color: var(--border);
  font-size: 1rem;
  color: var(--primaryText);
  padding: 0;
  text-align: center;
  border: 0;
  cursor: pointer;
}
.desktop-nav .function-list .fontSize-group .dropdown-menu > button + button {
  margin-left: 0.5rem;
}
.desktop-nav .function-list .fontSize-group .dropdown-menu > button.active {
  background-color: var(--secondaryColor);
  color: #fff;
}
.desktop-nav .function-list .fontSize-group .dropdown-menu > button:focus {
  outline: 2px solid var(--outlineYellow);
}
.desktop-nav .function-list .fontSize-group .dropdown-menu::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent var(--primaryText) transparent;
  position: absolute;
  top: -8px;
  right: 15px;
}

.menu-list.sf-menu {
  height: 70px;
}
.menu-list.sf-menu ul {
  display: none;
  visibility: hidden;
}
.menu-list.sf-menu li:hover > ul {
  display: block;
  visibility: visible;
}
.menu-list.sf-menu li.sfHover > ul {
  display: block;
  visibility: visible;
}
.menu-list.sf-menu > li {
  display: inline-flex;
  height: 100%;
  align-items: center;
  position: relative;
}
.menu-list.sf-menu > li > a {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 0 0.875rem;
  position: relative;
  transition: all 0.3s;
}
.menu-list.sf-menu > li > a:focus {
  outline-offset: -2px;
  outline: 2px solid var(--outlineYellow);
  color: #FFDD99;
}
.menu-list.sf-menu > li > .Alink {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 0 0.875rem;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.menu-list.sf-menu > li > .Alink:focus {
  outline-offset: -2px;
  outline: 2px solid var(--outlineYellow);
  color: #FFDD99;
}
.menu-list.sf-menu > li > .Alink:hover {
  color: #FFDD99;
}
.menu-list.sf-menu > li:after {
  content: "";
  display: block;
  width: 0;
  height: 6px;
  background-color: #FFDD99;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  transition: all 0.3s;
}
.menu-list.sf-menu > li:hover > a {
  color: #FFDD99;
}
.menu-list.sf-menu > li:hover:after {
  width: 80%;
}
.menu-list.sf-menu > li ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  border: 1px solid var(--headerMenuBorder);
  border-radius: 8px;
}
.menu-list.sf-menu > li ul li {
  position: relative;
}
.menu-list.sf-menu > li ul li:first-child > a {
  border-radius: 8px 8px 0 0;
}
.menu-list.sf-menu > li ul li:last-child > a {
  border-radius: 0 0 8px 8px;
}
.menu-list.sf-menu > li ul li a {
  display: block;
  font-size: 1rem;
  color: var(--headerMenuText);
  text-align: left;
  padding: 0.75rem 1rem;
  background-color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
}
.menu-list.sf-menu > li ul li a:hover, .menu-list.sf-menu > li ul li a:focus {
  background-color: var(--headerMenuBg);
  color: var(--headerMenuText);
  font-weight: bold;
}
.menu-list.sf-menu > li ul li a .new-icon {
  margin-left: 0.625rem;
}
.menu-list.sf-menu > li ul li + li a {
  border-top: 1px solid var(--border);
}

/*===============================
  手機版nav
================================*/
.burger-menu {
  display: none;
  line-height: 1;
  margin-left: auto;
}
.burger-menu .btn-burger-menu {
  width: 38px;
  height: 38px;
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.burger-menu .btn-burger-menu img {
  width: 100%;
}
.burger-menu .btn-burger-menu:focus {
  outline: 2px dashed var(--outlineYellow);
}

.mobile-nav .mobile-menu-backdrop {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(44, 44, 44, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.mobile-nav .mobile-menu-backdrop.active {
  display: block;
}
.mobile-nav .mobile-menu {
  width: 232px;
  height: 100vh;
  background-color: var(--primaryColor);
  margin-left: -232px;
  overflow-y: auto;
  /* width */
  /* Handle */
  /* Track */
  /*某些元素的corner部分的部分样式(例:textarea的可拖动按钮)*/
}
.mobile-nav .mobile-menu::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.mobile-nav .mobile-menu::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.8);
}
.mobile-nav .mobile-menu::-webkit-scrollbar-track {
  background-color: transparent;
}
.mobile-nav .mobile-menu::-webkit-scrollbar-corner {
  background-color: transparent;
}
.mobile-nav .mobile-menu::-webkit-resizer {
  background-color: transparent;
  border-color: transparent;
}
.mobile-nav .mobile-menu .close-menu {
  width: 100%;
  text-align: right;
  padding: 1rem 0.625rem;
  box-sizing: border-box;
  border-bottom: 1px solid #0799be;
}
.mobile-nav .mobile-menu .close-menu > button {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.mobile-nav .mobile-menu .close-menu > button img {
  width: 100%;
  vertical-align: middle;
}
.mobile-nav .mobile-menu .close-menu > button:focus {
  outline: 2px dashed var(--outlineYellow);
}
.mobile-nav .mobile-menu .function-list ul.menu-list > li {
  border-bottom: 1px solid #0799be;
}
.mobile-nav .mobile-menu .function-list ul.menu-list > li > a {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: 1rem;
}
.mobile-nav .mobile-menu .function-list ul.menu-list > li:has(> ul.sub-list) > a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(../images/arrow_right_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.5rem;
  transition: all 0.3s;
}
.mobile-nav .mobile-menu .function-list ul.menu-list > li:has(> ul.sub-list) > a.active::after {
  background-image: url(../images/arrow_down_white.png);
}
.mobile-nav .mobile-menu .function-list ul.menu-list > li.home a::after {
  background-image: none;
}
.mobile-nav .mobile-menu .function-list ul.menu-list > li > ul.sub-list {
  display: none;
}
.mobile-nav .mobile-menu .function-list ul.menu-list > li > ul.sub-list li a {
  display: block;
  font-size: 1rem;
  color: #fff;
  background-color: var(--primaryColor_hover);
  text-decoration: none;
  padding: 0.5rem 1rem;
  padding-left: 1.5rem;
}
.mobile-nav .mobile-menu .function-list ul.menu-list > li > ul.sub-list li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 0.375rem;
}
.mobile-nav .mobile-menu .function-list ul.icon-list {
  display: inline-flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
.mobile-nav .mobile-menu .function-list ul.icon-list li {
  width: calc(50% - 8px);
}
.mobile-nav .mobile-menu .function-list ul.icon-list li a {
  display: block;
  width: 100%;
  height: 35px;
  color: #fff;
  font-size: 1rem;
  padding: 0.375rem 0;
  background-color: #7854F6;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  box-sizing: border-box;
}
.mobile-nav .mobile-menu .function-list ul.icon-list li a img {
  width: 20px;
}
.mobile-nav .mobile-menu .function-list a:focus {
  outline: 2px dashed var(--outlineYellow);
  outline-offset: -2px;
}

@media screen and (max-width: 992px) {
  .desktop-nav .nav-flex {
    padding-top: 0;
    padding-bottom: 0;
  }
  .desktop-nav .logo {
    display: none;
  }
  .desktop-nav .mobile-logo {
    display: inline-flex;
  }
  .desktop-nav .function-list {
    display: none;
  }
  .burger-menu {
    display: block;
  }
}
/*===============================
  二級tab選單
================================*/
.sub-menu {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
  position: relative;
  overflow-x: auto;
  margin-bottom: 1.25rem;
  /* width */
  /* Handle */
  /* Track */
  /*某些元素的corner部分的部分样式(例:textarea的可拖动按钮)*/
}
.sub-menu::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.sub-menu::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #999;
}
.sub-menu::-webkit-scrollbar-track {
  background-color: #fff;
}
.sub-menu::-webkit-scrollbar-corner {
  background-color: transparent;
}
.sub-menu::-webkit-resizer {
  background-color: transparent;
  border-color: transparent;
}
.sub-menu .sub-item {
  padding: 0.5rem 0;
}
.sub-menu .sub-item > a {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 136px;
  height: 68px;
  font-size: 14px;
  white-space: normal;
  color: var(--disabledText);
  border-radius: 4px;
  border: 1px solid var(--disabled);
  background-color: var(--grayBg);
  padding: 4px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.sub-menu .sub-item > a.active {
  box-shadow: 0 4px 8px 0 #eff7ff;
  background-color: var(--secondaryBg);
  border-color: var(--secondaryBg);
  color: var(--secondaryText);
  font-weight: 500;
}
.sub-menu .sub-item > a.active > span {
  text-decoration: underline;
  text-decoration-color: #9fe1ff;
  text-underline-offset: 3px;
  text-decoration-thickness: 6px;
}
.sub-menu .sub-item > a:hover {
  text-decoration: none;
}
.sub-menu .sub-item > a:focus {
  outline: 2px dashed var(--outlineBrown);
}

/*===============================
  主要內容區
================================*/
.main-content {
  padding-top: calc(84px + 1rem);
  padding-bottom: 3rem;
  min-height: calc(100vh - 12rem);
  box-sizing: border-box;
}

.header-row {
  width: 100%;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--disabled);
  margin-bottom: 1rem;
}
.header-row h2 {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--primaryColor);
  font-weight: bold;
  margin-right: 1.125rem;
  vertical-align: middle;
}
.header-row .form-group {
  display: inline-block;
  width: 260px;
  vertical-align: middle;
  margin-bottom: 0;
}

.container-bordered {
  padding: 1.25rem;
  border-radius: 4px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
  border: solid 1px var(--border_light);
  box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .main-content {
    padding-top: 72px;
  }
  .header-row h2 {
    margin-bottom: 0.3rem;
  }
  .header-row .form-group {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
/*===============================
  麵包屑breadcrumbs
================================*/
.breadcrumb {
  margin-bottom: 0.5rem;
}
.breadcrumb ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.breadcrumb ul li + li::before {
  text-align: center;
  color: var(--primaryText);
  padding-left: 0.3125rem;
  content: "/ ";
}
.breadcrumb ul li a {
  color: var(--primaryText);
  text-decoration: none;
}
.breadcrumb ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .breadcrumb ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
}
/*===============================
  統計數據圖表顯示切換按鈕
================================*/
.chart-tab {
  width: 48px;
  height: 48px;
  background-color: #f2f9ff;
  border: 1px solid #d8eeff;
  border-radius: 4px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.chart-tab:hover, .chart-tab.active {
  background-color: #d8eeff;
}
.chart-tab img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.chart-control {
  margin-bottom: 0.625rem;
}

.chart-info-btn {
  width: 48px;
  height: 48px;
  border: solid 1px #e3e3e3;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.chart-info-btn:hover, .chart-info-btn.active {
  background-color: #e3e3e3;
}
.chart-info-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.chatInfo-dropdown {
  width: 272px;
  padding: 1rem;
  border-radius: 4px;
  border: solid 1px var(--border);
  background-color: var(--grayBg);
  text-align: left;
  position: absolute;
  right: 0;
  z-index: 5;
  margin-top: 0.5rem;
}
.chatInfo-dropdown.active {
  display: block;
}
.chatInfo-dropdown .btn-close {
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.chatInfo-dropdown .btn-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.chatInfo-dropdown .btn-close:focus {
  outline: 2px dashed var(--outlineBrown);
}
.chatInfo-dropdown .heading {
  font-size: 1.125rem;
  color: var(--mainColor);
  font-weight: bold;
  margin-bottom: 0.625rem;
}
.chatInfo-dropdown .body {
  line-height: 1.75;
  font-weight: bold;
}
.chatInfo-dropdown .body ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.125rem;
}

.chart-panel {
  width: 100%;
  display: none;
  position: relative;
}
.chart-panel.active {
  display: block;
}
.chart-panel .chart-info {
  position: absolute;
  right: 0;
  top: calc(-0.625rem - 48px);
}

/*===============================
  頁尾footer
================================*/
footer {
  width: 100%;
  height: auto;
  background-image: var(--primaryLinear);
  padding: 1rem 0;
  box-sizing: border-box;
}
footer .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  align-items: flex-start;
}
footer .web-info {
  color: #fff;
  line-height: 2.5;
}
footer .web-info li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .web-info li:nth-child(1) {
  width: 397px;
}
footer .web-info a {
  color: #fff;
}
footer .web-link {
  font-size: 1rem;
  color: #fff;
  text-align: right;
}
footer .web-link ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 0.3125rem;
}
footer .web-link ul li {
  line-height: 2.5;
}
footer .web-link ul li a {
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  padding-right: 0.3125rem;
  border-right: 1px solid #fff;
}
footer .web-link ul li a:hover {
  text-decoration: underline;
}
footer .web-link ul li:last-child a {
  border-right: 0;
}
footer .web-link .viewers {
  line-height: 2.5;
}
footer .web-link .accessibility {
  display: inline-flex;
}
footer .web-link .accessibility img {
  width: 88px;
  height: 31px;
}
footer .copyright {
  color: #fff;
  line-height: 2.5;
  white-space: nowrap;
}
footer .footer-wrap {
  white-space: nowrap;
}

@media screen and (max-width: 992px) {
  footer {
    height: auto;
    background-image: var(--primaryLinear);
  }
  footer .wrap {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  footer .web-info .tel > span {
    display: inline-block;
  }
  footer .web-info li:nth-child(1) {
    width: 100%;
  }
  footer .web-link {
    text-align: left;
    color: #fff;
  }
  footer .web-link ul {
    justify-content: flex-start;
  }
  footer .web-link ul li a {
    color: #fff;
    border-right: 1px solid #fff;
  }
  footer .copyright {
    line-height: 1.5;
    white-space: normal;
  }
  footer .footer-wrap {
    white-space: normal;
  }
}
/*回最上層按鈕*/
.btn-scroll-top {
  text-align: center;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 0 10px 0 rgba(255, 193, 36, 0.3);
  background-color: var(--tertiaryColor_hover);
  padding: 0.55rem;
  cursor: pointer;
  position: fixed;
  right: 1rem;
  bottom: -60px;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s;
}
.btn-scroll-top img {
  display: block;
  width: 18px;
  margin: auto;
  margin-bottom: 5px;
}
.btn-scroll-top span {
  display: block;
  color: var(--primaryText);
  font-size: 1rem;
  font-weight: 500;
}
.btn-scroll-top.show {
  opacity: 1;
  bottom: 60px;
}

/*===============================
  載入loading
================================*/
.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(36, 36, 36, 0.65);
  top: 0;
  left: 0;
  z-index: 999;
}
.loading .inner {
  width: 150px;
  text-align: center;
  color: #15B4F5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading .inner > img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.loading .inner .txt {
  font-size: 1.25rem;
  font-weight: bold;
  padding-top: 1.25rem;
}

/*===============================
  動畫animated
================================*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}/*# sourceMappingURL=component.css.map */