﻿/*!
 * fullPage 2.7.8
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow:hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#superContainer {
    height: 100%;
    position: relative;

    /* Touch detection for Windows 8 */
    -ms-touch-action: none;

    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}
.fp-section {
    position: relative; /* Safari<=5 Android<=3 */ /* <=28 */
    box-sizing: border-box;
}
.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout:fixed;
    width: 100%;
}
.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
    overflow: scroll;
}
.fp-notransition {
    transition: none !important;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav.right {
    right: 17px;
}
#fp-nav.left {
    left: 17px;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.fp-slidesNav.bottom {
    bottom: 17px;
}
.fp-slidesNav.top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fp-slidesNav ul li {
    display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
 }
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    transition: all 0.1s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span{
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}
#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell{
    height: auto !important;
}
html {
  font-family: sans-serif;
  font-size: 14px;
}
body {
  font-family: PingFangSC-Light, -apple-system, arial, 'Microsoft YaHei', '微软雅黑', sans-serif;
  font-weight: 200;
  font-size: 14px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}
.medium {
  font-family: PingFangSC-Medium, -apple-system, arial, 'Microsoft YaHei', '微软雅黑', sans-serif;
  font-weight: 300;
}
.sent {
  white-space: nowrap;
}
@media only screen and (max-width: 600px)  {
  html, body {
    font-size: 10px;
  }
  body {
    font-family: PingFangSC-Medium, -apple-system, arial, 'Microsoft YaHei', '微软雅黑', sans-serif;
  }
}
/*layout*/
.container {
  width: 96%;
  width: calc(100% - 30px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
/*fullPage*/
#fp-nav {
  left: 50%;
  right: auto;
  margin-left: 392px;
  margin-right: auto;
  width: 28px;
}
#fp-nav.right {
  right: auto;
}
#fp-nav ul {
  margin-left: auto;
  margin-right: auto;
}
#fp-nav ul li a span {
  background-color: #fff;
}
@media (max-width: 800px)  {
  #fp-nav {
    margin-left: 43%;
  }
}
/*background*/
#fullpageBG {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px)  {
  #fullpageBG {
    z-index: -1;
  }
}
#fullpageBG .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.7s ease;
}
#bg-0 {
  opacity: 0;
  background-color: #ffc816;
  background-image: radial-gradient(circle at 50% 5%, #eacf00, #ffbc1b 50%);
}
#bg-1 {
  opacity: 0;
  background-color: #23b8f7;
  background-image: radial-gradient(circle at 50% 50%, #75cae1, #2daafc 50%);
}
#bg-2 {
  opacity: 0;
  background-color: #ffaf28;
  background-image: radial-gradient(circle at 50% 50%, #f7c535, #ed9a1b 50%);
}
#bg-3 {
  opacity: 0;
  background-color: #0fc7d4;
  background-image: radial-gradient(circle at 50% 50%, #1ad8d4, #19b4c7 50%);
}
#bg-4 {
  opacity: 0;
  background-color: #D7E000;
  background-image: radial-gradient(circle at 50% 50%, #D7E000, #84BA20 50%);
}
.fp-viewing-0 #fullpageBG {
  background-color: #ffc816;
  background-image: radial-gradient(circle at 50% 5%, #eacf00, #ffbc1b 50%);
}
.fp-viewing-0 #bg-0 {
  opacity: 1;
  transition: opacity 0.7s step-end;
}
.fp-viewing-1 #fullpageBG {
  background-color: #23b8f7;
  background-image: radial-gradient(circle at 50% 50%, #75cae1, #2daafc 50%);
}
.fp-viewing-1 #bg-1 {
  opacity: 1;
  transition: opacity 0.7s step-end;
}
.fp-viewing-2 #fullpageBG {
  background-color: #ffaf28;
  background-image: radial-gradient(circle at 50% 50%, #f7c535, #ed9a1b 50%);
}
.fp-viewing-2 #bg-2 {
  opacity: 1;
  transition: opacity 0.7s step-end;
}
.fp-viewing-3 #fullpageBG {
  background-color: #0fc7d4;
  background-image: radial-gradient(circle at 50% 50%, #1ad8d4, #19b4c7 50%);
}
.fp-viewing-3 #bg-3 {
  opacity: 1;
  transition: opacity 0.7s step-end;
}
.fp-viewing-4 #fullpageBG {
  background-color: #D7E000;
  background-image: radial-gradient(circle at 50% 50%, #D7E000, #84BA20 50%);
}
.fp-viewing-4 #bg-4 {
  opacity: 1;
  transition: opacity 0.7s step-end;
}
/*header*/
#static-header {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  /* height: 92px; */
  height: 188px;
  text-align: center;
  background: #fff;
}
#static-header.ios {
  height: 92px;
}
.qiku-container {
  background-color: #3d2d06;
  text-align: center;
}
.qiku-container picture,
.qiku-container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#icon, h1, h2 {
  display: inline-block;
  *display: inline;
  margin: 0;
  line-height: 1;
  vertical-align: top;
}
#icon {
  padding-top: 22px;
  padding-bottom: 22px;
  margin-right: 10px;
}
h1 img, h2 img {
  display: block;
}
h1 {
  padding-top: 22px;
  padding-bottom: 23px;
}
h2 {
  margin-left: 5px; 
  padding-top: 35px;
  padding-bottom: 33px;
}
#static-header h2 {
  margin-right: -30px;
}
.link-to-forum {
  float: right;
  margin-left: 1em;
  color: #7e7e7e;
  font-size: 18px;
  line-height: 90px;
  text-decoration: none;
}
.link-to-forum:hover {
  color: #F5C215;
}
@media (max-height: 650px) {
  #static-header {
    height: 92px;
  }
  .qiku-container {
    display: none;
  }
}
@media (max-width: 600px), (max-height: 650px) {
  #static-header {
    height: 45px;
  }
  .qiku-container {
    display: none;
  }
  h1 {
    padding-top: 11px;
    padding-bottom: 12px;
  }
  h2 {
    margin-left: 6px;
    padding-top: 17px;
    padding-bottom: 16px;
  }
  #icon {
    padding-top: 11px;
    padding-bottom: 11px;
    margin-right: 2px;
  }
  #icon img {
    width: 23px;
    height: 23px;
  }
  h1 img {
    width: 86px;
    height: 23px;
  }
  h2 img {
    width: 107px;
    height: 11px;
  }
  .link-to-forum {
    line-height: 45px;
  }
}
@media (max-width: 360px) {
  #static-header h2 {
    display: none;
  }
}
/*actions*/
#actions {
  position: fixed;
  bottom: -80%;
  margin-top: -36px;
  width: 100%;
  height: 72px;
  will-change: bottom;
  transition: bottom 0.7s;
}
.fp-viewing-1 #actions,
.fp-viewing-2 #actions,
.fp-viewing-3 #actions,
.fp-viewing-4 #actions {
  bottom: 5%;
}
#actions .container {
  text-align: center;
}
.action-button {
  display: inline-block;
  width: 320px;
  height: 70px;
  line-height: 70px;
  border-radius: 6px;
  border: 1px solid #fff;
  text-align: center;
  color: #333;
  text-decoration: none;
  font-size: 24px;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.13);
  transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}
