<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
#section0,
#section1{
/*  background: url(images/bk.png) #FFF bottom center no-repeat;*/
  position: relative;
  overflow: hidden;
}
.bk{
  background: url(images/bk.png) #FFF bottom center no-repeat fixed;
  width: 100%;height: 100%;
  position: fixed !important;
  top: 0;
  left: 0;
}

.slide{
  position: relative;
  overflow:hidden;
}

#section0{
  opacity: 0;
  transition: 1s;
}

#section0.active{opacity: 1;}

.logo{ margin-top: 30px;}

#section2{
  position: relative;
  background: radial-gradient(circle at 60% 0%, rgba(50,188,204,1),rgba(53,53,133,1));
}

#section2 .boat{
  background:url(images/boat.png) center bottom no-repeat ;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: -500px;
  opacity: 0;
  transition: 1s;
  mix-blend-mode: screen;
}

#section2.active .boat{
  left: 0;
  opacity: 1;
}

h1{
  margin-top: -150px;
}

.tablet{
  background: url(images/tablet.png)  bottom center no-repeat;
  width: 1400px;
  height: 918px;
  margin: 0 auto;
  display: block;
  position: absolute;
  top: calc(50% - 459px);
  left: calc(50% - 700px);
}

.point{
  display: flex;
  justify-content: center;
  position: relative;
  top: -40px;
}
.point li{
  margin: 0 30px;
  position: relative;
}

.point li .en{
  position: absolute;
  top: -50px;
  left: 0;
  animation: en 3s infinite;
}

.point li .point{
  position: relative;
  z-index: 1;
}



.fp-watermark{
  display: none;
}
.bottom_right{
  position: absolute;
  right: 50px;
  bottom: 30px;
  text-align: right;
}
.bottom_left{
  position: absolute;
  left: 50px;
  bottom: 30px;
  text-align: left;
}


.tablet::before{
  content: '';
  position: absolute;
  background: url(images/shadow.svg) center center no-repeat;
  width:100%;
  left: 0;
  height: 84px;
  bottom: -70px;
}

iframe{
  width: 1920px;
  height: 1080px;
  position: absolute;
  top: 100px;
  transform: scale(0.677);
  transform-origin: top left;
  left: 50px;
}

.if_top{
  display: block;
  position: absolute;
  top: 100px;
  left: 50px;
  z-index: 1;
  height: 74px;
  width: 260px;
}

.hand{
  position: absolute;
  bottom: -100px;
  right: -100px;
  z-index: 10;
  transform: translate(200px,200px);
  opacity: 0;
  pointer-events: none;
}
.tap{
  position: absolute;
  bottom: 280px;
  right: 206px;
  z-index: 10;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.active .hand{
  animation: hand 3s forwards linear;
}
.active .tap{
  animation: tap 3s forwards linear;
}
.fp-arrow.fp-next{border-color: transparent transparent transparent #004092;}
.fp-arrow.fp-prev{border-color: transparent #004092 transparent transparent;}
.active .demo_txt{transform: translate(0,0); opacity: 1;}


/*
.demo_txt{
  position:absolute; 
  background: linear-gradient(to left ,#32BCCC,#353585); 
  width: 1400px;
  line-height: 60px;
   color: #FFF; 
  border-radius: 60px; 
  margin: 0 auto;
  top: calc(50% - 580px); 
  left: calc(50% - 700px); 
  font-size: 30px;
  transform: translate(0,-30px); opacity: 0;
  transition: 1s;
  transition-delay: 2s;
}
*/
.demo_txt{
  position:absolute; 
  background: linear-gradient(to left ,#32BCCC,#353585); 
  width: 280px;
  height: 280px;
   color: #FFF; 
  border-radius: 100%; 
  left: -10px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 30px;
  transform: translate(0,-30px); opacity: 0;
  transition: 1s;
  transition-delay: 2s;
  line-height: 1.2em;
  z-index: 10;
}

  @keyframes en{
    0%{
      transform: scale(1);
    }
    50%{
      transform: scale(0.9);
    }
    100%{
      transform: scale(1);
    }
  }
@keyframes hand{
    0%{
      transform: translate(200px,200px);
      opacity: 0;
    }
    40%{
      transform: translate(0px,0px);
      opacity: 1;
    }
    60%{
      transform: translate(0px,0px);
      opacity: 1;
    }
    100%{
      transform: translate(100px,100px);
      opacity: 0;
    }
  }
@keyframes tap{
    0%{
      transform: scale(0);
      opacity: 0;
    }
    40%{
      transform: scale(0);
      opacity: 0;
    }
    50%{
      opacity: 1;
    }
    60%{
      transform: scale(1);
      opacity: 0;
    }
    100%{
      transform: scale(1);
      opacity: 0;
    }
  }
  </pre></body></html>