<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.page {
  margin: 0 auto;
  width: 375px;
  min-height: 100vh;
  overflow: hidden;
  /* background: url('../images/bg.png'); */
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
}
.page .img-header {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
}
.page .title {
  text-align: center;  
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.page .content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 150px;
  width: 100%;
}
.page .img-bg1 {
  width: 100%;
}
.page .page-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2vh;
}

.page .page-bottom {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  padding: 0 40px;
  /* display: none; */
  /* padding-bottom: 15vh; */
}
.page .btn {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page .btn img {
  width: calc(50% - 10px);
}
.page .btn .web {
  /* width: 100%; */
  /* margin-top: 10px; */
}

.page .btn img:nth-child(1) {
  margin-right: 20px;
}
.page .tips {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  margin-top: 20px;
}


.page .page-content .img-2 {
  width: 90%;
}
.page .page-content .button-wrapper {
  width: 80%;
  background: url('/assets/images/bg_button.png');
  display: felx;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  background-size: cover;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .page {
    width: 100vw;
  }
}
</pre></body></html>