:root {
  --page-bg: #f4d44e;
  --card-bg: #fff;
  --text-main: #3e3a39;
  --text-sub: #4e4a49;
  --green: #21a05a;
  --blue: #36a6d8;
  --orange: #f5b54d;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--page-bg);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text-main);
}

body {
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 750px;
  min-height: 100vh;
  background: var(--page-bg);
  overflow-x: hidden;
}

.hero {
  position: relative;
  padding-top: var(--safe-top);
}

.hero__img,
.footer__img,
.section-title img,
.qr-code,
.award-box__bg {
  display: block;
  width: 100%;
  height: auto;
}

.hero__img {
  position: relative;
  z-index: 1;
}

.hero__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--blue);
  z-index: 2;
}

.content {
  position: relative;
  margin-top: -2px;
  background: var(--card-bg);
  
  padding: 0;
}

.section {
  padding: 8px 0 18px;
}

.section-title {
  width:100%;
  margin: 0 auto 10px;
}

.section-title--wide {
  width: 100%;
  margin-bottom: 12px;
}

.copy {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-sub);
}

.copy p {
  margin: 0 0 8px;
}

.copy .lead {
  margin-bottom: 10px;
}
.copy .lead span{
  font-size: 15px;
  font-weight: bold;
  color:#1B9855;
}

.copy .bullet {
  position: relative;
  padding-left: 18px;
}

.copy .bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.copy .note {
  color: #6f6a69;
}

.qr-wrap {
  display: flex;
  justify-content: center;
  margin: 6px 0 14px;
}

.qr-code {
  width: 168px;
}

.award-box {
  position: relative;
  margin-top: 8px;
}

.award-box__bg {
  width: 100%;
}

.award-box__text {
  position: absolute;
  inset: 0;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  line-height: 1.9;
  color: #ffffff;
}

.award-box__text p {
  margin: 0 0 6px;
}

.footer {
  margin-top: -1px;
  background: var(--blue);
  position: relative;
}

.footer__img {
  width: 100%;
}

.btn-back {
  position: absolute;
  left: 15px;
  bottom: calc(17px + var(--safe-bottom));
  background: #ffffff;
  color: #4a4a4a;
  text-decoration: none;
  padding: 8px 18px 8px 12px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10;
}
