* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

.page {
  padding-top: 70px;
  --color: #2752f1;
}
.page .header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 99;
  background: #fff;
}
.page .header .header-inner {
  width: 1200px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page .header .header-inner .logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}
.page .header .header-inner .logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.page .header .header-inner .logo .site-logo {
  display: block;
  width: auto;
  height: 40px;
}
.page .header .header-inner .download-btn {
  width: 115px;
  height: 35px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid var(--color);
  background-color: var(--color);
  border-radius: 5px;
  font-size: 14px;
}
.page .header .header-inner .download-btn img {
  width: 20px;
  margin-right: 5px;
}
.page .banner {
  width: 100%;
  height: 600px;
  background-image: linear-gradient(360deg, #E8FCFF 0%, #B3D9FF 100%);
  padding-top: 80px;
}
.page .banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}
.page .banner .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page .banner .left .tag {
  background-color: #ff9325;
  color: #fff;
  padding: 7px 15px;
  border-radius: 50px;
  margin-bottom: 15px;
}
.page .banner .left .name {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
  color: #000;
}
.page .banner .left .slogan {
  font-size: 26px;
  color: rgba(11, 11, 11, 0.7);
  font-weight: bold;
  margin-bottom: 16px;
}
.page .banner .left .features {
  display: flex;
  flex-wrap: wrap;
}
.page .banner .left .features li {
  list-style: none;
  width: 40%;
  margin-bottom: 16px;
  font-size: 18px;
  color: #444;
  display: flex;
  align-items: center;
}
.page .banner .left .features li img {
  width: 24px;
  margin-right: 10px;
}
.page .banner .left .download-btn {
  position: relative;
  background-color: var(--color);
  font-size: 24px;
  background-image: linear-gradient(to right, #6688f5, #2752f1);
  padding: 20px 50px;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 20px;
  transition: all 0.2s linear;
}
.page .banner .left .download-btn:hover {
  background: #2752f1;
  transform: translateY(-10px);
}
.page .banner .left .download-btn svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.page .banner .left .sys {
  color: rgba(69, 84, 108, 0.7294117647);
  font-size: 15px;
  font-weight: 400;
}
.page .banner .right img {
  display: block;
  height: 500px;
}
.page .section {
  width: 100%;
}
.page .section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
}
.page .section .section-content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 100px 0;
  gap: 100px;
}
.page .section .section-content .left {
  flex: 1;
}
.page .section .section-content .left .sub-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 30px;
}
.page .section .section-content .left .sub-title .theme {
  color: var(--color);
}
.page .section .section-content .left li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 18px;
  color: #5d6776;
  display: flex;
  align-items: center;
}
.page .section .section-content .left li img {
  width: 24px;
  margin-right: 10px;
}
.page .section .section-content .left .download-btn {
  width: 220px;
  height: 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid var(--color);
  background-color: var(--color);
  border-radius: 5px;
  font-size: 20px;
  margin-top: 50px;
  transition: all 0.3s linear;
}
.page .section .section-content .left .download-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-10px);
}
.page .section .section-content .left .download-btn img {
  width: 30px;
  margin-right: 5px;
}
.page .section .section-content .right img {
  display: block;
  height: 430px;
}
.page .section .section-content .right video {
  width: 600px;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}
.page .section:nth-child(2n) {
  background-color: #f5faff;
}
.page .section:nth-child(2n) .section-content {
  flex-direction: row-reverse;
}
.page .pj {
  width: 100%;
}
.page .pj h1 {
  font-size: 42px;
  line-height: 1;
}
.page .pj h2 {
  font-size: 32px;
}
.page .pj .btn-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background-color: #e7fafe;
  padding: 50px 0;
}
.page .pj .download-btn {
  width: 280px;
  height: 70px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid var(--color);
  background-color: var(--color);
  border-radius: 5px;
  font-size: 20px;
  transition: all 0.3s linear;
  margin-top: 40px;
  position: relative;
}
.page .pj .download-btn .spread-box, .page .pj .download-btn .spread-inner {
  position: absolute;
  min-height: 0.47rem;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  animation-name: spread;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  border-radius: 0.78rem;
  background: #2752f1;
  transform-origin: center;
  z-index: 1;
}
.page .pj .download-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-10px);
}
.page .pj .download-btn img {
  width: 30px;
  margin-right: 5px;
}

@keyframes spread {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  40% {
    opacity: 0.2;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: scale(1.15, 1.7);
    opacity: 0;
  }
}
.footer-wrapper {
  text-align: center;
  color: #333;
  padding: 10px;
  font-size: 14px;
}
.footer-wrapper * {
  color: inherit;
}

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