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

body {
  background: rgba(86, 1, 8, 1);
}

#app {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: rgba(86, 1, 8, 1);
}

.page-wrapper {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  background-image: url("./assets/home_bg.png");
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .page-wrapper {
    max-width: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-wrapper {
    max-width: 400px;
    margin: 0;
  }
}

.header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
}
.header img {
  display: block;
  width: 100%;
  height: auto;
}
.header div {
  width: 200px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 10px;
  color: #ce7881;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.header div span {
  font-size: 13px;
}

.main-content .input-section,
.input-section,
.button-section {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.main-content .earn-section img {
  display: block;
  width: 336px;
  height: auto;
  margin-top: 32px;
  margin-bottom: 18px;
}

.main-content .input-section .input-container {
  width: 286px;
  height: 36px;
  padding: 0 15px;
  background-image: url("./assets/input_div.png");
  background-size: cover;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.main-content .input-section .dec {
  width: 310px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  margin-top: 9px;
  margin-bottom: 16px;
  text-align: center;
}
.main-content .input-section .input-container .logo {
  width: auto;
  height: 20px;
}
.main-content .input-section .input-container div {
  width: 36px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
}
.main-content .input-section .input-container .line {
  width: 1px;
  height: 25px;
}
.main-content .input-section .input-container input {
  background: transparent;
  border: none;
  outline: none;
  margin-left: 10px;
  color: #ffffff;
}
.main-content .input-section .input-container input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  margin-left: 10px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
}
.main-content .input-section .input-container input::placeholder {
  color: #ce7881;
}

.main-content .input-section .input-container .input-field-mx::placeholder {
  color: #ce7881;
  font-size: 10px;
}

.main-content .button-section img {
  margin-top: 20px;
  display: block;
  width: 209px;
  height: 51px;
}
