@charset "UTF-8";
body, html {
  padding: 0;
  margin: 0;
  background-color: #000;
  background: #000 url(../images/img_BG_galaxy.jpg) repeat-y center top fixed;
  background-size: cover;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
}

#wrapper {
  position: relative;
}
#wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgb(0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%);
  z-index: 1;
  opacity: 0.7;
}

.section {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1280px) {
  .section {
    padding: 120px 0;
  }
}

.container {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .container {
    padding: 0 12px;
  }
}
.container.full {
  width: 100%;
  max-width: 100%;
}

div.align-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 28px;
}

.mb-2 {
  margin-bottom: 40px;
}

.btn-info {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.btn-info .info {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 248px;
  z-index: 2;
  -webkit-transform: translateY(-20px) translateX(-50%);
          transform: translateY(-20px) translateX(-50%);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
  pointer-events: none;
}
.btn-info:hover .info {
  opacity: 1;
  -webkit-transform: translateY(0) translateX(-50%);
          transform: translateY(0) translateX(-50%);
  visibility: visible;
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1280px) {
  .flex-between {
    gap: 10px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .flex-between {
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.flex-between img {
  max-width: 65px;
}
@media (min-width: 1280px) {
  .flex-between img {
    max-width: 80px;
  }
}
.flex-between img.desktop {
  display: none;
}
@media (min-width: 768px) {
  .flex-between img.desktop {
    display: inline-block;
  }
}
.flex-between img.mobile {
  display: inline-block;
}
@media (min-width: 768px) {
  .flex-between img.mobile {
    display: none;
  }
}
.flex-between .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.flex-between .step span {
  padding: 10px 0;
}

.main.sz-md {
  max-width: 600px;
  margin: 0 auto;
}
.main.sz-xl {
  max-width: 700px;
  margin: 0 auto;
}
.main.sz-xxl {
  max-width: 1200px;
  margin: 0 auto;
}

.font-aldrich {
  font-family: "Aldrich", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#join-us .title {
  max-width: auto;
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  #join-us .title {
    max-width: 500px;
    padding: 0;
  }
}
@media (min-width: 1280px) {
  #join-us .title {
    max-width: 600px;
  }
}
#join-us .title img {
  width: 100%;
  max-width: 100%;
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  padding: 12px 0px;
  width: 100%;
  height: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  z-index: 200;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1279px) {
  #header {
    height: 70px;
  }
}
#header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 80px;
}
@media (min-width: 768px) {
  #header .inner {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  #header .inner {
    padding: 0 20px;
  }
}
#header .logo {
  width: 180px;
}
@media (min-width: 1280px) {
  #header .logo {
    width: 180px;
  }
}
@media (max-width: 1279px) {
  #header .logo {
    width: 130px;
  }
}
#header .logo img {
  width: 100%;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 48px;
  gap: 40px;
}
.navigation a {
  color: white;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  display: none;
}
@media (min-width: 1280px) {
  .navigation a {
    display: block;
  }
}

a.navigation_item.user-profile {
  display: block;
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
  pointer-events: none;
}
@media (max-width: 1279px) {
  a.navigation_item.user-profile {
    max-width: 130px;
  }
}

a.navigation_item.btn {
  background: url(../images/BTN_S_red_header_M.png) no-repeat 0 0;
  background-size: contain;
  width: 110px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  display: block;
  position: relative;
  z-index: 50;
}
@media (min-width: 1280px) {
  a.navigation_item.btn {
    width: 120px;
    height: 60px;
    line-height: 60px;
    background: url(../images/BTN_M_red_header_PC.png) no-repeat 0 0;
    background-size: contain;
  }
}

#footer {
  position: relative;
  z-index: 10;
  color: #FFF;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
@media (max-width: 1279px) {
  #footer {
    padding-bottom: 100px !important;
  }
}
#footer div.mobile {
  display: none !important;
}
@media (max-width: 1279px) {
  #footer div.mobile {
    display: block !important;
  }
}
#footer div.desktop {
  display: none !important;
}
@media (min-width: 1280px) {
  #footer div.desktop {
    display: block !important;
  }
}
#footer h6, #footer span {
  font-size: 14px;
}
#footer h6 {
  font-weight: bold;
  margin: 0;
}
#footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
#footer ol {
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.75);
}

.hr {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  margin: 40px 0;
}

#footer {
  padding: 60px 30px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(0, 17, 42, 0)), color-stop(140%, #2770E7));
  background: linear-gradient(180deg, rgba(0, 17, 42, 0) 30%, #2770E7 140%);
}
@media (min-width: 1300px) {
  #footer {
    padding: 60px 80px 20px;
  }
}
@media (max-width: 767px) {
  #footer {
    padding: 30px 20px;
  }
}
@media (max-width: 1279px) {
  #footer {
    padding: 60px 30px 20px;
  }
}

