@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-size: 16px;
}

body {
  font-family: "Microsoft JhengHei", 微軟正黑體, "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus {
  outline: 2px solid #2b5d73;
  outline-offset: 2px;
}

img {
  vertical-align: middle;
}

ul {
  list-style-type: none;
}

p {
  line-height: 2;
}

[v-cloak] {
  display: none !important;
}

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

.w100p {
  width: 100%;
}

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

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

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

.container {
  position: relative;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main-content {
  padding: 60px 15px;
  background: url("/static/image/bg-1.png") left 60px no-repeat, url("/static/image/bg-2.png") right 80px no-repeat, url("/static/image/bg-3.png") bottom left no-repeat, url("/static/image/bg-4.png") bottom right no-repeat;
  background-size: auto, auto, 160px, 60%;
  max-width: 960px;
  min-height: 640px;
  padding-bottom: 200px;
}

.page-title {
  position: relative;
  display: inline-flex;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.page-title span:first-child {
  color: #000;
}
.page-title span:last-child {
  color: #53681d;
}

@media (min-width: 576px) {
  .page-title:before, .page-title:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 60px;
    background-color: #000;
  }
  .page-title:before {
    right: calc(100% + 20px);
  }
  .page-title:after {
    left: calc(100% + 20px);
  }
}
.floating-btns {
  position: fixed;
  right: 30px;
  bottom: 10%;
  display: flex;
  flex-direction: column;
}
.floating-btns .btn-floating {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 0.75rem;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 10px;
}
.floating-btns .btn-floating:nth-child(1) {
  background-color: #2d647a;
}
.floating-btns .btn-floating:nth-child(1):after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background-color: #2d647a;
}
.floating-btns .btn-floating:nth-child(2) {
  background-color: #a7bf66;
}
.floating-btns .btn-floating:nth-child(2):after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background-color: #a7bf66;
}
.floating-btns .btn-floating:nth-child(3) {
  background-color: #6d5200;
}
.floating-btns .btn-floating:nth-child(4) {
  background-color: #a03b6b;
}

@media (min-width: 768px) {
  .floating-btns .btn-floating {
    width: 64px;
    height: 64px;
    font-size: 1rem;
  }
}
/* 平常隱藏在畫面上方外面 */
.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: #000000;
  color: #ffffff;
  padding: 10px 15px;
  z-index: 99999; /* 確保在最上層 */
  text-decoration: underline;
  font-weight: bold;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

/* 當鍵盤 Tab 移動到它身上時（:focus），彈出來顯示 */
.skip-link:focus {
  top: 0;
  outline: 3px solid #ffbf47; /* 明確的焦點外框 */
}

.sr-only-focusable-parent {
  position: relative;
}

.sr-only-focusable {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:focus, .sr-only-focusable:focus-visible {
  /* 改用 absolute 讓它浮在內容上方，不擠壓版面 */
  position: absolute;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  background-color: #2d647a;
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
  display: inline-block;
  border-radius: 4px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  outline: 2px solid #ffffff;
}

.header {
  position: relative;
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  width: 100%;
}
.header .navbar-logo {
  display: inline-block;
  width: 200px;
  margin-right: 20px;
}
.header .navbar-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding-top: 60px;
  overflow-y: auto;
  z-index: 1;
}
.header .navbar-menu a {
  display: block;
  padding: 15px 20px;
  color: #000;
  white-space: nowrap;
  text-align: left;
  transition: all 0.3s;
}
.header .navbar-menu a:hover {
  color: #59a73a;
}
.header .navbar-menu li {
  width: 100%;
}
.header .navbar-menu li.active a {
  position: relative;
  color: #59a73a;
}
.header .navbar-menu li.active a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #59a73a;
}
.header .navbar-menu .dropdown {
  position: relative;
}
.header .navbar-menu .dropdown:hover .dropdown-menu {
  display: block;
}
.header .navbar-menu .dropdown-menu {
  display: none;
  position: static;
  border-top: 1px solid #c8dbbe;
}
.header .navbar-menu .dropdown-menu a {
  display: block;
  margin: 3px 0;
  padding-left: 40px;
  opacity: 0.9;
}

