* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #fff;
}
.pc {
  background-color: rgb(255 244 244);
  background-image: url(/new2/images/body-bg.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow-x: hidden;
  overflow-y: scroll;
}
.pc_qrcode {
  pointer-events: none;
  z-index: 999;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  top: 50%;
  transform: translate(0, -50%);
  padding: 30px;
}

.pc_android_qrcode,
.pc_ios_qrcode {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background: #fff;
  box-shadow: #000 0px 0px 10px;
}
.pc_android_box {
}

canvas {
  position: absolute;
}

.pc_qrcode p {
  color: #fff;
  text-align: center;
  padding-bottom: 15px;
}

.main-body {
  background-image: url(/new2/images/main-body-bg-2x.png);
  background-position: center;
  background-size: 100% 100%;
  max-width: 768px;
  margin: 0 auto;
  position: relative;
}

header {
  background-image: url(/new2/images/mobile-bg.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  width: 768px;
  padding-bottom: 60px;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 50px;
}

.hero-slogun {
  width: 28rem;
  margin: 0 auto;
}

.hero-slogun img {
  width: 100%;
  padding: 100px 0;
}
.header-bottom {
  margin: 0 auto;
}
.header-bottom p {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  padding-bottom: 10px;
}
.btn {
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 4px 20px;
  margin-top: 30px;
  margin-left: 20px;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
}
.btn:first-child {
  margin-left: 0;
}
.btn a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}
.body-img {
  width: 43rem;
  margin: 0 auto;
}

.body-img img {
  width: 100%;
}

main {
  padding-bottom: 204px;
}

.caution {
  width: 39rem;
  margin: 0 auto;
}
.caution p {
  color: rgb(34 34 34);
  font-size: 1rem;
}
footer {
  position: fixed;
  max-width: 768px;
  width: 100vw;
  bottom: 0;
  padding: 15px;
  background: linear-gradient(0.25turn, rgb(185 38 29), rgb(216 69 44));
  text-align: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  box-shadow: 0px 0px 15px 0px #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 7rem;
  height: 7rem;
  margin-right: 20px;
  border-radius: 18px;
}
.footer-logo img {
  width: 100%;
}
.dating-content {
  text-align: left;
}
.dating-content h3 {
  color: #fff;
  font-size: 1.4rem;
}
.dating-content h4 {
  color: #fff;
  font-size: 0.83rem;
  letter-spacing: 1px;
}
.download-btn {
  width: 14.5rem;
  cursor: pointer;
}
.faq-details a {
  font-size: 1.3rem;
  color: #fff;
  padding: 8px 25px;
  text-align: center;
  cursor: pointer;
}
.download-btn img {
  width: 100%;
}
.faq-details.setup-tips-container {
  padding-bottom: 7px;
  padding-top: 10px;
}

#datingPopUp {
  position: fixed;
  top: 0;
  background: #0009;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#datingPopUp img {
  width: 100%;
}
#datingPopUp.active {
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}