.copyright {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
.footer-row > .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}

.footer-menu-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 70px;
}

.footer-menu {
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.footer-menu ol {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  min-width: 70px;
}
.footer-menu li {
  position: relative;
  text-align: left;
}
.footer-menu li.min-width-xs {
  min-width: 110px;
}
.footer-menu li a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.4px;
}
.footer-menu li a:hover {
  color: white !important;
  text-decoration: underline !important;
}
.footer-menu li a.icon {
  padding-right: 45px;
}
.footer-menu li .ic-hot {
  display: inline-block;
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 1279px) {
  .social {
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#top .odometer-wrap {
  display: inline-block;
}

.footer-bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
.footer-bottom-links .footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer-bottom-links .footer-list li {
  display: inline-block;
}
.footer-bottom-links .footer-list li::after {
  content: "|";
  margin: 0 6px;
}
.footer-bottom-links .footer-list li:last-child::after {
  display: none;
}
.footer-bottom-links .footer-list a {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.4px;
}
.footer-bottom-links .footer-list a:hover {
  color: white !important;
  text-decoration: underline !important;
}

.section-titleMsg {
  max-width: 557px;
  margin: 0 auto 28px;
  color: white;
  text-align: center;
}
@media (max-width: 767px) {
  .section-titleMsg {
    padding: 0 12px;
  }
}
.section-titleMsg .title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .section-titleMsg .title {
    font-size: 24px;
  }
}
.section-titleMsg .desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .section-titleMsg .desc {
    font-size: 13px;
  }
}
.section-titleMsg .desc p {
  margin: 0;
}

.section-title {
  position: relative;
  margin-bottom: 28px;
  text-align: center;
}
.section-title img {
  width: 100%;
  max-width: 100%;
}
.section-title .subtitle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #FFF;
  text-align: center;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 2px;
  z-index: 2;
}
@media (max-width: 767px) {
  .section-title .subtitle {
    bottom: 5%;
  }
}
.section-title .subtitle .odometer-wrap {
  color: #FC3258;
  text-align: center;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: Aldrich !important;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 767px) {
  .section-title .subtitle .odometer-wrap {
    font-size: 32px;
  }
}

