@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap");
* {
  box-sizing: border-box;
}

a {
  color: #fff;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  color: white;
  background: black;
  font-family: "Cormorant Garamond", serif;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  padding-left: 196px;
  padding-right: 16px;
  margin-top: 60px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.2em;
  color: hsl(0, 0%, 80%);
  width: 100%;
  text-transform: uppercase;
}

header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  width: 100%;
  z-index: 3;
  height: 4em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.66rem, 2vw, 1rem);
  letter-spacing: 0.5em;
  background-color: rgba(55, 55, 55, 0.4);
}

header:hover {
  cursor: pointer;
}

@media only screen and (max-width: 1280px) {
  header {
    font-size: 1.6rem;
    height: 60px;
  }
}
#nav {
  z-index: 3;
  position: absolute;
  top: 64px;
  bottom: 64px;
  left: 32px;
  width: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

@media only screen and (max-width: 1080px) {
  #nav {
    display: none;
  }
}
#nav .nav-group .nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

#nav .nav-group .nav-item .nav-circle {
  min-width: 12px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
  margin-left: -5px;
}

#nav .nav-group .nav-item .nav-title {
  max-width: 196px;
  margin-left: 16px;
  color: rgba(255, 255, 255, 0.7);
}

@media only screen and (max-width: 1080px) {
  #nav .nav-group .nav-item .nav-title {
    font-size: 40px;
    margin-left: 2rem;
  }
}
#nav .nav-group .nav-item .nav-title:hover {
  color: rgb(255, 255, 255);
}

#nav .nav-group .nav-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

#nav .nav-group .nav-section .nav-dot {
  display: block;
  min-width: 8px;
  width: 8px;
  height: 8px;
  margin-left: -3px;
  margin-top: 12px;
  margin-bottom: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}

#nav .nav-group .nav-section .nav-section-title {
  max-width: 128px;
  min-width: 128px;
  height: auto;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.4em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

@media only screen and (max-width: 1080px) {
  #nav .nav-group .nav-section .nav-section-title {
    font-size: 40px;
    max-width: 10em;
    min-width: 10em;
    margin-left: 4rem;
  }
}
#nav .nav-group .nav-section .nav-section-title:hover {
  color: rgba(255, 255, 255, 0.8);
}

#nav .nav-group .nav-section.active .nav-dot {
  background-color: rgb(255, 255, 255);
}

#nav .nav-group .nav-section.active .nav-section-title {
  color: rgba(255, 255, 255, 0.9);
}

#nav .nav-group.active .nav-circle {
  background-color: rgba(255, 255, 255, 0.8);
}

#nav .nav-group.active .nav-title {
  color: rgba(255, 255, 255, 0.8);
}

#detail {
  position: fixed;
  top: 0;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  padding-top: 6em;
  width: 100%;
  overflow-y: scroll;
}

@media only screen and (max-width: 1080px) {
  #detail h3 {
    max-width: 80%;
  }
}
#detail #detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(2rem, 3vw, 3rem);
  padding-left: 32px;
  padding-right: 32px;
  margin: 0;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.3em;
  color: hsl(0, 0%, 80%);
  width: 100%;
  max-width: 1024px;
  margin: auto;
}

#detail #detail-header #btn-return {
  opacity: 0.8;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  #detail #detail-header #btn-return {
    font-size: 1.5rem;
  }
}
#detail hr {
  max-width: 480px;
  margin-bottom: 16px;
}

#detail #detail-text {
  margin: auto;
  max-width: 960px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  font-size: 1.5em;
  padding: 32px;
  color: hsl(0, 0%, 90%);
  border-radius: 5px;
}

@media only screen and (max-width: 1024px) {
  #detail #detail-text {
    font-size: 2.5rem;
  }
}
#detail #detail-text .hr {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  height: 2px;
  border: 0;
  position: relative;
  margin-top: 32px;
  margin-bottom: 32px;
  width: 100%;
}

#detail #detail-text .hr:before {
  content: "";
  display: block;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}

#detail #detail-text .hr-with-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

#detail #detail-text .hr-with-text::before {
  content: "";
  flex: 1;
  margin-right: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  height: 2px;
  width: auto;
  border: 0;
}

#detail #detail-text .hr-with-text::after {
  content: "";
  flex: 1;
  margin-left: 16px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  height: 2px;
  width: auto;
  border: 0;
}

.img-container {
  width: 95%;
  margin: auto;
  padding: 32px;
  justify-content: center;
  align-items: center;
  display: grid;
}

.img-container img {
  max-width: 100%;
}

.img-container h6 {
  margin-top: 16px;
  margin-bottom: 32px;
  text-align: center;
}

