/* Reset */

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

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: "Noto Sans TC", "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

img,
picture,
video,
canvas,
svg {
  width: 100%;
  height: auto;
}

ol,
ul {
  list-style: none;
}

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


header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.navbar {
  background: rgba(41, 67, 124, 0.8);
  padding: 0 15px;
  width: 100%;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  height: 75px;
}

.logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 5px;
}

.logo img {
  max-width: 300px;
}

.menu-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  width: 32px;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: white;
  margin: 2px 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-3px, 7px);
  -moz-transform: rotate(-45deg) translate(-3px, 7px);
  -ms-transform: rotate(-45deg) translate(-3px, 7px);
  -o-transform: rotate(-45deg) translate(-3px, 7px);
  transform: rotate(-45deg) translate(-3px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-3px, -7px);
  -moz-transform: rotate(45deg) translate(-3px, -7px);
  -ms-transform: rotate(45deg) translate(-3px, -7px);
  -o-transform: rotate(45deg) translate(-3px, -7px);
  transform: rotate(45deg) translate(-3px, -7px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(41, 67, 124);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-menu.active {
  height: auto;
  padding: 0px 0;
  max-height: calc(100vh - 75px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-item {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.nav-item:not(:last-child):after {
  display: none;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  width: 100%;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: auto;
  text-align: left;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.nav-link .chinese {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-right: 10px;
}

.nav-link .english {
  display: none;
}

.nav-link .chinese.break-line {
  white-space: nowrap;
  line-height: 1.5;
  height: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.dropdown-icon {
  font-size: 18px;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.nav-item.has-dropdown .nav-link .chinese {
  gap: 4px;
}

.nav-item.active .dropdown-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dropdown-item.active .sub-dropdown-icon {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #fff;
  min-width: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  -moz-transition: max-height 0.3s ease;
  -ms-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  z-index: auto;
}

.nav-item.active>.dropdown {
  max-height: 500px;
}

.dropdown-item {
  position: relative;
}

.dropdown-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 20px;
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 18px;
  padding-left: 40px;
}

.dropdown-link:hover {
  color: #fff;
  background-color: #29437c;
  padding-left: 40px;
}

.sub-dropdown-icon {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.dropdown-link:hover .sub-dropdown-icon {
  color: rgba(255, 255, 255);
}

.sub-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.05);
  min-width: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  -moz-transition: max-height 0.3s ease;
  -ms-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  z-index: auto;
}

.dropdown-item.active>.sub-dropdown {
  max-height: 300px;
}

.sub-dropdown .dropdown-link {
  padding: 10px 20px;
  font-size: 18px;
  padding-left: 60px;
}

.sub-dropdown .dropdown-link:hover {
  color: #fff;
  background-color: #29437c;
  padding-left: 60px;
}

.search-container {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-icon {
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.search-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.search-input {
  position: absolute;
  right: 55px;
  width: 0;
  padding: 8px 15px;
  border: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  outline: none;
  background: rgba(255, 255, 255);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.search-input.active {
  width: 120px;
  opacity: 1;
  visibility: visible;
}

.search-input::placeholder {
  color: #999;
}



.topBnSlideshow {
  position: relative;
  width: 100%;
  height: 325px;
  overflow: hidden;
  background: #000;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.topBnSlideshow-Item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in-out;
  -moz-transition: opacity 0.8s ease-in-out;
  -ms-transition: opacity 0.8s ease-in-out;
  -o-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
}

.topBnSlideshow-Item.active {
  opacity: 1;
}

.topBnSlide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.topBnSlide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  background: #000;
}

.topBnSlide-video iframe,
.topBnSlide-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  width: max(100%, calc(100vh * 16/9));
  height: max(100%, calc(100vw * 9/16));
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: none;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none !important;
  background: #000;
}

.topBnSlide-title {
  position: absolute;
  bottom: 40px;
  left: 5%;
  width: 100%;
  color: white;
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
  pointer-events: auto;
  z-index: 15;
}

.topBnSlide-title a {
  text-decoration: none;
  color: #fff;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  display: inline-block;
  z-index: 15;
}

.topBntopBnSlide-description {
  position: absolute;
  bottom: 15px;
  left: 5%;
  width: 100%;
  color: #fff;
  z-index: 12;
  font-size: clamp(12px, 2vw, 18px);
  font-weight: 800;
  line-height: 1.5;
  text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
  pointer-events: none;
}

.topBnSlide-dotWrapper {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  z-index: 20;
}

.topBnSlide-dot {
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: rgba(255, 255, 255);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.topBnSlide-dot.active {
  background: #29437c;
  border: #fff 1px solid;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.side-buttons {
      position: fixed;
    right: 5px;
    top: 80%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}
.news-btn,
  .top-btn {
    background: white;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #727171;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 2px;
  }

  .news-btn {
    width: 30px;
    height: 90px;
    font-size: 14px;
  }

  .top-btn {
    width: 30px;
    height: 57px;
    font-size: 12px;
    font-weight: 600;
  }

  .news-btn:hover,
  .top-btn:hover {
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -o-transform: translateX(-5px);
    transform: translateX(-5px);
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .side-buttonsIcon {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #caac5a;
    font-size: 15px;
    margin-bottom: 3px;
  }


.idea-title {
  font-family: "Noto Serif TC", sans-serif;
  text-align: center;
  padding: 40px 20px;
  font-size: 30px;
  font-weight: 700;
  color: #53689b;
  letter-spacing: 3px;
}

.idea-wrapper {
  margin: 0 auto;
  width: 100%;
}

.carousel {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 69.33%;
  overflow: hidden;
  margin-bottom: 40px;
  background-color: #f0f0f0;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.content-text {
  width: 100%;
  padding: 0 15px;
  text-align: center;
}

.text-block {
  margin-bottom: 40px;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  color: #29437c;
  letter-spacing: 1px;
}

.title-line {
  width: 38px;
  height: 3px;
  background-color: #53689b;
  margin: 10px auto 10px auto;
}

.section-heading {
  font-size: 24px;
  font-weight: 700;
  color: #caac5a;
  letter-spacing: 1px;
  line-height: 1.5em;
  letter-spacing: 2px;
}

.section-desc {
  font-size: 14px;
  color: #595757;
  line-height: 1.5em;
  max-width: 70%;
  margin: 0 auto;
}

.news-section {
  width: 100%;
  max-height: 380px;
  aspect-ratio: 360 / 380;
  background-image: url(../images/index/indexNews01.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -moz-box-align: top;
  -ms-flex-align: top;
  align-items: flex-start;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 15px;
  margin-bottom: 40px;
}

.news-content {
  text-align: center;
  color: white;
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.news-main-title {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 40px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.news-sub-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.news-chinese-text {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-english-text {
  font-size: 13px;
  line-height: 1.2;
  max-width: 80%;
  margin: 0 auto;
}

.complex-section {
  padding: 0 15px;
}

.complex-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.complex-asideMenu {
  display: none;
}

.complex-asideMenu .complex-asideMenu-Item {
  padding: 20px 0 40px;
  border-bottom: 1px solid #caac5a;
}

.complex-asideMenu .complex-asideMenu-Item h4 {
  font-size: 22px;
  line-height: 2.5em;
  font-weight: 400;
  color: #595757;
}

.complex-asideMenu .complex-asideMenu-Item h4:hover {
  color: #29437c;
}

.complex-asideMenu .complex-asideMenu-Item p {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 300;
  color: #898989;
}

.complex-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.complex-area {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.complex-Video-content {
  margin-bottom: 10px;
}

.complex-Video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.complex-Video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0 none;
}

.complex-area-title {
  color: #595757;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 10px;
}

.complex-area-title span {
  color: #898989;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.5em;
  display: block;
  font-weight: 300;
}

.complex-news-title {
  font-size: clamp(18px, 2vw, 28px);
  color: #595757;
  line-height: 1.5em;
  font-weight: 400;
}

.complex-news-text {
  width: 100%;
  color: #595757;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.5em;
  font-weight: 300;
}

.complex-news-textMore {
  color: #caac5a;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.5em;
  font-weight: 300;
}

.complex-carousel {
  width: 100%;
  overflow: hidden;
  padding: 0 15px;
  position: relative;
}

.complex-track {
  display: flex;
  gap: 30px;
  animation: scrollLeft 20s linear infinite;
  width: max-content;
  will-change: transform;
}


.complex-item {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.complex-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 跑馬燈動畫 - 往左移動 */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50%));
  }
}

.conatact-section {
  background: #546996;
  margin-bottom: 40px;
  margin-top: 40px;
}

.contact-title {
  padding: 20px 15px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.contact-english {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.contact-chiness {
  font-family: "Noto Serif TC", serif;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 600;
}

.contact-wrapper {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  padding: 0 15px;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.recruit-content {
  text-align: center;
  padding-bottom: 20px;
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  max-width: 70%;
  margin: 0 auto;
}

.recruit-content p:nth-child(1) {
  color: #caac5a;
  font-size: 24px;
  line-height: 1.5em;
}

.recruit-content p:nth-child(2) {
  color: #595757;
  font-size: 16px;
  line-height: 1.5em;
}

.contact-map {
  height: 320px;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.contact-map iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-loction {
  -webkit-box-ordinal-group: 4;
  -moz-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 30px;
  margin-bottom: 20px;
}

.loction-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.location-info-icon {
  max-width: 14px;
}

.loction-info ul {
  font-size: 14px;
  color: #595757;
  line-height: 2em;
}

.loction-tilte {
  color: #29437c;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5em;
}

.loction-tilte span {
  font-size: 11px;
  font-weight: normal;
}



footer {
  background-color: #29437c;
  margin-top: 40px;
  padding: 40px 0;
}

.footer-wrapper {
  padding: 0 15px;
  max-width: 1600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-menu {
  border-bottom: 1px #fff solid;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-menu-column {
  margin-bottom: 40px;
}

.footer-menu-column h3 {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 10px;
}

.footer-menu-list {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-menu-list li {
  margin-right: 20px;
  font-size: 16px;
}

.footer-menu-list li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.footer-content {
  border-bottom: 1px #fff solid;
  padding: 40px 0;
}

.footer-logo {
  max-width: 285px;
}

.footer-content ul {
  color: #fff;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.6px;
}

.footer-contact-link {
  margin-top: 20px;
}

.footer-contact-link a {
  display: inline-block;
  font-size: 16px;
  text-align: center;
  background-color: #caac5a;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 5px 7px;
}

.footer-legal {
  margin-top: 40px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.6px;
}

.soical-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
}

.soical-wrapper li {
  width: 40px;
  margin-right: 30px;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  -moz-transform: translate(0, 20px);
  -ms-transform: translate(0, 20px);
  -o-transform: translate(0, 20px);
  transform: translate(0, 30px);
  -moz-transition: all 1.2s cubic-bezier(.25, .46, .45, .94);
  -webkit-transition: all 1.2s cubic-bezier(.25, .46, .45, .94);
  -ms-transition: all 1.2s cubic-bezier(.25, .46, .45, .94);
  -o-transition: all 1.2s cubic-bezier(.25, .46, .45, .94);
  transition: all 1.2s cubic-bezier(.25, .46, .45, .94);
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.slide-in-left {
  opacity: 0;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.slide-in-left.scrollin {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.slide-in-right.scrollin {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.scale-in.scrollin {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}



@-webkit-keyframes progress {
  from {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-moz-keyframes progress {
  from {
    -moz-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -moz-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes progress {
  from {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/* TABLET */

@media screen and (min-width: 481px) {
  .topBnSlideshow {
    height: 600px;
  }

  .topBnSlide-title {
    bottom: 80px;
  }

  .topBntopBnSlide-description {
    bottom: 30px;
  }

  .topBnSlide-video iframe,
  .topBnSlide-video video {
    width: max(100%, calc(100vh * 16/9));
    height: max(100%, calc(100vw * 9/16));
  }
}

/*  DESKTOP  */

@media (min-width: 768px) {
  .navbar {
    padding: 0 30px;
  }

  .search-input.active {
    width: 150px;
  }

  .nav-menu.active {
    padding: 0px 0;
    max-height: none;
    overflow: visible;
  }

  .topBnSlideshow {
    height: 900px;
  }

  .topBnSlide-title {
    position: absolute;
    right: 15%;
    top: 45%;
    width: 60%;
    left: auto;
    bottom: auto;
    font-size: clamp(60px, 8vw, 80px);
    font-weight: 500;
    line-height: 1.2em;
    text-align: right;
    z-index: 15;
  }

  .topBntopBnSlide-description {
    position: absolute;
    right: 15%;
    text-align: right;
    font-size: clamp(18px, 2.5vw, 24px);
    width: 40%;
    left: auto;
    bottom: 60px;
    z-index: 12;
  }

  .topBnSlide-dotWrapper {
    bottom: 30px;
    right: 70px;
    gap: 25px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .topBnSlide-video iframe,
  .topBnSlide-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100%, calc(100vh * 16/9));
    height: max(100%, calc(100vw * 9/16));
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none !important;
  }

  .side-buttons {
    position: fixed;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
  }

  .news-btn,
  .top-btn {
    background: white;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #727171;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 2px;
  }

  .news-btn {
    width: 30px;
    height: 90px;
    font-size: 14px;
  }

  .top-btn {
    width: 30px;
    height: 57px;
    font-size: 12px;
    font-weight: 600;
  }

  .news-btn:hover,
  .top-btn:hover {
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -o-transform: translateX(-5px);
    transform: translateX(-5px);
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .side-buttonsIcon {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #caac5a;
    font-size: 15px;
    margin-bottom: 3px;
  }

  .idea-title {
    font-size: clamp(40px, 5vw, 50px);
    padding: 50px 20px;
  }

  .idea-section {
    width: 100%;
    background-color: #ffffff;
    background-image: -webkit-linear-gradient(#efe5cc, #efe5cc);
    background-image: -moz-linear-gradient(#efe5cc, #efe5cc);
    background-image: -ms-linear-gradient(#efe5cc, #efe5cc);
    background-image: -o-linear-gradient(#efe5cc, #efe5cc);
    background-image: linear-gradient(#efe5cc, #efe5cc);
    -webkit-background-size: 40% 60%;
    -moz-background-size: 40% 60%;
    -o-background-size: 40% 60%;
    background-size: 40% 60%;
    background-position: 0% 20%;
    background-repeat: no-repeat;
  }

  .idea-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr auto;
    grid-template-rows: 1fr auto;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }

  .carousel {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr auto;
    grid-template-rows: 1fr auto;
    gap: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
    background-color: transparent;
    overflow: visible;
    height: auto;
  }

  .carousel-item {
    position: relative;
    opacity: 1;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    overflow: hidden;
    background-color: #f0f0f0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
  }

  .carousel-item:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
    -ms-grid-row: 1;
    grid-row: 1;
    aspect-ratio: 400 / 280;
  }

  .carousel-item:nth-child(2) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    width: 200%;
    height: auto;
    aspect-ratio: 400 / 280;
    left: 60%;
    margin-top: 40%;
  }

  .carousel-item:nth-child(3) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    width: 200%;
    height: auto;
    aspect-ratio: 400 / 280;
    left: 156%;
    margin-top: 40%;
  }

  .carousel-item:nth-child(4) {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 2;
    grid-row: 2;
    width: 200%;
    height: auto;
    aspect-ratio: 400 / 280;
    left: 253%;
    margin-top: 40%;
  }

  .content-text {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-row-align: start;
    align-self: start;
    text-align: left;
  }

  .text-block {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: clamp(20px, 2.5vw, 32px);
  }

  .title-line {
    width: 60px;
    margin: 10px 0 10px 0;
  }

  .section-heading {
    font-size: clamp(24px, 2vw, 40px);
    line-height: 1.5em;
  }

  .section-desc {
    font-size: clamp(14px, 2vw, 22px);
    max-width: 100%;
  }

  .complex-news-content {
    margin-top: 10px;
  }

  .news-section {
    height: 1000px;
    max-height: 1000px;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 130px;
  }

  .news-content {
    max-width: 50%;
    text-align: left;
    max-width: 1600px;
    margin: 0 auto;
  }

  .news-main-title {
    font-size: 160px;
    margin-top: 80px;
  }

  .news-sub-title {
    font-size: 50px;
    margin-bottom: 50px;
  }

  .news-chinese-text {
    font-size: 22px;
    font-weight: 300;
  }

  .news-english-text {
    font-size: 20px;
    max-width: 100%;
    font-weight: 300;
  }

  .complex-wrapper {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    max-width: 1600px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .complex-asideMenu {
    max-width: 200px;
    display: inline-block;
    padding-right: 50px;
  }

  .complex-content {
    width: calc(100% - 250px);
  }

  .complex-area {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .complex-Video-content {
    width: 60%;
  }

  .complex-news {
    width: 40%;
  }

  .complex-area-title {
    text-align: left;
  }

  .complex-area-title span {
    display: inline-block;
    margin-left: 10px;
  }

  .complex-item {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: 0 0 420px;
    flex: 0 0 420px;
    height: 280px;
  }


  .contact-title {
    text-align: left;
    padding: 90px 15px;
    max-width: 1600px;
  }

  .contact-english {
    font-size: clamp(50px, 10vw, 160px);
  }

  .contact-chiness {
    font-size: 50px;
  }

  .contact-wrapper {
    max-width: 1600px;
    margin: 0 auto 60px auto;
    padding: 0 15px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 3fr;
    grid-template-columns: 2fr 3fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    gap: 20px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: auto;
  }

  .recruit-content {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    text-align: left;
    -ms-grid-row-align: start;
    align-self: start;
    margin-left: 10px;
    max-width: 100%;
  }

  .recruit-content p:nth-child(1) {
    color: #caac5a;
    font-size: 32px;
    line-height: 1.5em;
  }

  .recruit-content p:nth-child(2) {
    color: #595757;
    font-size: 22px;
    line-height: 1.5em;
  }

  .contact-map {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    height: auto;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: unset;
    order: unset;
  }

  .contact-loction {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: unset;
    order: unset;
    margin-top: 0;
    margin-bottom: 0;
  }

  .location-info-icon {
    max-width: 26px;
    margin-top: 7px;
    margin-right: 15px;
  }

  .loction-item {
    margin-bottom: 40px;
  }

  .loction-tilte {
    font-size: 28px;
    line-height: 1.2em;
  }

  .loction-tilte span {
    font-size: 22px;
  }

  .loction-info ul {
    font-size: 22px;
    line-height: 1.5em;
  }

  footer {
    padding: 80px 0;
  }

  .footer-wrapper {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer-menu {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: none;
    -ms-flex-preferred-size: 1;
    flex-basis: 1;
    letter-spacing: 1px;
  }

  .footer-menu-column {
    margin-right: 40px;
  }

  .footer-menu-column h3 {
    font-size: 22px;
    line-height: 2em;
  }

  .footer-menu-list {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-menu-list li {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer-contact-link {
    font-size: 22px;
  }

  .footer-content {
    border-bottom: none;
    -ms-flex-preferred-size: 1;
    flex-basis: 1;
    padding: 0 0;
  }

  .footer-legal {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #fff;
    padding-top: 60px;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .soical-wrapper {
    margin-top: 0;
  }

  .soical-wrapper li:last-child {
    margin-right: 0;
  }
}

/* 大螢幕桌機 1171 */

@media (min-width: 1171px) {
  .nav-container {
    height: 100px;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
  }

  .nav-menu.active {
    padding: 20px 0;
    max-height: none;
  }

  .menu-toggle {
    display: none;
  }

  .logo {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: 15px;
  }

  .logo img {
    height: 50px;
  }

  .nav-menu {
    position: static;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    list-style: none;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
  }

  .nav-item {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 140px;
  }

  .nav-item:not(:last-child):after {
    content: ' ';
    color: rgba(255, 255, 255);
    position: absolute;
    right: 0;
    height: 30px;
    border-left: 1px solid #fff;
    z-index: 1;
    display: block;
  }

  .nav-link {
    color: white;
    text-decoration: none;
    padding: 15px 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    text-align: center;
    position: relative;
    border-bottom: none;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  .nav-link .chinese {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2em;
    margin-bottom: 2px;
    margin-right: 0;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .nav-link .english {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .nav-item.has-dropdown .nav-link .chinese {
    gap: 4px;
  }

  .nav-item.active .dropdown-icon {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .nav-link .chinese.break-line {
    white-space: normal;
    line-height: 1.1;
    height: 22px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: none;
  }

  .nav-item:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  .dropdown-link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: inherit;
    padding-left: 20px;
  }

  .dropdown-link:hover {
    color: #fff;
    background-color: #29437c;
    padding-left: 25px;
  }

  .sub-dropdown-icon {
    font-size: 16px;
    color: #999;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
  }

  .sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 180px;
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1001;
    max-height: none;
  }

  .dropdown-item:hover>.sub-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  .sub-dropdown .dropdown-link {
    padding: 15px 20px;
    font-size: inherit;
    padding-left: 20px;
  }

  .sub-dropdown .dropdown-link:hover {
    padding-left: 25px;
  }

  .search-container {
    margin-right: 15px;
  }

  .search-input.active {
    width: 200px;
  }

  .nav-item:hover>.dropdown,
  .dropdown:hover {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  .dropdown-item:hover>.sub-dropdown,
  .sub-dropdown:hover {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  .nav-item:hover>.nav-link {
    background: rgba(255, 255, 255, 0.1);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  .topBnSlide-title {
    font-size: clamp(70px, 8vw, 80px);
  }

  .topBntopBnSlide-description {
    font-size: clamp(20px, 2.5vw, 24px);
  }
}

/* 超大螢幕 1921px */

@media (min-width: 1921px) {
  .news-section {
    max-height: 720px;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    background-position: center center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }

  .idea-section {
    background-position: 10% 20%;
  }
}