html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  list-style: none;
}

html {
  line-height: 1;
  scroll-behavior: auto;
}

body {
  -webkit-overflow-scrolling: auto;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

img {
  display: block;
  border: none;
}


.lightbox {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow-y: scroll;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}
.lightbox.is-open {
  display: block;
}

.project {
  font-family: "Noto Sans TC", sans-serif;
  background-image: url("../images/index_bg.png");
  background-size: contain;
  background-repeat: repeat;
}

.banner {
  width: 100%;
  padding-bottom: 23.4375%;
  background-image: url("../images/banner_pc.png");
  background-size: contain;
}
@media (max-width: 980px) {
  .banner {
    background-image: url("../images/banner_m.jpg");
    padding-bottom: 56.1224489796%;
  }
}

h2 {
  max-width: 614px;
  width: 100%;
  margin: 70px auto 10px;
  transform: translateX(-27px);
}
@media (max-width: 1440px) {
  h2 {
    max-width: 540px;
    margin: 40px auto 10px;
  }
}
@media (max-width: 980px) {
  h2 {
    max-width: 450px;
    width: 75vw;
    margin: 40px auto 5px;
    transform: translateX(-5px);
  }
}
h2 img {
  width: 100%;
  height: auto;
}

h3 {
  color: #7a5c32;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin: auto;
  padding: 50px 0 35px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateX(0.9vw);
}
@media (max-width: 980px) {
  h3 {
    font-size: 20px;
    min-width: 180px;
    padding: 30px 0;
    transform: translateX(8vw);
  }
}
h3:before {
  content: "";
  position: absolute;
  right: calc(100% + 20px);
  top: 49%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 82px;
  height: 86px;
  background-image: url("../images/title_leaf.png");
  border-radius: 50%;
}
@media (max-width: 980px) {
  h3:before {
    width: 60px;
    height: 63px;
    right: calc(100% + 10px);
  }
}
h3 .zh {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
@media (max-width: 980px) {
  h3 .zh {
    font-size: 24px;
  }
}
h3 .en {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1.4px;
}
@media (max-width: 980px) {
  h3 .en {
    font-size: 18px;
  }
}

section {
  font-family: "Noto Sans TC", sans-serif;
}
section .container {
  max-width: 963px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1440px) {
  section .container {
    max-width: 910px;
  }
}
@media (max-width: 980px) {
  section .container {
    padding: 0 20px;
  }
}

.method {
  position: relative;
}
.method .container {
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
}
.method:before, .method:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) {
  .method:before, .method:after {
    display: none;
  }
}
.method::before {
  background-image: url("../images/index_leaf_l.png");
  width: 347px;
  height: 447px;
  left: 0;
  top: -14%;
}
@media (max-width: 1440px) {
  .method::before {
    width: 208.2px;
    height: 268.2px;
    top: -21%;
  }
}
.method:after {
  background-image: url("../images/index_leaf_r.png");
  width: 351px;
  height: 448px;
  right: 0;
  top: 50%;
}
@media (max-width: 1440px) {
  .method:after {
    top: 54%;
    width: 210.6px;
    height: 268.8px;
  }
}

.method_txt {
  color: white;
  background: linear-gradient(180deg, #46a7a1 0%, #96d5cd 100%);
}
.method_txt [data-simplebar] .simplebar-scrollbar {
  background-color: #dcf8f9;
}
.method_txt [data-simplebar] .simplebar-track {
  background: #3d7f7a;
}

.rules .container {
  max-width: 1025px;
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}
@media (max-width: 980px) {
  .rules h3 {
    padding-bottom: 15px;
  }
}
.rules .step_num {
  margin: auto;
}
@media (max-width: 980px) {
  .rules .step_num {
    transform: scale(0.7) translateY(14px);
  }
}

.step_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 30px;
  padding-top: 10px;
}
@media (max-width: 1280px) {
  .step_list {
    padding: 10px 15px 0;
    gap: 20px;
  }
}
@media (max-width: 980px) {
  .step_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
    padding: 0;
  }
}
.step_list > li {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.step_list .step_bg {
  min-height: 280px;
  flex: 1;
  background-color: #c2963e;
  box-shadow: inset 4px 4px 10px #b08232;
  filter: drop-shadow(3px 3px 4px rgba(101, 101, 101, 0.381));
  padding: 35px 21px 60px;
  border-radius: 15px;
  text-align: center;
  color: white;
  position: relative;
}
@media (max-width: 980px) {
  .step_list .step_bg {
    padding: 30px 10px 67px;
    min-height: 245px;
  }
}
.step_list .step_bg:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
.step_list .step_first .step_bg:after {
  background-image: url("../images/step1_icon.png");
  width: 122px;
  height: 97px;
  left: 55%;
  transform: translateX(-50%);
  bottom: 20px;
}
@media (max-width: 1200px) {
  .step_list .step_first .step_bg:after {
    width: 100px;
    height: 80px;
    bottom: 15px;
  }
}
.step_list .step_second .step_bg:after {
  background-image: url("../images/step2_icon.png");
  width: 131px;
  height: 152px;
  left: 55%;
  transform: translateX(-50%);
  bottom: -40px;
}
@media (max-width: 1200px) {
  .step_list .step_second .step_bg:after {
    width: 105px;
    height: 122px;
    bottom: -30px;
  }
}
.step_list .step_third .step_bg:after {
  background-image: url("../images/step3_icon.png");
  width: 142px;
  height: 121px;
  left: 55%;
  transform: translateX(-50%);
  bottom: -40px;
}
@media (max-width: 1200px) {
  .step_list .step_third .step_bg:after {
    width: 100px;
    height: 85px;
    bottom: -30px;
  }
}
.step_list .step_fourth .step_bg:after {
  background-image: url("../images/step4_icon.png");
  width: 100px;
  height: 116px;
  right: -17px;
  bottom: -35px;
}
@media (max-width: 1200px) {
  .step_list .step_fourth .step_bg:after {
    width: 80px;
    height: 90px;
    right: -10px;
    bottom: -25px;
  }
}
.step_list .step_title {
  font-size: 24px;
  display: block;
  font-weight: 700;
  border-bottom: 2px solid #fff;
  padding-bottom: 15px;
  margin: 0 15px 15px;
}
@media (max-width: 1024px) {
  .step_list .step_title {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media (max-width: 980px) {
  .step_list .step_title {
    font-size: 16px;
    margin: 0 5px 15px;
  }
}
.step_list .step_desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1.4px;
}
@media (max-width: 980px) {
  .step_list .step_desc {
    font-size: 16px;
  }
}

.game_start_btn {
  background-image: url("../images/game_start_btn.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 494px;
  height: 315px;
  display: block;
  margin: 80px auto 0;
  transition: all 0.3s ease;
  transform: translateX(20px);
  animation: alternate 1.2s ease-in-out infinite bigger;
}
@media (max-width: 1440px) {
  .game_start_btn {
    width: 395.2px;
    height: 252px;
  }
}
@media (max-width: 980px) {
  .game_start_btn {
    width: 296.4px;
    height: 189px;
  }
}
@media (max-width: 575px) {
  .game_start_btn {
    width: 247px;
    height: 157.5px;
  }
}
.game_start_btn:hover {
  animation-play-state: paused;
}

@keyframes bigger {
  0% {
    transform: scale(0.88) translateX(20px);
  }
  100% {
    transform: scale(0.95) translateX(20px);
  }
}
.prizes {
  background-image: repeating-linear-gradient(90deg, #a37231 0 30px, #a87937 30px 60px);
  position: relative;
  overflow-x: hidden;
}
.prizes:before {
  content: "";
  position: absolute;
  top: 14.2vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 10vw;
  background-image: inherit;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  z-index: 1;
}
@media (max-width: 1440px) {
  .prizes:before {
    top: 20.2vw;
  }
}
@media (max-width: 980px) {
  .prizes:before {
    top: 36vw;
  }
}
@media (max-width: 575px) {
  .prizes:before {
    top: 40vw;
  }
}
.prizes:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: repeat;
  background-position: top;
  background-image: url("../images/index_bg.png");
  width: 100%;
  height: 24vw;
  top: 0;
  z-index: 0;
}
@media (max-width: 1440px) {
  .prizes:after {
    height: 30vw;
  }
}
@media (max-width: 980px) {
  .prizes:after {
    height: 45vw;
  }
}
@media (max-width: 575px) {
  .prizes:after {
    height: 50vw;
  }
}
.prizes .container {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}
.prizes h3 {
  margin-bottom: 25px;
  transform: translateX(0.9vw);
}
@media (max-width: 980px) {
  .prizes h3 {
    transform: translateX(13vw);
  }
}
.prizes .prizes_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  gap: 80px 90px;
  justify-content: start;
}
@media (max-width: 980px) {
  .prizes .prizes_list {
    width: 85vw;
    margin: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 8vw;
  }
}
.prizes .prizes_list li {
  position: relative;
}
.prizes .prizes_list figure {
  width: 100%;
  padding-bottom: 106.25%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 15px;
}
.prizes .prizes_list .prize_num {
  position: absolute;
  z-index: 2;
  left: -40px;
  top: -40px;
  z-index: 1;
  color: #876220;
  font-size: 27.5px;
  font-weight: 500;
  background-color: #fff;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 980px) {
  .prizes .prizes_list .prize_num {
    width: 60px;
    height: 60px;
    font-size: 16px;
    left: -20px;
    top: -25px;
  }
}
.prizes .prizes_list .prize_name {
  color: white;
  font-weight: 500;
  position: absolute;
  width: 123%;
  bottom: 11px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 980px) {
  .prizes .prizes_list .prize_name {
    width: 115%;
    bottom: 5px;
  }
}
.prizes .prizes_list .prize_name span {
  font-size: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  background-color: #6a4622;
  width: 100%;
  padding: 10px;
  line-height: 1.2;
  position: relative;
}
@media (max-width: 980px) {
  .prizes .prizes_list .prize_name span {
    min-height: unset;
    font-size: 16px;
    padding: 6px 5px;
  }
}
.prizes .prizes_list .prize_name span:before, .prizes .prizes_list .prize_name span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 15px solid #c4942e;
  z-index: -1;
  top: -12px;
}
.prizes .prizes_list .prize_name span:before {
  left: 0;
  border-left: 27.5px solid transparent;
}
@media (max-width: 980px) {
  .prizes .prizes_list .prize_name span:before {
    border-left: 3vw solid transparent;
  }
}
.prizes .prizes_list .prize_name span:after {
  right: 0;
  border-right: 27.5px solid transparent;
}
@media (max-width: 980px) {
  .prizes .prizes_list .prize_name span:after {
    border-right: 3vw solid transparent;
  }
}

.guidelines {
  background-image: repeating-linear-gradient(90deg, #a37231 0 30px, #a87937 30px 60px);
  width: 100%;
}
.guidelines .container {
  max-width: 950px;
  padding-bottom: 100px;
}
@media (max-width: 1440px) {
  .guidelines .container {
    max-width: 910px;
  }
}
@media (max-width: 980px) {
  .guidelines .container {
    padding-bottom: 70px;
  }
}
.guidelines h3 {
  color: white;
}
.guidelines .guidelines_txt {
  background-color: #e5c47a;
}
.guidelines .guidelines_list {
  color: #685031;
}
.guidelines [data-simplebar] .simplebar-scrollbar {
  background-color: #8a612c;
}
.guidelines [data-simplebar] .simplebar-track {
  background: #cca449;
}

.txtContainer {
  font-size: 19px;
  font-weight: 500;
  padding: 25px 65px 25px 90px;
  border-radius: 15px;
  display: flex;
}
@media (max-width: 1440px) {
  .txtContainer {
    padding: 25px 50px 25px 70px;
  }
}
@media (max-width: 980px) {
  .txtContainer {
    padding: 25px 20px 25px 20px;
    font-size: 16px;
  }
}
.txtContainer .txt_list {
  height: 355px;
  width: 100%;
  overflow-y: auto;
  display: flex;
  padding: 30px 70px 30px 0;
}
@media (max-width: 1440px) {
  .txtContainer .txt_list {
    padding: 30px 50px 30px 0;
  }
}
@media (max-width: 980px) {
  .txtContainer .txt_list {
    padding: 10px 25px 10px 0;
    height: 280px;
  }
}
.txtContainer li {
  line-height: 1.5;
  display: flex;
  gap: 10px;
  letter-spacing: 1.5px;
}
.txtContainer li:not(:last-child) {
  margin-bottom: 20px;
}
.txtContainer [data-simplebar] .simplebar-scrollbar {
  width: 9px;
  border-radius: 5px;
}
@media (max-width: 980px) {
  .txtContainer [data-simplebar] .simplebar-scrollbar {
    width: 8px;
  }
}
.txtContainer [data-simplebar] .simplebar-scrollbar::before {
  display: none;
}
.txtContainer [data-simplebar] .simplebar-track {
  border-radius: 5px;
  width: 9px;
}
@media (max-width: 980px) {
  .txtContainer [data-simplebar] .simplebar-track {
    width: 8px;
  }
}