* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC";
  line-height: 150%;
}

.l-time, .l-activity, .c-ticket, .c-info, .l-block__wrap, .l-footer__wrap, .l-header__wrap {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .l-time, .l-activity, .c-ticket, .c-info, .l-block__wrap, .l-footer__wrap, .l-header__wrap {
    padding: 0 15px;
  }
}

.l-header {
  padding: 12px 0;
  background: #FFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.l-header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  width: 170px;
  height: 50px;
  flex: 0;
}
.l-header__link {
  color: #006C6A;
  font-size: 14px;
  text-decoration: none;
}
@media (max-width: 992px) {
  .l-header__logo {
    width: 102px;
    height: 30px;
  }
}

.l-footer {
  padding: 20px 0;
  background: #FFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.l-footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-footer__link {
  font-size: 14px;
  color: #006C6A;
}

.l-block__item--kv {
  height: 600px;
  background: url(../expo/bg-kv.jpg) no-repeat center/1920px 100%, #006C6A;
}
.l-block__item--info {
  padding: 50px 0;
  background: url(../expo/bg-info.jpg) no-repeat center/1920px 100%, #006C6A;
}
.l-block__item--show {
  background: url(../expo/bg-show.jpg) no-repeat bottom 0 center/1920px 650px, #006C6A;
}
.l-block__item--activity {
  padding: 60px 0;
  background: url(../expo/bg-activity.jpg) no-repeat top 0 center/1920px 100%, #006C6A;
}
.l-block__item--time {
  padding: 66px 0;
  background: url(../expo/bg-time.jpg) no-repeat bottom 0 center/1920px 100%, #F2F2F2;
}
@media (max-width: 992px) {
  .l-block__item--kv {
    height: 300px;
    background: url(../expo/bg-kv-sm.jpg) no-repeat center/992px 100%, #006C6A;
  }
  .l-block__item--show {
    background: #006C6A;
  }
  .l-block__item--activity {
    padding-top: 40px;
    background: url(../expo/bg-activity-sm.jpg) no-repeat top 0 center/992px 640px, #006C6A;
  }
  .l-block__item--time {
    padding: 40px 0;
    background: url(../expo/bg-time-sm.jpg) no-repeat top 0 center/992px 760px, #F2F2F2;
  }
}

.l-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .l-info {
    gap: 10px;
  }
}

.c-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  color: #fff;
}
.c-info__title {
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  font-size: 60px;
  font-weight: bold;
  line-height: 100%;
}
.c-info__subTitle {
  display: flex;
  gap: 16px;
  font-size: 22px;
}
.c-info__tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  border-radius: 8px;
  background: #FF4747;
  flex: 0 0 auto;
}
.c-info__detail {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  font-size: 32px;
  font-weight: bold;
}
.c-info__detail span {
  font-size: 18px;
  font-weight: normal;
  margin-left: 10px;
}
@media (max-width: 992px) {
  .c-info {
    gap: 20px;
  }
  .c-info__title {
    font-size: 32px;
    line-height: 150%;
  }
  .c-info__subTitle {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 22px;
  }
  .c-info__detail {
    font-size: 24px;
  }
}

