* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "ROBOTO", "Noto Sans TC", sans-serif;
  scroll-behavior: smooth;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
}

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

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  header .header-container {
    padding: 10px 20px;
  }
}

.logo img {
  height: 40px;
  width: auto;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.mobile-menu-btn .hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
  display: flex;
}
.nav-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.nav-menu li {
  position: relative;
}
.nav-menu > ul > li > a {
  color: #fff;
  text-decoration: none;
  padding: 27px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media screen and (min-width: 993px) {
  .nav-menu > ul > li > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.nav-menu > ul > li > a svg {
  transition: transform 0.3s ease;
}
@media screen and (min-width: 993px) {
  .nav-menu > ul > li:hover > a svg {
    transform: rotate(180deg);
  }
}
.nav-menu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: flex;
  z-index: 999;
  text-align: center;
}
.submenu li {
  width: 100%;
  position: relative;
}
.submenu li:last-child a {
  border-bottom: none;
}
.submenu li + li::after {
  content: "";
  position: absolute;
  display: block;
  width: 65px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 992px) {
  .submenu li + li::after {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
  }
}
.submenu a {
  color: #fff;
  text-decoration: none;
  padding: 15px 34px;
  display: block;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 993px) {
  .submenu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 350px;
    background-color: #000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 80px;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu ul {
    flex-direction: column;
    width: 100%;
  }
  .nav-menu > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu > ul > li > a {
    padding: 20px;
    justify-content: space-between;
  }
  .nav-menu > ul > li > a svg {
    transition: transform 0.3s ease;
  }
  .nav-menu > ul > li.submenu-open > a svg {
    transform: rotate(180deg);
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: #000;
    box-shadow: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .submenu {
    background-color: #080808;
  }
}
@media (max-width: 992px) {
  .submenu.active {
    max-height: 300px;
  }
  .submenu a {
    padding: 20px 40px;
    font-size: 14px;
  }
}
footer {
  background-color: #fff;
  padding: 28px 20px 14px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 992px) {
  footer {
    padding: 24px 15px 16px;
  }
}
footer p {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #000;
}
footer p a {
  text-decoration: none;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}
@media screen and (min-width: 993px) {
  footer p a:hover {
    opacity: 0.7;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc {
    display: block;
  }
}

.pc-flex {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-flex {
    display: flex;
  }
}

.mb {
  display: none;
}
@media screen and (max-width: 992px) {
  .mb {
    display: block;
  }
}

[data-aos=fade-in] {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

[data-aos=fade-in].aos-animate {
  opacity: 1;
}

.h2 {
  position: relative;
  text-align: center;
  z-index: 1;
}
.h2 h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 992px) {
  .h2 h2 {
    font-size: 28px;
  }
}
.h2::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 5px;
  background-color: #bed600;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .h2::after {
    bottom: -11px;
  }
}

