@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;700&family=Noto+Sans+TC:wght@300;400;700;900&display=swap";
/* common */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
}

a {
  text-decoration: none;
}

.container-fluid {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 1260px;
}
@media (max-width: 1279.98px) {
  .container {
    width: calc(100% - 40px);
  }
}
@media (max-width: 421.98px) {
  .container {
    width: calc(100% - 40px);
  }
}

/* Header */
.header {
  border-bottom: 5px solid #E99411;
  box-shadow: 0 5px 0 rgb(0, 0, 0);
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #fff;
}

.header-info {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 697.98px) {
  .header-info {
    height: 50px;
  }
}

.hd-logo {
  display: flex;
  position: relative;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.hd-logo > img {
  display: block;
  width: 175px;
  height: 34px;
}

.mb-navi-btn {
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  cursor: pointer;
}
@media (max-width: 697.98px) {
  .mb-navi-btn {
    right: 20px;
  }
}
.mb-navi-btn > span {
  display: flex;
  width: 32px;
  height: 1px;
  background: #000;
  position: relative;
}
.mb-navi-btn > span::before {
  display: block;
  content: "";
  width: 32px;
  height: 1px;
  background: #000;
  position: absolute;
  transition: 0.3s;
  transform: rotate(0deg) translateY(-12px);
}
.mb-navi-btn > span::after {
  display: block;
  content: "";
  width: 32px;
  height: 1px;
  background: #000;
  position: absolute;
  transition: 0.3s;
  transform: rotate(0deg) translateY(12px);
}
@media (max-width: 697.98px) {
  .mb-navi-btn {
    display: flex;
    z-index: 1000;
  }
  .mb-navi-btn.active > span {
    background: transparent;
  }
  .mb-navi-btn.active > span::before {
    transform: rotate(45deg) translateY(0);
    background: #000;
  }
  .mb-navi-btn.active > span::after {
    transform: rotate(-45deg) translateY(0);
    background: #000;
  }
}
@media (max-width: 697.98px) {
  .mb-navi-btn {
    width: 20px;
    height: 20px;
  }
  .mb-navi-btn > span::before {
    width: 20px;
    transform: translateY(-8px);
  }
  .mb-navi-btn > span::after {
    width: 20px;
    transform: translateY(8px);
  }
}

.navi-ul {
  display: flex;
  gap: 0 29px;
}
.navi-ul > li {
  list-style: none;
  font-size: 16px;
}
.navi-ul > li > a {
  text-decoration: none;
  display: block;
  color: #040000;
  transform: translateY(0);
  transition: 0.3s;
}
.navi-ul > li > a:hover {
  color: #E99411;
  transform: translateY(-2px);
}
@media (max-width: 697.98px) {
  .navi-ul {
    transform: scaleX(0);
    transform-origin: right;
    position: fixed;
    width: 100%;
    flex-direction: column;
    left: 0;
    top: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    align-items: center;
    padding: 20px;
    gap: 20px 0;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }
  .navi-ul.active {
    transform: scaleX(1);
  }
}

/* footer */
.footer-sec {
  background-color: #000A1C;
  padding: 13px 0;
}

.footer-info {
  display: flex;
  align-items: center;
}
@media (max-width: 697.98px) {
  .footer-info {
    flex-direction: column;
  }
  .footer-info > img {
    margin: 0 0 4px 0;
  }
}

.ft-logo {
  width: 129px;
  display: block;
  margin: 0 30px 0 0;
}

.ft-info-txt {
  font-size: 14px;
  color: #898989;
  font-weight: 500;
}
@media (max-width: 539.98px) {
  .ft-info-txt {
    text-align: center;
  }
}

/* main區塊 */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../images/main_bg.svg);
  background-size: cover;
  background-attachment: fixed;
  min-height: calc(100vh - 200px);
  overflow: hidden;
}

/* 我要報名 join */
.join-cnt {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 50px 0;
}

