/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
}

body {
  font-size: 0.16rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  min-height: 100vh;
  background: linear-gradient(
    340deg,
    #02feca 12%,
    #98ffe0 37%,
    rgb(154, 255, 205) 100%
  );
  color: #000;
}

nav {
  width: 100%;
  height: 0.81rem;
  background: #000000ff;
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
}

nav .logo-icon {
  width: 0.4rem;
  height: 0.4rem;
}
nav .logo-text {
  font-size: 0.22rem;
  color: #fff;
  margin: 0 0.08rem;
}

main {
  /* width: 9.55rem; */
  display: flex;
  margin: 0 auto;
  padding-top: 0.51rem;
  min-height: max-content;
  min-width: max-content;
  height: calc(100vh - 0.81rem - 0.56rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
main .main-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
}

main .phone-card {
  width: 3.3rem;
  height: 6.28rem;
  user-select: none;
  pointer-events: none;
  position: relative;
}
main .phone-card .icon-1 {
  width: 1.25rem;
  height: 1.19rem;
  position: absolute;
  top: 3.26rem;
  left: -0.33rem;
}
main .phone-card .icon-2 {
  position: absolute;
  right: -0.31rem;
  top: 1.15rem;
  width: 1.15rem;
  heeight: 1.15rem;
}
main .info-card .page-text {
  font-size: 0.48rem;
  width: 5.51rem;
  height: 1.93rem;
  padding-top: 1.76rem;
  margin-bottom: 0.29rem;
  box-sizing: content-box;
}
main .info-card .download-channel {
  display: flex;
}
main .info-card .download-channel a {
  width: 1.86rem;
  height: 0.53rem;
  margin-right: 0.25rem;
}

/* Footer */
footer {
  right: 0;
  padding: 0 0 0.37rem;
  display: flex;
  justify-content: center;
  color: #000;
  font-weight: 500;
}

footer .footer-link,
footer .footer-link:visited {
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: center;
  font-size: 0.16rem;
  cursor: pointer;
  color: #000;
  line-height: 0.19rem;
  margin: 0 0.12rem;
}

.footer-link:hover {
  color: white;
}

footer .separator {
  width: 0.01rem;
  height: 0.19rem;
  background: #000;
}

/* 手机端展示 */
@media screen and (max-width: 768px) {
  html {
    font-size: 23.201vw;
  }
  nav {
    padding: 0 0.2rem;
  }

  main {
    align-items: flex-start;
    padding-top: 0.34rem;
  }
  main .main-content {
    flex-direction: column-reverse;
    justify-content: start;
    gap: 0.26rem;
  }
  main .phone-card {
    width: 2.76rem;
    margin: 0 auto;
    height: auto;
  }
  main .info-card .page-text {
    width: 3.65rem;
    padding-top: 0;
    font-size: 0.4rem;
    height: auto;
  }
  main .info-card .download-channel {
    justify-content: space-between;
  }
  main .info-card .download-channel a {
    width: 1.1rem;
    height: 0.3rem;
    margin: 0;
  }
}
/* 桌面端展示 */
@media screen and (min-width: 768px) {
  html {
    font-size: 100px;
  }
}