section.hero {
  background-color: #000;
  position: relative;
}
section.hero::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 80px;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}
section.hero .hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: calc(100% - 40px);
}
section.hero .hero-content img {
  width: 100%;
  max-width: 600px;
  height: auto;
}
@media screen and (max-width: 992px) {
  section.hero .hero-content img {
    max-width: 90%;
  }
}
section.hero .hero-content h1 {
  position: absolute;
  z-index: -1;
  left: -100%;
  top: -100%;
  opacity: 0;
}
section.hero .hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
}
section.hero .hero-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
}
section.hero .hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
section.about {
  padding: 100px 15px;
  position: relative;
}
@media screen and (max-width: 992px) {
  section.about {
    padding: 80px 15px;
  }
}
section.about h2 {
  position: relative;
  z-index: 1;
}
section.about::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.1);
}
section.about .about-container {
  color: #fff;
  margin: 80px auto 0;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  section.about .about-container {
    margin: 60px auto 0;
  }
}
section.about .about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.about .about-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 1px;
}
@media screen and (max-width: 992px) {
  section.about .about-content p {
    font-size: 16px;
    letter-spacing: 0.75px;
  }
}
section.about .about-bg {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
section.about .about-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.about .about-stats {
  margin: 80px auto 0;
  max-width: 840px;
}
@media screen and (max-width: 992px) {
  section.about .about-stats {
    margin: 40px auto 0;
  }
}
section.about .about-stats > div {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px 60px;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  section.about .about-stats > div {
    flex-wrap: wrap;
    gap: 81px;
    justify-content: center;
  }
}
section.about .about-stats > div .line {
  position: relative;
  width: 1px;
  height: 52px;
  background-color: #fff;
  align-self: center;
}
@media screen and (max-width: 992px) {
  section.about .about-stats > div .line {
    display: none;
  }
}
section.about .about-stats-item {
  text-align: center;
  min-width: 176px;
}
@media screen and (max-width: 992px) {
  section.about .about-stats-item {
    width: 100%;
  }
  section.about .about-stats-item:not(:nth-child(5)) {
    position: relative;
  }
  section.about .about-stats-item:not(:nth-child(5))::after {
    content: "";
    display: block;
    width: 52px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-top: 41px;
  }
}
section.about .about-stats-item img {
  width: 80px;
  height: auto;
}
section.about .about-stats-item-5 {
  width: 247px;
}
section.about .about-stats-item .number {
  color: #bed600;
  font-weight: 900;
  margin-top: 20px;
  font-size: 40px;
}
section.about .about-stats-item .number span {
  font-size: 60px;
}
section.about .about-stats-item .info {
  margin-top: 5px;
  font-size: 17px;
  line-height: 31px;
  letter-spacing: 0.8px;
}
section.innovation {
  color: #fff;
  background-image: url("./../image/bg-2.jpg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width: 992px) {
  section.innovation {
    padding-bottom: 0;
  }
}
section.innovation::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 80px;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}
@media screen and (max-width: 992px) {
  section.innovation::before {
    height: 0;
  }
}
section.innovation::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.1);
}
section.innovation .h2 {
  margin-top: 100px;
}
section.innovation .innovation-fireworks-1 {
  position: absolute;
  top: 15%;
  left: calc(50vw - 45%);
  width: 8%;
  min-width: 100px;
  height: auto;
  z-index: 0;
  transition: 0.3s ease-in-out;
  animation: fireworkAnimation 7s infinite ease-in-out backwards;
  animation-delay: 0s;
  transform-origin: bottom;
}
section.innovation .innovation-fireworks-1 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.innovation .innovation-fireworks-2 {
  position: absolute;
  top: 5%;
  left: calc(50vw - 35%);
  width: 8%;
  min-width: 100px;
  height: auto;
  z-index: 0;
  transition: 0.3s ease-in-out;
  animation: fireworkAnimation 6s infinite ease-in-out backwards;
  animation-delay: 0s;
  transform-origin: bottom;
}
section.innovation .innovation-fireworks-2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.innovation .innovation-event {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 120px 0;
  gap: 60px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-event {
    flex-direction: column;
    gap: 40px;
    margin: 0 14px;
    padding: 70px 0;
  }
}
section.innovation .innovation-event-logo {
  width: 100%;
  max-width: 300px;
}
section.innovation .innovation-event-logo img {
  width: 100%;
  height: auto;
}
section.innovation .innovation-event-line {
  width: 2px;
  height: 188px;
  background: linear-gradient(to top, #bed600, #2ea54d);
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-event-line {
    width: 100%;
    height: 2px;
    max-width: 450px;
  }
}
section.innovation .innovation-event-info {
  position: relative;
  z-index: 1;
}
section.innovation .innovation-event-info ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section.innovation .innovation-event-info ul li {
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
section.innovation .innovation-event-info ul li span {
  height: 30px;
  width: 1px;
  display: inline-block;
  background: linear-gradient(to top, #bed600, #2ea54d);
}
section.innovation .innovation-timeline {
  max-width: 1450px;
  margin: 0 auto;
  padding: 100px 15px 100px;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-timeline {
    padding: 80px 15px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-timeline .slick-prev {
    left: calc(50% - 48px);
    top: calc(100% + 48px + 2vw);
  }
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-timeline .slick-next {
    right: calc(50% - 48px);
    top: calc(100% + 48px + 2vw);
  }
}
section.innovation .innovation-timeline .slick-slide {
  transform: scale(1);
  transition: transform 1s ease;
  opacity: 0.5;
}
section.innovation .innovation-timeline .slick-slide::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transform: scale(1) translate(-50%, -50%);
  transform-origin: 0 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 1s ease;
}
section.innovation .innovation-timeline .slick-slide:not(.slick-center) {
  transform: scale(0.75);
  opacity: 0.5;
  position: relative;
}
section.innovation .innovation-timeline .slick-slide.slick-center {
  transform: scale(1);
  opacity: 1;
  position: relative;
}
section.innovation .innovation-timeline .slick-dots {
  top: calc(100% + 15px);
  bottom: unset;
  display: inline-block !important;
  transform: translateX(calc(15% - 50px));
  width: unset;
  left: calc(65vw - 80px);
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-timeline .slick-dots {
    right: calc(55px + 2vw);
    left: unset;
    top: calc(100% + 15px + 1vw);
    transform: translateX(0);
  }
}
section.innovation .innovation-timeline-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 37%;
  height: calc(100% - 170px);
  z-index: -1;
  transform: scale(1) translate(-50%, -50%);
  transform-origin: 0 0;
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-timeline-background {
    width: calc(100% - 50px);
    height: calc(100% - 120px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
section.innovation .innovation-timeline-background .bg {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.innovation .innovation-timeline-background .border-left,
section.innovation .innovation-timeline-background .border-right {
  position: absolute;
  top: -14px;
  height: calc(100% + 32px);
  aspect-ratio: 52.5/342;
  background-size: contain;
  background-repeat: no-repeat;
}
section.innovation .innovation-timeline-background .border-left {
  left: -15px;
  background-image: url("./../image/border-left.svg");
}
section.innovation .innovation-timeline-background .border-right {
  right: -15px;
  background-image: url("./../image/border-right.svg");
}
section.innovation .innovation-timeline-item {
  position: relative;
  padding: 40px 10px;
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-timeline-item {
    padding: 40px 40px;
  }
}
section.innovation .innovation-timeline-item h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-top: 10px;
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-timeline-item h3 {
    font-size: 22px;
    letter-spacing: 0.9px;
  }
}
section.innovation .innovation-timeline-item p.year {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-timeline-item p.year {
    font-size: 22px;
  }
}
section.innovation .innovation-timeline-item p.info {
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
  text-align: left;
  margin-top: 20px;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 992px) {
  section.innovation .innovation-timeline-item p.info {
    font-size: 16px;
  }
}
section.power {
  padding: 100px 20px;
  position: relative;
}
@media screen and (max-width: 992px) {
  section.power {
    padding: 80px 15px;
  }
}
section.power .power-fireworks-1 {
  position: absolute;
  top: 23%;
  right: 3%;
  width: 8%;
  min-width: 100px;
  height: auto;
  z-index: 1;
  transition: 0.3s ease-in-out;
  animation: fireworkAnimation 7s infinite ease-in-out backwards;
  animation-delay: 0s;
  transform-origin: bottom;
}
section.power .power-fireworks-1 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.power .power-fireworks-2 {
  position: absolute;
  top: 5%;
  right: 15%;
  width: 8%;
  min-width: 100px;
  height: auto;
  z-index: 1;
  transition: 0.3s ease-in-out;
  animation: fireworkAnimation 6s infinite ease-in-out backwards;
  animation-delay: 0s;
  transform-origin: bottom;
}
section.power .power-fireworks-2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.power .power-bg {
  position: absolute;
  top: 5%;
  left: -30%;
}
@media screen and (min-width: 1500px) {
  section.power .power-bg {
    top: -5vw;
  }
}
section.power .power-bg img {
  width: 150%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 992px) {
  section.power .power-bg {
    top: 30%;
    left: -50%;
  }
  section.power .power-bg img {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
section.power .power-container {
  max-width: 1000px;
  margin: 100px auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  section.power .power-container {
    flex-wrap: wrap;
    margin-top: 170px;
    max-width: 270px;
    margin: 150px auto 30px;
  }
}
section.power .power-item {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  position: relative;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  max-width: 270px;
  transition: all 0.4s linear;
}
@media screen and (min-width: 993px) {
  section.power .power-item:hover {
    transform: translateX(-70px);
    background: linear-gradient(to bottom, #3b8eb8, #42ec6c);
  }
}
@media screen and (max-width: 992px) {
  section.power .power-item {
    margin: 0 auto;
    padding: 20px;
  }
  section.power .power-item.active {
    transform: translateY(-105px);
    background: linear-gradient(to bottom, #3b8eb8, #42ec6c);
  }
}
section.power .power-item + .power-item {
  margin-left: -30px;
}
@media screen and (max-width: 992px) {
  section.power .power-item + .power-item {
    margin: -120px auto 0;
  }
}
section.power .power-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 20px;
  background-image: linear-gradient(to top, #bed600, #2ea54d);
  background-origin: border-box;
  -webkit-mask-image: linear-gradient(white, white), linear-gradient(white, white);
          mask-image: linear-gradient(white, white), linear-gradient(white, white);
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  -webkit-mask-composite: xor, source-over;
          mask-composite: exclude, add;
}
section.power .power-item img {
  height: 60px;
  width: auto;
}
section.power .power-item h3 {
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 1.8px;
  margin-top: 10px;
  font-weight: 700;
}
section.power .power-item p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  margin-top: 10px;
}
section.highlights {
  padding: 100px 20px;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 992px) {
  section.highlights {
    padding: 70px 0px 100px;
  }
}
section.highlights .highlights-fireworks-1 {
  position: absolute;
  bottom: 10%;
  left: calc(50vw - 50%);
  width: 8%;
  min-width: 100px;
  height: auto;
  z-index: 0;
  transition: 0.3s ease-in-out;
  animation: fireworkAnimation 7s infinite ease-in-out backwards;
  animation-delay: 0s;
  transform-origin: bottom;
}
section.highlights .highlights-fireworks-1 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.highlights .highlights-fireworks-2 {
  position: absolute;
  bottom: 15%;
  left: calc(50vw - 45%);
  width: 8%;
  min-width: 100px;
  height: auto;
  z-index: 0;
  transition: 0.3s ease-in-out;
  animation: fireworkAnimation 6s infinite ease-in-out backwards;
  animation-delay: 0s;
  transform-origin: bottom;
}
section.highlights .highlights-fireworks-2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.highlights .highlights-tabs {
  display: flex;
  justify-content: center;
  margin: 100px auto 0;
  max-width: 1100px;
  border-bottom: #bed600 solid 1px;
}
@media screen and (max-width: 992px) {
  section.highlights .highlights-tabs {
    justify-content: center;
    margin: 60px auto 0;
  }
}
section.highlights .highlights-tabs .tab {
  white-space: nowrap;
  position: relative;
  background: white;
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 124px;
  height: 38px;
  margin: 0 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  section.highlights .highlights-tabs .tab {
    width: calc((100vw - 170px) / 3);
    max-width: 124px;
  }
}
section.highlights .highlights-tabs .tab[data-content="1"] {
  z-index: 3;
}
section.highlights .highlights-tabs .tab[data-content="2"] {
  z-index: 2;
}
section.highlights .highlights-tabs .tab[data-content="3"] {
  z-index: 1;
}
section.highlights .highlights-tabs .tab::after {
  content: "";
  position: absolute;
  top: 0px;
  left: calc(100% - 0.5px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 38.5px 0 0 30.5px;
  border-color: transparent transparent transparent #fff;
  transition: all 0.3s ease;
}
section.highlights .highlights-tabs .tab::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 38.5px 30.5px 0 0;
  border-color: transparent #fff transparent transparent;
  transition: all 0.3s ease;
}
@media screen and (min-width: 993px) {
  section.highlights .highlights-tabs .tab:hover {
    background: #e0dcdc;
  }
  section.highlights .highlights-tabs .tab:hover::after {
    border-color: transparent transparent transparent #e0dcdc;
  }
  section.highlights .highlights-tabs .tab:hover::before {
    border-color: transparent #e0dcdc transparent transparent;
  }
}
section.highlights .highlights-tabs .tab.active {
  background: #9bc53d;
  color: white;
}
section.highlights .highlights-tabs .tab.active::after {
  border-color: transparent transparent transparent #9bc53d;
}
section.highlights .highlights-tabs .tab.active::before {
  border-color: transparent #9bc53d transparent transparent;
}
section.highlights .highlights-contents {
  max-width: 1100px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 15px;
}
@media screen and (max-width: 992px) {
  section.highlights .highlights-contents {
    margin: 30px auto;
    padding: 0;
  }
}
section.highlights .highlights-item {
  position: absolute;
  left: -200%;
  z-index: -1;
  width: 100%;
}
section.highlights .highlights-item.active {
  z-index: 1;
  position: relative;
  left: 0;
}
section.highlights .highlights-item-1 > p {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.85px;
}
@media screen and (max-width: 992px) {
  section.highlights .highlights-item-1 > p {
    padding: 0 15px;
  }
}
section.highlights .highlights-item-1 .youtube-video {
  aspect-ratio: 4/16;
}
section.highlights .highlights-item-1 .slick-list {
  padding-left: 15vw;
}
@media screen and (min-width: 993px) {
  section.highlights .highlights-item-1 .slick-list {
    padding-left: 3%;
  }
}
section.highlights .highlights-item-1 .slick-dots {
  bottom: -45px;
  display: inline-block !important;
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (min-width: 993px) {
  section.highlights .highlights-item-1 .slick-dots {
    bottom: -60px;
    transform: translateX(-50%);
    left: 46.5%;
  }
}
section.highlights .highlights-item-1 .podcast-content {
  max-width: 1000px;
  margin: 60px 0 0 auto;
}
@media screen and (max-width: 992px) {
  section.highlights .highlights-item-1 .podcast-content {
    margin: 30px 0 0 auto;
  }
}
section.highlights .highlights-item-1 .podcast-item > a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  margin: 0px 10px;
  border: #fff solid 1px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 993px) {
  section.highlights .highlights-item-1 .podcast-item > a {
    margin: 0px 15px;
    flex-wrap: nowrap;
  }
}
section.highlights .highlights-item-1 .podcast-item > a:hover .cta {
  color: #bed600;
}
section.highlights .highlights-item-1 .podcast-item > a:hover .cta svg path {
  fill: #bed600;
}
section.highlights .highlights-item-1 .podcast-item > a:hover .cta svg rect {
  stroke: #bed600;
}
section.highlights .highlights-item-1 .podcast-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}
section.highlights .highlights-item-1 .podcast-info h3 {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 1.5px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
section.highlights .highlights-item-1 .podcast-info .cta {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.85px;
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  align-items: center;
  justify-self: flex-end;
  gap: 10px;
  transition: all 0.3s ease;
}
section.highlights .highlights-item-1 .podcast-info .cta svg {
  width: 40px;
  height: 40px;
}
section.highlights .highlights-item-1 .podcast-info .cta svg path,
section.highlights .highlights-item-1 .podcast-info .cta svg rect {
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  section.highlights .highlights-item-1 .podcast-pic {
    text-align: center;
    display: contents;
  }
}
section.highlights .highlights-item-1 .podcast-pic img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin: auto;
  display: inline-block;
}
section.highlights .highlights-item-2 .slick-list {
  padding-left: 17.5vw;
}
@media screen and (min-width: 993px) {
  section.highlights .highlights-item-2 .slick-list {
    padding-left: 9%;
  }
}
section.highlights .highlights-item-2 .slick-track {
  display: flex;
  gap: 20px;
}
section.highlights .highlights-item-2 .slick-dots {
  bottom: -45px;
}
@media screen and (min-width: 993px) {
  section.highlights .highlights-item-2 .slick-dots {
    bottom: -60px;
    transform: translateX(-50%);
    left: 50%;
  }
}
section.highlights .highlights-item-2 .article-content {
  max-width: 1000px;
  color: #fff;
  text-decoration: none;
  margin: auto;
}
section.highlights .highlights-item-2 .article-item {
  display: inline-flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 15px;
  margin: 0px 10px;
  position: relative;
  background-color: #4f4f4f;
}
@media screen and (min-width: 993px) {
  section.highlights .highlights-item-2 .article-item {
    margin: 0px 15px;
  }
  section.highlights .highlights-item-2 .article-item:hover h3 {
    color: #bed600;
  }
  section.highlights .highlights-item-2 .article-item:hover img {
    transform: scale(1.1);
  }
}
section.highlights .highlights-item-2 .article-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}
section.highlights .highlights-item-2 .article-info h3 {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 1.5px;
  width: 100%;
  margin-top: 10px;
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 75px;
}
section.highlights .highlights-item-2 .article-info .cta {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.85px;
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  align-items: center;
  justify-self: flex-end;
  gap: 10px;
  transition: all 0.3s ease;
}
section.highlights .highlights-item-2 .article-info .cta svg {
  width: 40px;
  height: auto;
}
section.highlights .highlights-item-2 .article-info .cta svg path,
section.highlights .highlights-item-2 .article-info .cta svg rect {
  transition: all 0.3s ease;
}
section.highlights .highlights-item-2 .article-pic {
  overflow: hidden;
  aspect-ratio: 415/274;
}
section.highlights .highlights-item-2 .article-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
  display: inline-block;
  transition: all 0.3s ease;
}
section.highlights .highlights-item-3 h3 {
  color: #fff;
  font-size: 25px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 1.25px;
}
section.highlights .highlights-item-3 .slick-dots {
  bottom: -45px;
}
@media screen and (min-width: 993px) {
  section.highlights .highlights-item-3 .slick-dots {
    bottom: -60px;
    transform: translateX(-50%);
    left: 50%;
  }
}
section.highlights .highlights-item-3 .video-items {
  max-width: 650px;
  margin: 30px auto 0;
}
section.highlights .highlights-item-3 .video-item {
  max-width: 100%;
  padding: 0 25px;
}

.fixed-btn {
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 1000;
  width: 100px;
  height: 100px;
  transition: 0.3s;
  animation: bounce 2s infinite ease-in-out backwards;
  animation-delay: 0s;
  transform-origin: bottom;
}
.fixed-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (min-width: 993px) {
  .fixed-btn {
    bottom: 20px;
    right: 20px;
  }
  @keyframes bounce {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .fixed-btn:hover {
    animation-play-state: paused;
  }
}

@keyframes fireworkAnimation {
  0% {
    transform: translateY(200px) scale(0);
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  70% {
    transform: translateY(0) scale(1.2);
    opacity: 1;
  }
  71% {
    transform: translateY(0) scale(1.2);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.2);
    opacity: 0;
  }
}
#timeline {
  width: 1px;
  height: 0;
}

#exhibition {
  width: 1px;
  height: 0;
  position: absolute;
  top: -150px;
}/*# sourceMappingURL=style.css.map */



/* CSS */
.short-embed {
  width: 100%;
  max-width: 275px;
  /* 你可以改成想要的最大寬度 */
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  /* 直向影片的關鍵 */
  background: #000;
  border-radius: 12px;
  /* 可選：圓角 */
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.short-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}