@charset "UTF-8";
/* 樣式集 */
/* width */
::-webkit-scrollbar {
  background: rgba(241, 241, 241, 0);
  width: 5px;
  height: 50%;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html {
  background-color: #000000;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><circle cx="20" cy="20" r="10" fill="rgba(222, 222, 222, 1)" /></svg>') 20 20, auto;
}

body {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><circle cx="20" cy="20" r="10" fill="rgba(222, 222, 222, 1)" /></svg>') 20 20, auto;
}

a {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><circle cx="20" cy="20" r="12" fill="rgba(222, 222, 222, 0.5)" stroke-width="1" /></svg>') 20 20, auto;
}

button {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><circle cx="20" cy="20" r="12" fill="rgba(222, 222, 222, 0.5)" stroke-width="1" /></svg>') 20 20, auto;
}

.cursor-close {
  cursor: url('../project-img/close_FILL0_wght400_GRAD0_opsz48 (1).svg width="40" height="40"><circle cx="20" cy="20" r="10"  /></svg>') 20 20, auto;
}

/* 定義進入頁面的狀態 */
/* 進入頁面的效果 */
@keyframes slide-in-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
/* 離開頁面的效果 */
@keyframes slide-out-right {
  from {
    transform: translateX(0);
    opacity: 100%;
  }
  to {
    transform: translateX(-100%);
    opacity: 0%;
  }
}
/* 應用進入頁面效果的元素 */
.slide-in {
  animation: slide-in-right 1s forwards;
}

/* 應用離開頁面效果的元素 */
.slide-out {
  animation: slide-out-right 1s forwards;
}

/* 定義離開頁面的狀態 */
body {
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: #000000;
  transition-property: background-color;
  transition-duration: 2s;
  transition: all ease-in 2s;
  height: 100vh;
  width: 100vw;
}

.projectTitleStay {
  top: 10vh;
  transition: all 0.5s ease-in-out;
  mix-blend-mode: exclusion;
}

.nav-main {
  transition: background-color 0.5s ease-in-out;
}

.nav-main {
  display: flex;
  position: fixed;
  flex-direction: column;
  top: 8vh;
  padding: 8vh;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(85vw + 20px);
  max-width: 1420px;
  z-index: 98;
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: stretch;
}
.nav-main button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.nav-main div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.nav-main .bton-box {
  align-items: end;
  margin-top: 30px;
  padding: 10px;
}
.nav-main .copyright {
  color: #888888;
  font-size: 12px;
}
.nav-main .menu a {
  margin: 0 0 0 20px;
}
.nav-main a {
  color: #fff7ec;
  display: flex;
  opacity: 50%;
  font-size: 9pt;
  align-items: center;
  transition: all 0.5s ease;
}
.nav-main a:hover {
  opacity: 100%;
  transition: all 0.5s ease;
  font-size: 11pt;
}

.nav {
  z-index: 999;
  position: fixed;
  top: 80vh; /* 初始位置在底部 */
  width: calc(85vw + 10px);
  max-width: 1400px;
  justify-content: end;
  display: flex;
  flex-direction: row;
  margin-top: 0vh;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
}
.nav a {
  display: flex;
  flex-direction: row;
  background-color: #1b1a1a;
  border-radius: 30px;
  padding: 7px;
}
.nav a img {
  width: 20px;
}
.nav .menu {
  display: flex;
  flex-direction: row;
  background-color: #1b1a1a;
  border-radius: 30px;
  padding: 10px 0;
  margin-left: 20px;
}
.nav .menu a {
  padding: 0 0;
  margin: 0 15pt;
}
.nav .menu a img {
  width: 15px;
}

.logo {
  height: 42pt;
  width: 158pt;
  z-index: 0;
  margin: 0;
  background-repeat: no-repeat;
  background-image: url("../project-img/yuni-logo.svg");
  background-size: min(130pt, max(30vw, 120pt));
  transition: all 10s ease;
  opacity: 50%;
}
.logo:hover {
  transition: all 0.8s ease;
  opacity: 100%;
}

.logos {
  height: 30pt;
  width: 158pt;
  display: flex;
  background-position: 10px;
  z-index: 0;
  background-repeat: no-repeat;
  background-image: url("../project-img/yuni-logo.svg");
  background-size: min(120px, max(30vw, 140px));
  transition: all 10s ease;
}
.logos:hover {
  transition: all 0.8s ease;
}

.box {
  display: flex;
  flex-direction: row;
  width: 85vw;
  max-width: 1400px;
  height: 80vh;
  mix-blend-mode: normal;
}
.box h1 {
  color: #fff7ec;
}
.box h2 {
  color: #fff7ec;
}
.box .tit {
  color: #fff7ec;
}
.box h1 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}
.box h2 {
  font-size: 0.85em;
  font-weight: 400;
  margin: 10px 0;
}
.box .infotit {
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 500;
  font-size: 0.75em;
}
.box .tit {
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 500;
}
.box p {
  color: #888888;
  font-size: 0.85em;
  line-height: 24pt;
  margin: 0 0;
}
.box p a {
  display: inline;
  width: -moz-fit-content;
  width: fit-content;
}
.box .credit {
  position: relative;
  margin-top: 20px;
}
.box a {
  display: flex;
  color: #888888;
  width: 100%;
  font-size: 0.85em;
  line-height: 24pt;
}
.box a:hover {
  background-color: #3a3939;
}
.box .showbox {
  height: 80vh;
  display: flex;
  display: flex;
  flex-direction: column;
  margin-top: 10vh;
  align-items: flex-end;
  margin-bottom: 60vh;
  z-index: 100;
}
.box .showbox .show {
  width: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: exclusion;
}
.box .z-1 {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-content: end;
  margin-bottom: 10vh;
  justify-content: end;
}
.box .z-1 dir {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  margin-bottom: 30px;
  position: sticky;
  top: 12vh;
  z-index: 99;
}
.box .z-1 p,
.box .z-1 a {
  width: 100%;
  font-size: 0.75em;
  border-bottom: #505050 1px solid;
  line-height: 25px;
}
.box .left {
  display: flex;
  flex-direction: column;
  width: 30%;
  margin-right: 5%;
  border-right: solid 0.5pt #000000;
}
.box .left .projectInfo {
  height: auto;
}
.box .left .projectInfo p {
  margin-bottom: 30px;
  font-size: 0.9em;
}
.box .left .projectInfo .tit {
  margin-bottom: 10px;
}
.box .left .projectInfo .solgen {
  font-size: 1.2em;
  margin-bottom: 20vh;
}
.box .left .projectInfo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 10px 0 40px 0;
  cursor: url("../project-img/open-cursur.svg") 20 20, auto;
}
.box .left .solgen {
  width: 85vw;
  max-width: 1400px;
  height: 40vh;
  margin-bottom: 20vh;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #fff7ec;
}
.box .right {
  width: 70%;
  right: 0;
}
.box .right img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: url("../project-img/open-cursur.svg") 20 20, auto;
}
.box .right video {
  width: 100%;
}
.box .right .v-box {
  display: flex;
  width: calc(100% - 20px);
}
.box .right .v-box video {
  width: 50%;
  margin: 10px;
}
.box .right .record_showbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 200px;
}
.box .right .record_showbox img {
  width: 23%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 40%;
}
.box .right .record_showbox img:hover {
  opacity: 100%;
  scale: 1.1;
  transition: all 1s ease-in-out;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}