.section-card.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .section-card.flex {
    display: block;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.section-card.flex .col {
  -webkit-box-flex: 33.3%;
      -ms-flex: 33.3%;
          flex: 33.3%;
  max-width: 33.3%;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .section-card.flex .col {
    padding-top: 0;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 20px;
    margin-bottom: 20px;
  }
  .section-card.flex .col .img {
    -webkit-box-flex: 120px;
        -ms-flex: 120px;
            flex: 120px;
    min-width: 120px;
    max-width: 120px;
  }
  .section-card.flex .col .desc {
    -webkit-box-flex: calc(100% - 120px);
        -ms-flex: calc(100% - 120px);
            flex: calc(100% - 120px);
  }
  .section-card.flex .col img {
    max-width: 100%;
    width: 100%;
  }
}
.section-card.flex .col:nth-child(2) {
  padding-top: 0;
}
.section-card .img {
  text-align: center;
}
.section-card .img img {
  max-width: 320px;
}
@media (max-width: 1279px) {
  .section-card .img img {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .section-card .img img {
    max-width: 120px;
  }
}
.section-card .desc {
  text-align: center;
}
@media (max-width: 767px) {
  .section-card .desc {
    text-align: left;
  }
  .section-card .desc br {
    display: none;
  }
}
.section-card .title {
  color: #FFF;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1279px) {
  .section-card .title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .section-card .title {
    font-size: 18px;
  }
}
.section-card .text {
  color: #FFF;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.task-group {
  position: relative;
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 15px;
  margin-right: 15px;
  width: 430px;
  height: 492px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: -webkit-grab;
  cursor: grab;
}
@media (min-width: 768px) {
  .task-group {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .task-group {
    width: 351px;
    height: auto;
    min-height: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}
.task-group.is-finished {
  opacity: 0.5;
  pointer-events: none;
}
.task-group .task-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1;
}
.task-group .tasks-list {
  color: #5C4343;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.task-group .tasks-list ol {
  margin: 0;
  padding: 0;
}
.task-group .tasks-list li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 32px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 12px;
}
.task-group .tasks-list li:last-child {
  margin-bottom: 0;
}
.task-group .tasks-list li::before {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
}
.task-group .tasks-list li a span {
  display: none;
}
.task-group .tasks-list li a span:nth-child(1) {
  display: inline-block;
}
.task-group .tasks-list li.is-finished {
  opacity: 0.5;
}
.task-group .tasks-list li.is-finished a span {
  display: none;
}
.task-group .tasks-list li.is-finished a span:nth-child(2) {
  display: inline-block;
}
.task-group .tasks-list li.remove-dot {
  display: block;
  padding-left: 0;
}
.task-group .tasks-list li.remove-dot::before {
  display: none;
}
.task-group .tasks-list a.btn {
  width: 100%;
  max-width: 72px;
  text-align: center;
  line-height: 1;
  padding: 8px;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  background: #FC3258;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .task-group .tasks-list a.btn {
    min-width: 72px;
  }
}
.task-group .tasks-list a.btn:hover {
  -webkit-transform: none;
          transform: none;
}
.task-group.color-cooper .task-wrap_main {
  background: #F7D9C3;
}
.task-group.color-cooper li.is-finished::before {
  width: 16px;
  height: 16px;
  background: url(../images/ic/ic_filled_check_circle_check.svg);
  opacity: 0.5;
}
.task-group.color-cooper li.is-finished a.btn {
  border-radius: 4px;
  border: 1px solid rgba(92, 67, 67, 0.3);
  background-color: transparent;
  color: rgba(92, 67, 67, 0.5);
  pointer-events: none;
}
.task-group.color-silver .task-wrap_main {
  background: #DEEBF6;
}
.task-group.color-silver .tasks-list {
  color: #3C4449;
}
.task-group.color-silver li.is-finished::before {
  width: 16px;
  height: 16px;
  background: url(../images/ic/ic_filled_check_circle_check.svg);
  opacity: 0.5;
}
.task-group.color-silver li.is-finished a.btn {
  border-radius: 4px;
  border: 1px solid rgba(60, 68, 73, 0.3);
  background-color: transparent;
  color: rgba(60, 68, 73, 0.5);
  pointer-events: none;
}
.task-group.color-gold .task-wrap_main {
  background: #FFE8B7;
}
.task-group.color-gold .tasks-list {
  color: #915A27;
}
.task-group.color-gold li.is-finished::before {
  width: 16px;
  height: 16px;
  background: url(../images/ic/ic_filled_check_circle_check.svg);
  opacity: 0.5;
}
.task-group.color-gold li.is-finished a.btn {
  border-radius: 4px;
  border: 1px solid rgba(145, 90, 39, 0.3);
  background-color: transparent;
  color: rgba(145, 90, 39, 0.5);
}

.sibling, .current {
  color: white;
}

.current ~ .sibling {
  color: red;
}

.flex-between_item {
  position: relative;
}
.flex-between_item.is-current-level::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img_progress_member_current_PC.svg) no-repeat 0 0;
  background-size: contain;
}
.flex-between_item.is-current-level::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img_progress_light.svg) no-repeat center center;
  background-size: 110% auto;
  z-index: 1;
  -webkit-animation: light 15s infinite alternate;
          animation: light 15s infinite alternate;
}
.flex-between_item.is-current-level img {
  position: relative;
  z-index: 2;
}
.flex-between_item.is-current-level.first::before {
  display: none;
}
.flex-between_item.is-finished img {
  display: none;
}
.flex-between_item.is-finished img.ic-check {
  display: inline-block;
}
.flex-between_item.is-finished img.ic-check.desktop {
  display: none;
}
@media (min-width: 768px) {
  .flex-between_item.is-finished img.ic-check.desktop {
    display: inline-block;
  }
}
.flex-between_item.is-finished img.ic-check.mobile {
  display: inline-block;
}
@media (min-width: 768px) {
  .flex-between_item.is-finished img.ic-check.mobile {
    display: none;
  }
}

@-webkit-keyframes light {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-300deg) scale(1.1);
            transform: rotate(-300deg) scale(1.1);
    -webkit-filter: contrast(150%);
            filter: contrast(150%);
  }
}

@keyframes light {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-300deg) scale(1.1);
            transform: rotate(-300deg) scale(1.1);
    -webkit-filter: contrast(150%);
            filter: contrast(150%);
  }
}
.flex-between_item-count img {
  display: inline-block;
}
.flex-between_item-count img.ic-check {
  display: none;
}

.desktop {
  display: none;
}
@media (min-width: 1280px) {
  .desktop {
    display: block;
  }
}

.mobile {
  display: none;
}
@media (max-width: 1279px) {
  .mobile {
    display: block;
  }
}

.task-level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}
.task-level .task-level-mark {
  margin-top: -65px;
  width: 160px;
}
@media (min-width: 768px) {
  .task-level .task-level-mark {
    margin-top: -45px;
    width: 120px;
  }
}
@media (max-width: 767px) {
  .task-level .task-level-mark {
    margin-top: -45px;
    width: 120px;
  }
}
.task-level .task-level-status {
  position: absolute;
  top: -10px;
  left: 30px;
  width: 130px;
}
.task-level .task-level-status img {
  max-width: 100%;
}
@media (min-width: 768px) {
  .task-level .task-level-status {
    top: -10px;
    left: 20px;
    width: 114px;
  }
}
@media (max-width: 767px) {
  .task-level .task-level-status {
    top: -10px;
    left: 20px;
    width: 114px;
  }
}
.task-level .task-level-name {
  width: 130px;
}
.task-level .task-level-name img {
  max-width: 100%;
}
@media (min-width: 768px) {
  .task-level .task-level-name {
    width: 114px;
  }
}
@media (max-width: 767px) {
  .task-level .task-level-name {
    width: 114px;
  }
}