.play {
  width: 32;
  position: absolute;
  right: 10%;
  top: 28%;
}

@media only screen and (max-width: 1080px) {
  .play {
    right: 16%;
  }
}
#sections {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 1080px) {
  #sections h2 {
    padding-left: 32px !important;
  }
}
#sections section {
  height: 100%;
  width: 100%;
  top: 0;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

#sections section .outer,
#sections section .inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

#sections section .bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 1080px) {
  #sections section .bg {
    justify-content: center;
  }
}
#sections section .bg h2 {
  z-index: 2;
}

@media only screen and (max-width: 1080px) {
  #sections section .bg h2 {
    margin-top: 5%;
  }
}
#sections section .bg .clip-text {
  overflow: hidden;
}

#sections section .content-container {
  min-height: 50%;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px;
  padding-left: 196px;
  max-height: 65%;
  overflow-y: auto;
  overflow-x: hidden;
}

@media only screen and (max-width: 1080px) {
  #sections section .content-container {
    overflow: auto;
    flex-direction: column;
    align-items: center;
    margin-top: 64px;
    padding-left: 32px !important;
  }
}
#sections section .content-container .text-content {
  font-weight: 400;
  color: hsl(0, 0%, 90%);
  margin: auto;
  padding-right: 32px;
  padding-left: 32px;
  font-size: 1.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-resolution: 160dpi) {
  #sections section .content-container .text-content {
    font-size: 1.55rem;
  }
}
@media (min-resolution: 240dpi) {
  #sections section .content-container .text-content {
    font-size: 1.75rem;
  }
}
@media (min-resolution: 360dpi) {
  #sections section .content-container .text-content {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1280px) {
  #sections section .content-container .text-content {
    font-size: 2rem;
  }
}
#sections section .content-container .image-content {
  font-weight: 400;
  color: hsl(0, 0%, 90%);
  margin: auto;
  padding-right: 32px;
  padding-left: 32px;
  font-size: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-resolution: 160dpi) {
  #sections section .content-container .image-content {
    font-size: 1.55rem;
  }
}
@media (min-resolution: 240dpi) {
  #sections section .content-container .image-content {
    font-size: 1.75rem;
  }
}
@media (min-resolution: 360dpi) {
  #sections section .content-container .image-content {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1280px) {
  #sections section .content-container .image-content {
    font-size: 2.5rem;
  }
}
#sections section .content-container .timeLine-content {
  color: hsl(0, 0%, 90%);
  font-size: 1.5rem;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow-x: auto;
}

#sections section .content-container .timeLine-content .timeLine-item {
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  display: flex;
}

#sections section .content-container .timeLine-content .timeLine-item .circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

#sections section .content-container .timeLine-content .timeLine-item .circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transform: translateY(200%);
  background-color: #fff;
}

#sections section .content-container .timeLine-content .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  margin-right: 10px;
}

@media (min-resolution: 160dpi) {
  #sections section .content-container .timeLine-content {
    font-size: 1.55rem;
    overflow-x: scroll;
  }
}
@media (min-resolution: 240dpi) {
  #sections section .content-container .timeLine-content {
    font-size: 1.75rem;
    overflow-x: scroll;
  }
}
@media (min-resolution: 360dpi) {
  #sections section .content-container .timeLine-content {
    font-size: 2rem;
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 1280px) {
  #sections section .content-container .timeLine-content {
    font-size: 2.5rem;
    overflow-x: scroll;
  }
}
#sections section .content-container .imageList-content {
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#sections section .content-container .imageList-content-detail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 20px;
}

#sections section .content-container .imageList-image {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.75);
  height: 165px;
  width: 165px;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

#sections section .content-container .imageList-content-tag {
  font-size: 1.5rem;
  font-weight: bold;
}

@media only screen and (max-width: 1280px) {
  #sections section .content-container .imageList-content-tag {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 1080px) {
  #sections section .content-container .imageList-content-detail {
    height: 100%;
    font-size: 2.5rem;
    display: flex;
    justify-content: right;
  }
}
#sections section .content-container .img-content {
  background-size: cover;
  background-position: center;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.75);
  margin: auto;
}

@media only screen and (max-width: 1080px) {
  #sections section .content-container .img-content {
    display: none !important;
  }
}
#sections section .content-container .img-content.tall {
  height: 540px;
  min-width: 400px;
  max-width: 400px;
  margin: auto;
}

@media only screen and (max-width: 1280px) {
  #sections section .content-container .img-content.tall {
    min-width: 240px;
    max-width: 240px;
    height: 324px;
  }
}
#sections section .content-container .img-content.square {
  height: 480px;
  min-width: 480px;
  max-width: 480px;
  margin: auto;
}