.c-ticket__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -60px;
}
.c-ticket__title span {
  display: inline-flex;
  padding: 5px 30px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  font-size: 32px;
  font-weight: bold;
  border-radius: 0 20px 20px 0;
  background: linear-gradient(171deg, #66B5FF 6.85%, #0BDCCE 99.55%);
  z-index: 1;
}
.c-ticket__title::before {
  content: "";
  display: inline-block;
  margin: 10px;
  margin-right: -30px;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background: url(../expo/ticket-gift.png) no-repeat center/contain;
  z-index: 2;
}
.c-ticket__content {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 60px 40px 40px 40px;
  max-width: 930px;
  border-radius: 28px;
  border: 2px solid #56E3F9;
  background: rgba(46, 46, 46, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
}
.c-ticket__desc {
  color: #FFF;
  font-size: 22px;
}
.c-ticket__action {
  flex: 0 0 auto;
}
@media (max-width: 992px) {
  .c-ticket__title span {
    padding: 5px 20px;
  }
  .c-ticket__title::before {
    content: "";
    margin: 0;
    margin-right: -24px;
    width: 115px;
    height: 115px;
  }
  .c-ticket__content {
    flex-direction: column;
    padding: 60px 20px 20px 20px;
    text-align: center;
  }
}

.l-show {
  display: flex;
  flex-direction: column;
  color: #FFF;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}
.l-show__head, .l-show__body {
  padding: 0 15px;
}
.l-show__title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  font-size: 40px;
  font-weight: bold;
}
.l-show__subTitle {
  padding-top: 20px;
  font-size: 24px;
  font-weight: bold;
}
.l-show__desc {
  padding-top: 10px;
  font-size: 18px;
}
.l-show__body {
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  height: 650px;
}
.l-show__img {
  display: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 640px;
}
@media (max-width: 992px) {
  .l-show__subTitle {
    padding-top: 20px;
  }
  .l-show__body {
    height: auto;
    width: 100%;
    padding-top: 30px;
  }
  .l-show__img {
    display: block;
  }
}

.c-show {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.c-show__title {
  position: relative;
  display: inline-flex;
  padding: 5px 30px;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  font-size: 32px;
  font-weight: bold;
  border-radius: 20px;
  background: linear-gradient(171deg, #66B5FF 6.85%, #0BDCCE 99.55%);
  z-index: 1;
}
.c-show__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 400px;
  padding: 60px 16px 40px 16px;
  margin-top: -30px;
  border-radius: 28px;
  border: 2px solid #56E3F9;
  background: rgba(46, 46, 46, 0.3);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.c-show__item {
  display: flex;
  justify-content: center;
  width: 100%;
}
.c-show__item + .c-show__item {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 992px) {
  .c-show {
    width: 100%;
  }
  .c-show__content {
    width: 100%;
    padding: 60px 10px 40px 10px;
  }
}

.o-show {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  text-align: center;
}
.o-show__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 150%;
}
.o-show__title::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: -10px;
  flex-shrink: 0;
  background: url(../expo/dot.svg) no-repeat center/contain;
  z-index: 2;
}
.o-show__tag {
  display: flex;
  padding: 1px 10px 2px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: normal;
  border-radius: 8px;
  background: #FF4747;
}
.o-show__text {
  font-size: 22px;
  font-weight: normal;
}

.l-activity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.l-activity__title {
  font-size: 60px;
  font-weight: bold;
  color: #FFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.l-activity__content {
  display: flex;
  gap: 0 32px;
  flex-wrap: wrap;
  width: 100%;
}
.l-activity__item {
  width: calc((100% - 32px) / 2);
  flex: 0 0 auto;
}
.l-activity__item:nth-of-type(2n-1) {
  margin-bottom: 32px;
}
.l-activity__item:nth-of-type(2n) {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .l-activity__title {
    font-size: 40px;
  }
  .l-activity__content {
    gap: 20px;
  }
  .l-activity__item {
    flex-direction: column;
    width: 100%;
  }
  .l-activity__item:nth-of-type(2n-1) {
    margin-bottom: 0;
  }
  .l-activity__item:nth-of-type(2n) {
    margin-top: 0;
  }
}

.c-activity {
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: 28px;
  border: 2px solid #56E3F9;
  background: rgba(46, 46, 46, 0.3);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #fff;
  height: 100%;
}
.c-activity__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.c-activity__right {
  flex: 0 0 auto;
}
.c-activity__right img {
  width: 180px;
  height: 242px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-activity__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: bold;
}
.c-activity__title::before {
  content: "";
  width: 4px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(90deg, #27EAF0 30260.63%, #0CD1DB 30310.63%, #2D95F7 30360.63%);
}
.c-activity__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-activity__item {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 14px;
}
.c-activity__text {
  width: 160px;
  flex: 0 0 auto;
}
.c-activity__date {
  display: flex;
  flex-direction: column;
  flex: 1;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .c-activity {
    flex-direction: column;
    padding: 20px 24px;
  }
  .c-activity__right img {
    width: 100%;
    height: 160px;
  }
}

.l-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.l-time__title {
  color: #006C6A;
  font-size: 60px;
  font-weight: bold;
}
.l-time__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.l-time__item {
  width: calc((100% - 40px) / 3);
}
.l-time__action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 992px) {
  .l-time {
    gap: 20px;
  }
  .l-time__title {
    font-size: 32px;
  }
  .l-time__item {
    width: 100%;
  }
}

.c-time {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-time__head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  gap: 20px;
  border-radius: 28px 28px 0 0;
  background: rgba(39, 234, 240, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.c-time__date {
  color: #006C6A;
  font-size: 40px;
  font-weight: bold;
}
.c-time__day {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  color: #006C6A;
  font-size: 22px;
}
.c-time__day--yl {
  background: #F3EEA5;
}
.c-time__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  height: 100%;
  border-radius: 0 0 28px 28px;
  background: rgba(255, 255, 255, 0.5);
}
.c-time__item {
  color: #585858;
  font-size: 16px;
}
.c-time__item + .c-time__item {
  padding-top: 12px;
  border-top: 1px solid #fff;
}
.c-time__activity {
  color: #1F9795;
  font-size: 18px;
  padding-top: 4px;
}

.o-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 51px;
  padding: 12px 20px;
  border-radius: 100px;
  background: #1F9795;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #FFF;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
}
.o-btn::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -12px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: url(../expo/pointer.svg) no-repeat center/contain;
}
.o-btn:disabled, .o-btn.is-disabled {
  background: #9A9A9A;
}
.o-btn--lg {
  padding: 12px 40px;
}
@media (hover: hover) {
  .o-btn:hover {
    background: #56E3F9;
  }
}

.o-link {
  color: #006C6A;
  text-align: center;
  text-decoration-line: underline;
}/*# sourceMappingURL=expo.css.map */