@charset "UTF-8";
#loading {
  width: 100vw;
  height: 100vh;
  background: black;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999998;
}
#loading .back-img {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/assets/main/mainLoadingbg.jpg");
  background-repeat: no-repeat; /* 防止图片重复 */
  background-position: center; /* 将图片居中 */
  background-size: cover;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
#loading img {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
#loading video {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#loading .opacity-0 {
  opacity: 0;
}
#loading .opacity-1 {
  opacity: 1;
}
#loading .lastVideoPic {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/assets/main/videoLastPic.jpg");
  background-repeat: no-repeat; /* 防止图片重复 */
  background-position: center; /* 将图片居中 */
  background-size: cover;
}
#loading .loading-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1.92vw;
  width: 1.92vw;
}
#loading .loading-msg {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  top: 40%;
  align-items: center;
}
#loading .loading-msg .title {
  width: 14.112vw;
  animation: opacity0-1 1s ease-in-out;
}
#loading .loading-msg .msg {
  margin-top: 1.152vw;
  color: #FFF;
  text-shadow: 0 0.384vw 1.152vw rgba(4, 8, 24, 0.7);
  font-size: 1.152vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.536vw;
  animation: opacity0-1 1s ease-in-out;
}
#loading .loading-msg .text-hidden {
  display: none;
}
#loading .loading-msg .text-visible {
  display: block;
}

@keyframes opacity0-1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#logo-img {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -35%);
  display: inline-block;
  width: 23.52vw;
  z-index: 999999;
}

#main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
}
#main .header {
  height: 3.264vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 999999;
  position: absolute;
  border-bottom: 1px solid rgba(238, 238, 238, 0.2);
}
#main .header .app-icon {
  width: 7.104vw;
  height: 2.304vw;
  margin-left: 1.92vw;
}
#main .header .app-icon:hover {
  cursor: pointer;
}
#main .header .tabs {
  position: relative;
  height: 3.264vw;
  display: flex;
}
#main .header .tabs .tabs-item {
  display: flex;
  align-items: center;
  margin-right: 2.496vw;
  padding-left: 0.384vw;
  cursor: pointer;
}
#main .header .tabs .tabs-item:last-child {
  margin-right: 1.92vw;
}
#main .header .tabs .tabs-item .icon {
  height: 0.96vw;
  width: 0.96vw;
}
#main .header .tabs .tabs-item .icon-active {
  height: 0.96vw;
  width: 0.96vw;
}
#main .header .tabs .tabs-item .name {
  margin-left: 8px;
  color: rgba(238, 238, 238, 0.7);
  font-size: 0.96vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.392vw;
  cursor: pointer;
}
#main .header .tabs .tabs-item .name.active {
  color: #FFF;
  font-family: Manrope-Bold;
  cursor: pointer;
}
#main .header .tabs .tabs-item:hover .name {
  color: #FFF;
}
#main .header .tabs .bottomLine {
  position: absolute;
  height: 0.144vw;
  bottom: 0;
  left: 0;
  background: white;
  width: 4.32vw;
  transition: 0.2s;
}
#main .welcomeVideo {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
#main .mouse {
  width: 1.536vw;
  aspect-ratio: 8/12;
  position: absolute;
  left: 1.92vw;
  top: calc(50vh - 24px);
  opacity: 0;
  z-index: 999999;
  animation: fadeInOpacity 1s ease-in-out forwards;
}
#main .mouse.display-none {
  display: none;
}

.showEnable {
  visibility: visible;
}

.showUnable {
  visibility: hidden;
}

