* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

html, body {
  height: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  height: 54px;
  line-height: 54px;
  box-shadow: 0 1px 0 0 rgb(210, 210, 210);
}

.logoWrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.logoWrapper img {
  display: block;
  height: 40px;
  width: 40px;
}
.logoWrapper h1 {
  margin-left: 12px;
  font-family: PingFangSC-Semibold;
  font-size: 22px;
  font-weight: 600;
  line-height: 54px;
}
.logoWrapper .dropdown {
  display: none;
  position: absolute;
  top: 54px;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  min-width: 180px;
  z-index: 100;
}
.logoWrapper .dropdown a {
  display: block;
  padding: 10px 30px;
  line-height: 1.5;
  color: #333;
  text-decoration: none;
  font-size: 16px;
}
.logoWrapper .dropdown a:hover {
  color: #1677ff;
  background-color: #f5f5f5;
}
.logoWrapper:hover .dropdown {
  display: block;
}

.rightAction {
  display: flex;
  align-items: center;
  gap: 66px;
}
.rightAction .langSwitcher {
  cursor: pointer;
  font-size: 16px;
  color: #333;
}
.rightAction .langSwitcher:hover {
  color: #1677ff;
}

.pageWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}
.pageWrapper .title {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #0279c0;
}
.pageWrapper .title h2 {
  margin: clamp(2.125rem, 85 / 1080 * 100vh, 5.3125rem) auto;
  height: 70px;
  line-height: 70px;
  font-size: clamp(1.5625rem, 50 / 1920 * 100vw, 3.125rem);
  color: white;
}
.pageWrapper .content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #deebff;
}
.pageWrapper .content h2 {
  margin: clamp(1.95rem, 78 / 1080 * 100vh, 4.875rem) auto 0;
  height: 49px;
  line-height: 49px;
  font-family: PingFangSC-Semibold;
  font-size: clamp(1.09375rem, 35 / 1920 * 100vw, 2.1875rem);
  font-weight: 600;
  font-style: semibold;
}
.pageWrapper .content p {
  margin: clamp(1rem, 40 / 1080 * 100vh, 2.5rem) auto 0;
  padding: 0 clamp(10rem, 400 / 1920 * 100vw, 25rem);
  line-height: clamp(1.05rem, 42 / 1080 * 100vh, 2.625rem);
  font-family: PingFangSC-Regular;
  font-size: clamp(0.9375rem, 30 / 1920 * 100vw, 1.875rem);
  font-weight: 400;
  letter-spacing: 0.43px;
  text-align: center;
}
.pageWrapper .content .downloadButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: clamp(1.05rem, 42 / 1080 * 100vh, 2.625rem);
  margin-bottom: clamp(2.025rem, 81 / 1080 * 100vh, 5.0625rem);
}
.pageWrapper .content .downloadButtons .downloadBtn {
  display: inline-block;
  line-height: 64px;
  cursor: pointer;
}
.pageWrapper .content .downloadButtons .downloadBtn a {
  line-height: 100%;
}
.pageWrapper .content .downloadButtons .downloadBtn img {
  display: block;
  width: clamp(6.15625rem, 197 / 1920 * 100vw, 12.3125rem);
}
.pageWrapper .contact {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  margin-bottom: clamp(2.25rem, 90 / 1080 * 100vh, 5.625rem);
}
.pageWrapper .contact h2 {
  margin-top: clamp(2.825rem, 113 / 1080 * 100vh, 7.0625rem);
  line-height: clamp(1.225rem, 49 / 1080 * 100vh, 3.0625rem);
  font-family: PingFangSC-Semibold;
  font-size: clamp(1.09375rem, 35 / 1920 * 100vw, 2.1875rem);
  font-weight: 600;
  font-style: semibold;
}
.pageWrapper .contact p {
  line-height: clamp(1.05rem, 42 / 1080 * 100vh, 2.625rem);
  margin-top: clamp(0.95rem, 38 / 1080 * 100vh, 2.375rem);
  font-size: clamp(0.9375rem, 30 / 1920 * 100vw, 1.875rem);
  font-weight: 400;
}
.pageWrapper .beian {
  flex-shrink: 0;
  display: block;
  margin-bottom: clamp(0.75rem, 30 / 1080 * 100vh, 1.875rem);
  font-size: clamp(0.75rem, 14 / 1920 * 100vw, 0.875rem);
  font-weight: 400;
  color: #999;
  text-align: center;
}
.pageWrapper .beian:hover {
  color: #666;
}

