body {
  overscroll-behavior: auto;
  width: 100vw;
}

.wrap {
  overscroll-behavior: none;
  position: fixed;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

#fullpage {
  height: calc(var(--vh) * 100);
  overflow: hidden;
}

section {
  height: calc(var(--vh) * 100);
  position: fixed;
  left: 0;
  width: 100%;
  overscroll-behavior: none;
  transform: none;
  pointer-events: auto;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: forwards;
}

#section1 {
  background-color: var(--gray-950);
  overflow: hidden;
}
#section1 .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
}
#section1 .bg-img img {
  width: 100%;
  height: 100%;
}
#section1 .bg-img video {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#section1 .txt {
  position: absolute;
  top: 50px;
  left: 16px;
  z-index: 10;
  white-space: nowrap;
}
#section1 .txt > span {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: forwards;
}
#section1 .txt > span.num1 {
  opacity: 1;
}
#section1 .txt > span.num2 {
  opacity: 0;
  font-weight: 300;
  font-size: 18px;
}
#section1 .txt > span > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}
#section1 .txt.trans1 .num1 {
  animation-name: txtshow;
}
#section1 .txt.trans1 .num2 {
  animation-name: txthide;
}
#section1 .txt.trans2 .num1 {
  animation-name: txthide;
}
#section1 .txt.trans2 .num2 {
  animation-name: txtshow;
}
#section1 .video-box {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  width: calc(100% + 72px);
  height: calc(100% + 72px);
  background-image: url(../images/img-pad.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: forwards;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 18px;
}
#section1 .video-box video {
  border-radius: 8px;
  padding: 0;
  background: var(--black-500);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100% - 32px);
  width: calc(100% - 32px);
}
#section2 {
  background-color: #fff;
  top: calc(var(--vh) * 100);
  text-align: center;
  padding: 15vh 0;
  overflow: hidden;
  z-index: 1;
}
#section2 .bgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  z-index: 1;
  transition: all 0.8s;
}
#section2 .bgs > img {
  width: 1240px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  bottom: 70px;
}
#section2 .bgs > i {
  left: auto;
  width: auto;
  bottom: auto;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.1764705882);
  top: 50%;
  transform: translateY(-50%) scale(7);
  position: absolute;
}
#section2 .bgs.trans {
  opacity: 1;
}
#section2 .bgs:nth-child(1) > i {
  left: 324px;
}
#section2 .bgs:nth-child(2) > i {
  left: 50%;
  transform: translate(-50%, -50%) scale(7);
}
#section2 .bgs:nth-child(3) > i {
  right: 324px;
}
#section2 .txt1 {
  font-size: 44px;
  color: var(--gray-950);
  font-weight: 900;
  position: relative;
  z-index: 10;
  transition: all 0.8s;
}
#section2 .txt2 {
  margin: 0 16px;
  margin-top: 16px;
  font-size: 18px;
  color: var(--gray-950);
  position: relative;
  z-index: 10;
  margin-bottom: 36px;
  display: block;
  font-weight: 600;
  transition: all 0.8s;
}
#section2 .color-chage.trans {
  color: #fff;
}
#section2 > .row {
  margin: -8px;
  padding: 16px;
  position: relative;
  z-index: 10;
  justify-content: center;
}
#section2 > .row > div {
  padding: 8px;
  flex-grow: 0;
  white-space: nowrap;
}
#section2 > .row > div > .box {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  padding: 16px;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  border-radius: 16px;
  box-shadow: var(--dropShadow-elevation-default-le4);
  justify-content: center;
  align-items: center;
}
#section2 > .row > div > .box .txt3 {
  font-size: 30px;
  color: #fff;
  position: relative;
}
#section2 > .row > div > .box > i {
  font-size: 36px;
  color: #fff;
}
#section2 > .row > div > .box:hover {
  animation-name: colorchage;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
#section2 > .row > div > .box:hover .txt3, #section2 > .row > div > .box:hover i {
  color: var(--gray-950);
}
#section2 .clickpage {
  position: absolute;
  bottom: -100%;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