.overlay video {
  max-width: 90%;
  max-height: 90%;
}

.overlay i {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.overlay img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  transition: opacity 0.3s ease-in-out;
  cursor: url("../project-img/close-cursur.svg") 20 20, auto;
}

@media (max-width: 900px) {
  body {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .h22 {
    display: none;
  }
  .nav {
    margin-top: 0px;
  }
  .nav-main .logos {
    background-size: 100px;
  }
  .nav-main a {
    margin: 0;
  }
  .nav-main .menu {
    width: 50%;
  }
  .nav-main .menu a {
    margin: 0 0 0 5px;
  }
  .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 80vh;
    height: 90%;
  }
  .box .left {
    width: 80%;
    margin-right: 0;
    margin-bottom: 120pt;
    position: unset;
    padding: 0 0 0 0;
    border-right: solid 0pt #000000;
    overflow-y: visible;
    height: -moz-fit-content;
    height: fit-content;
  }
  .box .left .z-1 {
    margin-left: -8px;
  }
  .box .left .z-1 .projectTitleStay {
    mix-blend-mode: normal;
  }
  .box .left .projectInfo {
    height: -moz-fit-content;
    height: fit-content;
    overflow-y: visible;
  }
  .box .left .projectInfo h1 {
    position: unset;
    height: -moz-fit-content;
    height: fit-content;
  }
  .box .left .projectInfo h2 {
    position: unset;
    height: -moz-fit-content;
    height: fit-content;
  }
  .box .left .projectInfo .tit {
    position: unset;
    height: -moz-fit-content;
    height: fit-content;
  }
  .box .left .nav {
    height: -moz-fit-content;
    height: fit-content;
    width: 80%;
    top: 0pt;
    position: fixed;
    padding: 5px 10px;
    border-radius: 10px;
  }
  .box .right {
    width: 95%;
    right: 0;
    padding: 0 0 0 0;
  }
  .box .right iframe {
    display: none;
  }
  .box .right .showbox {
    height: 80vh;
    top: 10vh;
    width: 100vw;
    position: absolute;
    align-items: flex-end;
    z-index: 0;
    opacity: 50%;
  }
  .box .right .showbox .show {
    width: 100vw;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    mix-blend-mode: exclusion;
  }
  .overlay img {
    max-width: 100%;
    max-height: 100%;
  }
}/*# sourceMappingURL=project-info.css.map */