* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
}

ul {
  list-style: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* color */
/* font */
/* transition */
header .navList>li,
header .navList>li>a .title,
header .navList>li .submenu li a,
.languageBox li,
.themeSwitchBox:before,
.searchBtn,
.searchOverlayClose,
footer .sitemap .title,
footer .infoList .infoItem a,
.btn,
.btn span,
.btn svg,
.btn2 span:after,
.btn3,
.btn3 span,
.btn3 svg,
.btn4,
.btn5,
.sideBox .sideMenu>li,
.sideBox .sideMenu>li>a:after,
.sideBox .sideMenu .child a:before,
.pageList li:after,
.pageList li:before {
  transition: all 0.5s ease-in-out;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes slowShowLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  to {
    opacity: 1;
  }
}

body {
  position: relative;
  font-family: "Goldman", Noto Sans TC, sans-serif;
  font-size: 16px;
}

[data-theme="dark"] body {
  background-color: #303f50;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) body {
    background-color: #303f50;
  }
}

body a {
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  body a:hover {
    color: #0a132e;
  }
}

body.scroll-disabled,
body.isLoading {
  overflow: hidden;
}

html.visited .loading {
  display: none !important;
}

.loading {
  align-items: center;
  background-color: #0a132e;
  display: flex;
  height: 100%;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.loading.show {
  opacity: 1;
  visibility: visible;
}

.loading.hide {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  margin: auto;
  max-width: 300px;
  opacity: 0;
}

.loading.show .loading-logo {
  animation: slowShowLeft 1s ease-in-out forwards;
}

.loading-logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.outerContainer {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.5s;
}

@media (max-width: 640px) {
  .outerContainer {
    padding: 80px 0 0;
  }
}

.outerContainer.show {
  opacity: 1;
}

.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 1366px) {
  .container {
    max-width: 90vw;
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: 95vw;
  }
}

.bannerBox .swiper-navigation-icon {
  display: none;
}

header {
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  height: 125px;
  background-color: #fff;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}

[data-theme="dark"] header {
  background-color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) header {
    background-color: #3f5165;
  }
}

header.transparent {
  background-color: transparent;
}

header.hide {
  transform: translateX(-50%) translateY(-100%);
}

@media (max-width: 1366px) {
  header {
    height: 100px;
  }
}

@media (max-width: 1180px) {
  header {
    display: none;
  }
}

header .container {
  max-width: 1650px;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

@media (max-width: 1536px) {
  header .container {
    max-width: 95vw;
  }
}

header .logo {
  max-width: clamp(160px, 15vw, 280px);
  display: block;
  align-self: center;
}

[lang="en"] header .logo {
  max-width: clamp(160px, 15vw, 220px);
  display: block;
  align-self: center;
}

header .navList {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  flex: 1;
  height: calc(100% - 40px);
}

@media (max-width: 1180px) {
  header .navList {
    display: none;
  }
}

header .navList>li {
  display: flex;
  align-items: center;
  padding: 40px 20px 0;
  position: relative;
  z-index: 2;
  height: 100%;
}

header .navList>li:has(.current) {
  background-color: #fd7924;
}

[data-theme="dark"] header .navList>li:has(.current) {
  background-color: #bec9cd;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) header .navList>li:has(.current) {
    background-color: #bec9cd;
  }
}

header .navList>li:has(.current) a .title {
  color: #fff;
}

[lang="en"] header .navList a .title {
    font-size: 15px;
    letter-spacing: 1.2px;
}

[lang="en"] header .navList {
  margin-left: 20px;
}

[lang="en"] header .navList > li {
  display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 0 0;
    position: relative;
    z-index: 2;
    height: 100%;
    text-align: center;
}

[data-theme="dark"] header .navList>li:has(.current) a .title {
  color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) header .navList>li:has(.current) a .title {
    color: #3f5165;
  }
}

@media (min-width: 1181px) {
  header .navList>li:hover {
    background-color: #fd7924;
  }

  [data-theme="dark"] header .navList>li:hover {
    background-color: #bec9cd;
  }
}

@media (min-width: 1181px) and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) header .navList>li:hover {
    background-color: #bec9cd;
  }
}

@media (min-width: 1181px) {
  header .navList>li:hover a .title {
    color: #fff;
  }

  [data-theme="dark"] header .navList>li:hover a .title {
    color: #3f5165;
  }
}

@media (min-width: 1181px) and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) header .navList>li:hover a .title {
    color: #3f5165;
  }
}

@media (max-width: 1536px) {
  header .navList>li {
    padding: 40px 15px 0;
  }
}

@media (max-width: 1366px) {
  header .navList>li {
    padding: 30px 15px 0;
  }
}

header .navList>li>a {
  position: relative;
  color: currentColor;
  z-index: 2;
}

header .navList>li>a .title {
  color: #0a132e;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3.24px;
  position: relative;
  z-index: 3;
}

[data-theme="dark"] header .navList>li>a .title {
  color: #bec9cd;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) header .navList>li>a .title {
    color: #bec9cd;
  }
}

@media (max-width: 1440px) {
  header .navList>li>a .title {
    letter-spacing: 2.7px;
  }
}