@-webkit-keyframes moveToTop {
  to {
    transform: translateY(-100%);
  }
}
@keyframes moveToTop {
  to {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveFromTop {
  from {
    transform: translateY(-100%);
  }
}
@keyframes moveFromTop {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveToBottom {
  to {
    transform: translateY(100%);
  }
}
@keyframes moveToBottom {
  to {
    transform: translateY(100%);
  }
}
@-webkit-keyframes moveFromBottom {
  from {
    transform: translateY(100%);
  }
}
@keyframes moveFromBottom {
  from {
    transform: translateY(100%);
  }
}
@-webkit-keyframes moveToLeft {
  to {
    transform: translateX(-100%);
  }
}
@keyframes moveToLeft {
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveFromLeft {
  from {
    transform: translateX(-100%);
  }
}
@keyframes moveFromLeft {
  from {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveToRight {
  to {
    transform: translateX(100%);
  }
}
@keyframes moveToRight {
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes moveFromRight {
  from {
    transform: translateX(100%);
  }
}
@keyframes moveFromRight {
  from {
    transform: translateX(100%);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
  -webkit-animation-name: fadeInLeft;
  animation-duration: 0.3s;
}

.fadeInRight {
  animation-name: fadeInRight;
  -webkit-animation-name: fadeInRight;
  animation-duration: 0.3s;
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
  -webkit-animation-name: fadeOutLeft;
  animation-duration: 0.3s;
}

.fadeOutRight {
  animation-name: fadeOutRight;
  -webkit-animation-name: fadeOutRight;
  animation-duration: 0.3s;
}

.fadeInUp {
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.3s;
}

.fadeInDown {
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.3s;
}

.fromTop {
  -webkit-animation: moveFromTop 0.3s ease;
  animation: moveFromTop 0.3s ease;
}

.fromBottom {
  -webkit-animation: moveFromBottom 0.3s ease;
  animation: moveFromBottom 0.3s ease;
}

.toTop {
  -webkit-animation: moveToTop 0.3s ease;
  animation: moveToTop 0.3s ease;
}

.toBottom {
  -webkit-animation: moveToBottom 0.3s ease;
  animation: moveToBottom 0.3s ease;
}

.toLeft {
  -webkit-animation: moveToLeft 0.8s ease;
  animation: moveToLeft 0.8s ease;
}

.fromLeft {
  -webkit-animation: moveFromLeft 0.8s ease;
  animation: moveFromLeft 0.8s ease;
}

.toRight {
  -webkit-animation: moveToRight 0.8s ease;
  animation: moveToRight 0.8s ease;
}

.fromRight {
  -webkit-animation: moveFromRight 0.8s ease;
  animation: moveFromRight 0.8s ease;
}

@-webkit-keyframes fadeInOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.copy-right-box {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.768vw;
  font-weight: 500;
  line-height: 1.056vw;
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 3.264vw;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgb(13, 13, 13);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 330px) {
  .iphoneNotch {
    padding-bottom: 1.8rem !important;
  }
}

#mobile-page {
  height: 100vh;
  overflow-y: auto;
  position: relative;
}
#mobile-page .header-box {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
#mobile-page .header-box div:first-child {
  display: flex;
  align-items: center;
  height: 0.6rem;
  padding: 0 0.2rem;
  border-bottom: 1px solid var(--Border, rgba(238, 238, 238, 0.2));
  background: #000;
}
#mobile-page .header-box div:first-child img {
  display: block;
  height: 0.36rem;
}
#mobile-page .text-content {
  width: 100vw;
  margin-top: 1.36rem;
  position: absolute;
  top: 0;
  z-index: 199;
  padding: 0 0.2rem;
}
#mobile-page .text-content .img-box {
  position: relative;
}
#mobile-page .text-content .img {
  display: block;
  height: 0.47rem;
}
#mobile-page .text-content h1 {
  color: #00ff00;
  font-size: 0.24rem;
  margin-bottom: 0.2rem;
}
#mobile-page .text-content div.p {
  color: #FFF;
  font-size: 0.16rem;
  font-style: normal;
  line-height: 0.24rem;
  position: relative;
}
#mobile-page .text-content div.p .earth-img {
  display: inline-block;
  position: absolute;
  z-index: -2;
  top: 50%;
  left: -0.2rem;
  width: calc(100% + 0.4rem);
  height: 5.91rem;
  background: url("/assets/about/fly-line-bg.png") no-repeat;
  background-size: contain;
}
#mobile-page .text-content div.p .earth-img:after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  bottom: 0.6rem;
  left: 1.01rem;
  width: 2.58rem;
  height: 1.28rem;
  background: url("/assets/fadayi/position-sar-bg.png") no-repeat;
  background-size: contain;
}
#mobile-page .section {
  margin-top: 0.24rem;
  border: 1px solid white;
  border-image: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)) 1;
}
#mobile-page h2 {
  font-size: 0.2rem;
  margin-bottom: 0.12rem;
  margin-top: 0.16rem;
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0.08rem 0.24rem rgba(4, 8, 24, 0.4);
  line-height: 0.28rem;
}
#mobile-page .section h2 {
  font-family: Manrope-Bold;
  font-size: 0.18rem;
  margin-bottom: 0.12rem;
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0.08rem 0.24rem rgba(4, 8, 24, 0.4);
  line-height: 0.24rem;
}
#mobile-page .section ul {
  list-style-type: none;
  padding: 0 0.16rem 0.16rem;
}
#mobile-page .section ul li {
  color: rgba(238, 238, 238, 0.5);
  font-size: 0.14rem;
  line-height: 0.2rem;
  position: relative;
  padding-left: 0.18rem;
}
#mobile-page .section ul li:first-child {
  color: #fff;
  font-size: 0.16rem;
  line-height: 0.22rem;
  padding-left: 0rem;
  margin-bottom: 0.08rem;
}
#mobile-page .section ul li:not(:first-child)::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.08rem;
  left: 0.06rem;
  width: 0.05rem;
  height: 0.05rem;
  border-radius: 0.05rem;
  background: rgba(238, 238, 238, 0.5);
}
#mobile-page .contact-us-box {
  margin-top: 0.48rem;
  margin-bottom: 0.24rem;
}
#mobile-page .contact-us-box .contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0.12rem 0.2rem;
  color: #0D1014;
  font-family: Manrope-Bold;
  font-size: 0.18rem;
  line-height: 0.24rem;
}
#mobile-page .contact-us-box .contact-button:after {
  content: "";
  margin-left: 0.08rem;
  display: inline-block;
  width: 0.24rem;
  height: 0.24rem;
  background: url("/assets/about/contact-select.svg") no-repeat;
  background-size: 100% 100%;
}
#mobile-page .contact-us-box p {
  margin-top: 0.08rem;
  color: rgba(238, 238, 238, 0.5);
  font-size: 0.14rem;
  line-height: 0.2rem; /* 142.857% */
}
#mobile-page .contact-us-box .email-text {
  color: rgba(238, 238, 238, 0.5);
  font-size: 0.14rem;
  line-height: 0.2rem;
  padding-bottom: 0.08rem;
}
#mobile-page .contact-us-box .email-text span {
  color: #eee;
  font-family: Manrope-Bold;
}
#mobile-page .copy-box {
  display: flex;
  padding: 0.14rem 0;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.14rem;
  line-height: 0.2rem;
  flex-shrink: 0;
  position: relative;
}
#mobile-page .copy-box:before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  height: 1px;
  width: 100vw;
  background: rgba(255, 255, 255, 0.1);
}

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