.title-wrapper {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 0 0;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .title-wrapper {
    width: 80%;
  }
}
.title-wrapper > h3 {
  font-size: 48px;
  color: #664444;
  font-weight: 900;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 40%;
  text-align: center;
}
.title-wrapper > h3.for-rules {
  top: 32%;
}
@media (max-width: 697.98px) {
  .title-wrapper > h3.for-rules {
    top: 37%;
  }
}
@media (max-width: 1279.98px) {
  .title-wrapper > h3 {
    font-size: 42px;
  }
}
@media (max-width: 697.98px) {
  .title-wrapper > h3 {
    font-size: 28px;
    line-height: 1.2;
  }
}
.title-wrapper .title-explosion-bg {
  width: 100%;
}
.title-wrapper .title-rider {
  position: absolute;
  z-index: 1;
  right: 0;
  transform: translate(100%, 0);
}
@media (max-width: 1279.98px) {
  .title-wrapper .title-rider {
    width: 45%;
    right: 20px;
  }
}
@media (max-width: 991.98px) {
  .title-wrapper .title-rider {
    transform: translate(50%, 0);
    right: 0;
    bottom: 10%;
  }
}

.join-form {
  width: 70%;
  padding: 50px;
  margin: -10vw auto 40px auto;
  border: 4px solid #242424;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 27px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 1279.98px) {
  .join-form {
    width: 90%;
  }
}
@media (max-width: 991.98px) {
  .join-form {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 421.98px) {
  .join-form {
    padding: 20px;
  }
}

.form-item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  border: 3px solid #E99411;
  border-radius: 25vw;
  box-shadow: 4px 4px 0 #915F13;
  padding: 8px 20px;
}
.form-item-wrapper.for-area {
  align-items: flex-start;
  border-radius: 20px;
}
@media (max-width: 697.98px) {
  .form-item-wrapper.for-area {
    flex-direction: column;
  }
}
.form-item-wrapper.for-area > textarea {
  flex-grow: 1;
  border: 0;
  outline: 0;
  height: 145px;
  color: #777;
  font-weight: 700;
  font-size: 20px;
  width: 100%;
}
.form-item-wrapper.for-upload {
  border: 0;
  padding: 0;
  background-color: transparent;
  box-shadow: 0 0 0;
  flex-direction: column;
  align-items: flex-start;
}
.form-item-wrapper.for-upload > label {
  margin: 0 0 2px 0;
}
.form-item-wrapper > label {
  font-size: 20px;
  color: #80733C;
  font-weight: 700;
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .form-item-wrapper > label {
    font-size: 18px;
  }
}
.form-item-wrapper > input {
  outline: 0;
  border: 0;
  color: #777;
  font-weight: 700;
  flex-grow: 1;
  font-size: 20px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .form-item-wrapper > input {
    font-size: 18px;
  }
}
@media (max-width: 421.98px) {
  .form-item-wrapper > input {
    font-size: 16px;
  }
}

.agenda-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 4px;
}
.agenda-wrapper > label {
  font-size: 16px;
}

.form-item-hint {
  font-size: 16px;
  color: #80733C;
  margin: 0 0 16px 0;
  opacity: 0.6;
}

.join-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 36px;
  color: #fff;
  font-weight: 900;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
  padding: 12px 40px;
  background-color: #E99411;
  border: 3px solid #fff;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.55);
  transform: translate(0, 0);
  transition: 0.3s;
  cursor: pointer;
}
.join-submit:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.55);
  background-color: #ad6f13;
}
@media (max-width: 991.98px) {
  .join-submit {
    font-size: 28px;
  }
}
.join-submit.for-idx {
  position: relative;
  z-index: 5;
  left: 20%;
}
@media (max-width: 1279.98px) {
  .join-submit.for-idx {
    font-size: 32px;
  }
}
@media (max-width: 991.98px) {
  .join-submit.for-idx {
    padding: 8px 30px;
    font-size: 24px;
  }
}
@media (max-width: 539.98px) {
  .join-submit.for-idx {
    left: 10%;
    bottom: 2%;
    position: absolute;
  }
}

.pic-upload-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
}
@media (max-width: 697.98px) {
  .pic-upload-wrapper {
    width: 100%;
    gap: 18px 18px;
  }
}