@media (max-width: 1366px) {
  header .navList>li>a .title {
    font-size: 16px;
    letter-spacing: 1.92px;
  }
}

@media (max-width: 1280px) {
  header .navList>li>a .title {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

header .navList>li .submenu {
  opacity: 0;
  z-index: 4;
  pointer-events: none;
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  top: calc(100% + 10px);
  left: 0;
  background-color: rgba(245, 244, 239, 0.85);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

header .navList>li .submenu.open {
  opacity: 1;
  pointer-events: auto;
}

header .navList>li .submenu li {
  text-align: center;
  position: relative;
  padding: 5px 0;
  margin-bottom: 10px;
  color: #0a132e;
  font-weight: 500;
  letter-spacing: 1.28px;
}

@media (max-width: 1280px) {
  header .navList>li .submenu li {
    font-size: 14px;
    letter-spacing: 1.12px;
  }
}

header .navList>li .submenu li.current {
  color: #036eb8;
  border-bottom: 2px solid #fd7924;
}

[data-theme="dark"] header .navList>li .submenu li.current {
  color: #fd7924;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) header .navList>li .submenu li.current {
    color: #fd7924;
  }
}

@media (min-width: 1181px) {
  header .navList>li .submenu li:hover {
    color: #036eb8;
  }

  [data-theme="dark"] header .navList>li .submenu li:hover {
    color: #fd7924;
  }
}

@media (min-width: 1181px) and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) header .navList>li .submenu li:hover {
    color: #fd7924;
  }
}

header .navList>li .submenu li a {
  color: currentColor;
}

@media (max-width: 1366px) {

  .languageBox,
  .themeSwitchBox {
    transform: translateY(-5px);
  }
}

.languageBox {
  display: flex;
  align-items: center;
  align-self: center;
}

.languageBox:has(:hover) li {
  color: #fff;
}

.languageBox:has(:hover) li:not(:hover) {
  background-color: #0a132e;
}

.languageBox:has(:hover) li:hover {
  background-color: #036eb8;
}

.languageBox li {
  background-color: #0a132e;
  padding: 5px 25px;
  font-family: "Noto Sans TC", sans-serif;
  color: #fff;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

@media (max-width: 1280px) {
  .languageBox li {
    padding: 5px 20px;
  }
}

@media (max-width: 640px) {
  .languageBox li {
    padding: 5px 25px;
  }
}

.languageBox li.current {
  background-color: #036eb8;
}

[data-theme="dark"] .languageBox li.current {
  color: #303f50;
  background-color: #bec9cd;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .languageBox li.current {
    color: #303f50;
    background-color: #bec9cd;
  }
}

.languageBox li+li {
  margin-left: -21px;
}

.languageBox li a {
  color: currentColor;
}

.themeSwitchBox {
  align-self: center;
  margin-left: 30px;
  padding: 10px 35px;
  background-color: #525152;
  border-radius: 40px;
  border: 1px solid #525152;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.6px;
  position: relative;
}

@media (max-width: 1366px) {
  .themeSwitchBox {
    margin-left: 20px;
  }
}

@media (max-width: 1280px) {
  .themeSwitchBox {
    margin-left: 10px;
  }
}

.themeSwitchBox:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #737373;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1181px) {
  .themeSwitchBox:hover {
    color: #fff;
  }
}