@media (min-width: 992px) {
  .header .container {
    width: 970px;
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
  }
  .header .navbar-menu {
    position: static;
    display: flex;
    flex-direction: row;
    background-color: transparent;
    padding-top: 0;
    overflow-y: inherit;
  }
  .header .navbar-menu a {
    color: #000;
    padding: 10px;
  }
  .header .navbar-menu a:hover {
    color: #59a73a;
  }
  .header .navbar-menu li {
    width: auto;
  }
  .header .navbar-menu li.active {
    position: relative;
  }
  .header .navbar-menu li.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background-color: #59a73a;
  }
  .header .navbar-menu li.active a {
    color: #59a73a;
  }
  .header .navbar-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: transparent;
    border-top: none;
    z-index: 1;
  }
  .header .navbar-menu .dropdown-menu a {
    display: block;
    color: #fff;
    background-color: #59a73a;
    min-width: 120px;
    margin: 3px 0;
    padding-left: 10px;
    text-align: center;
    opacity: 0.9;
  }
  .header .navbar-menu .dropdown-menu a:hover {
    color: #fff;
    background-color: #1a6fb0;
  }
}
#menuToggle {
  display: none;
}
#menuToggle:checked ~ .hamburger {
  position: fixed;
}
#menuToggle:checked ~ .hamburger span {
  background-color: transparent;
}
#menuToggle:checked ~ .hamburger span:before {
  transform: rotate(45deg);
}
#menuToggle:checked ~ .hamburger span:after {
  transform: rotate(-45deg);
}
#menuToggle:checked ~ .navbar-menu {
  display: flex;
}
#menuToggle:checked ~ .navbar-menu a {
  text-align: center;
  font-size: 1.5rem;
}
#menuToggle:checked ~ .navbar-menu {
  animation: fadeIn 0.3s;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 2;
}
.hamburger:focus, .hamburger:focus-visible {
  outline: 2px solid #2d647a;
  outline-offset: 2px;
}
.hamburger .bar {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition: all 0.3s;
}
.hamburger .bar:before, .hamburger .bar:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition: all 0.3s;
}
.hamburger .bar:before {
  transform: translateY(-13px);
}
.hamburger .bar:after {
  transform: translateY(13px);
}
.hamburger .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.header {
  background-image: url("/static/image/sitemap/banner.jpg");
}

.accesskey-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid #2d647a;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.accesskey-card .card-title {
  font-size: 1.25rem;
  color: #2d647a;
  margin-bottom: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.accesskey-card .card-desc {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}
.accesskey-card .accesskey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.accesskey-card .accesskey-grid .key-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #f1f5f9;
  padding: 14px;
  border-radius: 6px;
}
.accesskey-card .accesskey-grid .key-item .badge {
  background-color: #2d647a;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.accesskey-card .accesskey-grid .key-item .key-info {
  display: flex;
  flex-direction: column;
}
.accesskey-card .accesskey-grid .key-item .key-info strong {
  color: #1a202c;
  font-size: 1rem;
  margin-bottom: 2px;
}
.accesskey-card .accesskey-grid .key-item .key-info span {
  color: #4a5568;
  font-size: 0.875rem;
}
.accesskey-card .tip-text {
  font-size: 0.875rem;
  color: #718096;
  margin-bottom: 0;
}
.accesskey-card .tip-text kbd {
  background-color: #e2e8f0;
  color: #2d3748;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  border: 1px solid #cbd5e0;
}

.sitemap-tree-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.sitemap-tree-card .card-title {
  font-size: 1.25rem;
  color: #2d647a;
  margin-bottom: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #edf2f7;
  padding-bottom: 12px;
}
.sitemap-tree-card .tree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.sitemap-tree-card .tree-grid .tree-group .group-title {
  font-size: 1.1rem;
  color: #1a202c;
  font-weight: bold;
  margin-bottom: 14px;
  padding-left: 10px;
  border-left: 4px solid #319795;
}
.sitemap-tree-card .tree-grid .tree-group .tree-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.sitemap-tree-card .tree-grid .tree-group .tree-list li {
  margin-bottom: 8px;
}
.sitemap-tree-card .tree-grid .tree-group .tree-list li a {
  display: inline-block;
  padding: 8px 12px;
  color: #2d647a;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  width: 100%;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.sitemap-tree-card .tree-grid .tree-group .tree-list li a:hover {
  background-color: #e6fffa;
  color: #234e52;
  text-decoration: underline;
}
.sitemap-tree-card .tree-grid .tree-group .tree-list li a:focus, .sitemap-tree-card .tree-grid .tree-group .tree-list li a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
  background-color: #e6fffa;
}

footer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 40px 15px;
  background: url("/static/image/footer-left.png") left bottom no-repeat, url("/static/image/footer-right.png") right bottom no-repeat;
  background-size: 160px, 240px;
  background-color: #53681d;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
footer .footer-links .sitemap-link {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
footer .footer-links .sitemap-link:hover {
  text-decoration: underline;
  background-color: rgba(255, 255, 255, 0.15);
}
footer .footer-links .sitemap-link:focus, footer .footer-links .sitemap-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  background-color: rgba(255, 255, 255, 0.25);
}
footer .counter,
footer .time {
  margin-bottom: 12px;
  text-align: center;
}
footer .contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  margin-top: 6px;
  padding: 0;
  list-style: none;
}
footer .contact li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 10px;
}/*# sourceMappingURL=sitemap.css.map */