.pic-upload-item {
  width: 175px;
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 0 36px 0;
  cursor: pointer;
  transform: translate(0, 0);
  transition: 0.3s;
}
@media (max-width: 697.98px) {
  .pic-upload-item {
    width: calc(50% - 9px);
    margin: 0 0 12px 0;
  }
}
.pic-upload-item:hover {
  transform: translate(3px, 3px);
}
.pic-upload-item:hover > figure {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 #915F13;
}
.pic-upload-item > figure {
  width: 100%;
  padding-bottom: 75%;
  position: relative;
  display: flex;
  justify-content: center;
  border: 3px solid #E99411;
  border-radius: 20px;
  box-shadow: 4px 4px 0 #915F13;
  background-color: #F4BD45;
  overflow: hidden;
  transform: translate(0, 0);
  transition: 0.3s;
}
.pic-upload-item > figure > img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.pic-upload-item .pic-upload-hint {
  display: none;
}
.pic-upload-item .edit-pic-btn {
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  font-size: 14px;
  color: #fff;
  padding: 4px 18px;
  border-radius: 25vw;
  position: absolute;
  z-index: 3;
  cursor: pointer;
  bottom: 10px;
  border: 0;
  transition: 0.3s;
}
.pic-upload-item .edit-pic-btn:hover {
  color: #ad6f13;
}
.pic-upload-item.blank .pic-upload-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 25%;
  z-index: 1;
  color: #fff;
  font-size: 24px;
}
.pic-upload-item.blank .pic-upload-hint > span {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.9;
}
@media (max-width: 991.98px) {
  .pic-upload-item.blank .pic-upload-hint {
    font-size: 24px;
  }
}
@media (max-width: 421.98px) {
  .pic-upload-item.blank .pic-upload-hint {
    font-size: 18px;
  }
}
.pic-upload-item.blank .edit-pic-btn {
  display: none;
}
.pic-upload-item.free .pic-upload-hint > span {
  display: none;
}
.pic-upload-item.free .delete-pic-btn {
  position: absolute;
  bottom: -30px;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}
.pic-upload-item.free .delete-pic-btn:hover > i {
  color: #664444;
}
@media (max-width: 421.98px) {
  .pic-upload-item.free .delete-pic-btn {
    bottom: -24px;
  }
}
.pic-upload-item.free .delete-pic-btn > i {
  color: #F4BD45;
  transition: 0.3s;
}

.add-pic-btn {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  width: 137px;
  height: 137px;
  border-radius: 50vw;
  border: 3px solid #E99411;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.7);
  background-color: #915F13;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transform: translate(0, 0);
  transition: 0.3s;
}
.add-pic-btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);
}
.add-pic-btn > i {
  color: #fff;
  transform: scale(1.6);
  margin: 0 0 10px 0;
}

/* 活動票選 vote */
.sec-title {
  font-size: 48px;
  color: #664444;
  font-weight: 900;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  margin: 0 0 40px 0;
}
@media (max-width: 1279.98px) {
  .sec-title {
    font-size: 42px;
  }
}
@media (max-width: 697.98px) {
  .sec-title {
    font-size: 36px;
  }
}

.vote-cnt {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}
@media (max-width: 991.98px) {
  .vote-cnt {
    padding: 40px 0;
  }
}

.entries-page-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  padding: 0 9.2%;
  gap: 50px 100px;
}
@media (max-width: 1279.98px) {
  .entries-page-wrapper {
    padding: 0 10px;
    gap: 50px 40px;
  }
}
@media (max-width: 991.98px) {
  .entries-page-wrapper {
    padding: 0;
    gap: 50px 20px;
  }
}
@media (max-width: 697.98px) {
  .entries-page-wrapper {
    flex-direction: column;
  }
}

.entry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 50px);
  position: relative;
}
@media (max-width: 1279.98px) {
  .entry-item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 991.98px) {
  .entry-item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 697.98px) {
  .entry-item {
    width: 100%;
  }
}
.entry-item > figure {
  width: 100%;
  padding-bottom: 75%;
  background-color: #fff;
  border: 4px solid #000;
  border-radius: 20px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
.entry-item > figure > img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.entry-serial-num {
  font-size: 20px;
  color: #fff;
  background-color: #000;
  padding: 8px 55px;
  justify-content: center;
  border-radius: 20px 20px 0 0;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .entry-serial-num {
    font-size: 18px;
  }
}

.entry-author-wrapper {
  background-color: #000;
  margin: 0 0 18px 0;
  border-radius: 0 0 20px 20px;
  padding: 4px 0 8px 0;
}

.entry-author {
  padding: 0 55px;
  font-size: 20px;
  color: #F4BD45;
  justify-content: center;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .entry-author {
    font-size: 18px;
  }
}

.vote-count {
  font-size: 16px;
  color: #DDD5C4;
  padding: 0 55px;
  font-weight: 400;
  text-align: center;
}

.entry-btnswrapper {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}

.show-entry-pics-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 130px;
  height: 42px;
  background-color: #F4BD45;
  color: #565656;
  border: 3px solid #80733C;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.75);
  cursor: pointer;
  transform: translate(0, 0);
  transition: 0.3s;
}
.show-entry-pics-btn:hover {
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
  transform: translate(3px, 3px);
}