.task-wrap {
  position: relative;
  z-index: 2;
  margin-top: -25px;
  margin-left: -20px;
  max-width: 420px;
}
.task-wrap .task-wrap_main {
  border-radius: 0px 0px 16px 0px;
  background: #F7D9C3;
  padding: 8px 20px 20px 28px;
}
@media (max-width: 767px) {
  .task-wrap .task-wrap_main {
    padding: 5px 16px 16px 20px;
  }
}
.task-wrap .task-wrap_main {
  margin-top: -1px;
}
.task-wrap .task-wrap_bottom {
  margin-top: -1px;
}
.task-wrap img {
  max-width: 100%;
}

.list-hr {
  position: relative;
  text-align: center;
  margin: 10px 0;
  text-align: center;
}
.list-hr span {
  display: inline-block;
  padding: 5px;
  font-size: 13px;
  line-height: 1;
  color: #915A27;
  font-weight: normal;
  background-color: #FFE8B7;
  position: relative;
  z-index: 2;
}
.list-hr::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(145, 90, 39, 0.2);
}

.task-detail {
  color: white;
  text-align: right;
  leading-trim: both;
  text-edge: cap;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .task-detail {
    padding-bottom: 40px;
  }
}
.task-detail h4 {
  opacity: 0.5;
  margin: 0;
  font-weight: normal;
}
.task-detail p {
  margin: 0;
}
.task-detail p.is-finished span {
  display: inline-block;
}
.task-detail p span.msg {
  display: inline-block;
  width: 46px;
  height: 22px;
  background: url(../images/img_tag_finished.svg) no-repeat 0 0;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
.task-detail b.font-aldrich {
  font-size: 24px;
  margin: 0 8px;
}
.task-detail a {
  color: white;
  text-decoration: none;
}

.ico-info {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/ic/ic_outline_info.svg);
  margin: 0 3px;
  vertical-align: middle;
}

.upgradeSwiper {
  color: white;
}