.themeSwitchBox a {
  color: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.themeSwitchBox span {
  display: block;
}

.themeSwitchBox.light:before {
  left: 5px;
}

.themeSwitchBox.light span {
  transform: translateX(10px);
}

.themeSwitchBox.dark {
  background-color: #fff;
  color: #737373;
}

.themeSwitchBox.dark:before {
  left: calc(100% - 31px);
}

.themeSwitchBox.dark span {
  transform: translateX(0px);
}

.mobileHeader {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

[data-theme="dark"] .mobileHeader {
  background-color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mobileHeader {
    background-color: #3f5165;
  }
}

@media (min-width: 1181px) {
  .mobileHeader {
    display: none;
  }
}

.mobileHeader .container {
  height: 100%;
  max-width: 95vw;
  margin: 0 auto;
  position: relative;
  z-index: 50;
}

.mobileHeader .topBox {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mobileHeader .logo {
  align-items: center;
  display: flex;
  max-width: 200px;
}

.mobileHeader .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobileHeader .mobileMenuTrigger {
  height: 30px;
  width: 30px;
  position: relative;
}

.mobileHeader .mobileMenuTrigger.open span {
  background-color: transparent;
}

[data-theme="dark"] .mobileHeader .mobileMenuTrigger.open span {
  background-color: transparent;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mobileHeader .mobileMenuTrigger.open span {
    background-color: transparent;
  }
}

.mobileHeader .mobileMenuTrigger.open span:before {
  content: "";
  position: absolute;
  top: 0;
  transform: rotate(45deg);
}

.mobileHeader .mobileMenuTrigger.open span:after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: rotate(-45deg);
}

.mobileHeader .mobileMenuTrigger span {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateX(-50%);
  margin-top: -0.5px;
  width: 26px;
  height: 2px;
  background-color: #0a132e;
  transition: all 0.5s;
}

[data-theme="dark"] .mobileHeader .mobileMenuTrigger span {
  background-color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mobileHeader .mobileMenuTrigger span {
    background-color: #fff;
  }
}

.mobileHeader .mobileMenuTrigger span:before,
.mobileHeader .mobileMenuTrigger span:after {
  background: #0a132e;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.5s;
}

[data-theme="dark"] .mobileHeader .mobileMenuTrigger span:before,
[data-theme="dark"] .mobileHeader .mobileMenuTrigger span:after {
  background-color: #fff;
}

@media (prefers-color-scheme: dark) {

  :root:not([data-theme="light"]) .mobileHeader .mobileMenuTrigger span:before,
  :root:not([data-theme="light"]) .mobileHeader .mobileMenuTrigger span:after {
    background-color: #fff;
  }
}

.mobileHeader .mobileMenuTrigger span:before {
  content: "";
  position: absolute;
  top: -7px;
}

.mobileHeader .mobileMenuTrigger span:after {
  content: "";
  position: absolute;
  bottom: -7px;
}

.mobileHeader .mobileMenuBox {
  background-color: #fff;
  display: none;
  padding: 20px 0;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 50;
}

[data-theme="dark"] .mobileHeader .mobileMenuBox {
  background-color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mobileHeader .mobileMenuBox {
    background-color: #3f5165;
  }
}

.mobileHeader .mobileMenuList li {
  color: #0a132e;
  font-size: 18px;
  padding: 12px 0;
  position: relative;
  letter-spacing: 1.08px;
}

[data-theme="dark"] .mobileHeader .mobileMenuList li {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mobileHeader .mobileMenuList li {
    color: #fff;
  }
}

.mobileHeader .mobileMenuList li a {
  display: block;
}

.mobileHeader .mobileMenuList li.hasSubmenu>a {
  display: block;
  position: relative;
  width: 100%;
}

.mobileHeader .mobileMenuList li.hasSubmenu>a:after {
  content: "";
  position: absolute;
  color: #0a132e;
  content: "+";
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  object-fit: contain;
}

[data-theme="dark"] .mobileHeader .mobileMenuList li.hasSubmenu>a:after {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mobileHeader .mobileMenuList li.hasSubmenu>a:after {
    color: #fff;
  }
}

.mobileHeader .mobileMenuList li.hasSubmenu.open>a:after {
  content: "";
  position: absolute;
  content: "-";
}

.mobileHeader .mobileMenuList .submenu {
  display: none;
  padding: 10px 0;
}

.mobileHeader .mobileMenuList .submenu li {
  font-size: 14px;
  padding: 5px 10px;
}

.mobileHeader .mobileMenuFnc {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}

.mobileHeader .mobileMenuFnc .searchBox {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 5px;
  margin-right: 10px;
  border-bottom: 1px solid #fff;
}

.mobileHeader .mobileMenuFnc .searchBox input {
  background-color: transparent;
  border: none;
  margin-right: 50px;
  color: #fff;
}

.mobileHeader .mobileMenuFnc .searchBox input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.mobileHeader .mobileMenuFnc .searchBox input:focus {
  outline: none;
}

.mobileHeader .mobileMenuFnc .searchBox button {
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .mobileHeader .mobileMenuFnc .searchBox button:hover {
    color: #0a132e;
  }
}

.mobileHeader .mobileMenuFnc a {
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 10px;
}

.mobileHeader .mobileMenuFnc svg {
  height: 20px;
  width: 20px;
  color: #fff;
  fill: #fff;
}

.mobileHeader .mobileContent {
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.mobileHeader .mobileLanguage {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.mobileHeader .mobileLanguage a {
  margin: 0 10px;
  color: #0a132e;
}

.mobileMenuMask {
  background-color: rgba(10, 19, 46, 0.65);
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 49;
  transition: all 0.5s ease-in-out;
}

.mobileMenuMask.show {
  opacity: 1;
  pointer-events: auto;
}

.modalBox {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 45px;
  background-color: #fff;
  padding: 45px;
  width: 100%;
  max-width: 900px;
  z-index: 101;
  transition: all 0.5s ease-in-out;
  display: none;
}

.modalBox.show {
  display: block;
}

.modalBox .btnBox {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.modalBox .btnBox .btn {
  padding: 5px 80px;
}

@media (max-width: 640px) {
  .modalBox {
    padding: 20px;
    width: calc(100% - 40px);
    max-width: none;
    border-radius: 0;
  }
}

.modalMask {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 100;
  transition: all 0.5s ease-in-out;
}

.modalMask.show {
  opacity: 1;
  pointer-events: auto;
}

.searchBtn {
  align-self: center;
  margin: 0 20px;
  cursor: pointer;
  color: #0a132e;
}

[data-theme="dark"] .searchBtn {
  color: #bec9cd;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .searchBtn {
    color: #bec9cd;
  }
}

@media (max-width: 1280px) {
  .searchBtn {
    margin-left: 10px;
  }
}

@media (max-width: 640px) {
  .searchBtn {
    margin: 0;
  }
}

.searchBtn svg {
  display: block;
}

@media (min-width: 1181px) {
  .searchBtn:hover {
    color: #036eb8;
  }
}

.searchBtn.mobileSearchBtn {
  margin-left: 0;
  margin-right: 0;
}

.searchOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

.searchOverlay.show {
  opacity: 1;
  pointer-events: auto;
}

.searchOverlayInner {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px;
  width: 90%;
  max-width: 700px;
  position: relative;
}

[data-theme="dark"] .searchOverlayInner {
  background-color: #3f5165;
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .searchOverlayInner {
    background-color: #3f5165;
    color: #fff;
  }
}

@media (max-width: 640px) {
  .searchOverlayInner {
    padding: 30px 20px;
    border-radius: 10px;
  }
}

.searchOverlayClose {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}

@media (min-width: 1181px) {
  .searchOverlayClose:hover {
    color: #0a132e;
  }

  [data-theme="dark"] .searchOverlayClose:hover {
    color: #fff;
  }
}

@media (min-width: 1181px) and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .searchOverlayClose:hover {
    color: #fff;
  }
}

.searchOverlayTitle {
  font-size: 24px;
  font-weight: 700;
  color: #0a132e;
  margin-bottom: 30px;
  letter-spacing: 2.4px;
}

[data-theme="dark"] .searchOverlayTitle {
  color: #bec9cd;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .searchOverlayTitle {
    color: #bec9cd;
  }
}

@media (max-width: 640px) {
  .searchOverlayTitle {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.searchForm {
  display: flex;
  border: 2px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.searchForm:focus-within {
  border-color: #036eb8;
}

.searchInput {
  flex: 1;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  font-family: "Noto Sans TC", sans-serif;
  background-color: transparent;
  color: #0a132e;
}

[data-theme="dark"] .searchInput {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .searchInput {
    color: #fff;
  }
}

.searchInput::placeholder {
  color: #aaa;
}

.searchInput:focus {
  outline: none;
}

@media (max-width: 640px) {
  .searchInput {
    padding: 12px 18px;
    font-size: 14px;
  }
}

.searchSubmit {
  background-color: #036eb8;
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  color: #fff;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
}

@media (min-width: 1181px) {
  .searchSubmit:hover {
    background-color: #fd7924;
  }
}

.searchSubmit svg {
  display: block;
}

@media (max-width: 640px) {
  .searchSubmit {
    padding: 12px 18px;
  }
}

.sideBtns {
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 99;
}

@media (max-width: 640px) {
  .sideBtns {
    right: 20px;
    bottom: 100px;
  }
}

.sideBtns .socialList {
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

.sideBtns .socialList.open {
  opacity: 1;
  pointer-events: auto;
}

.sideBtns .socialList a {
  width: 50px;
  height: 50px;
  margin: 10px auto;
  display: block;
}

.sideBtns .sideSocial {
  transition: all 0.5s ease-in-out;
}

.sideBtns li {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  transition: all 0.5s ease-in-out;
  margin: 10px 0;
  cursor: pointer;
  box-shadow: 0px 2px 3.84px 0.16px rgba(0, 0, 0, 0.53);
}

.sideBtns li a {
  align-items: center;
  display: flex;
  justify-content: center;
}

.sideBtns li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 32px;
}

.sideBtns li.toTop {
  background-color: #036eb8;
  opacity: 0;
  pointer-events: none;
}

.sideBtns li.show {
  opacity: 1;
  pointer-events: auto;
}

footer {
  position: relative;
  background-color: #fafafa;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 50px;
}

[data-theme="dark"] footer {
  background-color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) footer {
    background-color: #3f5165;
  }
}

footer .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  footer .content {
    flex-direction: column;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {

  footer .content .leftBox,
  footer .content .rightBox {
    width: 100%;
  }
}

footer .logo {
  margin-bottom: 40px;
}

footer .sitemap {
  list-style: none;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 20px;
  justify-content: space-between;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  footer .sitemap {
    row-gap: 15px;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  footer .sitemap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1181px) {
  footer .sitemap li:hover .title {
    color: #036eb8;
  }

  [data-theme="dark"] footer .sitemap li:hover .title {
    color: #909da7;
  }
}

@media (min-width: 1181px) and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) footer .sitemap li:hover .title {
    color: #909da7;
  }
}

footer .sitemap .title {
  color: #525252;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
}

[data-theme="dark"] footer .sitemap .title {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) footer .sitemap .title {
    color: #fff;
  }
}

@media (max-width: 1180px) {
  footer .sitemap .title {
    font-size: 16px;
  }
}

footer .infoList {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, auto);
  row-gap: 15px;
  column-gap: 20px;
  width: fit-content;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  footer .infoList {
    grid-template-columns: 1fr;
  }
}

footer .infoList .infoItem {
  color: #525252;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] footer .infoList .infoItem {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) footer .infoList .infoItem {
    color: #fff;
  }
}

@media (max-width: 640px) {
  footer .infoList .infoItem {
    font-size: 14px;
  }
}

@media (min-width: 1181px) {
  footer .infoList .infoItem:has(a):hover a {
    color: #036eb8;
  }
}

footer .infoList .infoItem a {
  color: currentColor;
}

footer .mapBox {
  width: 430px;
}

@media (max-width: 1024px) {
  footer .mapBox {
    width: 350px;
  }
}

@media (max-width: 768px) {
  footer .mapBox {
    width: 100%;
  }
}

footer .copyrightBox {
  background-color: #036eb8;
  color: #fff;
}

[data-theme="dark"] footer .copyrightBox {
  background-color: #3f5165;
  border-top: 1px solid #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) footer .copyrightBox {
    background-color: #3f5165;
    border-top: 1px solid #fff;
  }
}