.vote-entry-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 130px;
  height: 42px;
  background-color: #AA4646;
  color: #fff;
  border: 3px solid #FCECD0;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.75);
  cursor: pointer;
  transform: translate(0, 0);
  transition: 0.3s;
}
.vote-entry-btn:hover {
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
  transform: translate(3px, 3px);
}

.page-tool-wrapper {
  display: flex;
  gap: 0 15px;
  margin: 50px 0 0 0;
}

.page-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #D9D9D9;
  color: #707070;
  border: 3px solid #fff;
  width: 42px;
  height: 42px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  font-size: 16px;
  transform: translate(0, 0);
  transition: 0.3s;
  cursor: pointer;
}
.page-btn:hover {
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
  transform: translate(3px, 3px);
}
@media (max-width: 697.98px) {
  .page-btn {
    font-size: 14px;
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.75);
  }
}
.page-btn.prev, .page-btn.next {
  width: auto;
  padding: 10px 40px;
  border-radius: 25vw;
  background-color: #76BEB4;
  border: 3px solid #FCECD0;
  color: #fff;
}
@media (max-width: 697.98px) {
  .page-btn.prev, .page-btn.next {
    padding: 8px 20px;
    border: 2px solid #FCECD0;
  }
}
.page-btn.page-num.current {
  background-color: #76BEB4;
  border: 3px solid #FCECD0;
  color: #fff;
}
@media (max-width: 697.98px) {
  .page-btn.page-num.current {
    border: 2px solid #FCECD0;
  }
}

.popup-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.popup-sec.hide {
  display: none;
}

.slider-frame {
  width: 50%;
  padding: 0 40px 30px 40px;
  margin: 0 auto 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 697.98px) {
  .slider-frame {
    width: 100%;
    margin: 0 auto 10px auto;
  }
}

.entry-slider {
  width: calc(100% - 5px);
  position: relative;
  border-radius: 20px;
  border: 4px solid #000;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.entry-pic {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
}
.entry-pic > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0 12px;
  margin: 12px 0 0 0;
  bottom: 5px;
  left: 0;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #d9d9d9;
  opacity: 1;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.7);
}

.swiper-pagination-bullet-active {
  background: #409181;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 0;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 0;
}

.entry-info-wrapper {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px 0;
  margin: 0 0 30px 0;
}
@media (max-width: 697.98px) {
  .entry-info-wrapper {
    width: calc(100% - 40px);
  }
}

.entry-info {
  width:100%;
  display: flex;
}
.entry-info > span {
  font-size: 16px;
  color: #FFE678;
  display: inline-flex;
  flex-grow: 0;
  flex-shrink: 0;
}
.entry-info > p {
  font-size: 16px;
  color: #fff;
  flex-grow: 1;
  max-height: 135px;
  overflow-y: auto;
  scrollbar-width: thin;           /* Firefox: 細一點的 scrollbar */
  scrollbar-color: white transparent; /* Firefox: 滾動條白，背景透明 */
}

/* Webkit 瀏覽器（Chrome、Safari、Edge） */
.entry-info > p::-webkit-scrollbar {
    width: 6px; /* 滾動條寬度 */
}

.entry-info > p::-webkit-scrollbar-track {
    background: transparent; /* 滾動條背景透明 */
}

.entry-info > p::-webkit-scrollbar-thumb {
    background-color: white; /* 滾動條本體白色 */
    border-radius: 3px;
}

.popup-panel-wrapper {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}