#section2 .clickpage > .close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 100;
  color: #fff;
  font-size: 24px;
  border: 0;
  background: rgba(255, 255, 255, 0);
}
#section2 .clickpage#target1-page .list {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  white-space: normal;
  width: 100%;
  height: 100%;
}
#section2 .clickpage#target1-page .list > li {
  width: 100%;
  height: 100%;
  max-width: 100%;
  text-align: left;
  position: relative;
  background-color: rgb(3, 3, 3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}
#section2 .clickpage#target1-page .list > li.active {
  z-index: 10;
}
#section2 .clickpage#target1-page .list > li .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 16px;
}
#section2 .clickpage#target1-page .list > li .text-box .txt1 {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 4px;
  color: rgb(82, 207, 255);
}
#section2 .clickpage#target1-page .list > li .text-box .txt2 {
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}
#section2 .clickpage#target1-page .list > li .text-box .text .dot {
  color: inherit;
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 5px;
  padding-left: 10px;
  position: relative;
  color: #fff;
  text-align: left;
}
#section2 .clickpage#target1-page .list > li .text-box .text .dot::before {
  content: "";
  width: 3px;
  height: 3px;
  position: absolute;
  left: 0;
  top: 9px;
  background: #fff;
  border-radius: 10px;
}
#section2 .clickpage#target1-page .list > li .text-box .text > p {
  font-weight: 400;
  font-size: 14px;
  margin: 4px 0;
  line-height: 1;
  color: #fff;
  text-align: left;
  padding-left: 16px;
}
#section2 .clickpage#target1-page .list > li .text-box .text > em {
  font-size: 12px;
  font-weight: 100;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  display: block;
  padding-left: 8px;
}
#section2 .clickpage#target1-page .list > li .text-box > i {
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-name: scrolldown;
  position: absolute;
  font-size: 26px;
  bottom: 0;
  color: #fff;
  display: none;
}
#section2 .clickpage#target1-page .list > li img {
  position: absolute;
  width: auto;
  height: 100%;
  right: -100%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 1400px;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  z-index: -1;
}
#section2 .clickpage#target2-page .list {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  white-space: normal;
  width: 100%;
  height: 100%;
}
#section2 .clickpage#target2-page .list > li {
  width: 100%;
  height: 100%;
  max-width: 100%;
  text-align: left;
  position: relative;
  background-color: rgb(3, 3, 3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}
#section2 .clickpage#target2-page .list > li.active {
  z-index: 10;
}
#section2 .clickpage#target2-page .list > li .text-box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  white-space: nowrap;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 16px;
}
#section2 .clickpage#target2-page .list > li .text-box p {
  text-align: left;
}
#section2 .clickpage#target2-page .list > li .text-box p span {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 4px;
  color: rgb(82, 207, 255);
  display: block;
}
#section2 .clickpage#target2-page .list > li .text-box p em {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2px;
  position: relative;
  color: #fff;
  display: block;
  white-space: normal;
}
#section2 .clickpage#target2-page .list > li .text-box p em img {
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  animation-name: none !important;
}
#section2 .clickpage#target2-page .list > li .text-box > i {
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-name: scrolldown2;
  position: absolute;
  font-size: 26px;
  bottom: 0;
  color: #fff;
  display: none;
}
#section2 .clickpage#target2-page .list > li img {
  position: absolute;
  width: auto;
  height: 100%;
  left: -100%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 1400px;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  z-index: -1;
}
#section2 .clickpage nav {
  padding: 16px;
  width: 100%;
  /* height: 50px; */
  max-width: 1440px;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 15px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  overflow: hidden;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(211, 213, 218, 0.3);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 46px;
  z-index: 100;
  display: flex;
  align-items: baseline;
  flex-direction: column;
}
#section2 .clickpage nav .logo {
  height: 18px;
  margin-bottom: 8px;
}
#section2 .clickpage nav .close {
  border: 0;
  background-color: #fff;
  font-size: 26px;
  display: none;
}
#section2 .clickpage nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1 0 0%;
  padding: 0 16px;
  flex-basis: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
  overflow: auto;
  padding-bottom: 12px;
}
#section2 .clickpage nav ul li button {
  color: rgb(82, 84, 86);
  border: 0;
  font-size: 12px;
  background-color: #fff;
  white-space: nowrap;
}
#section2 .clickpage nav ul li button > * {
  color: inherit;
  font-size: inherit;
}
#section2 .clickpage nav ul li button:hover, #section2 .clickpage nav ul li button.active {
  color: rgb(82, 207, 255);
}