footer .copyright {
  padding: 5px 0;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.2px;
}

@media (max-width: 640px) {
  footer .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.btn {
  height: 36px;
  width: 36px;
  border-radius: 5px;
  background-color: #fd7924;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

[data-theme="dark"] .btn {
  background-color: #bec9cd;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn {
    background-color: #bec9cd;
  }
}

@media (min-width: 1181px) {
  .btn:hover {
    width: 156px;
    padding: 0 30px;
  }

  .btn:hover svg {
    left: 85%;
  }

  .btn:hover span {
    opacity: 1;
  }
}

.btn span {
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  opacity: 0;
}

.btn svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
}

.btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (min-width: 1181px) {
  .btn2:hover span:after {
    content: "";
    position: absolute;
    transform: scaleX(1);
  }
}

.btn2 span {
  display: inline-block;
  color: #0a132e;
  font-size: 26px;
  letter-spacing: 0.78px;
  padding-bottom: 6px;
  position: relative;
}

[data-theme="dark"] .btn2 span {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn2 span {
    color: #fff;
  }
}

.btn2 span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #0a132e;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
}

[data-theme="dark"] .btn2 span:after {
  background-color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn2 span:after {
    background-color: #3f5165;
  }
}

.btn2 .icon {
  width: 40px;
  height: 40px;
  background-color: #fd7924;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .btn2 .icon {
  background-color: #bec9cd;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn2 .icon {
    background-color: #bec9cd;
  }
}