.slide-wrap {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.gift {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.gift img.desktop {
  display: none;
}
@media (min-width: 1280px) {
  .gift img.desktop {
    display: block;
  }
}
@media (max-width: 1279px) {
  .gift img.desktop {
    display: block;
  }
}
@media (max-width: 767px) {
  .gift img.desktop {
    display: none;
  }
}
.gift img.mobile {
  display: none;
}
@media (max-width: 767px) {
  .gift img.mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .gift {
    max-width: 335px;
  }
}
.gift .btns {
  position: absolute;
  top: 80px;
  right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .gift .btns {
    top: 55px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}
.gift .btns a {
  display: block;
}
.gift .tooltips {
  position: absolute;
  top: -105%;
  left: 50%;
  width: 108px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: tooltipsAnimation 1s ease infinite alternate;
          animation: tooltipsAnimation 1s ease infinite alternate;
}
@media (max-width: 767px) {
  .gift .tooltips {
    top: -90%;
  }
}

@-webkit-keyframes tooltipsAnimation {
  to {
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes tooltipsAnimation {
  to {
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
  }
}
.btn-fb, .btn-ig {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn-fb:hover, .btn-ig:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.btn-wrap.align-center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

a.btn {
  position: relative;
}
a.btn.sz-md {
  display: block;
  width: 250px;
  height: 70px;
  color: white;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  text-align: center;
  text-decoration: none;
  background: url(../images/BTN_L_red_primary.png) no-repeat 0 0;
  background-size: contain;
}
@media (max-width: 767px) {
  a.btn.sz-md {
    width: 200px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    background: url(../images/BTN_M_red_primary.png) no-repeat 0 0;
    background-size: contain;
  }
}
a.btn.sz-sm {
  display: block;
  width: 200px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  color: white;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  text-align: center;
  text-decoration: none;
  background: url(../images/BTN_M_red_primary.png) no-repeat 0 0;
  background-size: contain;
}

a.card-btn {
  display: block;
  width: 270px;
  height: 60px;
  background: url(../images/BTN_M_white_secondary.png) no-repeat 0 0;
  background-size: contain;
  color: #00112A;
  text-align: center;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  margin: 0 auto;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  text-decoration: none;
}

.tabs-card .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .tabs-card .tabs {
    overflow-y: hidden;
    overflow-x: scroll;
  }
  .tabs-card .tabs.remove-scroll {
    overflow: auto;
  }
}
.tabs-card .tab-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  text-overflow: ellipsis;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  background: url(../images/tab_bg.svg) repeat 0 0;
  -webkit-transition: color, text-shadow 0.5s ease;
  transition: color, text-shadow 0.5s ease;
  max-width: 200px;
}
@media (max-width: 767px) {
  .tabs-card .tab-item {
    min-width: 140px;
  }
}
.tabs-card .tab-item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #2770E7;
  opacity: 0;
}
.tabs-card .tab-item:hover {
  color: white;
  text-shadow: 0px 0px 20px #4D8EFF;
}
.tabs-card .tab-item.active a {
  text-shadow: 0px 0px 20px #4D8EFF;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: white;
}
.tabs-card .tab-item.active::after {
  opacity: 1;
}
.tabs-card .tab-item a {
  display: block;
  color: white;
  text-decoration: none;
  min-height: 24px;
  padding: 12px 16px;
  text-align: center;
}

.user-title {
  overflow: hidden;
  color: #FFF;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-tags {
  overflow: hidden;
  height: 20px;
  text-align: center;
}
.user-tags span {
  background-color: #D7E2FF;
  display: inline-block;
  padding: 0 5px;
  overflow: hidden;
  color: #00112A;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 4px;
  margin: 0 2px;
}

.card-desc {
  color: #FFF;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  vertical-align: middle;
  max-width: 270px;
  margin: 20px auto;
}
.card-desc .top-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.card-desc .star {
  color: #FBB100;
  vertical-align: middle;
  padding-left: 20px;
  background: url(../images/ic/ic-star.svg) no-repeat 0 center;
}
.card-desc .star img {
  display: inline-block;
}
.card-desc .point {
  color: #7EABFF;
}
.card-desc .point::before {
  content: "·";
  margin: 0 5px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
}
.card-desc ol {
  list-style: disc;
  margin-left: 0;
  padding-left: 20px;
}

.card-photo {
  position: relative;
  width: 270px;
  height: 280px;
  background: url(../images/img_expert_BG.png) no-repeat 0 0;
  background-size: contain;
  padding: 15px;
  padding-top: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
.card-photo .user-level {
  position: absolute;
  top: 0;
  right: 20px;
  width: 60px;
}
.card-photo .user-level img {
  max-width: 100%;
}
.card-photo .user-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
}
.card-photo .user-photo img {
  max-width: 100%;
}

.section-article {
  color: #FFF;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  position: relative;
  height: auto;
  padding-bottom: 80px;
  overflow: hidden;
}
.section-article .collapse-btn span {
  display: none !important;
}
.section-article .collapse-btn span.hide {
  display: inline-block !important;
}
.section-article .collapse-btn span::after {
  -webkit-transform: rotate(180deg) translateX(-10px);
          transform: rotate(180deg) translateX(-10px);
}
.section-article .group {
  margin-bottom: 28px;
}
.section-article a {
  text-decoration: underline;
}
.section-article .collapse-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(60%, #000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 60%);
}
.section-article .collapse-btn .center {
  max-width: 80px;
  margin: 0 auto;
}
.section-article .collapse-btn a {
  color: white;
  display: block;
  height: 100%;
  text-decoration: none;
  padding-top: 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section-article .collapse-btn span {
  display: inline-block;
  position: relative;
  padding-right: 15px;
}
.section-article .collapse-btn span::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 16px;
  height: 16px;
  background: url(../images/ic/ic-arrow-down.svg) no-repeat 0 0;
  background-size: contain;
}
.section-article.collapse-hide {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.section-article.collapse-hide .collapse-btn span {
  display: none !important;
}
.section-article.collapse-hide .collapse-btn span.show {
  display: inline-block !important;
}
.section-article.collapse-hide .collapse-btn span::after {
  -webkit-transform: rotate(0) translateX(10px);
          transform: rotate(0) translateX(10px);
}

#fixed-event {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 50;
  width: 230px;
}
#fixed-event img {
  max-width: 100%;
}
#fixed-event img.desktop {
  display: none;
}
@media (min-width: 1280px) {
  #fixed-event img.desktop {
    display: block;
  }
}
@media (max-width: 1279px) {
  #fixed-event img.desktop {
    display: block;
  }
}
@media (max-width: 767px) {
  #fixed-event img.desktop {
    display: none;
  }
}
#fixed-event img.mobile {
  display: none;
}
@media (max-width: 767px) {
  #fixed-event img.mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  #fixed-event {
    width: auto;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0) 100%);
  }
  #fixed-event .open-modal {
    position: relative;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
  }
  #fixed-event img {
    width: 100%;
  }
}
#fixed-event .event-inner {
  position: absolute;
  top: 135px;
  left: 40px;
  right: 40px;
  z-index: 10;
}
@media (max-width: 767px) {
  #fixed-event .event-inner {
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100%;
  }
}
#fixed-event a {
  display: block;
  text-decoration: none;
}
#fixed-event .group {
  padding: 20px 15px;
  color: black;
  leading-trim: both;
  text-edge: cap;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 35px;
  text-align: center;
}
@media (max-width: 767px) {
  #fixed-event .group {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 200%;
  }
  #fixed-event .group .inner {
    padding-top: 8px;
  }
  #fixed-event .group:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 57%;
        -ms-flex: 57%;
            flex: 57%;
    padding-left: 23%;
    padding-right: 1%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fixed-event .group:nth-child(2) {
    -webkit-box-flex: 43%;
        -ms-flex: 43%;
            flex: 43%;
    padding-left: 21%;
    padding-right: 4%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#fixed-event .group.text-purple {
  color: #5C34C8;
}
#fixed-event .group.text-purple b {
  color: #5C34C8;
}
#fixed-event b {
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: Aldrich;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  #fixed-event b {
    font-size: 24px;
  }
}