@media only screen and (max-width: 1280px) {
  #sections section .content-container .img-content.square {
    min-width: 320px;
    max-width: 320px;
    height: 320px;
  }
}
#sections section .content-container .img-content.wide {
  min-width: 480px;
  max-width: 480px;
  height: 320px;
  margin: auto;
}

@media only screen and (max-width: 1280px) {
  #sections section .content-container .img-content.wide {
    min-width: 324px;
    max-width: 324px;
    height: 216px;
  }
}
#sections section .content-container .img-content.wide.full {
  min-width: 1080px !important;
  max-width: 1080px !important;
  margin-top: auto;
}

#sections section .content-container .img-content.square.full {
  min-width: 720px !important;
  max-width: 720px !important;
  height: 720px !important;
  margin-top: auto;
}

#sections section .content-container .img-content-small {
  display: none;
  background-size: cover;
  background-position: center;
  margin: auto;
}

@media only screen and (max-width: 1080px) {
  #sections section .content-container .img-content-small {
    display: block;
  }
}
#sections section .content-container .img-content-small.tall {
  min-width: 180px;
  max-width: 180px;
  height: 270px;
}

@media only screen and (max-width: 768px) {
  #sections section .content-container .img-content-small.tall {
    min-width: 120px;
    max-width: 120px;
    height: 100%;
  }
}
@media only screen and (max-width: 1280px) {
  #sections section .content-container .img-content-small.tall {
    height: 100%;
    min-width: 400px;
    max-width: 400px;
  }
}
#sections section .content-container .img-content-small.square {
  min-width: 240px;
  max-width: 240px;
  height: 240px;
}

@media only screen and (max-width: 768px) {
  #sections section .content-container .img-content-small.square {
    min-width: 162px;
    max-width: 162px;
    height: 100%;
  }
}
@media only screen and (max-width: 1280px) {
  #sections section .content-container .img-content-small.square {
    min-width: 480px;
    max-width: 480px;
    height: 100%;
  }
}
#sections section .content-container .img-content-small.wide {
  min-width: 360px;
  max-width: 360px;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  #sections section .content-container .img-content-small.wide {
    min-width: 240px;
    max-width: 240px;
    height: 100%;
  }
}
@media only screen and (max-width: 1280px) {
  #sections section .content-container .img-content-small.wide {
    min-width: 675px;
    max-width: 675px;
    height: 100%;
  }
}
#sections section .btn-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 64px 0 20px 0;
  width: 100%;
  bottom: 4%;
  padding-left: 140px;
  position: fixed;
}

#moreInfo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 30;
  position: relative;
  text-shadow: rgba(255, 255, 255, 0.48);
}
#moreInfo .btnPlay {
  position: absolute;
  width: 40;
  height: 40;
  left: 28%;
  top: 25%;
}

@media only screen and (max-width: 1280px) {
  #sections section .btn-container {
    bottom: 5%;
    padding-left: 0px;
  }
}
#sections section .btn-container .button {
  margin: auto;
  width: 480px;
  height: 64px;
  min-width: 320px;
  opacity: 0.8;
  cursor: pointer;
}

@media only screen and (max-width: 1280px) {
  #sections section .btn-container .button {
    font-size: 1.6rem;
  }
}
.sideMenu {
  margin: auto;
  width: 100px;
  height: 90px;
  position: absolute;
  z-index: 30;
  bottom: 5%;
  right: 5%;
  display: none;
  font-size: 28;
  text-align: center;
  line-height: 90px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  text-transform: uppercase;
}

.sideMask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: linear-gradient(180deg, rgba(80, 80, 80, 0.2), rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(35.83px);
  -webkit-backdrop-filter: blur(35.83px); /* 添加这一行 */
  z-index: 30;
}
.sideMask .sideMaskBg {
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgb(0, 0, 0), rgba(0, 0, 0, 0) 100%);
  z-index: 30;
  width: 80%;
  height: 80%;
}

.sideMask .close {
  position: absolute;
  top: 6%;
  right: 5%;
  width: 40px;
  height: 40px;
  z-index: 10;
  display: none;
}

@media only screen and (max-width: 1280px) {
  .sideMask .close {
    display: block;
  }
}
.imgMask {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(80, 80, 80, 0.2), rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px); /* 添加这一行 */
  z-index: 45;
  height: 100%;
  width: 100%;
}

h2 * {
  will-change: transform;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: #2b2a32;
  border-radius: 10px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: gray;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #211f26;
}



/*# sourceMappingURL=style.css.map */
