@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Cormorant+Upright:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@500;600;700&family=Noto+Serif+TC:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  background-color: black;
}

.loading-screen {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999999;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media all and (max-width: 500px) {
  .loading-screen {
    height: calc(var(--loadingvh, 1vh) * 99);
  }
}
.loading-screen .loading-text {
  display: flex;
  justify-content: center;
  font-family: "Noto Serif TC";
  align-items: center;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 1vw;
  font-style: italic;
  padding-left: 0vw;
  color: #ffffff;
  margin-top: 0.5vw;
}
@media all and (max-width: 1440px) {
  .loading-screen .loading-text {
    font-size: 1.1vw;
  }
}
@media all and (max-width: 1024px) {
  .loading-screen .loading-text {
    font-size: 3.2vw;
  }
}
@media all and (max-width: 500px) {
  .loading-screen .loading-text {
    font-size: 5vw;
    margin-bottom: 15vw;
  }
}

.header-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 2.3vw 2.3vw;
  z-index: 99;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  /* Hamburger button 在桌機隱藏 */
  /* 手機版樣式 */
}
@media all and (max-width: 1024px) {
  .header-box {
    padding: 3vw 4vw;
    padding-left: 5vw;
  }
}
@media all and (max-width: 1024px) {
  .header-box .logo-box {
    align-self: center;
  }
}
.header-box .logo-box img {
  width: 10vw;
}
@media all and (max-width: 1024px) {
  .header-box .logo-box img {
    width: 25vw;
  }
}
@media all and (max-width: 500px) {
  .header-box .logo-box img {
    width: 40vw;
  }
}
.header-box .link-box {
  display: flex;
}
@media all and (max-width: 1024px) {
  .header-box .link-box {
    justify-content: center;
  }
}
.header-box .link-box a {
  font-family: "Noto Sans TC", sans-serif;
  color: white;
  font-size: 1.2vw;
  margin-right: 2vw;
  letter-spacing: 0.08em;
  align-self: center;
  transition: 0.4s ease-in-out;
}
@media all and (max-width: 1024px) {
  .header-box .link-box a {
    font-size: 5vw;
    padding: 4vw 6vw;
    margin-right: 0vw;
    margin-bottom: 10vw;
    letter-spacing: 0.2em;
  }
}
.header-box .link-box a:hover {
  color: rgb(136, 136, 136);
}
.header-box .link-box a:last-child {
  margin-right: 0vw;
}
.header-box .link-box.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-box .hamburger {
  display: none;
  padding-right: 1.5vw;
}
@media (max-width: 1024px) {
  .header-box .hamburger {
    display: block;
    z-index: 1001;
  }
  .header-box .link-box {
    flex-direction: column;
    position: absolute;
    top: 0px;
    right: 0;
    background-color: black;
    width: 100vw;
    padding: 1rem;
    height: 100svh;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    color: white;
    opacity: 0;
    transform: translateY(-10vw);
    pointer-events: none;
    transition: all 0.5s ease;
  }
  .header-box .link-box.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.header-box .hamburger .hamburger-inner,
.header-box .hamburger .hamburger-inner::before,
.header-box .hamburger .hamburger-inner::after {
  background-color: white;
}
.header-box .hamburger.is-active .hamburger-inner,
.header-box .hamburger.is-active .hamburger-inner:after,
.header-box .hamburger.is-active .hamburger-inner:before {
  background-color: white;
}
@media all and (max-width: 1024px) {
  .header-box .hamburger-inner,
  .header-box .hamburger-inner:after,
  .header-box .hamburger-inner:before {
    width: 53px;
    height: 2px;
  }
}
@media all and (max-width: 500px) {
  .header-box .hamburger-inner,
  .header-box .hamburger-inner:after,
  .header-box .hamburger-inner:before {
    width: 30px;
    height: 2px;
  }
}

footer {
  display: flex;
  width: 100%;
  position: relative;
  color: white;
  margin-top: 4.5vw;
  padding-bottom: 2.5vw;
  letter-spacing: 0.15em;
  flex-direction: column;
  background-color: black;
}
@media all and (max-width: 1024px) {
  footer {
    padding-bottom: 16vw;
  }
}
footer picture {
  display: contents;
}
footer img {
  width: 99%;
  align-self: center;
}
@media all and (max-width: 1024px) {
  footer img {
    width: 100%;
    align-self: center;
  }
}
footer .name {
  line-height: 1.7;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  padding-left: 2vw;
  font-weight: bold;
  margin-top: 3vw;
  margin-bottom: 2vw;
  font-family: "Noto Sans TC", sans-serif;
}
@media all and (max-width: 1024px) {
  footer .name {
    font-size: 3.75vw;
    padding-left: 5vw;
    margin-top: 13vw;
    margin-bottom: 5vw;
  }
}
footer .info-box {
  display: flex;
  flex-direction: column;
  font-size: 0.9vw;
  padding-left: 2vw;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 2;
}
@media all and (max-width: 1024px) {
  footer .info-box {
    font-size: 3.5vw;
    padding-left: 5vw;
    padding-right: 2vw;
  }
}
footer .info-box div {
  margin-bottom: 0.3vw;
  line-height: 1.6;
}
@media all and (max-width: 1024px) {
  footer .info-box div {
    margin-bottom: 1vw;
  }
}
@media all and (max-width: 1024px) {
  footer .info-box .pc {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  footer .info-box .mobile {
    display: flex;
  }
}

.index-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}
.index-body .video-box {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
  width: 100vw;
}
.index-body .video-box .bg-video {
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100svh;
}
.index-body .speaker {
  width: 1.5vw;
  position: absolute;
  right: 2vw;
  bottom: 1.5vw;
  z-index: 20;
  cursor: pointer;
}
.index-body .speaker img {
  display: none;
  width: 100%;
  pointer-events: none;
}
.index-body .speaker .active {
  display: block;
  width: 100%;
}
@media (max-width: 900px) {
  .index-body .speaker {
    width: 6.5vw;
    right: 3.5vw;
    left: unset;
    top: 3.5vw;
  }
}
@media (max-width: 768px) {
  .index-body .speaker {
    width: 6.5vw;
    right: 3.5vw;
    left: unset;
    top: 3.5vw;
  }
}
.index-body .open-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  z-index: 10;
}
.index-body .open-card .logo {
  width: 15vw;
  margin-bottom: 8vw;
}
@media all and (max-width: 1024px) {
  .index-body .open-card .logo {
    width: 48vw;
    margin-bottom: 35vw;
  }
}
.index-body .open-card .enter-btn {
  cursor: pointer;
}
.index-body .open-card .enter-btn img {
  width: 5vw;
}
@media all and (max-width: 1024px) {
  .index-body .open-card .enter-btn img {
    width: 22vw;
  }
}
.index-body .main-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100svh;
  position: relative;
  padding-top: 13vw;
  display: none;
  z-index: 10;
  opacity: 0;
}
.index-body .main-box .logo-box {
  margin-bottom: 2vw;
}
@media all and (max-width: 1024px) {
  .index-body .main-box .logo-box {
    margin-bottom: 6vw;
  }
}
.index-body .main-box .logo-box img {
  width: 15vw;
}
@media all and (max-width: 1024px) {
  .index-body .main-box .logo-box img {
    width: 49vw;
  }
}
.index-body .main-box .main-menu-box {
  display: flex;
}
.index-body .main-box .main-menu-box a {
  font-family: "Noto Sans TC", sans-serif;
  color: white;
  font-size: 1.5vw;
  margin-right: 2.5vw;
  transition: 0.6s ease-in-out;
}
@media all and (max-width: 1024px) {
  .index-body .main-box .main-menu-box a {
    font-size: 4.1vw;
    margin-right: 6vw;
  }
}
.index-body .main-box .main-menu-box a:hover {
  color: rgb(161, 161, 161);
}
@media all and (max-width: 500px) {
  .index-body .main-box .main-menu-box a {
    font-size: 4.75vw;
  }
}
.index-body .main-box .main-menu-box a:last-child {
  margin-right: 0vw;
}
.index-body .main-box .text-box {
  position: absolute;
  bottom: 2.5vw;
  left: 3vw;
  color: #fff;
  display: flex;
  gap: 5%;
  font-size: 1.2vw;
  line-height: 1.8;
  width: 100%;
  font-family: "Noto Serif TC";
}
@media all and (max-width: 1024px) {
  .index-body .main-box .text-box {
    bottom: 7vw;
    left: 6vw;
    flex-direction: column;
    font-size: 3.2vw;
    width: 90%;
  }
}
@media (max-width: 1024px) {
  .index-body .main-box .text-box .en_txt {
    margin-bottom: 8vw;
  }
}
.index-body .main-box .text-box .ch_txt {
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-family: Microsoft JhengHei;
}
.index-body .main-box .text-box img {
  width: 65vw;
}
@media all and (max-width: 1024px) {
  .index-body .main-box .text-box img {
    width: 80vw;
  }
}
@media all and (max-width: 500px) {
  .index-body .main-box .text-box img {
    width: 89vw;
  }
}

