@charset "UTF-8";
* {
  box-sizing: border-box; }

html {
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  background: url("../images/bg.jpg");
  background-size: cover; }
  @media screen and (max-width: 767px) {
    html {
      font-size: 16px; } }

img {
  max-width: 100%; }

button {
  box-shadow: none;
  border: none;
  background: transparent; }
  button:focus {
    outline: 3px dotted red; }

.d-none {
  display: none !important; }

.pos-re {
  position: relative; }

.pos-ab {
  position: absolute; }

.mt-3 {
  margin-top: 1rem; }

.img-fluid {
  max-width: 100%; }

.text-center {
  text-align: center; }

.quest-wrapper::-webkit-scrollbar {
  width: 10px;
  background-color: #4a494a; }

.quest-wrapper::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #FFC551; }

.quest-wrapper::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: transparent; }

h3 {
  margin: 1rem 0 1rem;
  font-size: 1.5em; }

body {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: arial, 'Microsoft JhengHei';
  overflow-x: hidden; }

.index_game {
  padding: 1% 5% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 35px solid #fff;
  min-height: 100vh; }
  @media screen and (max-width: 991px) {
    .index_game {
      display: block; } }
  .index_game .disability_pic {
    position: relative;
    width: 50%; }
    @media screen and (max-width: 991px) {
      .index_game .disability_pic {
        width: 65%;
        margin: 5% auto 0; } }
    .index_game .disability_pic img {
      transition: .5s all; }
      .index_game .disability_pic img:first-child {
        animation: animate2 2s infinite; }
      .index_game .disability_pic img:last-child {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        animation: animate1 2s infinite; }
  .index_game .tit {
    margin-left: 2%;
    width: 42%;
    text-align: center; }
    .index_game .tit > img {
      animation: titleIn 1s 0.5s 1;
      .
            opacity: 0;
      animation-fill-mode: forwards; }
    @media screen and (max-width: 991px) {
      .index_game .tit {
        width: 75%;
        margin: auto; } }
    @media screen and (max-width: 767px) {
      .index_game .tit {
        width: 90%;
        margin: auto; } }
    .index_game .tit .indextit {
      margin-bottom: 3%; }
    .index_game .tit .slogan {
      position: relative;
      display: inline-block; }
      .index_game .tit .slogan::before {
        content: "";
        position: absolute;
        background: url("../images/arrow.png") no-repeat;
        background-size: contain;
        width: 30px;
        height: 7px;
        left: 30%;
        top: 68%;
        animation: left 1.5s infinite; }
      .index_game .tit .slogan::after {
        content: "";
        position: absolute;
        background: url("../images/arrow.png") no-repeat;
        background-size: contain;
        width: 37px;
        height: 9px;
        left: 60%;
        top: 68%;
        animation: left 1.5s infinite; }
    .index_game .tit button {
      display: inline-block;
      margin-top: 1rem;
      max-width: 400px;
      margin-bottom: 1.5rem;
      transition: all .5s;
      filter: drop-shadow(0px 8px 4px rgba(63, 63, 63, 0.4)); }
      @media screen and (max-width: 767px) {
        .index_game .tit button {
          margin: 0 0 3.5rem; } }
      .index_game .tit button:hover {
        transition: all .5s;
        transform: translateY(4px);
        filter: none; }

.index_footer {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  display: flex;
  justify-content: flex-end; }
  .index_footer div {
    display: flex;
    background: #fff;
    padding: 10px 20px 10px 30px;
    position: relative;
    max-width: 80%; }
    .index_footer div::before {
      content: "";
      border-style: solid;
      border-width: 0 10px 54px 32px;
      border-color: transparent transparent #fff;
      position: absolute;
      left: -33px;
      top: 0; }
    .index_footer div a {
      margin-left: 1rem;
      max-width: 80%; }