.btn2 svg {
  height: 20px;
  width: 20px;
}

.btn3 {
  width: 116px;
  padding: 0 10px 0 40px;
  border-radius: 5px;
  background-color: #fd7924;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  position: relative;
}

[data-theme="dark"] .btn3 {
  background-color: #bec9cd;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn3 {
    background-color: #bec9cd;
  }
}

@media (min-width: 1181px) {
  .btn3:hover {
    transform: translateX(-15px);
  }
}

.btn3 span {
  color: #fff;
  font-size: 20px;
}

[data-theme="dark"] .btn3 span {
  color: #303f50;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn3 span {
    color: #303f50;
  }
}

.btn3 svg {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translate(-50%, -50%) scaleX(-1);
  width: 18px;
  height: 18px;
}

[data-theme="dark"] .btn3 svg {
  color: #303f50;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn3 svg {
    color: #303f50;
  }
}

.btn4 {
  color: #fff;
  border: 2px solid #fd7924;
  border-radius: 12px;
  background-color: #fd7924;
  padding: 6px 20px;
  font-size: 20px;
  letter-spacing: 2.4px;
  line-height: 1;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-end;
}

@media (min-width: 1181px) {
  .btn4:hover {
    color: #fd7924;
    background-color: #fff;
  }
}

.btn5 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 1.44px;
  font-weight: 700;
  color: #036eb8;
  padding: 8px 30px;
  border-radius: 16px;
  background-color: #eaeaea;
  width: fit-content;
}

[data-theme="dark"] .btn5 {
  color: #303f50;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn5 {
    color: #303f50;
  }
}

@media (min-width: 1181px) {
  .btn5:hover {
    color: #fd7924;
  }
}

.btn5 svg {
  width: 25px;
  height: 25px;
}

.breadBox {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
}

@media (max-width: 1180px) {
  .breadBox {
    position: relative;
  }
}

.breadBox .bread {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  color: #036eb8;
  font-family: "Goldman", Noto Sans TC, sans-serif;
  font-weight: 700;
  gap: 4px;
  padding: 2.5px 20px;
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .breadBox .bread {
  color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .breadBox .bread {
    color: #3f5165;
  }
}

.breadBox .bread li,
.breadBox .bread a {
  font-size: 15px;
  color: #036eb8;
}

[data-theme="dark"] .breadBox .bread li,
[data-theme="dark"] .breadBox .bread a {
  color: #3f5165;
}

@media (prefers-color-scheme: dark) {

  :root:not([data-theme="light"]) .breadBox .bread li,
  :root:not([data-theme="light"]) .breadBox .bread a {
    color: #3f5165;
  }
}

.breadBox .bread a {
  transition: all 0.5s ease-in-out;
}

.breadBox .bread a:has(img) {
  font-size: 0;
}

@media (min-width: 1181px) {
  .breadBox .bread a:hover {
    color: #0a132e;
  }
}

.breadBox .bread .divider {
  margin: 0 5px;
}

.insBox {
  position: relative;
}

.insBanner {
  box-sizing: content-box;
  position: relative;
  display: flex;
  align-items: center;
  height: 450px;
  background-image: url("../assets/images/ins_banner.jpg");
}

@media (max-width: 1180px) {
  .insBanner {
    height: 350px;
  }
}

@media (max-width: 640px) {
  .insBanner {
    height: 300px;
  }
}

.insBanner .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  height: 100%;
  width: 100%;
  padding-bottom: 100px;
}