.close-popup-btn {
  position: absolute;
  top: 20px;
  right: 20%;
  cursor: pointer;
}
.close-popup-btn > i {
  color: #fff;
  transform: scale(2);
}
@media (max-width: 697.98px) {
  .close-popup-btn > i {
    transform: scale(1.4);
  }
}
@media (max-width: 697.98px) {
  .close-popup-btn {
    right: 20px;
  }
}

.other-entry-pics-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 130px;
  height: 42px;
  background-color: #F4BD45;
  color: #565656;
  border: 3px solid #80733C;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.75);
  cursor: pointer;
  transform: translate(0, 0);
  transition: 0.3s;
}
.other-entry-pics-btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
}

/* 活動規則 */
.rules-wrapper {
  width: 100%;
  padding: 50px;
  margin: -10vw auto 40px auto;
  border: 4px solid #242424;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .rules-wrapper {
    padding: 30px;
  }
}
@media (max-width: 421.98px) {
  .rules-wrapper {
    padding: 20px;
  }
}

.rules-part > h1 {
  font-size: 32px;
  font-weight: 900;
  color: #000;
  margin: 0 0 20px 0;
}
@media (max-width: 697.98px) {
  .rules-part > h1 {
    font-size: 28px;
    margin: 0 0 14px 0;
  }
}
@media (max-width: 421.98px) {
  .rules-part > h1 {
    font-size: 24px;
  }
}
.rules-part > p {
  color: #212121;
  font-weight: 300;
  font-size: 18px;
}
@media (max-width: 697.98px) {
  .rules-part > p {
    font-size: 16px;
  }
}

.main-rule-ul {
  padding: 0 0 0 1.2rem;
  font-size: 18px;
  font-weight: 300;
  gap: 6px 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 697.98px) {
  .main-rule-ul {
    font-size: 16px;
  }
}
.main-rule-ul > li > ul {
  padding: 0 0 0 1.2rem;
}

.rules-small-ul {
  padding: 0 0 0 1.2rem;
  margin: 0 0 6px 0;
}

.emphasis {
  display: inline-block;
  font-weight: 700;
}

/* 得獎名單 */
.prize-grade-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 48px;
  position: relative;
  width: 100%;
  margin: 0 0 80px 0;
}