.about-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100svh;
  position: relative;
}
@media all and (max-width: 1024px) {
  .about-body {
    height: auto;
  }
}
.about-body footer {
  margin-top: 11.5vw;
}
.about-body footer img {
  display: none;
}
.about-body .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-body .bg-box .bg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-body .main-box {
  display: flex;
  flex-direction: column;
  color: white;
  margin-left: 2.3vw;
  margin-top: 10vw;
  z-index: 10;
  width: 27%;
  font-family: "Noto Sans TC", sans-serif;
}
@media all and (max-width: 1024px) {
  .about-body .main-box {
    width: 90%;
    margin-left: 0vw;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 25vw;
    padding-bottom: 10vw;
  }
}
.about-body .main-box h1 {
  font-size: 1.8vw;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: bolder;
  letter-spacing: 0.2em;
  margin-bottom: 2vw;
}
@media all and (max-width: 1024px) {
  .about-body .main-box h1 {
    font-size: 5.2vw;
    margin-bottom: 5.5vw;
  }
}
.about-body .main-box h2 {
  font-size: 1.25vw;
  letter-spacing: 0.08em;
  margin-bottom: 0.5vw;
  font-family: "Noto Sans TC", sans-serif;
}
@media all and (max-width: 1440px) {
  .about-body .main-box h2 {
    margin-bottom: 0.85vw;
  }
}
@media all and (max-width: 1024px) {
  .about-body .main-box h2 {
    font-size: 4.3vw;
    margin-bottom: 2vw;
  }
}
.about-body .main-box p {
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
  font-weight: 400;
}
@media all and (max-width: 1024px) {
  .about-body .main-box p {
    font-size: 3.9vw;
  }
}
@media all and (max-width: 1024px) {
  .about-body .main-box p {
    text-align: justify;
  }
}
.about-body .main-box .content-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5vw;
}
@media all and (max-width: 1024px) {
  .about-body .main-box .content-box {
    margin-bottom: 6.5vw;
  }
}
.about-body .main-box .founder {
  width: 100%;
  display: flex;
  margin-left: 3.5vw;
  justify-content: right;
  margin-top: 3vw;
}
@media all and (max-width: 1024px) {
  .about-body .main-box .founder {
    margin-left: 0vw;
    padding-right: 8vw;
    margin-top: 6vw;
  }
}
.about-body .main-box .founder img {
  width: 8vw;
}
@media all and (max-width: 1024px) {
  .about-body .main-box .founder img {
    width: 30vw;
  }
}