@media (max-width: 1180px) {
  .insBanner .container {
    flex-direction: column;
    padding-bottom: 20px;
    gap: 20px;
  }
}

.insBanner .insTitleBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

@media (max-width: 1180px) {
  .insBanner .insTitleBox {
    width: 100%;
    justify-content: flex-end;
  }
}

.insBanner .subtitle {
  font-size: 25px;
  color: #036eb8;
  letter-spacing: 0.75px;
  line-height: 1;
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .insBanner .subtitle {
  color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .insBanner .subtitle {
    color: #3f5165;
  }
}

.insBanner .subtitle:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #036eb8;
  right: -140px;
  top: -12%;
  transform: translateY(-50%) rotate(-45deg);
}

[data-theme="dark"] .insBanner .subtitle:after {
  background-color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .insBanner .subtitle:after {
    background-color: #3f5165;
  }
}

@media (max-width: 640px) {
  .insBanner .subtitle:after {
    display: none;
  }
}

@media (max-width: 640px) {
  .insBanner .subtitle {
    font-size: 20px;
  }
}

.insBanner .title {
  color: #0a132e;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  position: relative;
}

[data-theme="dark"] .insBanner .title {
  color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .insBanner .title {
    color: #3f5165;
  }
}

.insBanner .title:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: #036eb8;
  left: -80px;
  top: 80%;
  transform: translateY(-50%) rotate(-45deg);
}

[data-theme="dark"] .insBanner .title:before {
  background-color: #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .insBanner .title:before {
    background-color: #3f5165;
  }
}

@media (max-width: 640px) {
  .insBanner .title:before {
    display: none;
  }
}

.insBanner .title:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 14px;
  background-color: #fd7924;
  left: 0;
  bottom: 7px;
  z-index: -1;
}

[data-theme="dark"] .insBanner .title:after {
  background-color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .insBanner .title:after {
    background-color: #fff;
  }
}

@media (max-width: 640px) {
  .insBanner .title {
    font-size: 34px;
    margin-bottom: 0;
  }
}

.insContent {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 60px 0 180px;
  position: relative;
  gap: 80px;
}

@media (max-width: 1180px) {
  .insContent {
    padding: 30px 0 100px;
  }
}

@media (max-width: 1024px) {
  .insContent {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
}

@media (max-width: 640px) {
  .insContent {
    padding: 40px 0 100px;
  }
}

.insContent.noSide {
  grid-template-columns: 100%;
}

@media (max-width: 640px) {
  .insContent .leftBox {
    padding-top: 40px;
  }
}

.blockTitleBox {
  text-align: center;
  background-color: #0a132e;
  position: relative;
}

.blockTitleBox.horizontal {
  display: flex;
  align-items: center;
  padding-left: 30px;
  height: 40px;
}

.blockTitleBox.horizontal .deco {
  width: 10px;
  height: 40px;
  background-color: #e06665;
  position: absolute;
  left: 0;
  top: 0;
}

.blockTitleBox.horizontal .blockTitle {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2.4px;
}

.viewBox {
  align-items: center;
  display: flex;
  color: #fd7924;
  font-variant: lining-nums;
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 40px;
}

.viewBox img {
  width: 14px;
  height: 14px;
  margin-right: 10px;
}

@media (max-width: 640px) {
  .sideBox {
    margin-bottom: 20px;
  }
}

.sideBox .titleBox {
  margin-left: 0;
  margin-right: auto;
}

.sideBox .titleBox .title {
  color: #0a132e;
  font-size: 24px;
  font-weight: 600;
  padding-left: 20px;
  letter-spacing: 2.4px;
  width: 100%;
  margin-bottom: 20px;
}

.sideBox .blockTitleBox {
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .sideBox .sideMenu {
    display: none;
  }
}

.sideBox .sideMenu>li {
  color: #000;
  font-weight: 100;
  font-size: 18px;
  padding: 5px 0;
  position: relative;
  text-align: left;
  margin-bottom: 10px;
  width: 100%;
  cursor: pointer;
}

[data-theme="dark"] .sideBox .sideMenu>li {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sideBox .sideMenu>li {
    color: #fff;
  }
}

@media (max-width: 1180px) {
  .sideBox .sideMenu>li {
    width: 100%;
  }
}

.sideBox .sideMenu>li a {
  width: 100%;
  position: relative;
  color: currentColor;
  display: block;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  z-index: 2;
  padding-bottom: 10px;
}

@media (max-width: 1180px) {
  .sideBox .sideMenu>li a {
    max-width: 100%;
  }
}

.sideBox .sideMenu>li.hasChild {
  text-align: left;
}

.sideBox .sideMenu>li.hasChild:has(.current) {
  color: #fd7924;
}

[data-theme="dark"] .sideBox .sideMenu>li.hasChild:has(.current) {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sideBox .sideMenu>li.hasChild:has(.current) {
    color: #fff;
  }
}

.sideBox .sideMenu>li.hasChild:has(.current)>a:after {
  content: "";
  position: absolute;
  opacity: 1;
}

.sideBox .sideMenu>li>a {
  position: relative;
  border-bottom: 2px dashed #e1ded7;
}

.sideBox .sideMenu>li>a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fd7924;
  left: 0;
  bottom: -2px;
  z-index: 2;
  opacity: 0;
}