.card {
  width: 270px;
}

.card-body {
  position: relative;
}

.swiperWrap {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1279px) {
  .swiperWrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .swiperWrap {
    padding-left: 0;
    padding-right: 0;
  }
}

.swiper-custom-prev {
  z-index: 20;
  cursor: pointer;
  position: absolute;
  top: 25%;
  left: -40px;
  width: 60px;
  height: 60px;
  background: url(../images/img_arrow_left.svg) no-repeat 0 0;
  -webkit-transition: opacity, -webkit-transform 0.5s ease;
  transition: opacity, -webkit-transform 0.5s ease;
  transition: opacity, transform 0.5s ease;
  transition: opacity, transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media (max-width: 1279px) {
  .swiper-custom-prev {
    left: 12px;
  }
}
.swiper-custom-prev:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.swiper-custom-next {
  z-index: 20;
  cursor: pointer;
  position: absolute;
  top: 25%;
  right: -40px;
  width: 60px;
  height: 60px;
  background: url(../images/img_arrow_right.svg) no-repeat 0 0;
  -webkit-transition: opacity, -webkit-transform 0.5s ease;
  transition: opacity, -webkit-transform 0.5s ease;
  transition: opacity, transform 0.5s ease;
  transition: opacity, transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media (max-width: 1279px) {
  .swiper-custom-next {
    right: 12px;
  }
}
.swiper-custom-next:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.glass-shine-effect {
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}
.glass-shine-effect:before {
  content: "";
  position: absolute;
  height: 200px;
  width: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0 10px #fff;
          box-shadow: 0 0 10px #fff;
  left: 300px;
  top: -50px;
}
.glass-shine-effect:hover {
  -webkit-transform: scale(103%) translateY(-5px) !important;
          transform: scale(103%) translateY(-5px) !important;
}
.glass-shine-effect:hover:before {
  -webkit-transition: left 600ms ease;
  transition: left 600ms ease;
  left: -100px;
}

.glass-shine-effect-sm {
  display: inline-block;
  max-width: 72px;
  width: 100%;
}
.glass-shine-effect-sm a {
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.glass-shine-effect-sm a:before {
  content: "";
  position: absolute;
  height: 100px;
  width: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0 10px #fff;
          box-shadow: 0 0 10px #fff;
  left: 120px;
  top: -50px;
}
.glass-shine-effect-sm:hover a {
  -webkit-transform: scale(103%) !important;
          transform: scale(103%) !important;
}
.glass-shine-effect-sm:hover a:before {
  -webkit-transition: left 600ms ease;
  transition: left 600ms ease;
  left: -50px;
}

li.is-finished .glass-shine-effect-sm a {
  -webkit-transform: none;
          transform: none;
}
li.is-finished .glass-shine-effect-sm a:before {
  display: none;
}

@media (min-width: 1280px) {
  a.open-modal {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  a.open-modal:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

.fancybox__backdrop {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0.9)), to(#004491));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 50%, #004491 100%);
}

.fancybox__content {
  padding: 0;
  background: none;
}

.fancybox__content > .f-button.is-close-btn {
  top: -10px;
  right: -10px;
}
@media (max-width: 767px) {
  .fancybox__content > .f-button.is-close-btn {
    top: -5px;
  }
}

.modal {
  width: 500px;
  height: auto;
  z-index: 500;
}
.modal .modal-title {
  color: #FFF;
  text-align: center;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "AR FangXinShuH7B5Std";
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.modal .modal-title img {
  display: block;
  max-width: 164px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .modal .modal-title {
    font-size: 24px;
    margin-bottom: 20px;
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }
  .modal .modal-title img {
    max-width: 124px;
  }
}
.modal .modal-content {
  width: 100%;
  height: 540px;
  background: url(../images/img_popup_BG_PC.png) no-repeat 0 0;
  background-size: contain;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .modal .modal-content {
    margin-left: auto;
    margin-right: auto;
    width: 335px;
    height: 345px;
    padding: 20px;
    background: url(../images/img_popup_BG_M.png) no-repeat 0 0;
    background-size: contain;
  }
}
.modal.modal-md {
  width: 300px;
}
.modal.modal-md .modal-content {
  width: 100%;
  height: 280px;
  background: url(../images/img_popup_md_BG_PC.svg) no-repeat 0 0;
  background-size: contain;
  padding: 35px;
  padding-top: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal .table {
  color: white;
  width: 100%;
  height: 330px;
}
@media (max-width: 767px) {
  .modal .table {
    height: 300px;
  }
}
.modal .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.modal .row .col {
  line-height: 45px;
  padding: 0 10px;
}
.modal .row .col:nth-child(1) {
  -webkit-box-flex: 40%;
      -ms-flex: 40%;
          flex: 40%;
  max-width: 40%;
}
.modal .row .col:nth-child(2) {
  -webkit-box-flex: 30%;
      -ms-flex: 30%;
          flex: 30%;
  max-width: 30%;
}
.modal .row .col:nth-child(3) {
  -webkit-box-flex: 30%;
      -ms-flex: 30%;
          flex: 30%;
  max-width: 30%;
  text-align: center;
}
@media (max-width: 767px) {
  .modal .row .col {
    line-height: 35px;
    font-size: 14px;
  }
}

#systemAlert.fancybox__content > .f-button.is-close-btn {
  top: 2px !important;
  right: -17px !important;
}

.modal-ticket {
  background: url(../images/img_ticket_420x100.svg) no-repeat 0 0;
  background-size: contain;
  width: 420px;
  height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .modal-ticket {
    width: 335px;
    height: 100px;
    background: url(../images/img_ticket_335x100.svg) no-repeat 0 0;
    background-size: contain;
  }
}
.modal-ticket .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-ticket .col {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}
.modal-ticket .flex {
  color: black;
  leading-trim: both;
  text-edge: cap;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  padding-top: 45px;
}
@media (max-width: 767px) {
  .modal-ticket .flex {
    font-size: 32px;
  }
}
.modal-ticket .flex .col.text-purple {
  color: #5C34C8;
}
.modal-ticket .flex .col.text-purple b {
  color: #5C34C8;
}
.modal-ticket b {
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: Aldrich;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1px;
}

.message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 330px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .message {
    height: 300px;
  }
}
.message p {
  color: #FFF;
  text-align: center;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .message p {
    font-size: 14px;
  }
}

@media (max-width: 1279px) {
  #welfare .section-title {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  #welfare .section-title {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1279px) {
  #top .section-title {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  #top .section-title {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1279px) {
  #top .section-title .subtitle {
    font-size: 16px;
    margin-bottom: 9px;
  }
  #top .section-title .subtitle b {
    font-size: 33px;
  }
}
@media (max-width: 767px) {
  #top .section-title .subtitle {
    font-size: 14px;
  }
  #top .section-title .subtitle b {
    font-size: 24px;
  }
}

