/* 移动端样式文件 - 已融合所有移动端适配样式 */
body,
* {
  margin: 0;
  padding: 0;
  /* 禁止文字复制 */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-size: 8px;
  /* 移动端基础字体大小 */
}
#app {
  background-image: url("https://dkwj.oss-cn-hangzhou.aliyuncs.com/website-static/images/bg.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100vh;
}
#app .header {
  width: 100%;
  height: 14rem;
  /* 移动端头部高度 */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.47) 0%, rgba(255, 255, 255, 0.57) 100%);
  backdrop-filter: blur(50px);
  position: absolute;
  left: 0;
  top: 0;
}
#app .header .header-logo {
  width: 40rem;
  /* 移动端logo大小 */
  height: 6.67rem;
  /* 移动端logo大小 */
  position: relative;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
#app .title1 {
  width: 90%;
  /* 宽度适应屏幕 */
  height: auto;
  /* 高度自动 */
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 17rem;
  /* 移动端间距 */
}
#app .btns {
  display: flex;
  flex-direction: column;
  /* 按钮垂直排列 */
  align-items: center;
  justify-content: center;
  gap: 3rem;
  /* 移动端间距 */
  position: relative;
  margin-top: 20rem;
  /* 移动端间距 */
}
#app .btns .btn {
  width: 85%;
  /* 宽度适应屏幕 */
  height: 20rem;
  /* 移动端按钮高度 */
  text-align: center;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 5rem;
  /* 移动端按钮文字大小 */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #2754fd;
  box-shadow: 0 0 2.5rem 0 rgba(39, 84, 253, 0.5);
  border-radius: 10rem;
}
#app .btns .btn .btn-icon {
  width: 7rem;
  /* 移动端图标大小 */
  height: 7rem;
  /* 移动端图标大小 */
  margin-right: 2rem;
  /* 移动端间距 */
}
#app .btns .btn .btn-icon img {
  width: 100%;
  height: 100%;
}
#app .btns .btn .btn-text,
#app .btns .btn .btn-icon {
  position: relative;
  z-index: 2;
  font-size: 5rem;
}
#app .btns .btn:active:not([disabled]) {
  transform: translateY(0.3333rem);
}
#app .text-desc {
  width: 90%;
  /* 宽度适应屏幕 */
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  color: #333333;
  text-align: center;
  margin: 12rem auto 0;
  /* 移动端间距 */
}
#app .text-desc p {
  margin: 4rem 0;
  line-height: 8rem;
  /* 移动端行高 */
  font-size: 6rem;
  /* 移动端文字大小 */
}
#app .title2 {
  width: 90%;
  /* 宽度适应屏幕 */
  height: auto;
  /* 高度自动 */
  margin-top: 20rem;
  /* 移动端间距 */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
#app .text-desc2 {
  width: 90%;
  /* 宽度适应屏幕 */
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  color: #333333;
  margin: 12rem auto 0;
  /* 移动端间距 */
  text-align: center;
}
#app .text-desc2 p {
  margin: 4rem 0;
  line-height: 8rem;
  /* 移动端行高 */
  font-size: 6rem;
  /* 移动端文字大小 */
}
#app .platform-qrcode {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  /* 移动端间距 */
  margin-top: 10rem;
  /* 移动端间距 */
}
#app .platform-qrcode .qrcode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#app .platform-qrcode .qrcode img {
  width: 40rem;
  /* 移动端二维码大小 */
  height: 40rem;
  /* 移动端二维码大小 */
}
#app .platform-qrcode .qrcode p {
  margin: 4rem 0;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 6rem;
  /* 移动端文字大小 */
  color: #333333;
  line-height: 8rem;
  /* 移动端行高 */
  letter-spacing: 0.1667rem;
}
#app .product-img {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  /* 宽度适应屏幕 */
  height: auto;
  /* 高度自动 */
  margin-top: 5rem;
  /* 移动端间距 */
  margin-bottom: 5rem;
  /* 移动端底部间距 */
}
#app .product-img img {
  width: 100%;
  height: 100%;
}