.sideBox .sideMenu>li.current a {
  color: #fd7924;
}

[data-theme="dark"] .sideBox .sideMenu>li.current a {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sideBox .sideMenu>li.current a {
    color: #fff;
  }
}

.sideBox .sideMenu>li.current a:after {
  content: "";
  position: absolute;
  opacity: 1;
}

.sideBox .sideMenu .child {
  padding: 10px;
}

.sideBox .sideMenu .child li {
  width: fit-content;
}

.sideBox .sideMenu .child li.current>a:before {
  content: "";
  position: absolute;
  opacity: 1;
}

.sideBox .sideMenu .child a {
  display: block;
  font-size: 16px;
  text-align: left;
  padding: 10px 10px;
  margin-bottom: 5px;
  position: relative;
  color: #036eb8;
  transition: all 0.5s ease-in-out;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-end;
}

[data-theme="dark"] .sideBox .sideMenu .child a {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sideBox .sideMenu .child a {
    color: #fff;
  }
}

.sideBox .sideMenu .child a:before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 100%;
  top: 0;
  left: -10px;
  background-color: #dceaf5;
  z-index: -1;
  opacity: 0;
}

[data-theme="dark"] .sideBox .sideMenu .child a:before {
  background-color: #fd7924;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sideBox .sideMenu .child a:before {
    background-color: #fd7924;
  }
}

@media (min-width: 1181px) {
  .sideBox .sideMenu .child a:hover:before {
    content: "";
    position: absolute;
    opacity: 1;
  }
}

.sideBox .sideMenuBtn {
  margin: 0 0 30px;
}

@media (min-width: 1025px) {
  .sideBox .sideMenuBtn {
    display: none;
  }
}

.sideBox .sideMenuBtn button {
  color: #fff;
  cursor: pointer;
  border: 2px solid #fd7924;
  padding: 7.5px 0;
  aspect-ratio: unset;
  max-width: unset;
}

[data-theme="dark"] .sideBox .sideMenuBtn button {
  color: #3f5165;
  border: 2px solid #3f5165;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sideBox .sideMenuBtn button {
    color: #3f5165;
    border: 2px solid #3f5165;
  }
}

@media (max-width: 1180px) {
  .sideBox .sideMenuBtn button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .sideBox .sideMenuBtn+.sideMenu {
    margin-top: 30px;
  }
}

.sideBox .sideFilter {
  border-bottom: 2px solid #036eb8;
  color: #036eb8;
  display: flex;
  font-size: 18px;
  margin-top: 30px;
  width: 80%;
  position: relative;
}

@media (max-width: 1024px) {
  .sideBox .sideFilter {
    width: 100%;
    margin-bottom: 30px;
  }
}

[data-theme="dark"] .sideBox .sideFilter {
  border-bottom: 2px solid #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sideBox .sideFilter {
    border-bottom: 2px solid #fff;
  }
}

.sideBox .sideFilter:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 60%;
  background-color: #036eb8;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

[data-theme="dark"] .sideBox .sideFilter:before {
  background-color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sideBox .sideFilter:before {
    background-color: #fff;
  }
}

.sideBox .sideFilter select {
  padding: 5px 50px 5px 15px;
  color: #036eb8;
  border: none;
  max-width: 100%;
  position: relative;
}

[data-theme="dark"] .sideBox .sideFilter select {
  background-color: transparent;
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sideBox .sideFilter select {
    background-color: transparent;
    color: #fff;
  }
}

@media (max-width: 1024px) {
  .sideBox .sideFilter select {
    width: 100%;
  }
}

[data-theme="dark"] .sideBox .sideFilter select option {
  color: #303f50;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .sideBox .sideFilter select option {
    color: #303f50;
  }
}

.backBox {
  display: flex;
  justify-content: flex-end;
  margin: 100px 0;
}

.textEditor {
  color: #525252;
  font-family: "Noto Sans TC", sans-serif;
}

[data-theme="dark"] .textEditor {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .textEditor {
    color: #fff;
  }
}

.textEditor p {
  font-size: 18px;
  line-height: calc(32 / 18);
  letter-spacing: 1.8px;
}

.textEditor p strong {
  font-weight: 700;
  font-size: 28px;
}

