body {
  margin: 0;
  background: white;
}
section {
  overflow: hidden;
}
img {
  display: block;
  -webkit-user-drag: none;
}
.safeArea {
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: white;
  z-index: 1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.2);
}
.header .row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .subject {
  display: flex;
  align-items: center;
}
.header .logo {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
.header .name {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
}
.header .version {
  font-size: 14px;
  font-weight: 400;
  color: #047AEF;
}
.animateWrap .animateItem {
  transition-duration: 700ms;
  transition-delay: var(--transitionDelay, 0ms);
}
.animateWrap:not(.show) .animateItem {
  opacity: 0;
  transform: translateY(100px);
  transition-duration: 200ms;
  transition-delay: 0ms;
}
.firstSection {
  background: no-repeat center / cover;
  position: relative;
}
.firstSection .blue {
  position: absolute;
  top: 0;
  left: calc(50% + 100px);
  transform: translateX(-50%);
}
.firstSection .ql {
  position: absolute;
  top: 511px;
  left: calc(50% - 480px);
}
.firstSection .qr {
  position: absolute;
  top: 289px;
  left: calc(50% + 350px);
}
.firstSection .content {
  position: relative;
  padding-top: 163px;
}
.firstSection .title {
  font-size: 60px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
}
.firstSection .description {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  max-width: 741px;
  margin: 12px auto 0;
  text-align: center;
}
.firstSection .downloadLinks {
  display: flex;
  align-items: center;
  margin: 65px 0 61px;
  justify-content: center;
}
.firstSection .linkItem {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #FFFFFF;
  color: white;
  font-size: 20px;
  margin: 0 18px;
  text-decoration: none;
  padding: 0 17px;
}
.firstSection .linkItem .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.firstSection .linkItem:hover {
  background: rgba(255, 255, 255, 0.2);
}
.firstSection .phones {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  transform: translateY(1px);
}
.contSection .contRow {
  display: flex;
  align-items: center;
  height: 900px;
  position: relative;
}
.contSection .contRow .cont {
  width: 50%;
  box-sizing: border-box;
}
.contSection .contRow .pic {
  width: 50%;
}
.contSection .contRow .contTitle {
  font-size: 42px;
  font-weight: 500;
  color: #333333;
  line-height: 59 / 42;
}
.contSection .contRow .ul {
  padding-left: 0;
  margin-top: 72px;
}
.contSection .contRow .li {
  position: relative;
  padding-left: 28px;
  list-style-type: none;
}
.contSection .contRow .li::marker {
  list-style: none;
}
.contSection .contRow .li::before {
  position: absolute;
  content: '';
  top: 12px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../images/iocn_li.png") no-repeat center / contain;
}
.contSection .contRow .li + .li {
  margin-top: 60px;
}
.contSection .contRow .itemTitle {
  font-size: 28px;
  font-weight: 500;
  color: #333333;
}
.contSection .contRow .itemDesc {
  font-size: 16px;
  color: #687395;
  margin-top: 18px;
}
.contSection:nth-child(2n) .contRow {
  flex-direction: row-reverse;
}
.contSection.section3 {
  background: #EAF3FE;
}
.section2 {
  position: relative;
}
.section2 .ql {
  position: absolute;
  top: 0;
  left: 0;
}
.section2 .qr {
  position: absolute;
  top: 61px;
  right: 0;
}
.section3 {
  position: relative;
}
.section3 .qr {
  position: absolute;
  bottom: 0;
  right: 0;
}
.section4 {
  position: relative;
}
.section4 .ql {
  position: absolute;
  top: 100px;
  left: -102px;
}
.footer {
  background: #EAF3FE;
  padding: 30px;
  font-size: 14px;
  color: #999999;
  line-height: 20px;
  text-align: center;
}
@media screen and (min-width: 921px) {
  .contSection:nth-child(2n) .contRow .cont {
    padding-left: 12px;
  }
  .contSection:nth-child(2n - 1) .contRow .cont {
    padding-right: 12px;
  }
}
@media screen and (max-width: 920px) {
  .header {
    height: 60px;
  }
  .header .name {
    font-size: 16px;
  }
  .header .logo {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  .safeArea {
    padding: 0 20px;
  }
  .firstSection .content {
    padding-top: 90px;
  }
  .firstSection .blue {
    top: 60px;
    width: 140%;
    max-width: 600px;
    left: calc(50% + 74px);
  }
  .firstSection .title {
    font-size: 28px;
  }
  .firstSection .description {
    font-size: 14px;
    width: 90%;
    max-width: 400px;
  }
  .firstSection .downloadLinks {
    flex-direction: column;
    margin: 25px;
  }
  .firstSection .linkItem {
    font-size: 14px;
    padding: 0 10px;
    height: 30px;
    width: 120px;
    margin: 4px;
    line-height: 14px;
  }
  .firstSection .linkItem .icon {
    width: 14px;
    height: 14px;
  }
  .firstSection .ql {
    top: 280px;
    width: 80px;
    left: calc(50% - 210px);
  }
  .firstSection .qr {
    top: 180px;
    width: 120px;
    left: calc(50% + 150px);
  }
  .contSection .contRow {
    padding: 40px 20px;
    display: block;
    height: auto;
  }
  .contSection .contRow .cont {
    width: auto;
  }
  .contSection .contRow .pic {
    width: 100%;
    margin-top: 40px;
  }
  .contSection .contRow .contTitle {
    font-size: 22px;
  }
  .contSection .contRow .itemTitle {
    font-size: 18px;
  }
  .contSection .contRow .itemDesc {
    font-size: 14px;
    margin-top: 8px;
  }
  .contSection .contRow .ul {
    margin-top: 35px;
  }
  .contSection .contRow .li {
    padding-left: 22px;
  }
  .contSection .contRow .li::before {
    top: 8px;
    width: 10px;
    height: 10px;
  }
  .contSection .contRow .li + .li {
    margin-top: 25px;
  }
  .section2 .ql {
    width: 140px;
  }
  .section2 .qr {
    width: 80px;
  }
  .section3 .qr {
    width: 90px;
  }
  .section4 .ql {
    top: 10px;
    left: -20px;
    width: 80px;
  }
  .footer {
    padding: 10px;
  }
}
/*# sourceMappingURL=index.css.map */