@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/reset-css@5.0.1/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap");
* {
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif !important;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 1em;
  border: none;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #642424;
}

img.banner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  max-width: 700px;
}
img.banner.web {
  display: none;
}

.container {
  position: relative;
  z-index: 2;
  width: 97.4%;
  margin: 0 auto;
  margin-top: 32vw;
  background-color: #fff;
  max-width: 700px;
  border: 2px solid #c89939;
  padding: 4px 0px 0px 0px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.info {
  padding: 16px;
  text-align: center;
  background-color: #172439;
  color: #fff;
  padding-bottom: 96px;
}
.info img.logo {
  margin-top: 0.4em;
  width: 100px;
}
.info p {
  font-size: 12px;
  line-height: 2em;
}

div.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: calc(97.4% - 4px);
  margin-left: calc(1.3% + 2px);
  height: 100px;
  background-color: #fff;
  background: linear-gradient(270deg, #00000000 0%, #ffffff 14%);
  background: -moz-linear-gradient(270deg, #00000000 0%, #ffffff 14%);
  background: -webkit-linear-gradient(270deg, #00000000 0%, #ffffff 14%);
  background: -o-linear-gradient(270deg, #00000000 0%, #ffffff 14%);
}
div.footer p.share-info {
  line-height: 24px;
  text-align: center;
  font-size: 14px;
  color: #c89939;
}
div.footer a.share-button {
  position: relative;
  display: block;
  width: 240px;
  height: 40px;
  color: #fff;
  background-color: #00b900;
  text-decoration: none;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
  padding-left: 24px;
  margin: 0px auto;
  margin-top: 24px;
}
div.footer a.share-button img.line-logo {
  left: 9px;
  top: 8px;
  position: absolute;
  width: 26px;
  height: 26px;
}

.activity {
  width: 100%;
  background-color: #fff;
  min-height: 700px;
  padding-bottom: 20px;
}

span.gold {
  color: #c89939;
}
span.blue {
  color: #1b4ca7;
}
span.red {
  color: #e21f23;
}

.title {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 35px;
  font-size: 18px;
  text-align: center;
  background-color: #c89939;
  color: #fff;
  width: calc(100% - 100px);
}
.title.title-left {
  margin-right: 100px;
  padding-left: 100px;
  float: left;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}
.title.title-left::after {
  right: 13px;
  top: 15px;
  display: block;
  position: absolute;
  content: "";
  background-color: #fff;
  width: 7px;
  height: 7px;
}
.title.title-left::before {
  right: -35px;
  top: 4px;
  display: block;
  position: absolute;
  content: "▪";
  color: #fff;
  background-color: #c89939;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  line-height: 28px;
  font-size: 20px;
}
.title.title-right {
  margin-left: 100px;
  padding-right: 100px;
  float: right;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.title.title-right::after {
  left: 13px;
  top: 15px;
  display: block;
  position: absolute;
  content: "";
  background-color: #fff;
  width: 7px;
  height: 7px;
}
.title.title-right::before {
  left: -35px;
  top: 4px;
  display: block;
  position: absolute;
  content: "▪";
  color: #fff;
  background-color: #c89939;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  line-height: 28px;
  font-size: 20px;
}

.content {
  margin-top: 10px;
  font-size: 14px;
  padding: 0 16px;
}
.content .subtitle {
  margin-top: 26px;
  font-size: 16px;
  line-height: 28px;
}
.content p {
  line-height: 28px;
}

.warning {
  margin-top: 40px;
  font-size: 14px;
  padding: 0 16px;
}
.warning p {
  line-height: 28px;
}

.share-container {
  text-align: center;
  padding: 20px 30px 0px 30px;
}
.share-container .email-share {
  margin-left: 20px;
  vertical-align: top;
  font-size: 14px;
  text-align: center;
  width: 88px;
  height: 28px;
  line-height: 28px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #3fc7a3;
}

@media screen and (min-width: 700px) {
  .container {
    border: 10px solid #c89939;
  }

  div.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(700px - 20px);
    margin-left: calc((100% - 700px) / 2 + 10px);
  }

  .container {
    margin-top: 15vw !important;
  }

  img.banner {
    margin-left: calc((100% - 700px) / 2);
  }
  img.banner.web {
    display: block;
  }
  img.banner.mobile {
    display: none;
  }

  .title {
    font-size: 22px;
  }

  .content {
    font-size: 16px;
  }
  .content .subtitle {
    font-size: 18px;
  }

  .container {
    margin-top: 114px !important;
  }
}

/*# sourceMappingURL=style.css.map */