#rule {
  position: relative;
  z-index: 10;
}
@media (max-width: 1279px) {
  #rule .section-title {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  #rule .section-title {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  #rule .section-article {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.swiper-pagination-bullet {
  background-color: #fff;
}

.swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 12px;
}

.swiper-pagination {
  position: relative;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .swiper-pagination {
    margin-top: 30px;
  }
}

.fancybox__content > .f-button.is-close-btn {
  top: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -9px;
}
@media (max-width: 767px) {
  .fancybox__content > .f-button.is-close-btn {
    top: 11px !important;
    right: auto;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(135px);
            transform: translateY(-50%) translateX(135px);
  }
}

#top {
  overflow-x: hidden;
}
#top .card-body {
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 1279px) {
  #top .swiperWrap .swiper-slide {
    width: 270px;
    opacity: 0.5;
  }
  #top .swiperWrap .swiper-slide.swiper-slide-active, #top .swiperWrap .swiper-slide.swiper-slide-prev, #top .swiperWrap .swiper-slide.swiper-slide-next {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  #top .swiperWrap .swiper-slide.swiper-slide-active {
    opacity: 1;
  }
  #top .swiperWrap .swiper-slide.swiper-slide-prev, #top .swiperWrap .swiper-slide.swiper-slide-next {
    opacity: 0.5;
  }
}

.task-group img.desktop {
  display: none;
}
@media (min-width: 1280px) {
  .task-group img.desktop {
    display: block;
  }
}
@media (max-width: 1279px) {
  .task-group img.desktop {
    display: block;
  }
}
@media (max-width: 767px) {
  .task-group img.desktop {
    display: none;
  }
}
.task-group img.mobile {
  display: none;
}
@media (max-width: 767px) {
  .task-group img.mobile {
    display: block;
  }
}