@keyframes titleIn {
  0% {
    transform: scale(0);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
@keyframes animate1 {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  51% {
    opacity: 1; }
  100% {
    opacity: 1; } }
@keyframes animate2 {
  0% {
    opacity: 1; }
  50% {
    opacity: 1; }
  51% {
    opacity: 1; }
  52% {
    opacity: 0; }
  100% {
    opacity: 0; } }
@keyframes left {
  50% {
    transform: translateX(20px); }
  100% {
    transform: translateX(0px); } }
#game-main {
  position: relative;
  width: 100%;
  border-bottom: 35px solid #fff;
  top: 0;
  left: 0;
  min-height: 100vh;
  overflow: hidden; }
  @media (max-width: 767px) {
    #game-main {
      position: relative;
      padding-bottom: env(safe-area-inset-bottom);
      padding: 0px 0;
      overflow-y: hidden;
      overflow-x: hidden; } }

.header {
  padding: 10px; }
  .header img {
    width: 40%;
    max-width: 260px; }

footer {
  background: black;
  padding: 2rem;
  color: #fff;
  position: relative; }
  @media (max-width: 767px) {
    footer {
      padding: 1rem; } }
  footer .row {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    footer .row > div {
      width: 45%; }
      @media (max-width: 767px) {
        footer .row > div {
          width: 100%;
          font-size: .9rem; } }
  footer img {
    vertical-align: bottom; }

.inner_block {
  min-height: 70vh; }

.other_pb {
  padding-bottom: 10vh; }

.accesskey {
  position: absolute;
  top: 0; }
  @media screen and (max-width: 767px) {
    .accesskey {
      top: -5%; } }

.explain {
  margin: 0vh 0 0;
  width: 55%;
  max-width: 900px;
  font-weight: bold;
  padding: 1% 1% 2%;
  font-size: 1.1rem;
  background-size: 100% 100%;
  background-color: #fff;
  border-radius: 40px;
  border: 5px solid #00bbaa;
  line-height: 1.6;
  letter-spacing: 1px;
  position: relative;
  z-index: 1; }
  @media screen and (max-width: 1366px) {
    .explain {
      width: 85%; } }
  @media screen and (max-width: 767px) {
    .explain {
      padding-bottom: 1.5rem;
      width: 90%;
      line-height: 1.3; } }
  .explain.game {
    margin: 0vh 0 0;
    min-height: 67vh; }
    @media screen and (max-width: 767px) {
      .explain.game {
        margin-top: 0.5rem;
        padding: 0;
        min-height: 0vh; } }
    @media screen and (max-width: 767px) {
      .explain.game .tit {
        width: 75%;
        margin: -1.5rem auto 0; } }
  .explain .tit {
    text-align: center;
    margin-top: -8%; }
    .explain .tit div {
      font-size: 2.5rem;
      background: #006056;
      color: #fff;
      border-radius: 50px;
      display: inline-block;
      padding: 0 20px;
      font-weight: bold;
      max-width: 7em;
      text-wrap: nowrap;
      margin: auto; }
      @media screen and (max-width: 767px) {
        .explain .tit div {
          font-size: 2rem; } }
    @media (max-width: 767px) {
      .explain .tit {
        margin: -1rem auto;
        margin-top: -15%;
        width: 75%; } }
    .explain .tit .titfinal {
      display: none; }
  .explain .d-inline-block {
    display: inline-block; }
  .explain .time {
    display: none;
    color: #fff;
    align-items: flex-start;
    font-size: 2.1rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    height: 105px;
    width: 300px;
    min-width: 165px;
    padding: 15px 30px;
    background: url("../images/nav-bg.png") no-repeat;
    background-size: 100% 100%; }
    @media screen and (max-width: 767px) {
      .explain .time {
        width: 85%;
        min-width: 0;
        margin-bottom: 0;
        height: auto;
        font-size: 1.6rem;
        padding: 10px 15px; } }
    .explain .time img {
      vertical-align: middle; }
      @media screen and (max-width: 767px) {
        .explain .time img {
          padding: 5px;
          max-width: 45px; } }
    .explain .time span {
      padding-left: .5rem;
      display: inline-block; }
  .explain .inner_explain {
    padding: 3%; }
    @media (max-width: 1366px) {
      .explain .inner_explain {
        padding: 2%; } }
    @media (max-width: 767px) {
      .explain .inner_explain {
        padding: 2%; }
        .explain .inner_explain ol {
          margin-top: 0;
          margin-bottom: 0; } }
    .explain .inner_explain.caption {
      font-size: 1.6rem; }
      @media (max-width: 767px) {
        .explain .inner_explain.caption {
          font-size: 1.3rem;
          line-height: 1.3;
          margin: 0 0.5rem; } }
  .explain .overscroll {
    max-height: 70vh;
    overflow-y: scroll; }
    .explain .overscroll::-webkit-scrollbar-track {
      margin: 5px 0 5px 0;
      background-color: rgba(2, 119, 189, 0.2); }
    .explain .overscroll::-webkit-scrollbar-thumb {
      background-color: #0277bd;
      -webkit-border-radius: 5px;
      border-radius: 5px; }
    .explain .overscroll::-webkit-scrollbar {
      width: 10px;
      height: 10px; }
  .explain .table {
    width: 100%;
    border-spacing: 0px; }
    .explain .table thead {
      background-image: linear-gradient(85deg, #ff7900 0%, #ffcf16 80%); }
      @media screen and (max-width: 767px) {
        .explain .table thead {
          display: none; } }
    .explain .table tbody {
      background: rgba(0, 0, 0, 0.5); }
    .explain .table tr:last-child td {
      border: none; }
    @media screen and (max-width: 767px) {
      .explain .table tr {
        padding: 10px;
        display: block; } }
    .explain .table thead tr th:nth-child(1) {
      border-radius: 10px 0 0 0; }
    .explain .table thead tr th:last-child {
      border-radius: 0  10px 0 0; }
    .explain .table td, .explain .table th {
      padding: 10px;
      text-align: center; }
    @media screen and (max-width: 767px) {
      .explain .table th {
        display: none; } }
    .explain .table td {
      border-bottom: 2px solid #fff; }
      @media screen and (max-width: 767px) {
        .explain .table td {
          display: flex;
          line-height: 1.1;
          border: none;
          padding: 5px 8px; }
          .explain .table td:last-child {
            border-bottom: 1px solid #fff;
            padding-bottom: 15px; }
          .explain .table td:before {
            content: attr(data-th) " :";
            font-weight: bold;
            display: block;
            font-size: 1rem;
            white-space: nowrap;
            margin-right: 0.5rem; } }

.sound, .sound2, .endSound {
  position: absolute;
  right: -30px;
  top: -30px; }
  @media screen and (max-width: 767px) {
    .sound, .sound2, .endSound {
      position: relative;
      top: -9px;
      margin: auto;
      right: auto;
      text-align: center; } }
  .sound span, .sound2 span, .endSound span {
    opacity: 0; }
  .sound #sound, .sound #sound2, .sound #endSound, .sound2 #sound, .sound2 #sound2, .sound2 #endSound, .endSound #sound, .endSound #sound2, .endSound #endSound {
    display: inline-block;
    cursor: pointer;
    width: 80px;
    height: 65px;
    border-radius: 10px;
    background: url("../images/sound-l.png") no-repeat, #c8d302;
    background-size: contain; }
    .sound #sound.active, .sound #sound2.active, .sound #endSound.active, .sound2 #sound.active, .sound2 #sound2.active, .sound2 #endSound.active, .endSound #sound.active, .endSound #sound2.active, .endSound #endSound.active {
      background: url("../images/sound.png") no-repeat, #fb1149;
      background-size: contain; }

@media screen and (max-width: 767px) {
  .endSound {
    top: 10px; } }

.gamePic {
  max-width: 20%;
  margin-left: 2%;
  margin-right: -5%;
  margin-bottom: 15vh;
  display: none;
  position: relative; }
  @media screen and (max-width: 767px) {
    .gamePic {
      max-width: 70%;
      margin: auto; } }
  .gamePic::before {
    content: "";
    width: 62%;
    height: 13vh;
    background: url("../images/pic.png") no-repeat;
    background-size: contain;
    position: absolute;
    left: -9%;
    bottom: -88px;
    animation: animate2 2s infinite; }
    @media screen and (max-width: 767px) {
      .gamePic::before {
        left: -22%;
        bottom: -44px; } }
  .gamePic::after {
    content: "";
    width: 62%;
    height: 13vh;
    background: url("../images/pic2.png") no-repeat;
    background-size: contain;
    position: absolute;
    left: -9%;
    bottom: -88px;
    animation: animate1 2s infinite; }
    @media screen and (max-width: 767px) {
      .gamePic::after {
        left: -22%;
        bottom: -44px; } }
  .gamePic img {
    border: 6px solid #f7ab4f;
    border-radius: 68px; }
    @media screen and (max-width: 767px) {
      .gamePic img {
        border-radius: 43px; } }

.prize_items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  width: 100%; }
  @media (max-width: 767px) {
    .prize_items {
      margin-bottom: 1rem; } }
  .prize_items .prize_item {
    margin: 1%;
    border: 3px solid  #FF7900;
    padding: 10px;
    position: relative;
    font-weight: bold;
    width: 30%;
    font-size: 1.2rem; }
    @media (max-width: 991px) {
      .prize_items .prize_item {
        width: 100%; } }
    @media (max-width: 767px) {
      .prize_items .prize_item {
        margin: 10px;
        width: 100%;
        font-size: 1rem; } }
    .prize_items .prize_item:before {
      content: url("../images/frame_l.png");
      position: absolute;
      left: -2%;
      top: -4%; }
    .prize_items .prize_item:after {
      content: url("../images/frame_r.png");
      position: absolute;
      right: -2%;
      bottom: -13%; }
  .prize_items .prize_name {
    display: flex;
    flex-direction: column;
    min-height: 3em;
    line-height: 1.4; }
    .prize_items .prize_name span:first-child {
      min-width: 4rem;
      text-align: center;
      border-bottom: 1px solid #fff;
      margin-bottom: 0.6rem;
      padding-bottom: 0.5rem; }
  .prize_items .inner_prize {
    background-image: linear-gradient(0deg, #FF7900 0%, #FFCF16 80%);
    position: relative;
    z-index: 1;
    padding: 15px;
    text-align: center; }
    @media (max-width: 767px) {
      .prize_items .inner_prize {
        padding: 10px; } }
    .prize_items .inner_prize:before {
      content: "";
      width: 95%;
      height: 95%;
      position: absolute;
      left: 2.5%;
      top: 2.5%;
      background: #000;
      z-index: -1; }

.btn {
  font-weight: bold;
  border: none;
  transition: all .5s;
  box-shadow: none; }
  .btn img {
    max-width: 200px; }
    @media (max-width: 767px) {
      .btn img {
        max-width: 120px; } }
  .btn:hover {
    transition: all .5s;
    transform: translateY(5px); }

.custombtn {
  -webkit-filter: drop-shadow(0px 0px 5px #0174D9) drop-shadow(0px 0px 5px #fff);
  filter: drop-shadow(0px 0px 5px #0174D9) drop-shadow(0px 3px 5px #fff);
  border: none;
  background-color: transparent;
  transition: all .5s;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-block; }
  .custombtn.yellow {
    -webkit-filter: drop-shadow(0px 0px 5px #D99301) drop-shadow(0px 0px 5px #fff);
    filter: drop-shadow(0px 0px 5px #D99301) drop-shadow(0px 3px 5px #fff); }
  .custombtn:hover {
    transition: all .5s;
    transform: translateY(5px);
    text-decoration: none;
    -webkit-filter: none;
    filter: none; }

.inside {
  position: relative;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  background-size: 17vw, 10vw, cover;
  background-position: -3% 10%, 105% 12%, center bottom;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 7vh; }
  @media (max-width: 767px) {
    .inside {
      padding-bottom: 0; } }
  .inside.game_inside {
    display: flex; }
    @media (max-width: 767px) {
      .inside.game_inside {
        margin-top: 0%;
        margin-bottom: 2rem;
        flex-direction: column-reverse; }
        .inside.game_inside.theEnd {
          flex-direction: column; }
          .inside.game_inside.theEnd .explain {
            margin-top: 1rem; }
            .inside.game_inside.theEnd .explain .tit {
              margin-top: -9%; } }

.board {
  width: 95%;
  height: 90vh;
  margin: auto;
  background: url("../images/bg-blackbord.png") no-repeat;
  background-size: 100% 100%; }
  @media (max-width: 767px) {
    .board {
      background: url("../images/bg-blackbord-rwd.png") no-repeat;
      background-size: 100% 100%;
      width: 90%;
      overflow: hidden; } }

.note {
  background: rgba(0, 0, 0, 0.5);
  padding: 3%;
  margin: 5% 5% 0;
  font-size: 1.4rem;
  color: #42210B;
  font-weight: bold; }

.btn_start {
  margin-top: 0.5rem;
  cursor: pointer;
  max-width: 300px; }
  @media (max-width: 767px) {
    .btn_start {
      max-width: 250px;
      width: 65%;
      margin-top: 0rem; } }

/*--跳窗共用物件--*/
.progress {
  color: #000;
  width: 100%;
  margin-bottom: 1.5rem; }
  @media (max-width: 767px) {
    .progress {
      flex-direction: column-reverse;
      align-items: center;
      margin-bottom: 0; } }
  .progress .now-count {
    position: relative;
    font-size: 1.7rem;
    line-height: 1.5;
    display: flex; }
    @media (max-width: 767px) {
      .progress .now-count {
        font-size: 1.4rem; } }
  .progress .count-total {
    padding: .5rem 1.5rem;
    display: flex;
    width: 90%;
    font-size: 1.5rem;
    justify-content: space-around;
    align-items: center; }
    .progress .count-total hr {
      width: 80%;
      border: 0;
      border-bottom: 1px solid white; }

/*--問題跳窗--*/
.quest-wrapper {
  z-index: 7;
  padding: 7vh 1% 0;
  display: flex; }
  @media screen and (max-width: 767px) {
    .quest-wrapper {
      margin: 0% 1% 2rem;
      padding: 4vh 1% 0; } }
  .quest-wrapper .inner {
    width: 100%;
    padding: 10px; }
  .quest-wrapper .q-mark {
    max-width: 70px;
    margin: 0 10px; }
    @media screen and (max-width: 767px) {
      .quest-wrapper .q-mark {
        max-width: 30px; } }
  .quest-wrapper .q-txt {
    font-weight: bold;
    text-align: left; }
    @media screen and (max-width: 767px) {
      .quest-wrapper .q-txt {
        font-size: 1.3rem;
        padding-left: 0;
        width: 100%; } }
  .quest-wrapper .pic-opt .option {
    width: 100%;
    font-size: 1.6rem;
    list-style-type: none;
    margin-top: 0;
    padding-left: 0; }
    @media screen and (max-width: 767px) {
      .quest-wrapper .pic-opt .option {
        font-size: 1.3rem;
        padding: 0;
        width: 100%;
        margin: auto; } }
    .quest-wrapper .pic-opt .option label {
      display: flex;
      margin: .75rem 0 1rem;
      cursor: pointer;
      transition: all .5s;
      padding: 0.55rem 1rem 0.55rem 1rem;
      background: #006937;
      transition: all .5s;
      position: relative;
      color: #fff;
      border-radius: 40px; }
      @media screen and (max-width: 767px) {
        .quest-wrapper .pic-opt .option label {
          border-radius: 10px; } }
      .quest-wrapper .pic-opt .option label.active {
        background: #c8d302;
        color: #000; }
      .quest-wrapper .pic-opt .option label input {
        width: 30px;
        height: 30px;
        min-width: 30px;
        margin: 10px 10px 0 0; }
        @media screen and (max-width: 767px) {
          .quest-wrapper .pic-opt .option label input {
            margin: 3px 3px 0 0; } }
      .quest-wrapper .pic-opt .option label:hover {
        transition: all .5s;
        background-image: linear-gradient(90deg, #ffcca4 0%, #FFD255 80%);
        color: #000; }
        .quest-wrapper .pic-opt .option label:hover .opt {
          color: #000; }
      @media screen and (max-width: 767px) {
        .quest-wrapper .pic-opt .option label {
          padding: 0.2rem 0.5rem;
          margin: .5rem 0; } }
      .quest-wrapper .pic-opt .option label.other {
        background: #999999; }
        .quest-wrapper .pic-opt .option label.other:hover {
          background: #999999;
          transform: none;
          box-shadow: none;
          color: #fff; }
          .quest-wrapper .pic-opt .option label.other:hover .opt {
            color: #fff; }
      .quest-wrapper .pic-opt .option label.right {
        transition: all .5s;
        background: url("../images/block_succe.png") no-repeat;
        background-size: 100% 100%;
        color: #000 !important; }
        .quest-wrapper .pic-opt .option label.right::before {
          content: "";
          background: url("../images/right.png") center no-repeat;
          background-size: contain;
          position: absolute;
          width: 40px;
          height: 40px;
          right: 2%;
          top: 10px; }
          @media screen and (max-width: 767px) {
            .quest-wrapper .pic-opt .option label.right::before {
              width: 25px;
              height: 25px;
              top: 0;
              bottom: 0;
              margin: auto; } }
        .quest-wrapper .pic-opt .option label.right:hover {
          color: #000; }
          .quest-wrapper .pic-opt .option label.right:hover .opt {
            color: #000; }
      .quest-wrapper .pic-opt .option label.wrong {
        transition: all .5s;
        background: url("../images/block_wrong.png") no-repeat;
        background-size: 100% 100%;
        color: #000 !important; }
        .quest-wrapper .pic-opt .option label.wrong::before {
          content: "";
          background: url("../images/wrong.png") center no-repeat;
          background-size: contain;
          position: absolute;
          width: 40px;
          height: 40px;
          right: 2%;
          top: 10px; }
          @media screen and (max-width: 767px) {
            .quest-wrapper .pic-opt .option label.wrong::before {
              width: 25px;
              height: 25px;
              top: 0;
              bottom: 0;
              margin: auto; } }
        .quest-wrapper .pic-opt .option label.wrong:hover {
          color: #000; }
  .quest-wrapper .pic-opt .check-area {
    min-width: 28px;
    height: 28px;
    border: 2px solid #000;
    margin-right: .5rem;
    position: relative; }
  .quest-wrapper .pic-opt .opt {
    font-weight: bold;
    margin-right: .5rem; }
  .quest-wrapper .ans-btn {
    position: absolute;
    left: 50%;
    bottom: -45px;
    transform: translateX(-50%); }
    @media screen and (max-width: 767px) {
      .quest-wrapper .ans-btn {
        max-width: 250px;
        width: 70%;
        margin: auto;
        bottom: 0; } }
    .quest-wrapper .ans-btn[disabled] {
      display: none; }

/*--解答跳窗--*/
.ans-wrapper .ans-area {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 767px) {
    .ans-wrapper .ans-area {
      flex-wrap: wrap;
      margin: 0.5rem 0rem; } }
.ans-wrapper .left {
  font-size: 1.45rem;
  width: 42%;
  background: #f2f2f2; }
  @media screen and (max-width: 767px) {
    .ans-wrapper .left {
      width: 100%;
      font-size: 1.3rem; } }
  .ans-wrapper .left .ans-cont {
    padding: 1rem; }
    @media screen and (max-width: 767px) {
      .ans-wrapper .left .ans-cont {
        padding: 10px; } }
.ans-wrapper .right {
  font-size: 1.45rem;
  width: 55%;
  background: #f2f2f2; }
  @media screen and (max-width: 767px) {
    .ans-wrapper .right {
      width: 100%;
      font-size: 1.3rem; } }
  .ans-wrapper .right span {
    display: block;
    padding: 1rem; }
    @media screen and (max-width: 767px) {
      .ans-wrapper .right span {
        padding: 0px 10px 10px; } }
.ans-wrapper .answer_tit {
  background-image: linear-gradient(90deg, #ff6f00 0%, #FFD255 80%);
  text-align: center;
  color: #000;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 0.5rem; }
  @media screen and (max-width: 767px) {
    .ans-wrapper .answer_tit {
      font-size: 1.3rem; } }
.ans-wrapper .ans {
  font-size: 7rem;
  line-height: 0.9;
  text-align: center;
  color: #006837; }
  @media screen and (max-width: 767px) {
    .ans-wrapper .ans {
      font-size: 4rem; } }
.ans-wrapper .ans-txt {
  display: block;
  padding: 1em; }
.ans-wrapper .aconsult {
  padding: 1em;
  font-size: 1.3rem; }
  @media screen and (max-width: 767px) {
    .ans-wrapper .aconsult {
      padding: 0.5rem; } }
.ans-wrapper .next-btn {
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%); }
  @media screen and (max-width: 767px) {
    .ans-wrapper .next-btn {
      max-width: 250px;
      width: 70%;
      margin: auto;
      bottom: 0px; } }
@media screen and (max-width: 767px), (max-height: 500px) {
  .ans-wrapper {
    height: auto; } }

/*提醒視窗*/
.alert_bg {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); }

.alert {
  position: relative;
  background-color: white;
  border-radius: 1rem;
  border: 4px solid #fff;
  width: 90%;
  max-width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  overflow: hidden; }
  .alert .msn {
    min-height: 4rem;
    margin: 1rem 0; }
    @media (max-width: 767px) {
      .alert .msn {
        font-size: 1.1rem; } }
  .alert .custombtn {
    max-width: 250px;
    margin: auto;
    display: flex;
    align-self: center; }
    @media (max-width: 767px) {
      .alert .custombtn {
        max-width: 200px; } }

.alert_contain {
  padding: 2rem 1rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-size: 15%, 20%;
  background-position: -16px -20px, 102% 108%; }
  .alert_contain .alert_img {
    width: 100%; }
    .alert_contain .alert_img img {
      max-width: 60%; }

.w-tit {
  background-image: linear-gradient(90deg, #FF9F55 0%, #FFD255 80%);
  color: #080812;
  font-size: 1.6rem;
  font-weight: bold;
  padding: .5rem 2.5rem; }
  @media screen and (max-width: 767px) {
    .w-tit {
      font-size: 1.51rem; } }

.confetti {
  z-index: -1;
  display: block;
  position: absolute;
  position: absolute;
  left: 0;
  top: 0;
  height: 99%;
  width: 100%; }

#confetti {
  width: 100%;
  height: 100%; }

#final-scene {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-wrap: wrap; }
  @media screen and (max-width: 767px) {
    #final-scene {
      display: block; } }
  #final-scene .left {
    width: 50%; }
    @media screen and (max-width: 767px) {
      #final-scene .left {
        width: 100%; } }
  #final-scene .right {
    width: 50%;
    font-size: 1.5rem;
    padding: 2%;
    background: #f2f2f2; }
    @media screen and (max-width: 767px) {
      #final-scene .right {
        width: 100%;
        font-size: 1.1rem; } }
  #final-scene .score_block {
    background-size: contain;
    background-position: center;
    font-size: 4rem;
    color: #006837;
    text-align: center;
    height: 231px;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 550px) {
      #final-scene .score_block {
        height: 130px;
        font-size: 3rem;
        margin-top: 10px; } }
  @media screen and (max-width: 767px) {
    #final-scene .custombtn {
      max-width: 250px;
      width: 70%;
      margin: auto;
      bottom: -30px; } }
  @media screen and (max-width: 767px) {
    #final-scene .sent-btn {
      max-width: 250px;
      width: 70%;
      margin: auto; } }

.reaction {
  position: absolute;
  width: 100%;
  height: 19vh;
  bottom: 0;
  z-index: -1;
  display: none; }
  .reaction.success:before {
    content: "";
    background: url("../images/reaction-s1.png") no-repeat;
    background-size: contain;
    width: 30%;
    height: 100%;
    position: absolute;
    bottom: -10%;
    left: -10%;
    animation: jittery 4s infinite; }
  .reaction.success:after {
    content: "";
    background: url("../images/reaction-s.png") no-repeat;
    background-size: contain;
    width: 27%;
    height: 81%;
    position: absolute;
    bottom: -7%;
    right: -10%;
    animation: bird 3s -2.5s ease infinite;
    transform-origin: 50% bottom; }
  .reaction.fail:before {
    content: "";
    background: url("../images/reaction-f1.png") no-repeat;
    background-size: contain;
    width: 30%;
    height: 100%;
    position: absolute;
    bottom: -10%;
    left: -10%;
    animation: jittery 4s infinite; }
  .reaction.fail:after {
    content: "";
    background: url("../images/reaction-f.png") no-repeat;
    background-size: contain;
    width: 27%;
    height: 81%;
    position: absolute;
    bottom: -7%;
    right: -10%;
    animation: bird 3s -2.5s ease infinite;
    transform-origin: 50% bottom; }

@keyframes jittery {
  5%,
  50% {
    transform: scale(1); }
  10% {
    transform: scale(0.9); }
  15% {
    transform: scale(1.02); }
  20% {
    transform: scale(1.02) rotate(-5deg); }
  25% {
    transform: scale(1.02) rotate(5deg); }
  30% {
    transform: scale(1.02) rotate(-3deg); }
  35% {
    transform: scale(1.02) rotate(2deg); }
  40% {
    transform: scale(1.02) rotate(0); } }
@keyframes bird {
  0% {
    transform: rotate(5deg); }
  50% {
    transform: rotate(-5deg); }
  100% {
    transform: rotate(5deg); } }
.source {
  width: 100%;
  font-size: 1.1rem;
  max-width: 600px; }
  @media screen and (max-width: 767px) {
    .source {
      margin-top: 1.1rem; } }
  .source ol {
    list-style: none; }
    @media screen and (max-width: 767px) {
      .source ol {
        padding: 0 0 0 1rem; } }
    .source ol a {
      display: inline-flex;
      align-items: center;
      margin-top: 10px;
      color: #000; }
      @media screen and (max-width: 767px) {
        .source ol a {
          flex-direction: column; } }
    .source ol img {
      width: 150px;
      margin-right: 8px; }

.lottery_register {
  margin: 0vh auto 0vh;
  width: 70%;
  color: #fff;
  padding: 1%;
  font-size: 1.1rem;
  background-size: 100% 100%;
  line-height: 2;
  letter-spacing: 1px;
  position: relative;
  z-index: 1; }
  @media screen and (max-width: 767px) {
    .lottery_register {
      width: 90%;
      margin: 0vh auto;
      font-size: 1rem; } }
  @media screen and (max-width: 767px) {
    .lottery_register .sent-btn {
      max-width: 250px;
      margin: auto; } }

form h3 {
  font-size: 2.2rem;
  color: #006056; }

.form_input label {
  width: 100%;
  background: #d1d1d1;
  max-width: 800px;
  margin: 20px auto;
  display: flex;
  padding: 10px;
  font-size: 1.4rem; }
  .form_input label span {
    display: inline-block;
    width: 6em;
    color: #000;
    white-space: nowrap;
    font-weight: bold; }
.form_input input {
  background: transparent;
  color: #000;
  padding: 5px;
  box-shadow: none;
  border: 0;
  width: 85%;
  font-size: 1.3rem; }

.mem {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #00000066;
  z-index: 1; }
  .mem .filter {
    margin: 5% auto;
    max-width: 600px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    width: 90%; }
    .mem .filter .title {
      padding: 10px;
      font-weight: bold;
      font-size: 1.5rem;
      color: #fff;
      text-align: center;
      background: #007066; }
  .mem .btns {
    text-align: center;
    display: flex;
    padding: 5px; }
    @media screen and (max-width: 767px) {
      .mem .btns {
        flex-wrap: wrap;
        justify-content: center; } }
    .mem .btns a {
      max-width: 40%; }
  .mem .visitor_login {
    display: none; }
  .mem .h4 {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding: 5px;
    line-height: 1; }
    @media screen and (max-width: 767px) {
      .mem .h4 {
        font-size: 1rem; } }
  .mem .small {
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    padding: 5px;
    line-height: 1;
    margin-bottom: 0.5rem; }
    @media screen and (max-width: 767px) {
      .mem .small {
        font-size: 1rem; } }
  .mem .d-flex {
    display: flex; }

.input-group {
  margin: 0 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media screen and (max-width: 767px) {
    .input-group {
      display: block;
      margin: 0 1rem 0rem; } }
  .input-group label {
    font-size: 1.3rem;
    font-weight: bold;
    white-space: nowrap;
    margin-right: 10px; }
    @media screen and (max-width: 767px) {
      .input-group label {
        font-size: 1.1rem; } }
  .input-group input {
    padding: 2px 15px;
    border-radius: 5px;
    font-size: 1.2rem;
    border-color: #ccc;
    width: 100%; }

/*# sourceMappingURL=custom.css.map */