@keyframes txtshow {
  0% {
    top: -30px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes txthide {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -30px;
    opacity: 0;
  }
}
@keyframes M-transimg1 {
  0% {
    width: 100%;
    height: 100%;
    top: 50%;
  }
  100% {
    width: 300px;
    height: 400px;
    top: 70vh;
  }
}
@keyframes M-transimg2 {
  0% {
    width: 300px;
    height: 400px;
    top: 70vh;
  }
  100% {
    width: 100%;
    height: 100%;
    top: 50%;
  }
}
@keyframes colorchage {
  0% {
    background-color: rgba(0, 0, 0, 0.8);
  }
  100% {
    background-color: rgb(255, 255, 255);
  }
}
@keyframes bgchage {}
@media (min-width: 1216px) {
  body {
    overflow: hidden;
    height: 100vh;
  }
  .wrap {
    overflow: hidden;
    height: 100%;
  }
  #section1 {
    background-color: var(--gray-950);
  }
  #section1 .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  #section1 .bg-img img {
    width: 100%;
    height: 100%;
  }
  #section1 .txt {
    position: absolute;
    top: 50%;
    left: 150px;
    z-index: 10;
    white-space: nowrap;
  }
  #section1 .txt > span {
    font-size: 80px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  #section1 .txt > span.num1 {
    font-size: 60px;
  }
  #section1 .txt > span.num2 {
    font-size: 40px;
  }
  #section1 .video-box {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    width: calc(100% + 74px);
    height: calc(100% + 74px);
    padding: 36px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 0.6s;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    animation-fill-mode: forwards;
  }
  #section1 .video-box video {
    border-radius: 8px;
    background: var(--black-500);
    transform: none;
    left: auto;
    top: auto;
    position: absolute;
    height: calc(100% - 72px);
    width: calc(100% - 72px);
  }
  #section2 {
    background-color: #fff;
    position: relative;
    text-align: center;
    padding: 15vh 0;
  }
  #section2 .bgs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    z-index: 1;
    transition: all 0.8s;
  }
  #section2 .bgs > img {
    width: 1240px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    bottom: 70px;
  }
  #section2 .bgs > svg {
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: visible;
    transform: translate(-50%, -50%);
  }
  #section2 .bgs > video {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  #section2 .bgs > i {
    left: auto;
    width: auto;
    bottom: auto;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1764705882);
    top: 50%;
    transform: translateY(-50%) scale(7);
    position: absolute;
  }
  #section2 .bgs.trans {
    opacity: 1;
  }
  #section2 .bgs:nth-child(1) > i {
    left: 324px;
  }
  #section2 .bgs:nth-child(2) > i {
    left: 50%;
    transform: translate(-50%, -50%) scale(7);
  }
  #section2 .bgs:nth-child(3) > i {
    right: 324px;
  }
  #section2 .txt1 {
    font-size: 2.5vw;
    color: var(--gray-950);
    font-weight: 900;
    position: relative;
    z-index: 10;
    transition: all 0.8s;
  }
  #section2 .txt2 {
    margin-top: 16px;
    font-size: 18px;
    color: var(--gray-950);
    position: relative;
    z-index: 10;
    margin-bottom: 36px;
    display: block;
    font-weight: 600;
    transition: all 0.8s;
  }
  #section2 .color-chage.trans {
    color: #fff;
  }
  #section2 > .row {
    flex-wrap: nowrap;
    margin: -8px;
    position: relative;
    z-index: 10;
    justify-content: center;
  }
  #section2 > .row > div {
    padding: 8px;
    flex-grow: 0;
    white-space: nowrap;
  }
  #section2 > .row > div > .box {
    background-color: rgba(0, 0, 0, 0.8);
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 16px;
    box-shadow: var(--dropShadow-elevation-default-le4);
  }
  #section2 > .row > div > .box .txt3 {
    font-size: 60px;
    color: #fff;
    position: relative;
    margin-top: 70px;
  }
  #section2 > .row > div > .box > i {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 48px;
    font-size: 180px;
    color: #fff;
  }
  #section2 > .row > div > .box:hover {
    animation-name: colorchage;
    animation-duration: 0.6s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
  }
  #section2 > .row > div > .box:hover .txt3, #section2 > .row > div > .box:hover i {
    color: var(--gray-950);
  }
  #section2 .clickpage {
    position: absolute;
    bottom: -100%;
    animation-duration: 0.6s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
  }
  #section2 .clickpage > .close {
    display: none;
  }
  #section2 .clickpage#target1-page .list {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    white-space: normal;
    width: 100%;
    height: 100%;
  }
  #section2 .clickpage#target1-page .list > li {
    width: 100%;
    height: 100%;
    max-width: 100%;
    text-align: left;
    position: relative;
    background-color: rgb(3, 3, 3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
  }
  #section2 .clickpage#target1-page .list > li.active {
    z-index: 10;
  }
  #section2 .clickpage#target1-page .list > li .text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    animation-duration: 0.6s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    width: auto;
    padding: 0;
    background: rgba(255, 255, 255, 0);
  }
  #section2 .clickpage#target1-page .list > li .text-box .txt1 {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 10px;
    color: rgb(82, 207, 255);
  }
  #section2 .clickpage#target1-page .list > li .text-box .txt2 {
    font-weight: 300;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
  }
  #section2 .clickpage#target1-page .list > li .text-box .text {
    opacity: 0;
    transition: opacity 0.5s;
  }
  #section2 .clickpage#target1-page .list > li .text-box .text .dot {
    color: inherit;
    display: block;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 5px;
    padding-left: 10px;
    position: relative;
    color: #fff;
    text-align: left;
  }
  #section2 .clickpage#target1-page .list > li .text-box .text .dot::before {
    content: "";
    width: 3px;
    height: 3px;
    position: absolute;
    left: 0;
    top: 9px;
    background: #fff;
    border-radius: 10px;
  }
  #section2 .clickpage#target1-page .list > li .text-box .text > p {
    font-weight: 400;
    font-size: 18px;
    margin: 10px 0;
    line-height: 1;
    color: #fff;
    text-align: left;
    padding-left: 16px;
  }
  #section2 .clickpage#target1-page .list > li .text-box .text > em {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    display: block;
    padding-left: 16px;
  }
  #section2 .clickpage#target1-page .list > li .text-box > i {
    animation-duration: 0.8s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-name: scrolldown;
    position: absolute;
    font-size: 26px;
    bottom: 0;
    color: #fff;
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }
  #section2 .clickpage#target1-page .list > li img {
    position: absolute;
    width: auto;
    height: 100%;
    right: -100%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 1400px;
    animation-duration: 0.6s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    z-index: -1;
  }
  #section2 .clickpage#target2-page .list {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    white-space: normal;
    width: 100%;
    height: 100%;
  }
  #section2 .clickpage#target2-page .list > li {
    width: 100%;
    height: 100%;
    max-width: 100%;
    text-align: left;
    position: relative;
    background-color: rgb(3, 3, 3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
  }
  #section2 .clickpage#target2-page .list > li.active {
    z-index: 10;
  }
  #section2 .clickpage#target2-page .list > li .text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    animation-duration: 0.6s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    white-space: nowrap;
    width: auto;
    padding: 0;
    background: rgba(255, 255, 255, 0);
  }
  #section2 .clickpage#target2-page .list > li .text-box p {
    text-align: left;
  }
  #section2 .clickpage#target2-page .list > li .text-box p span {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 10px;
    color: rgb(82, 207, 255);
    display: block;
  }
  #section2 .clickpage#target2-page .list > li .text-box p em {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2px;
    position: relative;
    color: #fff;
    white-space: nowrap;
  }
  #section2 .clickpage#target2-page .list > li .text-box p em img {
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    animation-name: none !important;
  }
  #section2 .clickpage#target2-page .list > li .text-box > i {
    animation-duration: 0.8s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-name: scrolldown2;
    position: absolute;
    font-size: 26px;
    bottom: 0;
    color: #fff;
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }
  #section2 .clickpage#target2-page .list > li img {
    position: absolute;
    width: auto;
    height: 100%;
    left: -100%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 1400px;
    animation-duration: 0.6s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    z-index: -1;
  }
  #section2 .clickpage nav {
    padding: 0 16px;
    width: 100%;
    height: 50px;
    max-width: 1440px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 15px;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    overflow: hidden;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(211, 213, 218, 0.3);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 46px;
    z-index: 100;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  #section2 .clickpage nav .logo {
    height: 26px;
    margin-right: 36px;
    margin-bottom: 0;
  }
  #section2 .clickpage nav .close {
    border: 0;
    background-color: #fff;
    font-size: 26px;
    display: block;
  }
  #section2 .clickpage nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 0 0%;
    padding: 0 16px;
  }
  #section2 .clickpage nav ul li button {
    color: rgb(82, 84, 86);
    border: 0;
    font-size: 18px;
    background-color: #fff;
  }
  #section2 .clickpage nav ul li button > * {
    color: inherit;
    font-size: inherit;
  }
  #section2 .clickpage nav ul li button:hover, #section2 .clickpage nav ul li button.active {
    color: rgb(82, 207, 255);
  }
  @keyframes transimg1 {
    0% {
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      left: auto;
      transform: none;
    }
    100% {
      width: 800px;
      height: 588.5px;
      top: 140px;
      right: 130px;
      left: auto;
      transform: none;
    }
  }
  @keyframes transimg2 {
    0% {
      width: 800px;
      height: 588.5px;
      top: 140px;
      right: 130px;
      left: auto;
      transform: none;
    }
    100% {
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
    }
  }
  @keyframes colorchage {
    0% {
      background-color: rgba(0, 0, 0, 0.8);
    }
    100% {
      background-color: rgb(255, 255, 255);
    }
  }
  @keyframes bgchage {}
}
@keyframes clickpage {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes clickpage2 {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -100%;
  }
}
@keyframes transimg3 {
  0% {
    right: -100%;
  }
  100% {
    right: -17%;
  }
}
@keyframes transimg3-1 {
  0% {
    left: -100%;
  }
  100% {
    left: -17%;
  }
}
@keyframes transimg4 {
  0% {
    right: -17%;
  }
  100% {
    right: -100%;
  }
}
@keyframes transimg4-1 {
  0% {
    left: -17%;
  }
  100% {
    left: -100%;
  }
}
@keyframes transtext1 {
  0% {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  100% {
    left: 17%;
    transform: translateY(-50%);
  }
}
@keyframes transtext2 {
  0% {
    left: 17%;
    transform: translateY(-50%);
  }
  100% {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@keyframes transtext1-1 {
  0% {
    left: 50%;
  }
  100% {
    left: 80%;
  }
}
@keyframes transtext2-1 {
  0% {
    left: 80%;
  }
  100% {
    left: 50%;
  }
}
@keyframes scrolldown {
  0% {
    bottom: 16px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes scrolldown2 {
  0% {
    bottom: -16px;
  }
  100% {
    bottom: -36px;
  }
}
@keyframes moveDown {
  0% {
    top: 0;
  }
  100% {
    top: calc(var(--vh) * 100);
  }
}
@keyframes moveUp {
  0% {
    top: calc(var(--vh) * 100);
  }
  100% {
    top: 0;
  }
}/*# sourceMappingURL=layout.css.map */