@charset "UTF-8";
/* Start ============ font EN 英文字型 ========================  font EN 英文字型 ============ */
@import url("https://fonts.googleapis.com");
@import url("https://fonts.gstatic.com");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap");
/* Start ============ font TW 中文字型 ========================  font TW 中文字型 ============ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/v5-shims.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://unpkg.com/boxicons@latest/css/boxicons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
.Roboto {
  font-family: "Roboto", sans-serif !important;
}

.Roboto-Condensed {
  font-family: "Roboto Condensed", sans-serif !important;
}

.Oswald {
  font-family: "Oswald", sans-serif !important;
}

.Poppins {
  font-family: "Poppins", sans-serif !important;
}

.Playfair-Display {
  font-family: "Playfair Display", Times, serif !important;
}

.Noto-Sans-TC {
  font-family: "Noto Sans TC", sans-serif !important;
}

.Noto-Serif-TC {
  font-family: "Noto Serif TC", serif !important;
}

/* Start ============ font weightn 字型 粗體 ========================  font weightn 字型 粗體 ============ */
.font-w100 {
  font-weight: 100 !important;
}

.font-w200 {
  font-weight: 200 !important;
}

.font-w300 {
  font-weight: 300 !important;
}

.font-w400 {
  font-weight: 400 !important;
}

.font-w500 {
  font-weight: 500 !important;
}

.font-w600 {
  font-weight: 600 !important;
}

.font-w700 {
  font-weight: 700 !important;
}

.font-w800 {
  font-weight: 800 !important;
}

.font-w900 {
  font-weight: 900 !important;
}

.letter-spacing-0 {
  letter-spacing: 0px !important;
}

body {
  font-family: "Noto Sans TC", "思源黑體", "Roboto", sans-serif !important;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 768px) {
  body {
    font-size: 0.95rem !important;
    line-height: 1.7;
  }
}
@media (max-width: 575.98px) {
  body {
    font-size: 1rem;
  }
}

p {
  font-weight: 400 !important;
}

.form-control,
.custom-select {
  font-weight: 500 !important;
}

/* Start ============ scrollspy 滾動監控 ========================  scrollspy 滾動監控 ============ */
.dotted-scrollspy {
  background: rgba(0, 0, 0, 0);
  z-index: 1000;
  position: fixed;
  top: 45%;
  right: 30px;
}
@media (max-width: 575.98px) {
  .dotted-scrollspy {
    display: none;
  }
}
.dotted-scrollspy ul {
  list-style: none;
}
.dotted-scrollspy ul li:hover {
  cursor: pointer;
}
.dotted-scrollspy ul li a.nav-link span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c4c4c4;
}
.dotted-scrollspy ul li a.nav-link.active {
  background-color: none !important;
}
.dotted-scrollspy ul li a.nav-link.active span {
  background-color: #666;
}

.nav-pills .nav-link.active {
  background-color: rgba(0, 0, 0, 0) !important;
}