.prize-grade-block {
  width: calc((100% - 48px) / 2);
  position: relative;
  display: flex;
  padding: 72px 45px;
  border: 4px solid #242424;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
  background-image: url(../images/prize_grade_block_bg.svg);
  background-repeat: repeat-x;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1279.98px) {
  .prize-grade-block {
    padding: 30px;
  }
}
@media (max-width: 991.98px) {
  .prize-grade-block {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 697.98px) {
  .prize-grade-block {
    width: 100%;
  }
}
.prize-grade-block.most-pop {
  font-size: 22px;
  background-color: #F4BD45;
}
.prize-grade-block.most-pop > figure > i {
  color: #F4BD45;
}
.prize-grade-block.cmz-king {
  font-size: 22px;
  background-color: #76BEB4;
}
.prize-grade-block.cmz-king > figure > i {
  color: #76BEB4;
}
.prize-grade-block.most-vote {
  background-image: url(../images/prize_grade_block_bg_lt.svg);
  font-size: 22px;
  background-color: #AA4646;
}
.prize-grade-block.most-vote > figure > i {
  color: #AA4646;
}
.prize-grade-block.most-vote .grade-info {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.prize-grade-block.most-vote .grade-info > h2 {
  color: #fff;
}
.prize-grade-block.most-vote .grade-info > p {
  color: #fff;
  opacity: 0.8;
}
.prize-grade-block.participate {
  background-image: url(../images/prize_grade_block_bg_lt.svg);
  font-size: 22px;
  background-color: #4F3C57;
}
.prize-grade-block.participate > figure > i {
  color: #4F3C57;
}
.prize-grade-block.participate .grade-info {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.prize-grade-block.participate .grade-info > h2 {
  color: #fff;
}
.prize-grade-block.participate .grade-info > p {
  color: #fff;
  opacity: 0.8;
}
.prize-grade-block > figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  margin: 0 30px 0 0;
}
@media (max-width: 991.98px) {
  .prize-grade-block > figure {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 697.98px) {
  .prize-grade-block > figure {
    width: 30vw;
    height: 30vw;
  }
}
.prize-grade-block > figure::before {
  display: block;
  content: "";
  z-index: 0;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
}
.prize-grade-block > figure > i {
  position: relative;
  z-index: 2;
  transform: scale(3.5) rotate(15deg);
}

.grade-info > h2 {
  color: #000;
  margin: 0 0 14px 0;
}
@media (max-width: 991.98px) {
  .grade-info > h2 {
    text-align: center;
    margin: 0 0 6px 0;
  }
}
.grade-info > p {
  font-size: 16px;
  color: #000;
}

.annouce-msg {
  font-size: 24px;
  font-weight: 700;
  color: #80733C;
  margin: 0 0 50px 0;
}
.annouce-msg > span {
  color: #000;
  display: inline-block;
  margin: 0 4px;
}

.annouce-result-wrapper {
  width: 100%;
  padding: 50px;
  border: 4px solid #242424;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: 40px 40px;
}
@media (max-width: 697.98px) {
  .annouce-result-wrapper {
    padding: 30px;
  }
}

.annouce-result-group {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 539.98px) {
  .annouce-result-group {
    width: 100%;
  }
}

.ar-group-name {
  font-size: 32px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0 6px;
  margin: 0 0 10px 0;
}
@media (max-width: 697.98px) {
  .ar-group-name {
    font-size: 24px;
  }
}
.ar-group-name::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
}
.ar-group-name.most-pop {
  color: #F4BD45;
}
.ar-group-name.most-pop::after {
  background-color: #F4BD45;
}
.ar-group-name.cmz-king {
  color: #76BEB4;
}
.ar-group-name.cmz-king::after {
  background-color: #76BEB4;
}
.ar-group-name.most-vote {
  color: #AA4646;
}
.ar-group-name.most-vote::after {
  background-color: #AA4646;
}
.ar-group-name.participate {
  color: #4F3C57;
}
.ar-group-name.participate::after {
  background-color: #4F3C57;
}

.award-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.award-list > li {
  list-style: none;
  font-size: 18px;
  color: #000;
  display: flex;
}
@media (max-width: 697.98px) {
  .award-list > li {
    font-size: 16px;
  }
}
.award-list > li > .vote-count {
  color: #000;
  font-size: 18px;
  padding: 0 20px;
}
.award-list > li > .vote-count > span {
  color: #AA4646;
}

/* index */
.main-theme-sec {
  width: 100%;
  height: calc(100vh - 200px);
  background-color: #76BEB3;
  position: relative;
  overflow: hidden;
}

.theme-cnt {
  position: relative;
  margin: 0 auto;
  height: 100%;
}

.theme-dots-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  background-image: url(../images/main_theme_dot_bg.svg);
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center center;
}

.theme-glow-effect {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}
.theme-glow-effect > span {
  top: -110%;
  left: calc(-100% + 630px);
  display: block;
  width: 200%;
  height: 300%;
  position: absolute;
  z-index: 1;
  background-image: url(../images/main_theme_glow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 1279.98px) {
  .theme-glow-effect > span {
    left: -66%;
    width: 175%;
    height: 280%;
  }
}
@media (max-width: 697.98px) {
  .theme-glow-effect > span {
    top: -92%;
    left: -51%;
    width: 169%;
    height: 254%;
  }
}
@media (max-width: 539.98px) {
  .theme-glow-effect > span {
    top: -85%;
    left: -34%;
    width: 157%;
    height: 240%;
  }
}

.theme-label {
  width: 600px;
  position: relative;
  z-index: 5;
  top: 20px;
  left: 0;
}
@media (max-width: 1279.98px) {
  .theme-label {
    width: 40%;
  }
}
@media (max-width: 991.98px) {
  .theme-label {
    width: 56%;
  }
}
@media (max-width: 697.98px) {
  .theme-label {
    width: 70%;
  }
}
@media (max-width: 539.98px) {
  .theme-label {
    width: 100%;
  }
}

.label-steam {
  display: block;
  opacity: 0;
}
.label-steam.right-top {
  width: 10%;
  padding-bottom: 12%;
  background-image: url(../images/main_theme_steam_r_t.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 8%;
  right: 14%;
  position: absolute;
  z-index: 2;
}
.label-steam.right-btm {
  width: 10%;
  padding-bottom: 12%;
  background-image: url(../images/main_theme_steam_r_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 0%;
  bottom: 24%;
  position: absolute;
  z-index: 2;
}
.label-steam.left-btm {
  width: 14%;
  padding-bottom: 15%;
  background-image: url(../images/main_theme_steam_l.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 3%;
  bottom: 7%;
  position: absolute;
  z-index: 2;
}

.theme-buildings {
  width: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  left: 0;
  bottom: 0;
}
.theme-buildings > span {
  display: block;
  width: 120%;
  padding-bottom: 18%;
  background-image: url(../images/main_theme_buildings.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0;
}
@media (max-width: 991.98px) {
  .theme-buildings > span {
    padding-bottom: 35%;
  }
}

.theme-green-cloud {
  width: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  left: 0;
  bottom: 0;
}
.theme-green-cloud > span {
  display: block;
  width: 100%;
  padding-bottom: 20%;
  background-image: url(../images/main_theme_green_cloud.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0;
}

.theme-rider {
  width: 650px;
  position: absolute;
  z-index: 5;
  right: 1%;
  bottom: 0.5%;
}
@media (max-width: 1279.98px) {
  .theme-rider {
    width: 47%;
  }
}
@media (max-width: 697.98px) {
  .theme-rider {
    width: 57%;
  }
}
@media (max-width: 539.98px) {
  .theme-rider {
    width: 67%;
  }
}
.theme-rider > img {
  display: block;
}

.theme-title {
  width: 420px;
  position: absolute;
  z-index: 6;
  left: 13%;
  bottom: 0;
}
@media (max-width: 1279.98px) {
  .theme-title {
    width: 42%;
  }
}
@media (max-width: 697.98px) {
  .theme-title {
    width: 50%;
    left: 5%;
  }
}
@media (max-width: 539.98px) {
  .theme-title {
    width: 70%;
    left: 0;
    bottom: 25%;
  }
}
.theme-title > img {
  display: block;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}

.donation-wrapper {
  background-color: #1C997F;
}

.donation-cnt {
  padding: 20px 0;
}

.donation-title {
  display: flex;
  font-size: 18px;
  color: #fff;
  align-items: center;
  gap: 0 10px;
}
@media (max-width: 697.98px) {
  .donation-title {
    margin: 0 0 20px 0;
  }
}
.donation-title > span {
  display: inline-flex;
  flex-grow: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.donation-title::after {
  width: 100%;
  height: 1px;
  display: block;
  content: "";
  background-color: #fff;
  flex-shrink: 1;
  flex-grow: 1;
}

.donation-list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 697.98px) {
  .donation-list {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.donation-list > img {
  width: 13%;
  display: block;
}
@media (max-width: 697.98px) {
  .donation-list > img {
    width: 28%;
  }
}

/* 美圖 */
.demons-sec {
  width: 100%;
}

.demons-cnt {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.demons-ex-wrapper-set {
  width: 100%;
  position: relative;
  margin: 0 0 80px 0;
}
@media (max-width: 697.98px) {
  .demons-ex-wrapper-set {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    margin: 0 0 30px 0;
  }
}

.demons-item {
  position: relative;
  width: 56%;
}
@media (max-width: 697.98px) {
  .demons-item {
    width: 100%;
  }
}
.demons-item .demons-item-frame {
  width: 100%;
  padding-bottom: 57%;
  position: relative;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  display: flex;
  justify-content: center;
  background-color: #000;
}
.demons-item .demons-item-frame > img {
  top: 5px;
  display: block;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
}
.demons-item .demons-item-shadow {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
}
.demons-item .demons-logo {
  width: 20%;
  display: block;
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 15px;
}
.demons-item.right {
  position: absolute;
  right: 0;
  top: 46px;
}
@media (max-width: 697.98px) {
  .demons-item.right {
    position: relative;
    right: unset;
    top: unset;
  }
}
.demons-item.right .demons-item-frame {
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
.demons-item.right .demons-item-frame > img {
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
.demons-item.right .demons-item-shadow {
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
.demons-item.right .demons-logo {
  right: 15px;
  bottom: 15px;
  left: unset;
}/*# sourceMappingURL=style.css.map */