@media screen and (max-width: 375px) {
  .header {
    height: 44px;
  }
  .logoWrapper img {
    width: 35px;
    height: 35px;
  }
  .logoWrapper h1 {
    font-size: 28px;
  }
  .pageWrapper .title h2 {
    margin: 30px auto;
    font-size: 20px;
  }
  .pageWrapper .content h2 {
    margin: 55px auto 0;
    height: 25px;
    font-size: 18px;
  }
  .pageWrapper .content p {
    margin: 30px auto 0;
    max-width: auto;
    padding: 0 45px;
    font-size: 16px;
  }
  .pageWrapper .content .downloadButtons {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .pageWrapper .content .downloadButtons .downloadBtn {
    line-height: 40px;
  }
  .pageWrapper .content .downloadButtons .downloadBtn img {
    width: 99px;
  }
  .pageWrapper .beian {
    height: 17px;
    font-size: 12px;
  }
  .pageWrapper .contact {
    margin-bottom: 63px;
  }
  .pageWrapper .contact h2 {
    margin-top: 70px;
    line-height: 25px;
    height: 25px;
    font-size: 18px;
  }
  .pageWrapper .contact p {
    height: 22px;
    line-height: 22px;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) and (min-width: 376px) {
  .pageWrapper .title h2 {
    font-size: clamp(1.625rem, 65 / 1920 * 100vw, 4.0625rem);
  }
  .pageWrapper .content h2, .pageWrapper .contact h2 {
    font-size: clamp(1.2rem, 48 / 1920 * 100vw, 3rem);
  }
  .pageWrapper .content p {
    font-size: clamp(1.05rem, 42 / 1920 * 100vw, 2.625rem);
    padding: 0 clamp(4rem, 160 / 1920 * 100vw, 10rem);
  }
  .pageWrapper .contact p {
    font-size: clamp(1.05rem, 42 / 1920 * 100vw, 2.625rem);
  }
  .pageWrapper .downloadButtons img {
    width: clamp(6.75rem, 270 / 1920 * 100vw, 16.875rem);
  }
}
@media screen and (max-width: 768px) and (min-width: 601px) {
  .pageWrapper .title h2 {
    font-size: clamp(1.925rem, 77 / 1920 * 100vw, 4.8125rem);
  }
  .pageWrapper .content h2, .pageWrapper .contact h2 {
    font-size: clamp(1.45rem, 58 / 1920 * 100vw, 3.625rem);
  }
  .pageWrapper .content p {
    font-size: clamp(1.25rem, 50 / 1920 * 100vw, 3.125rem);
    padding: 0 clamp(4.5rem, 180 / 1920 * 100vw, 11.25rem);
  }
  .pageWrapper .contact p {
    font-size: clamp(1.25rem, 50 / 1920 * 100vw, 3.125rem);
  }
  .pageWrapper .downloadButtons img {
    width: clamp(8.125rem, 325 / 1920 * 100vw, 20.3125rem);
  }
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .pageWrapper .title h2 {
    font-size: clamp(2.21875rem, 71 / 1920 * 100vw, 4.4375rem);
  }
  .pageWrapper .content h2, .pageWrapper .contact h2 {
    font-size: clamp(1.65625rem, 53 / 1920 * 100vw, 3.3125rem);
  }
  .pageWrapper .content p {
    font-size: clamp(1.40625rem, 45 / 1920 * 100vw, 2.8125rem);
    padding: 0 clamp(7rem, 280 / 1920 * 100vw, 17.5rem);
  }
  .pageWrapper .contact p {
    font-size: clamp(1.40625rem, 45 / 1920 * 100vw, 2.8125rem);
  }
  .pageWrapper .downloadButtons img {
    width: clamp(9.09375rem, 291 / 1920 * 100vw, 18.1875rem);
  }
}
@media screen and (max-width: 1280px) and (min-width: 1025px) {
  .pageWrapper .title h2 {
    font-size: clamp(1.9375rem, 62 / 1920 * 100vw, 3.875rem);
  }
  .pageWrapper .content h2, .pageWrapper .contact h2 {
    font-size: clamp(1.4375rem, 46 / 1920 * 100vw, 2.875rem);
  }
  .pageWrapper .content p {
    font-size: clamp(1.25rem, 40 / 1920 * 100vw, 2.5rem);
    padding: 0 clamp(8.75rem, 350 / 1920 * 100vw, 21.875rem);
  }
  .pageWrapper .contact p {
    font-size: clamp(1.25rem, 40 / 1920 * 100vw, 2.5rem);
  }
  .pageWrapper .downloadButtons img {
    width: clamp(7.96875rem, 255 / 1920 * 100vw, 15.9375rem);
  }
}/*# sourceMappingURL=styles.css.map */