/* Start ============ GoTop 回到最上 ========================  GoTop 回到最上 ============ */
.btn-top {
  position: fixed;
  bottom: -45px;
  right: 20px;
  display: none;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-top.open {
  bottom: 60px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.btn-top .btn-floating {
  position: relative;
  background-color: #ffffff !important;
  border: 1px solid #d2b48c;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.btn-top .btn-floating i {
  position: absolute;
  z-index: 2;
  color: #997933 !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn-top .btn-floating::before {
  content: "";
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  display: block;
  background-color: #d2b48c;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-top .btn-floating.back-home {
  border: 1px solid #194098 !important;
}
.btn-top .btn-floating.back-home i {
  font-size: 1.3rem;
  position: absolute;
  z-index: 2;
  color: #194098 !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn-top .btn-floating.back-home::before {
  background-color: #194098;
}
.btn-top .btn-floating:hover {
  -webkit-box-shadow: 0px 5px 0.6em rgba(0, 0, 0, 0.4);
          box-shadow: 0px 5px 0.6em rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-top .btn-floating:hover.btn-floating {
  border: none;
}
.btn-top .btn-floating:hover.btn-floating i {
  color: #FFF !important;
  -webkit-animation: backTop_keyframes 0.5s 1.2s infinite ease-out alternate;
          animation: backTop_keyframes 0.5s 1.2s infinite ease-out alternate;
}
.btn-top .btn-floating:hover.btn-floating.back-home {
  border: 1px solid #194098 !important;
}
.btn-top .btn-floating:hover.btn-floating.back-home i {
  -webkit-animation: none;
          animation: none;
}
.btn-top .btn-floating:hover::before {
  top: -1px;
  left: -1px;
  width: 104%;
  height: 104%;
  border-radius: 50%;
}

@-webkit-keyframes backTop_keyframes {
  0% {
    top: 60%;
  }
  100% {
    top: 40%;
  }
}

@keyframes backTop_keyframes {
  0% {
    top: 60%;
  }
  100% {
    top: 40%;
  }
}
/* Start ============ mask 圖片遮罩 ========================  mask 圖片遮罩 ============ */
.mask.rgba-gradient-1 {
  background: linear-gradient(45deg, rgba(255, 88, 88, 0.7), rgba(238, 66, 146, 0.8));
}

.mask.rgba-gradient-2 {
  background: linear-gradient(98deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.mask.rgba-gradient-3 {
  background: linear-gradient(45deg, rgba(42, 27, 161, 0.7), rgba(255, 48, 48, 0.7));
}

.mask.rgba-gradient-4 {
  background: linear-gradient(98deg, rgba(22, 91, 231, 0.5), rgba(255, 32, 32, 0.5));
}

/* Start ============ iframe ========================  iframe ============ */
.iframe_get_page {
  height: 100%;
  height: 85vh;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-y: scroll;
  overflow-x: hidden;
}

:root {
  scroll-padding-top: 4rem;
}

::-moz-selection {
  color: #fff;
  background: #997933;
}

::selection {
  color: #fff;
  background: #997933;
}

::-moz-selection {
  color: #fff;
  background: #997933;
}

a:hover {
  cursor: pointer;
  text-decoration: none !important;
}

img.placeholder {
  background-color: #f0f0f0; /* 灰色背景 */
  display: block; /* 使圖片在載入前佔有空間 */
}

img.skeleton {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #f0f0f0), color-stop(50%, #e0e0e0), color-stop(75%, #f0f0f0));
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  -webkit-animation: loading 1.5s infinite;
          animation: loading 1.5s infinite;
  min-height: 200px;
}

@-webkit-keyframes loading {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

@keyframes loading {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
h2 {
  color: #002147;
}

@media (max-width: 768px) {
  .container-all,
  .container-1400 {
    max-width: 85%;
  }
}
@media (min-width: 1400px) {
  .container-all,
  .container-1400 {
    max-width: 1400px;
  }
}
.container-fluid {
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}

.scaleSize {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.scaleSize::before {
  display: block;
  content: "";
}
.scaleSize .scaleSize-item,
.scaleSize img,
.scaleSize iframe,
.scaleSize embed,
.scaleSize object,
.scaleSize video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.scaleSize-21by9::before {
  padding-top: 42.857143%;
}

.scaleSize-16by9::before {
  padding-top: 56.25%;
}

.scaleSize-10by6::before {
  padding-top: 60%;
}

.scaleSize-4by3::before {
  padding-top: 75%;
}

.scaleSize-1by1::before {
  padding-top: 100%;
}

.navbar-tree {
  position: relative;
  z-index: 1000;
  width: 100%;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(35, 35, 35, 0.8);
}
@media (max-width: 575.98px) {
  .navbar-tree {
    padding-left: 0px !important;
    width: 100%;
  }
}
@media (max-width: 374.98px) {
  .navbar-tree {
    padding-left: 0px !important;
  }
  .navbar-tree .container-fluid {
    padding-left: 5px !important;
  }
}
@media (min-width: 1300px) {
  .navbar-tree.navbar-absolute {
    position: absolute !important;
  }
  .navbar-tree.navbar-fixed {
    position: fixed !important;
  }
}
.navbar-tree .navRow {
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 98px;
}
@media (min-width: 1440px) {
  .navbar-tree .navRow {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991.98px) {
  .navbar-tree .navRow {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 75px;
  }
}
@media (max-width: 767.98px) {
  .navbar-tree .navRow {
    height: 75px;
  }
}
.navbar-tree .navRow .nav_logo {
  width: 380px;
  height: 98px;
  padding-right: 20px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar-tree .navRow .nav_logo a.logo_img {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("../img/logo/logo_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.navbar-tree .navRow .nav_logo a.logo_img span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.navbar-tree .navRow .nav_main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  padding: 0 15px;
}
.navbar-tree .navRow .nav-right {
  height: 98px;
  padding-left: 20px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navbar-tree .navRow .nav-right .nav-icon {
  padding: 0px;
  margin-bottom: -8px;
  display: inline-block;
}
@media (max-width: 575.98px) {
  .navbar-tree .navRow .nav-right .nav-icon {
    margin-bottom: -10px;
  }
}
.navbar-tree .navRow .nav-right .nav-icon .dropdown > a {
  padding: 24px 5px 24px 5px;
}
@media (max-width: 1300px) {
  .navbar-tree .navRow .nav-right .nav-icon .dropdown > a {
    padding: 12px 5px;
  }
}
.navbar-tree .navRow .nav-right .nav-icon a {
  font-weight: 600;
  color: #ffffff;
  padding: 0.2rem 0.1rem;
  font-size: 1.5rem;
  border-radius: 0rem;
}
.navbar-tree .navRow .nav-right .nav-icon a:hover {
  color: #997933;
}
.navbar-tree .navRow .nav-right .nav-icon a::after {
  display: none;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu {
  min-width: 3rem;
  border-radius: 0rem;
  padding: 0;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-left: -10px !important;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu .dropdown-item {
  font-weight: 300;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu li {
  text-align: center;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu li .dropdown-item {
  color: #555;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu li.active .dropdown-item {
  color: #fff;
  background: #997933;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu .dropdown-item:hover,
.navbar-tree .navRow .nav-right .nav-icon.nav-lang .dropdown-menu .dropdown-item.active {
  color: #fff;
  background: #997933;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-search .dropdown-menu {
  width: 400px;
  padding: 10px;
  border-radius: 0rem;
}
.navbar-tree .navRow .nav-right .nav-icon.nav-search .dropdown-menu .btn.btn-search {
  background: #002147;
  color: #fff;
  border-radius: 0rem;
}
.navbar-tree .navRow .nav-burger {
  position: relative;
  width: 35px;
}
@media (max-width: 991.98px) {
  .navbar-tree .navRow .nav-burger {
    margin-bottom: 35px;
    width: 40px;
    margin-right: 0px;
  }
}
@media (max-width: 575.98px) {
  .navbar-tree .navRow .nav-burger {
    margin-bottom: 32px;
    width: 34px;
    margin-right: 0px;
  }
}
@media (max-width: 410px) {
  .navbar-tree .navRow .nav-burger {
    margin-bottom: 35px;
    width: 40px;
    margin-left: 14px !important;
  }
}
.navbar-tree .navRow .nav-burger .animated-icon1 {
  position: absolute;
  right: 0;
  top: calc(50% - 15px);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  width: 35px;
  height: 35px;
}
@media (max-width: 576px) {
  .navbar-tree .navRow .nav-burger .animated-icon1 {
    top: calc(50% - 17px) !important;
  }
}
.navbar-tree .navRow .nav-burger .animated-icon1 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  border-radius: 9px;
  opacity: 1;
  left: 8px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background: #fff;
}
.navbar-tree .navRow .nav-burger .animated-icon1 span:nth-child(1) {
  top: 11px;
}
.navbar-tree .navRow .nav-burger .animated-icon1 span:nth-child(2) {
  top: 18px;
}
.navbar-tree .navRow .nav-burger .animated-icon1 span:nth-child(3) {
  top: 25px;
}
.navbar-tree .navRow .nav-burger .animated-icon1.open span:nth-child(1) {
  top: 20px;
  left: 7px;
  width: 60%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.navbar-tree .navRow .nav-burger .animated-icon1.open span:nth-child(2) {
  opacity: 0;
  width: 60%;
}
.navbar-tree .navRow .nav-burger .animated-icon1.open span:nth-child(3) {
  top: 20px;
  left: 7px;
  width: 60%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.top-nav-collapse.navbar-tree {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05), 0 2px 10px 0 rgba(0, 0, 0, 0.03) !important;
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05), 0 2px 10px 0 rgba(0, 0, 0, 0.03) !important;
}
.top-nav-collapse.navbar-tree .navRow .nav-right .nav-icon a {
  color: #133777;
}
.top-nav-collapse.navbar-tree .navRow .nav-right .nav-icon a:hover {
  color: #997933;
}
.top-nav-collapse.navbar-tree .navRow .nav-right .nav-icon a .bx-search {
  margin-top: 10px;
}
.top-nav-collapse.navbar-tree .nav-burger .animated-icon1 span {
  background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 1300px) {
  .nav-burger {
    display: none;
  }
}
@media (max-width: 1300px) {
  .navRow {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .nav_logo {
    width: 300px !important;
    height: 70px !important;
  }
  .nav_logo::before {
    display: none;
  }
  .nav_main {
    display: none;
  }
  .nav-right {
    margin-left: auto;
    height: 70px !important;
  }
  .nav-right::before {
    display: none;
  }
}
@media (min-width: 600px) {
  .navbar-tree.scrolling-navbar {
    width: 100%;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
  .navbar-tree.scrolling-navbar .top-nav-collapse {
    padding-top: 5px;
    padding-bottom: 10px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
}
.top_nav {
  position: absolute;
  top: 5px;
  right: 170px;
  list-style: none;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  z-index: 1000;
}
@media (max-width: 1300px) {
  .top_nav {
    top: 5px;
    right: 20px;
  }
}
.top_nav li {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.top_nav li a {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 8px 12px;
  color: #ccc;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .top_nav li a {
    padding: 8px 7px;
  }
}
.top_nav li a:hover {
  color: #997933;
  cursor: pointer;
}

.top-nav-collapse.navbar-tree .top_nav li a {
  color: #222 !important;
}
.top-nav-collapse.navbar-tree .top_nav li a:hover {
  color: #997933 !important;
}

.navbar-tree .navbar-site {
  position: relative;
  z-index: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar-tree .navbar-site ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-tree .navbar-site ul.nav__L1 {
  width: 100%;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.navbar-tree .navbar-site ul.nav__L1 > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.navbar-tree .navbar-site ul li {
  position: relative;
}
.navbar-tree .navbar-site ul li.nav__L1--item {
  color: #ffffff;
  position: relative;
}
.navbar-tree .navbar-site ul li.nav__L1--item::before, .navbar-tree .navbar-site ul li.nav__L1--item::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: 0;
  background-color: #997933;
}
.navbar-tree .navbar-site ul li.nav__L1--item:before {
  left: -2.5px;
}
.navbar-tree .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #997933;
  -webkit-transition: width 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within, .navbar-tree .navbar-site ul li.nav__L1--item:hover {
  color: #997933;
  cursor: pointer;
}
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within:before, .navbar-tree .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #997933;
  width: 100%;
  -webkit-transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within:after, .navbar-tree .navbar-site ul li.nav__L1--item:hover:after {
  background: transparent;
  width: 100%;
  -webkit-transition: 0s;
  transition: 0s;
}
.navbar-tree .navbar-site ul li.nav__L1--item a {
  padding: 40px 0 30px 0;
  color: #ffffff;
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
}
.navbar-tree .navbar-site ul li.nav__L1--item.active {
  color: #997933;
  background-color: rgba(153, 121, 51, 0);
}
.navbar-tree .navbar-site ul li.nav__L1--item.active a {
  color: #997933;
}
.navbar-tree .navbar-site ul li.nav__L1--item.active ul > li,
.navbar-tree .navbar-site ul li.nav__L1--item ul > li {
  color: #997933;
  position: relative;
  display: none;
}
.navbar-tree .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item,
.navbar-tree .navbar-site ul li.nav__L1--item ul > li.nav__L2--item {
  width: 33.33%;
  text-align: left;
  padding: 20px 0px 20px 30px;
}
@media (min-width: 1400px) {
  .navbar-tree .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item,
  .navbar-tree .navbar-site ul li.nav__L1--item ul > li.nav__L2--item {
    width: 25%;
  }
}
@media (min-width: 1680px) {
  .navbar-tree .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item,
  .navbar-tree .navbar-site ul li.nav__L1--item ul > li.nav__L2--item {
    width: 20%;
  }
}
.navbar-tree .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item:hover,
.navbar-tree .navbar-site ul li.nav__L1--item ul > li.nav__L2--item:hover {
  background-color: hsla(0, 0%, 0%, 0.02);
}
.navbar-tree .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item a,
.navbar-tree .navbar-site ul li.nav__L1--item ul > li.nav__L2--item a {
  font-size: 1rem;
  padding: 6px 15px;
  color: #997933;
  font-weight: 600;
}
.navbar-tree .navbar-site ul li.nav__L1--item.active ul ul,
.navbar-tree .navbar-site ul li.nav__L1--item ul ul {
  display: contents;
  background: rgba(241, 241, 241, 0);
}
.navbar-tree .navbar-site ul li.nav__L1--item.active ul ul li,
.navbar-tree .navbar-site ul li.nav__L1--item ul ul li {
  position: relative;
}
.navbar-tree .navbar-site ul li.nav__L1--item.active ul ul li.nav__L3--item,
.navbar-tree .navbar-site ul li.nav__L1--item ul ul li.nav__L3--item {
  padding: 0px;
  width: 100%;
}
.navbar-tree .navbar-site ul li.nav__L1--item.active ul ul li.nav__L3--item a,
.navbar-tree .navbar-site ul li.nav__L1--item ul ul li.nav__L3--item a {
  color: #133777;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 3px 0px 3px 20px;
}
.navbar-tree .navbar-site ul li.nav__L1--item.active ul ul li.nav__L3--item a:hover,
.navbar-tree .navbar-site ul li.nav__L1--item ul ul li.nav__L3--item a:hover {
  color: #997933;
}
.navbar-tree .navbar-site ul li.nav__L1--item.active ul li:hover ul,
.navbar-tree .navbar-site ul li.nav__L1--item ul li:hover ul {
  width: 100%;
}
.navbar-tree .navbar-site ul li.nav__L1--item ul {
  opacity: 0;
  height: 0px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  display: none;
  z-index: 0;
}
.navbar-tree .navbar-site ul li.nav__L1--item:hover > ul,
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within > ul {
  opacity: 1;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  left: 0;
  z-index: 100;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  width: calc(100% - 560px);
  height: auto;
  margin-top: -1px;
  min-height: 280px; /* 設定最小高度 */
  max-height: 450px; /* 設定最大高度 */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px;
  padding-bottom: 40px;
  overflow-y: auto;
  background-color: #fff;
  left: calc(50% + 140px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 6px 3px rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 6px 3px rgba(0, 0, 0, 0.08) !important;
}
.navbar-tree .navbar-site ul li.nav__L1--item:hover > ul::-webkit-scrollbar,
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within > ul::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background: #dbdbdb;
}
.navbar-tree .navbar-site ul li.nav__L1--item:hover > ul::-webkit-scrollbar-thumb,
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within > ul::-webkit-scrollbar-thumb {
  background: #997933;
}
.navbar-tree .navbar-site ul li.nav__L1--item:hover > ul,
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within > ul {
  scrollbar-width: thin; /* 滾動條寬度 */
  scrollbar-color: #997933 #dbdbdb; /* 第一個顏色是thumb的顏色，第二個是軌道的顏色 */
}
.navbar-tree .navbar-site ul li.nav__L1--item:hover > ul li,
.navbar-tree .navbar-site ul li.nav__L1--item:focus-within > ul li {
  display: block;
}

.scroll-hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  pointer-events: none;
}
.scroll-hint .scroll-mouse {
  width: 28px;
  height: 50px;
  -webkit-box-shadow: inset 0 0 0 1px #999;
          box-shadow: inset 0 0 0 1px #999;
  border-radius: 14px;
  position: relative;
}
.scroll-hint .scroll-mouse::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #666;
  margin-left: -3px;
  top: 6px;
  border-radius: 50%;
  -webkit-animation: scroll 1.3s infinite;
          animation: scroll 1.3s infinite;
}
.scroll-hint .scroll-label {
  margin-top: 4px;
  font-size: 13px;
  color: #777;
  white-space: nowrap;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
.top-nav-collapse.navbar-tree .navRow .nav_logo::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.top-nav-collapse.navbar-tree .navRow .nav_logo a.logo_img {
  background-image: url("../img/logo/logo_c.svg");
}
.top-nav-collapse.navbar-tree .navRow .nav-right::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item::before, .top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item::after {
  background-color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.show, .top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item:hover {
  color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.show:before, .top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item a {
  color: #133777;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.active {
  color: #997933;
  background-color: rgba(153, 121, 51, 0);
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.active a {
  color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.active ul > li,
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item ul > li {
  color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item:hover,
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item ul > li.nav__L2--item:hover {
  background-color: hsla(0, 0%, 0%, 0.02);
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item a,
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item ul > li.nav__L2--item a {
  color: #997933;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.active ul ul li.nav__L3--item a,
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item ul ul li.nav__L3--item a {
  color: #133777;
}
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item.active ul ul li.nav__L3--item a:hover,
.top-nav-collapse.navbar-tree .navbar-site ul li.nav__L1--item ul ul li.nav__L3--item a:hover {
  color: #997933;
}

body.navOver {
  overflow: hidden;
}
body.navOver .navbar-tree.scrolling-navbar .navRow {
  background: rgba(255, 255, 255, 0.85) !important;
}

body.navOver .navRow .nav_logo a.logo_img,
body.navOver .navbar-bgb .navRow .nav_logo a.logo_img {
  background-image: url("../img/logo/logo_c.svg");
}
body.navOver .navRow .nav-right .nav-icon a,
body.navOver .navbar-bgb .navRow .nav-right .nav-icon a {
  color: #222;
}
body.navOver .navRow .nav-burger .animated-icon1 span,
body.navOver .navbar-bgb .navRow .nav-burger .animated-icon1 span {
  background: rgba(0, 0, 0, 0.7);
}

.navbar_over {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.95) 30%, rgba(221, 221, 221, 0.95) 100%);
  z-index: -1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 1300px) {
  .navbar_over {
    display: none;
  }
}
@media (max-width: 1300px) {
  .navbar_over {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0.5;
  }
}
@media (min-width: 1480px) {
  .navbar_over .navbar_over--topNav {
    display: none;
  }
}
.navbar_over.open {
  position: fixed;
  top: 0;
  width: 100%;
  overflow-y: auto;
  background-blend-mode: multiply;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 1;
}
.navbar_over.open .container-index {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.navbar_over li {
  list-style: none;
}
.navbar_over .L1_btn {
  width: 25%;
  margin-top: 20px;
  padding-left: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #997933;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
@media (max-width: 991.99px) {
  .navbar_over .L1_btn {
    width: 32%;
  }
}
@media (max-width: 767.99px) {
  .navbar_over .L1_btn {
    margin-top: 0px;
    width: 50%;
  }
}
@media (max-width: 375.99px) {
  .navbar_over .L1_btn {
    width: 100%;
  }
}
.navbar_over .L1_btn > a {
  font-size: 22px;
  font-weight: 700;
  color: #997933;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  text-decoration: none;
}
.navbar_over .L1_btn > a:hover {
  font-size: 23px;
  color: #997933;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.navbar_over li > ul.L2_list {
  padding-left: 0px;
}
.navbar_over li > ul.L2_list > li a {
  padding: 6px 15px;
  font-size: 15px;
  line-height: 1.2em;
  font-weight: 400;
  color: #133777;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  text-decoration: none;
}
.navbar_over li > ul.L2_list > li:hover {
  cursor: pointer;
  background-color: #997933;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navbar_over li > ul.L2_list > li:hover a {
  color: #fff;
  text-decoration: none;
}
.navbar_over li > ul.L2_list li.dropdown-submenu {
  position: relative;
}
.navbar_over li > ul.L2_list .L3_list.dropdown-menu {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.navbar_over li > ul.L2_list .L3_list.dropdown-menu.show {
  left: -20px;
}
.navbar_over li > ul.L2_list .L3_list.dropdown-menu li a {
  display: block;
  width: 100%;
  min-width: 220px;
  color: #133777 !important;
}
.navbar_over li > ul.L2_list .L3_list.dropdown-menu li:hover {
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navbar_over li > ul.L2_list .L3_list.dropdown-menu li:hover a {
  color: #fff !important;
  background-color: #997933;
}

@media (min-width: 992px) {
  .navbar_over {
    padding-top: 100px;
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .navbar_over {
    padding-top: 76px;
    overflow-y: auto;
  }
}

.navbar-tree.navbar-bgw {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.9)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9));
}
.navbar-tree.navbar-bgw::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#193f98), color-stop(#2252c0), to(#052a58));
  background: linear-gradient(to right, #193f98, #2252c0, #052a58);
  top: 0;
  right: 0;
}
.navbar-tree.navbar-bgw .top_nav li a {
  color: #5a6470 !important;
}
.navbar-tree.navbar-bgw .top_nav li a:hover {
  color: #997933 !important;
}
.navbar-tree.navbar-bgw .navRow .nav_logo::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.navbar-bgw .navRow .nav_logo a.logo_img {
  background-image: url("../img/logo/logo_c.svg");
}
.navbar-tree.navbar-bgw .navRow .nav-right::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.navbar-bgw .navRow .nav-right .nav-icon a {
  color: #2a4c8a;
}
.navbar-tree.navbar-bgw .navRow .nav-right .nav-icon a:hover {
  color: #997933;
}
.navbar-tree.navbar-bgw .navRow .nav-burger .animated-icon1 span {
  background: rgba(0, 0, 0, 0.7);
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item::before, .navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item::after {
  background-color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.show, .navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item:hover {
  color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.show:before, .navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item a {
  color: #133777;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active {
  color: #997933;
  background-color: rgba(153, 121, 51, 0);
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active a {
  color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active ul > li,
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item ul > li {
  color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item:hover,
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item ul > li.nav__L2--item:hover {
  background-color: hsla(0, 0%, 0%, 0.02);
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active ul > li.nav__L2--item a,
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item ul > li.nav__L2--item a {
  color: #997933;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active ul ul li.nav__L3--item a,
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item ul ul li.nav__L3--item a {
  color: #133777;
}
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item.active ul ul li.nav__L3--item a:hover,
.navbar-tree.navbar-bgw .navbar-site ul li.nav__L1--item ul ul li.nav__L3--item a:hover {
  color: #997933;
}

.navbar-tree.top-nav-collapse.navbar-bgw {
  position: fixed;
}

.navbar-tree.navbar-bgb {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#0f3068), to(#133777));
  background: linear-gradient(to right, #0f3068, #133777);
}
.navbar-tree.navbar-bgb .top_nav li a {
  color: rgba(255, 255, 255, 0.8235294118);
}
.navbar-tree.navbar-bgb .top_nav li a:hover {
  color: #ffffff;
}
.navbar-tree.navbar-bgb .navRow .nav_logo::before {
  background-color: rgba(255, 255, 255, 0.18);
}
.navbar-tree.navbar-bgb .navRow .nav-right::before {
  background-color: rgba(255, 255, 255, 0.18);
}
.navbar-tree.navbar-bgb .navRow .nav-right .nav-icon a {
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar-tree.navbar-bgb .navRow .nav-right .nav-icon a:hover {
  color: #cdaa80;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar-tree.navbar-bgb .navRow .nav-burger .animated-icon1 span {
  background: #fff;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item::before, .navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item::after {
  background-color: #cdaa80;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #cdaa80;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item a {
  color: #dadada;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item.active {
  color: #cdaa80;
  font-weight: 500;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item.active a {
  color: #cdaa80;
}
.navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item.show:before, .navbar-tree.navbar-bgb .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #fff;
}

.navbar-tree.top-nav-collapse.navbar-bgb {
  position: fixed;
  background: #fff;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navRow .nav_logo::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.top-nav-collapse.navbar-bgb .navRow .nav-right::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.top-nav-collapse.navbar-bgb .navRow .nav-right .nav-icon a {
  color: #2a4c8a;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navRow .nav-burger .animated-icon1 span {
  background: #002147;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item::before, .navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item::after {
  background-color: #002147;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #002147;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item a {
  color: #002147;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item.active {
  color: #997933;
  font-weight: 500;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item.active a {
  color: #997933;
}
.navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item.show:before, .navbar-tree.top-nav-collapse.navbar-bgb .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #002147;
}

.navbar-tree.navbar-bgr {
  position: relative;
  background: #194098;
}
.navbar-tree.navbar-bgr .top_nav li a {
  color: rgba(255, 255, 255, 0.8235294118);
}
.navbar-tree.navbar-bgr .top_nav li a:hover {
  color: #ffffff;
}
.navbar-tree.navbar-bgr .navRow .nav_logo::before {
  background-color: rgba(255, 255, 255, 0.18);
}
.navbar-tree.navbar-bgr .navRow .nav-right::before {
  background-color: rgba(255, 255, 255, 0.18);
}
.navbar-tree.navbar-bgr .navRow .nav-right .nav-icon a {
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar-tree.navbar-bgr .navRow .nav-right .nav-icon a:hover {
  color: #f7c230;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar-tree.navbar-bgr .navRow .nav-burger .animated-icon1 span {
  background: #fff;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item::before, .navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item::after {
  background-color: #fff;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #fff;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item a {
  color: #dadada;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item.active {
  color: #eec12c;
  font-weight: 500;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item.active a {
  color: #eec12c;
}
.navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item.show:before, .navbar-tree.navbar-bgr .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #fff;
}

.navbar-tree.top-nav-collapse.navbar-bgr {
  position: fixed;
  background: #fff;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navRow .nav_logo::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.top-nav-collapse.navbar-bgr .navRow .nav-right::before {
  background-color: rgba(0, 0, 0, 0.18);
}
.navbar-tree.top-nav-collapse.navbar-bgr .navRow .nav-right .nav-icon a {
  color: #222;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navRow .nav-burger .animated-icon1 span {
  background: #222;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item {
  color: #133777;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item::before, .navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item::after {
  background-color: #194098;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item:after {
  right: 2.5px;
  background-color: #194098;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item a {
  color: #222;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item.active {
  color: #806200;
  font-weight: 500;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item.active a {
  color: #806200;
}
.navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item.show:before, .navbar-tree.top-nav-collapse.navbar-bgr .navbar-site ul li.nav__L1--item:hover:before {
  background-color: #194098;
}

.page-footer {
  font-size: 1rem;
  font-weight: 400;
  background: -webkit-gradient(linear, left top, right top, from(#03152b), to(#0c2957)) !important;
  background: linear-gradient(to right, #03152b, #0c2957) !important;
  position: relative;
  min-height: 100px;
  padding: 40px 0px 60px 20px;
  z-index: 10;
}

.page-footer .footer_row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px 20px;
  color: #bdbdbd;
}
.page-footer .footer_row a {
  color: #fff;
  font-weight: 400;
}
.page-footer .footer_row a:hover {
  color: #d2b48c;
}
.page-footer .footer_row .col-logo {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  min-width: 220px;
}
.page-footer .footer_row .col-logo img, .page-footer .footer_row .col-logo svg, .page-footer .footer_row .col-logo image {
  width: 400px;
  max-width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page-footer .footer_row .col-add {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 260px;
}
.page-footer .footer_row .col-add a {
  text-decoration: none;
}
.page-footer .footer_row .col-copyright {
  margin-left: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-footer .footer_row .col-copyright img, .page-footer .footer_row .col-copyright svg, .page-footer .footer_row .col-copyright image {
  display: block;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .page-footer .footer_row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-footer .footer_row .col-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    line-height: 1;
    height: 50px;
  }
  .page-footer .footer_row .col-logo img, .page-footer .footer_row .col-logo svg, .page-footer .footer_row .col-logo image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .page-footer .footer_row .col-add {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    min-width: 0;
  }
  .page-footer .footer_row .col-copyright {
    margin-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767.98px) {
  .page-footer .footer_row .col-logo {
    text-align: center;
    width: 100% !important;
  }
  .page-footer .footer_row .col-add {
    text-align: left;
    width: 100%;
    min-width: 0;
  }
  .page-footer .footer_row .col-copyright {
    margin-left: 0;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
/* Start ============ accesskey 內頁 無障礙 ========================  accesskey 內頁 無障礙 ============ */
.show-hide-contact-bar, .hide {
  display: none;
}

.linkDesc, span.linkDesc {
  font-size: 0em !important;
}

*:focus {
  outline: 3px dashed rgba(255, 0, 0, 0) !important;
  outline-offset: -3px;
  text-decoration: none;
}

#AU[accesskey] {
  color: rgba(255, 0, 0, 0);
  max-width: 30px;
  font-size: 1rem;
  position: absolute;
  top: -0.5rem;
  left: 0rem;
}
#AU:focus {
  color: rgba(255, 0, 0, 0);
  font-size: 1.2rem;
  padding: 0.3rem;
}

#toAC[accesskey] {
  position: absolute;
  color: #fff;
  font-size: 0.01rem;
}
#toAC:focus {
  color: #fff;
  font-size: 1.2rem;
  top: 0px;
  left: 0px;
  padding: 10px;
  width: 100%;
  z-index: 100;
  background: #002147;
  text-align: center;
  z-index: 1000;
}

#AC[accesskey] {
  color: rgba(255, 0, 0, 0);
  font-size: 1rem;
  scroll-margin-top: 180px;
  z-index: 10;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
}
#AC:focus {
  color: rgba(255, 0, 0, 0);
  font-size: 1.2rem;
  padding: 0.3rem;
}

#AZ[accesskey] {
  color: rgba(255, 0, 0, 0);
  font-size: 1rem;
  position: absolute;
  top: -0.5rem;
  left: 0rem;
}
#AZ:focus {
  color: rgba(255, 0, 0, 0);
  font-size: 1.2rem;
  padding: 0.3rem;
}

.acc-key {
  position: absolute;
  text-decoration: none;
}
.acc-key a:focus {
  outline: 3px dashed rgba(255, 0, 0, 0) !important;
  outline-offset: -3px;
}

.noscript-alert {
  width: 100%;
  display: block;
}
.noscript-alert.alert {
  margin-bottom: 0px;
}/*# sourceMappingURL=layout.css.map */