.action-button path {
  transition: fill 0.5s ease;
}
.action-button.inactive {
  display: none;
}
.action-button svg,
.action-button img {
  margin-top: 19px;
  margin-right: 15px;
  vertical-align: top;
}
#section-0-android-download,
#android-download {
  color: #00d854;
}
#section-0-android-download:hover,
#android-download:hover {
  color: #fff;
  border-color: #00d854;
  background-color: #00d854;
}
#section-0-android-download:active path,
#section-0-android-download:hover path,
#android-download:active path,
#android-download:hover path {
  fill: #fff;
}
#section-0-android-download:active,
#android-download:active {
  color: #fff;
  border-color: #00A641;
  background-color: #00A641;
}
@media (max-height: 960px) {
  .fp-viewing-1 #actions,
  .fp-viewing-2 #actions,
  .fp-viewing-3 #actions,
  .fp-viewing-4 #actions {
    bottom: 5%;
    height: 52px;
  }
  .action-button {
    height: 50px;
    line-height: 50px;
  }
  .action-button svg,
  .action-button img {
    margin: 8px 10px 10px 0;
    vertical-align: top;
  }
}
/*
@media (max-height: 800px) {
  .fp-viewing-1 #actions,
  .fp-viewing-2 #actions,
  .fp-viewing-3 #actions {
    bottom: 5%;
    height: 50px;
  }
}
*/
@media (max-width: 600px), (max-height: 600px) {
  .fp-viewing-1 #actions,
  .fp-viewing-2 #actions,
  .fp-viewing-3 #actions,
  .fp-viewing-4 #actions {
    height: 32px;
    bottom: 40px;
  }
  .action-button {
    width: 192px;
    height: 48px;
    line-height: 48px;
    font-size: 20px;
  }
  #actions .action-button svg,
  #actions .action-button img {
    width: 24px;
    height: 24px;
    margin: 12px 8px 12px 0;
    vertical-align: top;
  }
}
.action-button:hover {
  color: #757575;
  border-color: #d4d4dd;
  background-color: #d4d4d4;
}
.action-button:active {
  color: #757575;
  background-color: #fff;
}
@media (max-height: 450px) and (orientation: landscape) { /*landscape*/
  .fp-viewing-1 #actions,
  .fp-viewing-2 #actions,
  .fp-viewing-3 #actions {
    bottom: 20px;
  }
}
#apple-download,
.action-button:hover {
  color: #757575;
  border-color: #d4d4dd;
  background-color: #d4d4d4;
}
.action-button:active {
  color: #757575;
  background-color: #fff;
}
/*rights*/
#static-rights {
  position: fixed;
  left: 0;
  bottom: 16px;
  bottom: 1rem;
  width: 100%;
  text-align: center;
}
#static-rights p {
  margin: 0;
  font-family: PingFangSC-Light, -apple-system, arial, 'Microsoft YaHei', '微软雅黑', sans-serif;
}
#static-rights .container {
  width: 100%;
}
@media (max-height: 600px) {
  #static-rights {
    bottom: 0;
  }
}
#static-rights p {
  opacity: 0.64;
  font-family: Helvetica, Arial, 'Microsoft YaHei', '微软雅黑', sans-serif;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
}
#static-rights p span {
  white-space: nowrap;
}
@media (max-width: 600px) and (max-height: 800px) {
  #static-rights {
    display: none;
  }
}
/*sections*/
.section {
  color: #fff;
}
.section .fp-tableCell {
  vertical-align: bottom;
}
#section-0 .fp-tableCell {
  vertical-align: middle;
}
.section h2 {
  padding: 0 10px;
  font-family: PingFangSC-Light, -apple-system, Arial, 'Microsoft YaHei', '微软雅黑', sans-serif;
  font-weight: normal;
  font-size: 40px;
  font-size: 2.5rem
}
.section p {
  margin-bottom: 220px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 20px;
  font-size: 1.25rem
}
.section p.note {
  font-size: 12px;
}
@media (max-height: 960px) {
  .section p {
    margin-bottom: 120px;
  }
}
@media (max-height: 800px) {
  .section p {
    margin-bottom: 110px;
  }
}
@media (max-width: 600px) {
  .section h2 {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  }
  .section h3 {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  }
  .section p {
    margin-top: 10px;
    margin-bottom: 110px;
    font-size: 16px;
    font-size: 1.4rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 359px) {
  .section h2 {
    font-size: 20px;
    font-size: 1.5rem;
  }
  .section p {
    font-size: 14px;
    font-size: 0.9rem;
  }
}
@media (max-height: 500px) { /*landscape*/
  .section h2 {
    margin-bottom: 0px;
    font-size: 20px;
    font-size: 1.5rem;
  }
  .section p {
    margin-top: 0px;
    margin-bottom: 80px;
    font-size: 14px;
    font-size: 0.9rem;
  }
}
@media (max-height: 450px) { /*landscape*/
  .section h2 {
    margin-bottom: 0px;
    font-size: 20px;
    font-size: 1.5rem;
  }
  .section p {
    margin-top: 0px;
    margin-bottom: 58px;
    font-size: 14px;
    font-size: 0.9rem;
  }
}
@media (max-width: 600px) and (max-height: 800px) {
  .section p {
    margin-bottom: 100px;
  }
}
/*section-0*/
#section-0 {
  color: #fff;
  text-align: center;
  transition: opacity 0.3s linear 0.1s;
  will-change: opacity;
}
.fp-viewing-1 #section-0,
.fp-viewing-2 #section-0,
.fp-viewing-3 #section-0,
.fp-viewing-4 #section-0 {
  opacity: 0;
  transition: opacity 0.3s linear 0.3s;
}
#section-0 h2 {
  margin-top: 50px;
  margin-left: 0;
  padding: 0;
  font-size: 44px;
  line-height: 78px;
}
#section-0 h3 {
  margin: 0 0 40px;
  font-size: 21px;
  line-height: 42px;
  font-weight: 100;
  font-family: PingFangSC-Light, -apple-system, Arial, 'Microsoft YaHei', '微软雅黑', sans-serif;
}
#section-0 p {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
#section-0 .section-0-actions {
  padding: 0;
  margin-bottom: 15px;
}
#section-0 .action-button svg,
#section-0 .action-button img {
  margin-top: 14px;
}
#section-0 .action-button {
  width: 280px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
}
#qrcode {
  vertical-align: top;
  margin-top: -6px;
  margin-bottom: -6px;
  margin-left: 24px;
}
#section-0 .note,
#section-0 .ios {
  width: 280px;
  text-align: center;
}
.ios a {
  color: #fff;
}
.ios a:hover {
  color: #00d854;
}
#section-0 .note {
  line-height: 1;
  margin-top: 10px;
}
#section-0 .right-half {
  width: 50%;
  float: right;
  text-align: left;
}
#section-0 .left-half {
  width: 50%;
  float: left;
  text-align: left;
  position: relative;
}
#section-0-primary-phone {
  position: absolute;
  width: 150px;
  height: 315px;
  right: 185px;
  top: 80px;
}
#section-0-secondary-phone {
  position: absolute;
  width: 128px;
  height: 268px;
  right: 90px;
  top: 40px;
}
#section-0-primary-phone .frame,
#section-0-primary-phone .glow {
  position: absolute;
  width: 150px;
  height: 305px;
  top: 0px;
  left: 0px;
}
#section-0-secondary-phone .frame,
#section-0-secondary-phone .glow {
  position: absolute;
  width: 128px;
  height: 259px;
  top: 0px;
  left: 0px;
}
#section-0-primary-phone .ok {
  position: absolute;
  width: 105px;
  height: 77px;
  top: 119px;
  left: 30px;
}
#section-0-primary-phone .pointer {
  position: absolute;
  width: 67px;
  height: 80px;
  top: 182px;
  left: 97px;
}
#section-0-secondary-phone .ok {
  position: absolute;
  width: 90px;
  height: 65px;
  top: 101px;
  left: 26px;
  opacity: 0.5;
}
#section-0-primary-phone .screen {
  position: absolute;
  width: 144px;
  height: 260px;
  top: 18px;
  left: 3px;
  background: #000;
}
#section-0-secondary-phone .screen {
  position: absolute;
  left: 3px; /*300+160/2*/
  top: 15px;
  width: 122px;
  height: 221px;
  background: #000;
}
#section-0-primary-phone .screen-1 {
  width: 218px;
  height: 370px;
}
#section-0-secondary-phone .screen-1 {
  width: 206px;
  height: 350px;
}
#section-0-primary-phone .shadow,
#section-0-secondary-phone .shadow {
  position: absolute;
  width: 214px;
  bottom: 0px;
  left: 0px;
}
@media (max-height: 800px) {
  #section-0-secondary-phone {
    top: 30px;
  }
  #section-0-primary-phone {
    top: 75px;
  }
}
@media (max-height: 700px) {
  #section-0 h2 {
    font-size: 36px;
  }
  #section-0 h3 {
    font-size: 20px;
  }
  #section-0 .action-button {
    width: 200px;
  }
  #section-0 .note,
  #section-0 .ios-g {
    width: 200px;
  }
  #section-0 .note {
    line-height: 1.5;
    width: 149px;
    padding-left: 25px;
    padding-right: 26px;
  }
  #section-0-primary-phone {
    position: absolute;
    width: 120px;
    height: 252px;
    top: 120px;
    right: 148px;
  }
  #section-0-secondary-phone {
    width: 102px;
    height: 214px;
    top: 85px;
    right: 72px;
  }
  #section-0-primary-phone .frame,
  #section-0-primary-phone .glow {
    width: 120px;
    height: 244px;
    top: 0px;
    left: 0px;
  }
  #section-0-secondary-phone .frame,
  #section-0-secondary-phone .glow {
    width: 102px;
    height: 207px;
    top: 0px;
    left: 0px;
  }
  #section-0-primary-phone .ok {
    width: 89px;
    height: 65px;
    top: 100px;
    left: 26px;
  }
  #section-0-primary-phone .pointer {
    width: 56px;
    height: 67px;
    top: 154px;
    left: 82px;
  }
  #section-0-secondary-phone .ok {
    width: 75px;
    height: 55px;
    top: 85px;
    left: 22px;
  }
  #section-0-primary-phone .screen {
    width: 115px;
    height: 208px;
    top: 14px;
    left: 2px;
  }
  #section-0-secondary-phone .screen {
    width: 98px;
    height: 177px;
    top: 12px;
    left: 2px;
  }
  #section-0 .left-half {
    width: 48%;
  }
  #section-0 .right-half {
    width: 52%;
  }
}
@media (max-width: 800px) {
  #section-0 h2 {
    font-size: 40px;
  }
  #section-0 h3 {
    font-size: 20px;
  }
  #section-0 .action-button {
    width: 200px;
  }
  #section-0 .note,
  #section-0 .ios {
    width: 200px;
  }
  #section-0 .note {
    line-height: 1.5;
    width: 149px;
    padding-left: 25px;
    padding-right: 26px;
  }
  #section-0-primary-phone {
    position: absolute;
    width: 135px;
    height: 284px;
    top: 65px;
    right: 167px;
  }
  #section-0-secondary-phone {
    width: 115px;
    height: 241px;
    top: 30px;
    right: 81px;
  }
  #section-0-primary-phone .frame,
  #section-0-primary-phone .glow {
    width: 135px;
    height: 275px;
    top: 0px;
    left: 0px;
  }
  #section-0-secondary-phone .frame,
  #section-0-secondary-phone .glow {
    width: 115px;
    height: 233px;
    top: 0px;
    left: 0px;
  }
  #section-0-primary-phone .ok {
    width: 100px;
    height: 73px;
    top: 113px;
    left: 29px;
  }
  #section-0-primary-phone .pointer {
    width: 63px;
    height: 76px;
    top: 173px;
    left: 92px;
  }
  #section-0-secondary-phone .ok {
    width: 85px;
    height: 62px;
    top: 96px;
    left: 24px;
  }
  #section-0-primary-phone .screen {
    width: 130px;
    height: 234px;
    top: 16px;
    left: 3px;
  }
  #section-0-secondary-phone .screen {
    width: 110px;
    height: 199px;
    top: 14px;
    left: 3px;
  }
  #section-0 .left-half {
    width: 48%;
  }
  #section-0 .right-half {
    width: 52%;
  }
}
@media (max-width: 600px) {
  #section-0 .action-button {
    width: 280px;
  }
  #section-0 .left-half {
    margin-top: 30px;
    height: 200px;
  }
  #section-0 .left-half,
  #section-0 .right-half {
    float: none;
    width: auto;
  }
  #section-0 p,
  #section-0 h2,
  #section-0 h3 {
    display: block;
    text-align: center;
    font-family: PingFangSC-Medium, -apple-system, arial, 'Microsoft YaHei', '微软雅黑', sans-serif;
    line-height: 1.8;
  }
  #section-0 h2 {
    margin-top: 55px;
    font-size: 26px;
  }
  #section-0 h3 {
    font-size: 14px;
  }
  #section-0 .section-0-actions {
    margin-top: 5px;
    margin-bottom: 35px;
    height: 40px;
    text-shadow: none;
  }
  #section-0 .note {
    width: auto;
    padding-right: 96px;
    text-align: center;
  }
  #section-0 .action-button {
    width: 192px;
    height: 48px;
    line-height: 48px;
    font-size: 20px;
  }
  #section-0 .action-button svg,
  #section-0 .action-button img {
    width: 24px;
    height: 24px;
    margin: 12px 8px 12px 0;
    vertical-align: top;
  }
  #section-0 .ios {
    display: none;
  }
  #section-0-secondary-phone {
    width: 107px;
    height: 225px;
    top: 0px;
    left: 50%;
    margin-left: -25px;
  }
  #section-0-primary-phone {
    width: 113px;
    height: 218px;
    left: 50%;
    top: 30px;
    margin-left: -75px;
  }
  #section-0-primary-phone .frame,
  #section-0-primary-phone .glow {
    width: 113px;
    height: 218px;
  }
  #section-0-secondary-phone .frame,
  #section-0-secondary-phone .glow {
    width: 107px;
    height: 205px;
  }
  #section-0-primary-phone .ok {
    width: 79px;
    height: 57px;
    top: 76px;
    left: 23px;
  }
  #section-0-primary-phone .pointer {
    width: 50px;
    height: 60px;
    top: 123px;
    left: 73px;
  }
  #section-0-secondary-phone .ok {
    width: 75px;
    height: 54px;
    top: 74px;
    left: 23px;
  }
  #section-0-primary-phone .screen {
    width: 109px;
    height: 185px;
    top: 12px;
    left: 2px;
  }
  #section-0-secondary-phone .screen {
    width: 103px;
    height: 175px;
    top: 12px;
    left: 2px;
  }
  #section-0-primary-phone .screen-1 {
    width: 109px;
    height: 185px;
  }
  #section-0-secondary-phone .screen-1 {
    width: 103px;
    height: 175px;
  }
  #section-0-primary-phone .shadow,
  #section-0-secondary-phone .shadow {
    width: 107px;
  }
}
@media (max-width: 600px) and (max-height: 600px) {
  #section-0 h2 {
    margin-top: 55px;
  }
  #section-0 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) and (max-height: 800px) {
  #qrcode {
    display: none;
  }
  #section-0 .note,
  #section-0 .ios {
    width: auto;
    padding-left: 0;
    padding-right: 0;
    line-height: 1;
  }
}
@media (max-width: 600px) and (max-height: 600px) {
  #section-0 .note,
  #section-0 .ios {
    margin: 0;
  }
}
/*section-1*/
#section-1 {
  opacity: 0;
  transition: opacity 0.15s linear;
  will-change: opacity;
}
.fp-viewing-1 #section-1 {
  opacity: 1;
  transition: opacity 0.3s linear 0.4s;
}
/*section-2*/
#section-2 {
  opacity: 0;
  transition: opacity 0.15s linear;
  will-change: opacity;
}
.fp-viewing-2 #section-2 {
  opacity: 1;
  transition: opacity 0.3s linear 0.4s;
}
/*section-3*/
#section-3 {
  opacity: 0;
  transition: opacity 0.15s linear;
  will-change: opacity;
}
.fp-viewing-3 #section-3 {
  opacity: 1;
  transition: opacity 0.3s linear 0.4s;
}
/*section-4*/
#section-4 {
  opacity: 0;
  transition: opacity 0.15s linear;
  will-change: opacity;
}
.fp-viewing-4 #section-4 {
  opacity: 1;
  transition: opacity 0.3s linear 0.4s;
}
/*figure*/
#figure {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  top: 100%;
  opacity: 0;
  transition: top 0.7s ease, opacity 0.15s linear;
  pointer-events: none;
}
@media (max-width: 600px)  {
  #figure {
    z-index: -1;
  }
}
.fp-viewing-1 #figure,
.fp-viewing-2 #figure,
.fp-viewing-3 #figure,
.fp-viewing-4 #figure {
  top: 0;
  opacity: 1;
  transition: top 0.7s ease, opacity 0.3s linear 0.4s;
}
#figure .figure {
  margin-top: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 600px;
}
#tool-thumb-img {
  position: absolute;
  top: 144px;
  left: 110px;
  width: 340px;
  height: 138px;
  -ms-transform: scale(0);
      transform: scale(0);
  opacity: 0;
  transition: opacity ease 0.3s, transform ease 0.3s;
}
.fp-viewing-3 .active-tool-thumb #tool-thumb-img {
  -ms-transform: scale(1);
      transform: scale(1);
  opacity: 1;
}
#primary-phone {
  position: absolute;
  width: 171px;
  height: 360px;
  margin-left: -85px;
  left: 235px; /*300-130/2*/
  transition: left 0.7s;
  will-change: left;
}
.fp-viewing-2 #primary-phone {
  transition: left 0.7s;
  left: 125px; /*300-370/2*/
}
#primary-phone .frame,
#primary-phone .glow {
  position: absolute;
  width: 171px;
  height: 328px;
  top: 0px;
  left: 0px;
}
#primary-phone .pointer {
  position: absolute;
  width: 86px;
  height: 132px;
  top: 208px;
  left: 0px;
  opacity: 0;
}
#primary-phone .pop {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 250px;
  left: -125px;
  opacity: 0;
  -ms-transform: scale(0);
      transform: scale(0);
  -ms-transform-origin: 80% 20%;
      transform-origin: 80% 20%;
}
.fp-viewing-2 #primary-phone .pointer,
.fp-viewing-2 #primary-phone .pop {
  opacity: 1;
  -ms-transform: scale(1);
      transform: scale(1);
  transition: opacity 0.2s ease 0.7s, transform 0.2s ease 0.7s;
}
.fp-viewing-2 #primary-phone .pointer {
  opacity: 1;
  transition: opacity 1s ease 0.7s;
}
#primary-phone .tool-paint-img {
  position: absolute;
  width: 90px;
  height: 136px;
  top: 166px;
  left: 64px;
  opacity: 0;
  transition: opacity ease 1s;
}
.fp-viewing-3 .active-tool-paint #primary-phone .tool-paint-img {
  opacity: 1;
}
#primary-phone .tool-pointer-img {
  position: absolute;
  width: 66px;
  height: 86px;
  top: 215px;
  left: 81px;
  opacity: 0;
  transition: opacity ease 1s;
}
.fp-viewing-3 .active-tool-pointer #primary-phone .tool-pointer-img {
  opacity: 1;
}
#primary-phone .screen {
  position: absolute;
  width: 165px;
  height: 280px;
  top: 19px;
  left: 3px;
}
#primary-phone .screen-1,
#primary-phone .screen-2,
#primary-phone .screen-4,
#primary-phone .screen-4-draw {
  position: absolute;
  top: 0;
  left: 0;
  width: 165px;
  height: 280px;
}
#primary-phone .screen-2,
#primary-phone .screen-4,
#primary-phone .screen-4-draw {
  opacity: 0;
  transition: 1s ease opacity;
}
.fp-viewing-2 #primary-phone .screen-2,
.fp-viewing-3 #primary-phone .screen-2,
.fp-viewing-4 #primary-phone .screen-4,
.fp-viewing-4 #primary-phone .screen-4-draw.active {
  opacity: 1;
}
#primary-phone .shadow {
  position: absolute;
  width: 171px;
  bottom: 0px;
  left: 0px;
}
#secondary-phone {
  position: absolute;
  margin-left: -72px;
  left: 380px; /*300+160/2*/
  top: 35px;
  width: 145px;
  height: 306px;
  transition: left 0.7s;
  will-change: left;
}
.fp-viewing-2 #secondary-phone {
  transition: left 0.7s;
  left: 485px; /*300+370/2*/
}
#secondary-phone .frame,
#secondary-phone .glow {
  position: absolute;
  width: 145px;
  height: 279px;
  top: 0px;
  left: 0px;
}
#secondary-phone .pointer {
  position: absolute;
  width: 74px;
  height: 113px;
  top: 170px;
  left: -11px;
  opacity: 0;
}
#secondary-phone .pop {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -93px;
  left: 114px;
  opacity: 0;
  -ms-transform: scale(0);
      transform: scale(0);
  -ms-transform-origin: 20% 80%;
      transform-origin: 20% 80%;
}
.fp-viewing-2 #secondary-phone .pointer {
  opacity: 1;
  transition: opacity 1s ease 2s;
}
.fp-viewing-2 #secondary-phone .pop {
  opacity: 1;
  -ms-transform: scale(1);
      transform: scale(1);
  transition: opacity 0.2s ease 2s, transform 0.2s ease 2s;
}
#secondary-phone .tool-paint-img {
  position: absolute;
  width: 77px;
  height: 117px;
  top: 124px;
  left: 64px;
  opacity: 0;
  transition: opacity ease 1s;
}
.fp-viewing-3 .active-tool-paint #secondary-phone .tool-paint-img {
  opacity: 1;
}
#secondary-phone .tool-pointer-img {
  position: absolute;
  width: 57px;
  height: 74px;
  top: 173px;
  left: 69px;
  opacity: 0;
  transition: opacity ease 1s;
}
.fp-viewing-3 .active-tool-pointer #secondary-phone .tool-pointer-img {
  opacity: 1;
}
#secondary-phone .screen {
  position: absolute;
  width: 140px;
  height: 238px;
  top: 16px;
  left: 3px;
}
#secondary-phone .screen-1,
#secondary-phone .screen-2,
#secondary-phone .screen-4,
#secondary-phone .screen-4-draw {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 238px;
}
#secondary-phone .screen-2,
#secondary-phone .screen-4,
#secondary-phone .screen-4-draw {
  opacity: 0;
  transition: 1s ease opacity;
}
.fp-viewing-2 #secondary-phone .screen-2,
.fp-viewing-3 #secondary-phone .screen-2,
.fp-viewing-4 #secondary-phone .screen-4,
.fp-viewing-4 #secondary-phone .screen-4-draw.active {
  opacity: 1;
}
#secondary-phone .shadow {
  position: absolute;
  width: 183px;
  bottom: 0px;
  left: 0px;
}
@media (max-height: 850px) {
  #figure .figure {
    margin-top: 230px;
  }
}
@media (max-height: 750px) {
  #figure .figure {
    margin-top: 230px;
  }
}
@media (max-height: 550px) and (orientation: landscape) { /*landscape*/
  #figure .figure {
    margin-top: 80px;
  }
}
@media (max-width: 600px), (max-height: 750px) {
  #figure .figure {
    margin-top: 250px;
  }
  #figure .figure {
    width: 300px;
  }
  #tool-thumb-img {
    top: 75px;
    left: 43px;
    width: 177px;
    height: 73px;
  }
  #primary-phone {
    width: 107px;
    height: 225px;
    margin-left: -53px;
    left: 117px;
  }
  .fp-viewing-2 #primary-phone {
    left: 117px;
  }
  /* .fp-viewing-2 #primary-phone { */
    /* left: 62px; */
  /* } */
  #primary-phone .frame,
  #primary-phone .glow {
    width: 107px;
    height: 205px;
  }
  #primary-phone .pointer {
    width: 44px;
    height: 67px;
    top: 104px;
    left: 0px;
  }
  #primary-phone .pop {
    width: 86px;
    height: 86px;
    top: 152px;
    left: -68px;
  }
  #primary-phone .tool-paint-img {
    width: 47px;
    height: 71px;
    top: 85px;
    left: 34px;
  }
  #primary-phone .tool-pointer-img {
    width: 35px;
    height: 45px;
    top: 115px;
    left: 40px;
  }
  #primary-phone .screen {
    width: 103px;
    height: 175px;
    top: 12px;
    left: 2px;
  }
  #primary-phone .screen-1,
  #primary-phone .screen-2,
  #primary-phone .screen-4,
  #primary-phone .screen-4-draw {
    width: 103px;
    height: 175px;
  }
  #primary-phone .shadow {
    width: 103px;
  }
  #secondary-phone {
    width: 91px;
    height: 191px;
    margin-left: -45px;
    left: 190px;
    top: 17px;
  }
  .fp-viewing-2 #secondary-phone {
    left: 190px;
  }
  /* .fp-viewing-2 #secondary-phone { */
    /* left: 242px; */
  /* } */
  #secondary-phone .frame,
  #secondary-phone .glow {
    width: 91px;
    height: 175px;
  }
  #secondary-phone .pointer {
    width: 38px;
    height: 57px;
    top: 86px;
    left: -5px;
  }
  #secondary-phone .pop {
    width: 86px;
    height: 86px;
    top: -24px;
    left: 76px;
  }
  #secondary-phone .tool-paint-img {
    width: 40px;
    height: 62px;
    top: 65px;
    left: 33px;
  }
  #secondary-phone .tool-pointer-img {
    width: 30px;
    height: 39px;
    top: 94px;
    left: 34px;
  }
  #secondary-phone .screen {
    width: 88px;
    height: 150px;
    top: 10px;
    left: 1px;
  }
  #secondary-phone .screen-1,
  #secondary-phone .screen-2,
  #secondary-phone .screen-4,
  #secondary-phone .screen-4-draw {
    width: 88px;
    height: 150px;
  }
  #secondary-phone .shadow {
    width: 91px;
  }
}
@media (max-width: 600px) and (max-height: 800px) { /*Nexus 6P*/
  .fp-viewing-2 #primary-phone {
    left: 62px;
  }
  .fp-viewing-2 #secondary-phone {
    left: 242px;
  }
}
@media (max-width: 600px) and (max-height: 750px) { /*iPhone 6*/
  #primary-phone .pointer {
    top: 78px;
    left: 20px;
  }
  #secondary-phone .pointer {
    top: 61px;
    left: 14px;
  }
  .fp-viewing-2 #primary-phone {
    left: 117px;
  }
  .fp-viewing-2 #secondary-phone {
    left: 190px;
  }
}
#communication {
  position: absolute;
  left: 12px;
  top: 160px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s linear;
}
@media (max-height: 650px) {
  #figure .figure {
    margin-top: 140px;
  }
}
@media (max-width: 600px) {
  #figure .figure {
    margin-top: 80px;
  }
  #communication {
    top: 134px;
    left: 7px;
  }
}
@media (max-width: 600px) and (max-height: 800px) { /*iPhone 6 Plus, Nexus 6P*/
  #figure .figure {
    margin-top: 180px;
  }
}
@media (max-width: 600px) and (max-height: 750px) { /*iPhone 6*/
  #figure .figure {
    margin-top: 150px;
  }
}
@media (max-width: 600px) and (max-height: 650px) { /* Full HD*/
  #figure .figure {
    margin-top: 140px;
  }
}
@media (max-width: 400px) and (max-height: 500px) { /*iPhone 4*/
  #figure .figure {
    margin-top: 80px;
  }
}
/* @media (max-width: 600px) and (max-height: 600px) { */
/* #figure .figure { */
/* margin-top: 80px; */
/* } */
/* } */
/* @media (max-height: 800px) { */
/* #communication { */
/* top: 179px; */
/* } */
/* } */
@media (max-height: 450px) and (orientation: landscape) { /*landscape*/
  #figure .figure {
    margin-top: 60px;
  }
}
@media (max-height: 750px) {
  #communication {
    top: 94px;
  }
}
@media (max-width: 600px) and (min-height: 600px) {
  #communication {
    top: 94px;
  }
}
@media (max-height: 450px) and (orientation: landscape) { /*landscape*/
  #communication {
    top: 94px;
  }
}
@media (max-height: 359px) {
  #figure .figure {
    margin-top: 10px;
  }
  #communication {
    top: 64px;
  }
}
.fp-viewing-2 #communication {
  opacity: 1;
  transition: none;
}
#communication .message {
  display: inline-block;
  border: 0 solid #fff;
  border-radius: 50%;
  transition: padding 0.4s, width 0.4s, height 0.4s, border-color 0.4s, opacity 0.4s, margin 0.4s;
  will-change: padding, width, height, border-color, opacity, margin;
  margin-left: 5px;
  margin-right: 5px;
}
#communication .message i {
  display: block;
  border: 0 solid #fff;
  border-radius: 50%;
  background-color: #119f4f;
  transition: background-color 0.4s, width 0.4s, height, 0.4s;
  will-change: background-color, width, height;
}
#communication .message.step-0 {
  width: 0;
  height: 0;
  opacity: 0;
}
#communication .message.step-0 i {
  width: 0;
  height: 0;
}
#communication .message.step-1 {
  width: 9px;
  height: 9px;
  margin-top: -5px;
  margin-bottom: -5px;
}
#communication .message.step-1 i {
  width: 7px;
  height: 7px;
  border-width: 1px;
}
#communication .message.step-1-e {
  opacity: 0;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  margin-bottom: -5px;
}
#communication .message.step-1-e i {
  width: 7px;
  height: 7px;
  border-width: 1px;
}
#communication .message.step-2 {
  width: 17px;
  height: 17px;
  margin-top: -9px;
  margin-bottom: -9px;
}
#communication .message.step-2 i {
  width: 15px;
  height: 15px;
  border-width: 1px;
  background-color: #1bc265;
}
#communication .message.step-2-e {
  opacity: 0;
  width: 17px;
  height: 17px;
  margin-top: -9px;
  margin-bottom: -9px;
}
#communication .message.step-2-e i {
  width: 15px;
  height: 15px;
  border-width: 1px;
  background-color: #1bc265;
}
#communication .message.step-3 {
  width: 25px;
  height: 25px;
  border-width: 1px;
  padding: 5px;
  margin-top: -18px;
  margin-bottom: -18px;
}
#communication .message.step-3 i {
  width: 23px;
  height: 23px;
  border-width: 1px;
  background-color: #1ee275;
}
#communication .message.step-3-e {
  opacity: 0;
  width: 25px;
  height: 25px;
  border-width: 1px;
  padding: 5px;
  margin-top: -18px;
  margin-bottom: -18px;
}
#communication .message.step-3-e i {
  width: 23px;
  height: 23px;
  border-width: 1px;
  background-color: #1ee275;
}
@media (max-width: 600px), (max-height: 600px) {
  #communication .message {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-height: 450px) and (orientation: landscape) { /*landscape*/
  #communication .message {
    margin-left: 0;
    margin-right: 0;
  }
}
/*tools*/
#tools {
  position: absolute;
  top: 100%;
  width: 100%;
  color: #fff;
  visibility: hidden;
  opacity: visibility 0.7s step-end;
}
.fp-viewing-3 #tools {
  top: 0;
  visibility: visible;
  opacity: visibility 0.7s step-start;
}
#tools-1 {
  opacity: 0;
  will-change: opacity;
  position: absolute;
  left: -45px;
  top: 0;
  width: 160px;
  height: 400px;
  transition: opacity 0.3s;
}
#tools-2 {
  opacity: 0;
  will-change: opacity;
  position: absolute;
  right: -45px;
  top: 0;
  width: 160px;
  height: 400px;
  transition: opacity 0.3s;
}
.fp-viewing-3 #tools-1,
.fp-viewing-3 #tools-2  {
  opacity: 1;
  transition: opacity 0.3s ease 0.4s;
}
#tools svg path {
  fill: #fff;
}
#tools svg polygon {
  fill: #fff;
}
.tool h3 {
  margin-top: 17px;
  margin-bottom: 17px;
  font-size: 24px;
  font-family: PingFangSC-Light, -apple-system, Arial, 'Microsoft YaHei', '微软雅黑', sans-serif;
  font-weight: 200;
}
.tool p {
  margin-top: 17px;
  text-align: left;
  font-size: 15px;
  font-family: PingFangSC-Light, -apple-system, Arial, 'Microsoft YaHei', '微软雅黑', sans-serif;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s step-start;
}
.tool-paint {
  margin-top: 120px;
  pointer-events: auto;
}
.tool-thumb {
  margin-top: 0px;
  pointer-events: auto;
}
.tool-pointer {
  margin-top: 60px;
  pointer-events: auto;
}
.tool {
  transition: transform 0.3s, opacity 0.3s;
  will-change: transform, opacity;
}
.tool.inactive {
  cursor: pointer;
  opacity: 0.5;
  -ms-transform: scale(0.75);
      transform: scale(0.75);
}
.tool.inactive p {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s step-end;
}
@media (max-height: 960px) {
  #tools-1 {
    left: -70px;
    width: 120px;
  }

  #tools-2 {
    right: -70px;
    width: 120px;
  }
  .tool {
    width: 120px;
  }

  .tool svg {
    width: 45px;
    height: 45px;
  }
  .tool h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .tool p {
    margin-top: 10px;
    font-size: 12px;
  }
  .tool-paint {
    margin-top: 40px;
  }
  .tool-thumb {
    margin-top: 0px;
  }
  .tool-pointer {
    margin-top: 20px;
  }
  #tools-1 {
    left: -80px;
  }

  #tools-2 {
    right: -80px;
  }

}
@media (max-width: 600px) {
  #tools-1 {
    left: -25px;
    width: 85px;
  }

  #tools-2 {
    right: -25px;
    width: 85px;
  }
  .tool {
    width: 85px;
  }

  .tool svg {
    width: 30px;
    height: 30px;
  }
  .tool h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
  }

  .tool p {
    margin-top: 5px;
    font-size: 12px;
  }
  .tool-paint {
    margin-top: 30px;
  }
  .tool-thumb {
    margin-top: 0px;
  }
  .tool-pointer {
    margin-top: 20px;
  }
}
@media (max-height: 450px) and (orientation: landscape) { /*landscape*/
  #tools-1 {
    left: -70px;
    width: 120px;
  }

  #tools-2 {
    right: -70px;
    width: 120px;
  }
  .tool {
    width: 120px;
  }

  .tool svg {
    width: 45px;
    height: 45px;
  }
  .tool h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .tool p {
    margin-top: 10px;
    font-size: 12px;
  }
  .tool-paint {
    margin-top: 40px;
  }
  .tool-thumb {
    margin-top: -20px;
  }
  .tool-pointer {
    margin-top: -45px;
  }
}