#upgrade {
  overflow-x: hidden;
}
@media (max-width: 1279px) {
  #upgrade .upgradeSwiper .swiper-slide {
    width: 430px;
  }
}

.custom-pagination {
  text-align: center;
  width: 100%;
  margin-top: 40px;
}
.custom-pagination_dot {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.custom-pagination_dot.active {
  width: 40px;
  background-color: #fff;
}

.intro-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto 80px;
}
@media (max-width: 1279px) {
  .intro-content {
    max-width: 593px;
  }
}
@media (max-width: 767px) {
  .intro-content {
    max-width: 375px;
  }
}
.intro-content img {
  max-width: 100%;
}
.intro-content .light {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 1600px;
  height: auto;
  z-index: 1;
}
.intro-content .light img {
  -webkit-animation: lightAnimate 0.8s ease infinite alternate;
          animation: lightAnimate 0.8s ease infinite alternate;
  mix-blend-mode: overlay;
}
@media (max-width: 1279px) {
  .intro-content .light {
    width: 900px;
  }
}
@media (max-width: 767px) {
  .intro-content .light {
    width: 480px;
  }
}
.intro-content .slogan-group, .intro-content .btn-wrap {
  position: relative;
  z-index: 10;
}
.intro-content .slogan-group {
  margin-bottom: 28px;
}
@media (max-width: 1279px) {
  .intro-content .slogan-group {
    margin-bottom: 20px;
  }
}

@-webkit-keyframes lightAnimate {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
    -webkit-filter: saturate(120%);
            filter: saturate(120%);
  }
}

@keyframes lightAnimate {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
    -webkit-filter: saturate(120%);
            filter: saturate(120%);
  }
}
.count-tasker-board {
  position: relative;
  width: 500px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1279px) {
  .count-tasker-board {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .count-tasker-board {
    width: 300px;
  }
}
.count-tasker-board img {
  position: relative;
  z-index: 1;
}
.count-tasker-board .board-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.count-tasker-board .subtitle {
  color: #FFF;
  text-align: center;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 2px;
  z-index: 2;
}
@media (max-width: 1279px) {
  .count-tasker-board .subtitle {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
@media (max-width: 767px) {
  .count-tasker-board .subtitle {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
.count-tasker-board .odometer-wrap {
  color: #FC3258;
  text-align: center;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: Aldrich !important;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 1279px) {
  .count-tasker-board .odometer-wrap {
    font-size: 28px;
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .count-tasker-board .odometer-wrap {
    font-size: 25px;
    letter-spacing: 0;
  }
}

.intro-gift.mobile {
  display: none !important;
}
@media (max-width: 1279px) {
  .intro-gift.mobile {
    display: block !important;
  }
}

.gift-content {
  position: relative;
  text-align: center;
}
.gift-content img {
  max-width: 100%;
}
.gift-content .title {
  width: 297px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .gift-content .title {
    width: 226px;
  }
}
.gift-content .ticket {
  position: relative;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: center;
}
.gift-content .ticket img.iphone {
  position: relative;
  z-index: 1;
}
.gift-content .ticket img.board {
  position: relative;
  z-index: 2;
}
.gift-content .ticket-inner {
  position: relative;
  margin-top: -13px;
}
.gift-content .event-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 39px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 20;
}
.gift-content .event-inner .group {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 15px;
  color: black;
  font-family: "PingFang TC", 微軟正黑體, "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}
.gift-content .event-inner .group.text-purple {
  color: #5C34C8;
}
.gift-content .event-inner .group.text-purple b {
  color: #5C34C8;
}
.gift-content .event-inner b {
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  font-family: Aldrich;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .gift-content .event-inner b {
    font-size: 24px;
  }
}

#wrapper {
  width: 100%;
}

#introAni-mask {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/img_gun_barrel.svg) no-repeat center;
  background-size: cover;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  z-index: 500;
}

#introAni-mask-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/img_BG_galaxy.jpg) no-repeat center;
  background-size: cover;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  z-index: 300;
}

#introAni-bullet {
  position: fixed;
  bottom: 90px;
  left: 140px;
  -webkit-transform: translate(-60%, 50%);
          transform: translate(-60%, 50%);
  width: 320px;
  z-index: 500;
}
@media (max-width: 767px) {
  #introAni-bullet {
    left: 50px;
    bottom: 60px;
    width: 100px;
    height: auto;
    -webkit-transform: translate(-60%, 50%);
            transform: translate(-60%, 50%);
  }
}
#introAni-bullet img {
  max-width: 100%;
}

.alert-message {
  text-align: center;
}
.alert-message h3 {
  color: white;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 8px;
}
.alert-message p {
  color: white;
  font-size: 14px;
  line-height: 1.5;
}