.project-body {
  width: 100%;
  position: relative;
}
.project-body .bg-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.project-body .bg-box img {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-body .main-box {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 20;
  padding-top: 6vw;
  min-height: 100svh;
}
@media all and (max-width: 1024px) {
  .project-body .main-box {
    flex-direction: column;
    padding-top: 17vw;
  }
}
.project-body .main-box .left-fixed {
  display: flex;
  flex-direction: column;
  margin-left: 3vw;
  margin-top: 4vw;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .left-fixed .title {
    position: absolute;
    top: 36vw;
    left: 26%;
  }
}
.project-body .main-box .left-fixed .title img {
  width: 20vw;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .left-fixed .title img {
    width: 57vw;
    left: 50%;
    top: 42vw;
  }
}
.project-body .main-box .left-fixed .pt {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  mask-repeat: no-repeat;
}
.project-body .main-box .left-fixed .pt video {
  width: 21vw;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .left-fixed .pt video {
    width: 50vw;
  }
}
@media all and (max-width: 1024px) {
  .project-body .main-box .left-fixed .pt1 {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
@media all and (max-width: 1024px) {
  .project-body .main-box .left-fixed .pt2 {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.project-body .main-box .left-fixed .long-line {
  margin-top: 10vw;
  margin-left: 1.5vw;
  margin-bottom: 1vw;
  height: 17vw;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .left-fixed .long-line {
    display: none;
  }
}
.project-body .main-box .left-fixed .long-line img {
  height: 100%;
}
.project-body .main-box .left-fixed .menu-box {
  display: flex;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .left-fixed .menu-box {
    justify-content: right;
    width: 92%;
    padding-bottom: 3vw;
    margin: 0 auto;
    border-bottom: 1px solid #ffffff;
  }
}
.project-body .main-box .left-fixed .menu-box img {
  height: 1.2vw;
  margin-left: 1vw;
  margin-right: 1vw;
  align-self: center;
  margin-top: 0.2vw;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .left-fixed .menu-box img {
    margin-left: 3.5vw;
    margin-right: 3.5vw;
    margin-top: 0.7vw;
    height: 3.7vw;
  }
}
.project-body .main-box .left-fixed .menu-box div {
  color: white;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: bolder;
  letter-spacing: 0.08em;
  font-size: 1.2vw;
  cursor: pointer;
  transition: color 0.5s;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .left-fixed .menu-box div {
    font-size: 3.9vw;
  }
}
.project-body .main-box .left-fixed .menu-box div.active {
  color: #ffb185;
}
.project-body .main-box .box {
  display: flex;
  justify-content: right;
  width: 76%;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .box {
    width: 100%;
  }
}
.project-body .main-box .tab-cont {
  opacity: 0;
}
.project-body .main-box .project-item-box {
  display: flex;
  margin-top: 3vw;
  justify-content: end;
  flex-wrap: wrap;
  width: 78%;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box {
    margin-top: 24vw;
    width: 100%;
    justify-content: center;
  }
}
.project-body .main-box .project-item-box .project-item {
  display: flex;
  flex-direction: column;
  margin-left: 6vw;
  margin-bottom: 5vw;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box .project-item:last-child {
    margin-bottom: 3vw;
  }
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box .project-item {
    margin-left: 0vw;
    width: 100%;
    margin-bottom: 14vw;
    align-items: center;
  }
}
.project-body .main-box .project-item-box .project-item .img-box {
  position: relative;
  width: 23vw;
  height: 31vw;
  overflow: hidden;
  display: flex;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box .project-item .img-box {
    width: 70vw;
    height: auto;
  }
}
.project-body .main-box .project-item-box .project-item .img-box .more {
  position: absolute;
  bottom: 20%;
  right: -4%;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5%;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box .project-item .img-box .more {
    bottom: 19%;
  }
}
.project-body .main-box .project-item-box .project-item .img-box .arrow_down {
  width: 11%;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box .project-item .img-box .arrow_down {
    width: 15%;
  }
}
.project-body .main-box .project-item-box .project-item .img-box .arrow_down:last-of-type {
  width: 7.5%;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box .project-item .img-box .arrow_down:last-of-type {
    width: 9%;
  }
}
.project-body .main-box .project-item-box .project-item .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-body .main-box .project-item-box .project-item .content-box {
  color: white;
  display: flex;
  position: relative;
  justify-content: center;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
  font-weight: 400;
  margin-top: 2vw;
  font-family: "Noto Sans TC", sans-serif;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box .project-item .content-box {
    font-size: 3.9vw;
  }
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box .project-item .content-box {
    margin-top: 5vw;
  }
}
.project-body .main-box .project-item-box .project-item .content-box .name,
.project-body .main-box .project-item-box .project-item .content-box .local {
  margin-right: 1.5vw;
  position: relative;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box .project-item .content-box .name,
  .project-body .main-box .project-item-box .project-item .content-box .local {
    margin-right: 6vw;
  }
}
.project-body .main-box .project-item-box .project-item .content-box .name::after,
.project-body .main-box .project-item-box .project-item .content-box .local::after {
  position: absolute;
  content: "";
  right: -0.7vw;
  height: 1vw;
  top: 0.4vw;
  background-color: white;
  width: 2.5%;
}
@media all and (max-width: 1024px) {
  .project-body .main-box .project-item-box .project-item .content-box .name::after,
  .project-body .main-box .project-item-box .project-item .content-box .local::after {
    width: 1%;
    right: -2.5vw;
    height: 4vw;
    top: 1.4vw;
  }
}
.project-body .pt {
  opacity: 0;
  position: absolute;
}
.project-body .pt.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.project-content-body {
  display: flex;
  width: 100%;
  flex-direction: column;
  position: relative;
}
.project-content-body .main-box {
  display: flex;
  padding-top: 8vw;
  width: 100%;
  padding-left: 2vw;
  padding-right: 2vw;
  justify-content: space-evenly;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box {
    flex-direction: column-reverse;
    padding-left: 0vw;
    padding-right: 0vw;
    padding-top: 19vw;
    overflow: hidden;
  }
}
.project-content-body .main-box .left-info {
  display: flex;
  flex-direction: column;
  color: white;
  position: relative;
  width: 25%;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box .left-info {
    width: 100%;
  }
}
.project-content-body .main-box .left-info .p-content-box {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 8vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box .left-info .p-content-box {
    margin-top: 8vw;
    padding-left: 6vw;
    padding-right: 4vw;
  }
}
.project-content-body .main-box .left-info .p-content-box .name-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 2vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box .left-info .p-content-box .name-box {
    margin-bottom: 6vw;
  }
}
.project-content-body .main-box .left-info .p-content-box .name-box .name {
  font-size: 1.5vw;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 0.3vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box .left-info .p-content-box .name-box .name {
    font-size: 4.8vw;
    margin-bottom: 1vw;
  }
}
.project-content-body .main-box .left-info .p-content-box .name-box .local {
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
  font-weight: 400;
  font-family: "Noto Sans TC", sans-serif;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box .left-info .p-content-box .name-box .local {
    font-size: 3.9vw;
  }
}
.project-content-body .main-box .left-info .p-content-box .info-box {
  display: flex;
  flex-direction: column;
}
.project-content-body .main-box .left-info .p-content-box .info-box .info {
  display: flex;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 0.9vw;
  letter-spacing: 0.1em;
  margin-bottom: 0.5vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box .left-info .p-content-box .info-box .info {
    font-size: 3.7vw;
    margin-bottom: 2.5vw;
  }
}
.project-content-body .main-box .right-box {
  margin-left: 2vw;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box .right-box {
    margin-left: 0vw;
  }
}
.project-content-body .main-box .right-box .content {
  display: flex;
  flex-direction: column;
}
.project-content-body .main-box .right-box .content iframe {
  width: 71vw;
  height: 40vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box .right-box .content iframe {
    width: 100%;
    height: 55vw;
    margin-bottom: 2vw;
  }
}
.project-content-body .main-box .right-box .content img {
  width: 71vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box .right-box .content img {
    width: 100%;
    margin-bottom: 2vw;
  }
}
.project-content-body .main-box .right-box .content .swiper-box {
  width: 71vw;
  position: relative;
}
@media all and (max-width: 1024px) {
  .project-content-body .main-box .right-box .content .swiper-box {
    width: 100%;
  }
}
.project-content-body .main-box .right-box .content .swiper-box .swiper {
  width: 100%;
}
.project-content-body .main-box .right-box .content .swiper-box .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -3%;
}
.project-content-body .main-box .right-box .content .swiper-box .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgb(255, 255, 255);
  opacity: 0.5;
}
.project-content-body .main-box .right-box .content .swiper-box .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: rgb(255, 255, 255);
}

.news-body {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.news-body footer {
  margin-top: 0vw;
}
@media all and (max-width: 1024px) {
  .news-body footer {
    margin-top: 4vw;
  }
}
.news-body .news-title {
  width: 21vw;
  margin-top: 7vw;
  margin-left: 3vw;
}
@media all and (max-width: 1024px) {
  .news-body .news-title {
    width: 42vw;
    margin-top: 27vw;
    margin-left: 7vw;
  }
}
.news-body .news-title img {
  width: 100%;
}
.news-body .news-title video {
  width: 21vw;
  -webkit-mask-image: url(../images/n_title.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-image: url(../images/n_title.png);
  mask-repeat: no-repeat;
  mask-size: 100%;
}
@media all and (max-width: 1024px) {
  .news-body .news-title video {
    width: 52vw;
  }
}
.news-body .main-box {
  display: flex;
  margin-top: 4vw;
  flex-direction: column;
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .news-body .main-box {
    width: 87%;
    border-top: 1px solid white;
    margin: 0 auto;
    margin-top: 5vw;
    padding-top: 6vw;
    padding-left: 0vw;
  }
}
.news-body .main-box .item-box {
  display: flex;
  margin-bottom: 6vw;
}
@media all and (max-width: 1024px) {
  .news-body .main-box .item-box {
    flex-direction: column;
    margin-bottom: 13vw;
  }
}
@media all and (max-width: 1024px) {
  .news-body .main-box .item-box:last-child {
    margin-bottom: 4vw;
  }
}
.news-body .main-box .item-box .left {
  display: flex;
  width: 25%;
  padding-left: 3.5vw;
  flex-direction: column;
  justify-content: flex-start;
}
@media all and (max-width: 1024px) {
  .news-body .main-box .item-box .left {
    width: 100%;
    padding-left: 0vw;
    margin-bottom: 5vw;
  }
}
.news-body .main-box .item-box .left .name {
  width: 9vw;
  margin-bottom: 1vw;
}
@media all and (max-width: 1024px) {
  .news-body .main-box .item-box .left .name {
    width: 18vw;
  }
}
.news-body .main-box .item-box .left .name img {
  width: 100%;
}
.news-body .main-box .item-box .left .local {
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.15em;
  font-size: 1.1vw;
  color: white;
  font-weight: 400;
}
@media all and (max-width: 1024px) {
  .news-body .main-box .item-box .left .local {
    font-size: 3.9vw;
  }
}
.news-body .main-box .item-box .right {
  display: flex;
  flex-wrap: wrap;
  width: 68%;
  justify-content: space-between;
  margin-left: 4vw;
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .news-body .main-box .item-box .right {
    width: 100%;
    margin-left: 0vw;
    flex-direction: column;
  }
}
.news-body .main-box .item-box .right .w-100 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 2%;
}
.news-body .main-box .item-box .right .w-100 .img-box {
  overflow: hidden;
  margin-right: 1vw;
}
@media all and (max-width: 1024px) {
  .news-body .main-box .item-box .right .w-100 .img-box {
    display: contents;
  }
}
.news-body .main-box .item-box .right .w-100 .img-box:last-child {
  margin-right: 0vw;
}
@media all and (max-width: 1024px) {
  .news-body .main-box .item-box .right .w-100 .img-box:last-child {
    margin-right: 0vw;
  }
}
.news-body .main-box .item-box .right .w-100 .img-box img {
  width: 100%;
  height: 29vw;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1024px) {
  .news-body .main-box .item-box .right .w-100 .img-box img {
    height: auto;
    margin-bottom: 5vw;
  }
}

.marketing-body {
  display: flex;
  width: 100%;
  position: relative;
  flex-direction: column;
}
.marketing-body .ScrollDown_btn {
  position: fixed;
  color: #fff;
  right: 2%;
  bottom: 5%;
  text-align: center;
  z-index: 100;
  pointer-events: none;
  cursor: auto;
}
@media (max-width: 1024px) {
  .marketing-body .ScrollDown_btn {
    left: 0;
    right: 0;
  }
}
.marketing-body .ScrollDown_btn span {
  display: block;
  margin-bottom: 5px;
}
.marketing-body .ScrollDown_btn img {
  width: 30px;
}
.marketing-body .title-box {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 8vw;
  margin-bottom: 3vw;
}
@media all and (max-width: 1024px) {
  .marketing-body .title-box {
    display: none;
  }
}
.marketing-body .title-box .tab {
  width: 37vw;
  cursor: pointer;
  position: relative;
}
.marketing-body .title-box .tab img {
  width: 100%;
}
.marketing-body .title-box .tab1 .origin-tab {
  filter: brightness(0.5);
}
.marketing-body .title-box .tab1 .active-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/m_title1.png);
  mask-image: url(../images/m_title1.png);
  background-color: #fff;
}
.marketing-body .title-box .tab1 .active-tab img {
  opacity: 0;
}
.marketing-body .title-box .tab1 .active-tab video {
  width: 37vw;
}
.marketing-body .title-box .tab2 {
  transition: 0.4s ease-in-out;
}
.marketing-body .title-box .tab2 .origin-tab {
  filter: brightness(0.5);
  transition: 0.4s ease-in-out;
}
.marketing-body .title-box .tab2 .origin-tab video {
  transition: 0.4s ease-in-out;
  display: none;
  opacity: 0;
}
.marketing-body .title-box .tab2 .active-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/m_title2.png);
  mask-image: url(../images/m_title2.png);
  background-color: #fff;
}
.marketing-body .title-box .tab2 .active-tab img {
  opacity: 0;
}
.marketing-body .title-box .tab2 .active-tab video {
  width: 37vw;
}
.marketing-body .title-box .line {
  margin-left: 5vw;
  margin-right: 5vw;
}
.marketing-body .title-box .line img {
  width: 0.11vw;
}
.marketing-body .mobile-tab {
  display: none;
}
@media all and (max-width: 1024px) {
  .marketing-body .mobile-tab {
    display: flex;
    justify-content: right;
    width: 92%;
    padding-bottom: 3vw;
    margin: 0 auto;
    margin-top: 21vw;
    border-bottom: 1px solid #ffffff;
  }
}
.marketing-body .mobile-tab img {
  height: 1.2vw;
  margin-left: 1vw;
  margin-right: 1vw;
  align-self: center;
  margin-top: 0.2vw;
}
@media all and (max-width: 1024px) {
  .marketing-body .mobile-tab img {
    margin-left: 3.5vw;
    margin-right: 3.5vw;
    margin-top: 0.7vw;
    height: 3.7vw;
  }
}
.marketing-body .mobile-tab div {
  color: white;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: bolder;
  letter-spacing: 0.08em;
  font-size: 1.2vw;
  cursor: pointer;
}
@media all and (max-width: 1024px) {
  .marketing-body .mobile-tab div {
    font-size: 3.9vw;
  }
}
.marketing-body .mobile-title {
  display: none;
}
@media all and (max-width: 1024px) {
  .marketing-body .mobile-title {
    display: flex;
  }
}
.marketing-body .mobile-title .pt {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  position: absolute;
  top: 36vw;
  left: 26%;
  mask-repeat: no-repeat;
}
.marketing-body .mobile-title .pt video {
  width: 21vw;
}
@media all and (max-width: 1024px) {
  .marketing-body .mobile-title .pt video {
    width: 50vw;
  }
}
.marketing-body .mobile-title .pt img {
  width: 100%;
}
.marketing-body .mobile-title .pt1 {
  -webkit-mask-image: url(../images/m_title1.png);
  mask-image: url(../images/m_title1.png);
}
@media (max-width: 1024px) {
  .marketing-body .mobile-title .pt1 {
    width: 65%;
  }
}
.marketing-body .mobile-title .pt2 {
  -webkit-mask-image: url(../images/m_title2.png);
  mask-image: url(../images/m_title2.png);
}
@media (max-width: 1024px) {
  .marketing-body .mobile-title .pt2 {
    width: 65%;
  }
}
.marketing-body .main-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .marketing-body .main-box {
    padding-top: 28vw;
  }
}
.marketing-body .main-box .item-box {
  display: flex;
  margin-bottom: 1.5vw;
  overflow: hidden;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  .marketing-body .main-box .item-box {
    margin-bottom: 5vw;
  }
}
.marketing-body .main-box .item-box:last-child {
  margin-bottom: 0vw;
}
.marketing-body .main-box .item-box .left {
  display: none;
  width: 25%;
  padding-left: 4vw;
  flex-direction: column;
  justify-content: end;
}
@media all and (max-width: 1024px) {
  .marketing-body .main-box .item-box .left {
    padding-left: 2vw;
  }
}
.marketing-body .main-box .item-box .left .name {
  width: 9vw;
  margin-bottom: 1vw;
}
.marketing-body .main-box .item-box .left .name img {
  width: 100%;
}
.marketing-body .main-box .item-box .left .local {
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.15em;
  font-size: 1.1vw;
  color: white;
  font-weight: 400;
}
@media all and (max-width: 1024px) {
  .marketing-body .main-box .item-box .left .local {
    font-size: 3.9vw;
  }
}
@media all and (max-width: 1024px) {
  .marketing-body .main-box .item-box .left .local {
    font-size: 2.2vw;
  }
}
.marketing-body .main-box .item-box .right {
  display: flex;
  width: 85%;
  overflow: hidden;
}
.marketing-body .main-box .item-box .right .img-box {
  overflow: hidden;
  width: 100%;
}
.marketing-body .main-box .item-box .right .img-box h2 {
  color: #fff;
  margin-bottom: 0.5%;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .marketing-body .main-box .item-box .right .img-box h2 {
    margin-bottom: 2%;
    font-size: 4vw;
  }
}
.marketing-body .main-box .item-box .right .img-box img {
  width: 100%;
  display: block;
}
.marketing-body .site-design {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transition: 0.2s ease-in-out;
}
.marketing-body .site-design .img-box {
  width: 85%;
  margin-bottom: 1.5vw;
  transition: 0.2s ease-in-out;
}
.marketing-body .site-design .img-box img {
  width: 100%;
}