@media (max-width: 640px) {
  .textEditor p strong {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .textEditor p {
    font-size: 16px;
  }
}

.textEditor img {
  height: auto;
  max-width: 100%;
}

.textEditor ul {
  font-size: 18px;
  padding-left: 30px;
  list-style-type: disc;
  line-height: calc(35/18);
}

@media (max-width: 640px) {
  .textEditor ul {
    font-size: 16px;
    padding-left: 20px;
  }
}

.pageTitle {
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  padding: 8px 20px;
  background-color: #036eb8;
  width: fit-content;
  line-height: 1;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-end;
}

[data-theme="dark"] .pageTitle {
  background-color: #fd7924;
  text-shadow: -2px -2px 5px rgba(0, 0, 0, 0.3);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .pageTitle {
    background-color: #fd7924;
    text-shadow: -2px -2px 5px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 640px) {
  .pageTitle {
    font-size: 18px;
    letter-spacing: 1.08px;
  }
}

.pageList {
  align-items: baseline;
  display: flex;
  justify-content: flex-end;
  margin-top: 100px;
}

@media (max-width: 640px) {
  .pageList {
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.pageList li {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-weight: 600;
  margin: 0 2px;
  position: relative;
  color: #0a132e;
  font-family: "Noto Sans TC", sans-serif;
  transition: all 0.5s ease-in-out;
  line-height: 1;
}

.pageList li:after {
  content: "";
  position: absolute;
  background-color: #036eb8;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0;
}

.pageList li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #036eb8;
  left: 50%;
  top: 150%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
}

.pageList li a {
  color: currentColor;
  z-index: 2;
  transition: none;
}

.pageList li a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.pageList li.current {
  color: #fff;
}

.pageList li.current:after {
  content: "";
  position: absolute;
  opacity: 1;
}

.pageList li.current:before {
  content: "";
  position: absolute;
  opacity: 1;
}

@media (min-width: 1181px) {
  .pageList li:hover {
    color: #fff;
  }

  .pageList li:hover:after {
    content: "";
    position: absolute;
    opacity: 1;
  }

  .pageList li:hover:before {
    content: "";
    position: absolute;
    opacity: 1;
  }
}

.pageList a {
  font-size: 20px;
  font-weight: 700;
}

.formItem {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 10px;
  border-bottom: 1px solid #c8c8c8;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 640px) {
  .formItem {
    padding: 10px;
  }
}

.formItem.textarea {
  align-items: flex-start;
}

.formItem label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-right: 30px;
  letter-spacing: 1.44px;
}

.formItem select {
  padding: 5px 30px;
  background-color: #f7f7f7;
  border: none;
  border-bottom: 1px solid #c8c8c8;
}

.formItem input[type="radio"] {
  width: auto;
  flex: initial;
  margin-right: 10px;
}

.formItem input[type="radio"]+label {
  margin-right: 10px;
}

.formItem input,
.formItem textarea {
  font-family: 'fgdc';
  font-size: 18px;
  letter-spacing: 1.44px;
  font-weight: 700;
  background-color: transparent;
  border: none;
  width: max-content;
  flex: 1;
  padding: 0 30px;
}

.formItem input:focus,
.formItem textarea:focus {
  outline: none;
}

.formItem textarea {
  border: 1px solid #c8c8c8;
}

.formItem2 {
  background-color: #f8f8f8;
  border-bottom: none;
  margin-bottom: 15px;
}

.formRadioBox {
  display: flex;
}

.formRadio {
  cursor: pointer;
  padding: 5px 15px;
  border: 1px solid #0a132e;
  color: #0a132e;
  background-color: #fff;
  margin-right: 10px;
}

.formRadio.selected {
  background-color: #0a132e;
  color: #fff;
}

.rwdTable {
  max-width: 100%;
  overflow-x: scroll;
}

/* .rwdTable table * {
  word-break: keep-all;
} */

@media (max-width: 640px) {
  /* .rwdTable table * {
    word-break:unset;
  } */
  .rwdTable table th {
    min-width: 150px;
    width: 100% !important;
  }
}

.table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}

.table th {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
  letter-spacing: 0.48px;
}

.table td {
  text-align: center;
  position: relative;
}

.table tbody {
  padding: 10px 15px;
}

.table select {
  padding: 2.5px 10px;
  border: none;
  border-bottom: 1px solid #0a132e;
}

.table .productImg {
  height: 150px;
  width: 150px;
  object-fit: contain;
}

.table .iconBtn {
  cursor: pointer;
  color: #9c9c9c;
  border: none;
  background-color: transparent;
  margin-left: 5px;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .table .iconBtn:hover {
    color: #0a132e;
  }
}

.table.table2 {
  border-collapse: separate;
  border-spacing: 0 10px;
}

.table.table2 thead {
  background-color: #fd7924;
}

.table.table2 tbody {
  background-color: #fff;
}

.table.table2 th {
  color: #fff;
  padding: 5px;
}

.table.table2 tr:nth-child(odd) {
  background-color: transparent;
}

.table.table2 tr:nth-child(even) {
  background-color: #f5f5f5;
}

.table.table2 td {
  color: #797a7a;
  padding: 10px 0;
}

.table.table2 td:after {
  content: "";
  position: absolute;
  display: none;
}

.albumBox {
  display: none;
}