@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap");
/* RESET
--------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, rem, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-spacing: 0;
}

address {
  display: inline;
  font-style: normal;
}

* {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/* form tag */
input,
button,
textarea,
select,
select option {
  -webkit-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  font-family: "Noto Sans TC", sans-serif, Arial, Helvetica, "微軟正黑體", Microsoft JhengHei, Apple LiGothic, "蘋果儷中黑";
}

/*webkit瀏覽器專用*/
::-webkit-input-placeholder {
  color: rgba(243, 241, 243, 0.4);
  font-size: 0.8em;
}

/*Firefox 4-18瀏覽器專用*/
input::-moz-placeholder {
  color: rgba(243, 241, 243, 0.4);
  font-size: 0.8em;
}

/*Firefox 19+瀏覽器專用*/
input::-moz-placeholder {
  color: rgba(243, 241, 243, 0.4);
  font-size: 0.8em;
}

/*IE10瀏覽器專用*/
:-ms-input-placeholder {
  color: rgba(243, 241, 243, 0.4);
  font-size: 0.8em;
}

/* 版型設定 */
.mobile {
  display: none;
}

.pad {
  display: none;
}

/* 共用設定 */
img {
  width: 100%;
  height: auto;
  display: block;
  font-size: 0.24rem;
  color: #000000;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.2s;
}

.clear:before, .clear:after {
  content: "";
  display: table;
}

.clear:after {
  clear: both;
}

.c {
  clear: both;
}

.wrapper .hide {
  display: none;
}

.absolute, .inner-absolute > * {
  position: absolute;
}

.absoluteTL, .inner-absoluteTL > * {
  position: absolute;
  top: 0;
  left: 0;
}

.absoluteTR, .inner-absoluteTR > * {
  position: absolute;
  top: 0;
  right: 0;
}

.absoluteBL, .inner-absoluteBL > * {
  position: absolute;
  bottom: 0;
  left: 0;
}

.absoluteBR, .inner-absoluteBR > * {
  position: absolute;
  bottom: 0;
  right: 0;
}

.relative, .inner-relative > * {
  position: relative;
}

.overHide {
  overflow: hidden;
}

/* flex */
.flexBox {
  display: flex;
  align-content: center;
}

/* table */
table, tbody {
  width: 100%;
}

th, td {
  vertical-align: middle;
}

.table {
  width: 100%;
  display: table;
}

.tr {
  display: table-row;
}

.th, .td {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.table.pc {
  display: table;
}

.table.pad {
  display: none;
}

.table.mobile {
  display: none;
}

/* inline-block */
.inner-inblock {
  font-size: 0;
}

.inner-inblock > * {
  display: inline-block;
  vertical-align: middle;
}

.inner-inblock .block {
  display: block;
}

.block {
  display: block;
}

.inblock {
  display: inline-block;
}

.inline {
  display: inline;
}

/* float設定 */
.float-l {
  float: left;
}

.float-r {
  float: right;
}

/* 字型樣式及置中設定 */
.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

/* loading */
.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.99);
  background-image: linear-gradient(45deg, #882e94, 60%, #e98f9b);
  z-index: 999;
}

.loading .box {
  font-size: 0.26rem;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  animation: opac 2s infinite linear;
  background-image: url(../images/landing_cube.png);
  background-repeat: repeat;
  background-position: center;
  background-size: 2076px auto;
}

.loading span {
  width: 8em;
  height: 8em;
  display: block;
  position: absolute;
  top: calc(50% - 4em);
  left: calc(50% - 4em);
  border: 2px solid;
  border-color: #ffffff transparent #ffffff transparent;
  border-radius: 50%;
  animation: spin 2s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes opac {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
/* basestyle 
----------------------------------------------------------------------------*/
body,
html {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans TC", sans-serif, Arial, Helvetica, "微軟正黑體", Microsoft JhengHei, Apple LiGothic, "蘋果儷中黑";
  font-size: 100px;
  background: #6f1f93;
  color: #f3f1f3;
  line-height: 1.5;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
}

.bgBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/BG.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  font-size: 0.2rem;
}
.container {
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.swal2-container .swal2-popup {
  font-size: 0.15rem;
  background-color: #8b3195;
  align-items: center;
  min-height: 18em;
  width: 40em;
}
.swal2-container .swal2-title {
  font-size: 1.6em;
  color: #d7c6d9;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 0.6em;
}
.swal2-container .swal2-styled.swal2-confirm {
  background-color: #ffffff;
  color: #8b3195;
  font-size: 1.3em;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.2em;
  border-radius: 3em;
  width: 15em;
}

#main {
  min-height: 600px;
  position: relative;
  box-sizing: border-box;
  height: auto;
}

/** header *************************************/
.index header.atLanding {
  background-image: none;
  background-color: transparent;
}

header {
  background-image: linear-gradient(to right, #6f1f93, 60%, #e98f9b);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #c05897;
}
header .container {
  justify-content: space-between;
  align-items: center;
  padding-top: 0.13rem;
  padding-bottom: 0.13rem;
}
header h1 {
  font-size: 0;
  display: block;
  color: transparent;
  text-indent: -999em;
  position: relative;
  z-index: 99;
}
header h1 a {
  width: 1.92rem;
}
header .navBox {
  position: relative;
}
header .navBox.open .navBtn {
  transform: rotate(45deg);
  width: 1.5em;
}
header .navBox.open .navBtn div:before {
  top: 0;
  transform: rotate(90deg);
}
header .navBox.open .navBtn div:after {
  width: 0;
}
header .navBtn {
  width: 1.1em;
  transition: 0.3s;
  padding: 1px 0;
}
header .navBtn div {
  height: 3px;
  background-color: #ffffff;
  margin-top: calc(0.4em - 1px);
  margin-bottom: calc(0.4em - 1px);
  position: relative;
}
header .navBtn div:before, header .navBtn div:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
header .navBtn div:before {
  top: calc(0.4em - 1px);
}
header .navBtn div:after {
  bottom: calc(0.4em - 1px);
}
header nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(55deg, #762494, #a94496, 60%, #ed969b);
  display: none;
  overflow-y: scroll;
  scrollbar-color: #7e308e transparent;
  scrollbar-width: thin;
}
header nav::-webkit-scrollbar {
  width: 5px;
}
header nav::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 5px;
}
header nav::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #7e308e;
}
header nav ul {
  width: 16em;
  text-align: center;
  margin: 4em auto 0 auto;
}
header nav ul li:not(:last-child) {
  border-bottom: 2px dotted #ffffff;
}
header nav ul a {
  font-size: 1.2em;
  line-height: 3.3;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-weight: bold;
}
header nav ul a:hover {
  opacity: 0.8;
}

input:not(.cr-slider),
select,
textarea {
  text-align: center;
  font-size: 1.2em;
  line-height: 2;
  height: 2em;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.horizonCover {
  opacity: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-image: linear-gradient(45deg, #6f1f93, 60%, #e98f9b);
}
.horizonCover div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/cover.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 60%;
}

/** 上傳圖片Mask **********************************/
.loadingImg {
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
.loadingImg .flexBox {
  justify-content: center;
}
.loadingImg .flexBox div {
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 3px;
  animation: dotJump 0.2s infinite alternate-reverse;
}
.loadingImg .flexBox div:nth-child(1) {
  animation-delay: -1.5s;
}
.loadingImg .flexBox div:nth-child(2) {
  animation-delay: -2.4s;
}
.loadingImg .flexBox div:nth-child(3) {
  animation-delay: -0.9s;
}
.loadingImg .flexBox div:nth-child(4) {
  animation-delay: -4.8s;
}
.loadingImg .flexBox div:nth-child(5) {
  animation-delay: -3s;
}
.loadingImg .flexBox div:nth-child(6) {
  animation-delay: -3.6s;
}

@keyframes dotJump {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200%);
  }
}
br.pcHide {
  display: none;
}

.fullScreen {
  position: relative;
  box-sizing: border-box;
  padding-top: 1px;
  height: 100%;
}

.fullScreen:not(.ladingPage) {
  display: none;
}

/** 入口頁 **************************************/
.ladingPage {
  position: relative;
  height: 600px;
}
.ladingPage:before, .ladingPage:after {
  content: "";
  display: block;
  position: fixed;
  width: 50vw;
  height: 100%;
  top: 0;
  z-index: 0;
}
.ladingPage:before {
  left: 0;
  background-color: #722193;
}
.ladingPage:after {
  right: 0;
  background-color: #efa2a4;
}
.ladingPage .ladingPageCover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/landBG.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 68.3em auto;
  z-index: 6;
}
.ladingPage .ladingPage_slider {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-bottom: 5em;
  z-index: 5;
}
.ladingPage .ladingPage_slider .slickBox {
  width: 34em;
}

.itemBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  padding-bottom: 3.5em;
  z-index: 7;
}

a.toMvBtn.startBtn {
  width: 19.5em;
  margin: 0.75em 0 0 0;
  box-sizing: border-box;
  padding-right: 0.5em;
  letter-spacing: 0.1em;
}
a.toMvBtn.startBtn:before {
  display: block;
  left: calc(50% + 7em);
}

/** 對話泡泡 **************************************/
.talkBox {
  position: relative;
  height: 100%;
  min-height: 30em;
}
.talkBox .flexBox {
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 1.5em;
  padding-top: 3.8em;
  min-height: 30em;
}
.talkBox .talkPurple {
  background-color: rgba(139, 48, 148, 0.5);
}

.talkPurple {
  position: relative;
  background-color: rgba(139, 48, 148, 0.7);
  width: 74vw;
  max-width: 550px;
  height: calc(100% - 1.5em);
  max-height: 1150px;
}
.talkPurple .nameCard {
  position: absolute;
  width: 2.25em;
  max-width: 76px;
  left: -1.125em;
  top: 3em;
  -webkit-user-select: none;
          user-select: none;
}

.talkTxt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-size: 1.2em;
  padding-top: 2.2em;
  padding-left: 3.6em;
  writing-mode: vertical-lr;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.talkTxt span {
  display: none;
  -webkit-user-select: none;
          user-select: none;
}
.talkTxt.bigT span {
  font-size: 1.5em;
}
.talkTxt:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1.5em;
  background-image: url(../images/talk_arr.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  animation: arrJump 0.3s linear infinite alternate-reverse;
  opacity: 0;
  transition: 0s;
  margin-left: 0.1em;
}
.talkTxt.end:after {
  opacity: 1;
  transition: 0.15s;
}

@keyframes arrJump {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.3em);
  }
}
.momoImg {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(18em);
  width: auto;
  width: 20.3em;
  max-width: 406px;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
  display: none;
}

/** 上傳圖片 ***************************************/
.upload_box > .flexBox {
  position: absolute;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  max-width: none;
}
.upload_box .talkPurple {
  margin-top: 4.6em;
  min-height: 0;
  max-height: none;
  height: auto;
  width: 100%;
  max-width: 903px;
  box-sizing: border-box;
  padding: 2em 1.25em 2em 1.25em;
}
.upload_box .talkPurple .nameCard {
  width: 6.5em;
  max-width: 156px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.upload_box p {
  font-size: 0.85em;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #ffffff;
}

.picTent {
  justify-content: space-between;
  margin-top: 1.25em;
}
.picTent .pic_box {
  width: 32%;
  max-width: 272px;
  flex-shrink: 0;
  box-sizing: border-box;
  font-size: 0.9em;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
}
.picTent .pic_box input {
  display: none;
}
.picTent .pic_box label {
  display: block;
  margin-bottom: 0.5em;
  cursor: pointer;
  position: relative;
  border: 3px solid #ffffff;
  box-sizing: border-box;
}

.coverLabel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  overflow: hidden;
}
.coverLabel.cI01 img {
  position: absolute;
  width: 39.5%;
  transform-origin: 0 0;
  transform: rotateZ(2.5deg) perspective(1300px) rotateY(-13deg) skew(-4deg, 1deg) scaleY(0.96);
  top: 17.5%;
  left: 49.6%;
}
.coverLabel.cI02 img {
  position: absolute;
  width: 36.5%;
  top: 36.1111%;
  left: 37%;
}
.coverLabel.cI03 img {
  position: absolute;
  width: 31.5%;
  transform-origin: 0 0;
  transform: rotate(-1deg);
  top: 36%;
  left: 9.375%;
}
.coverLabel.nofile {
  background-color: rgba(0, 0, 0, 0.54);
  background-image: url(../images/icon_upload.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.85em auto;
}

.protect_box {
  font-size: 0.8em;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  margin-top: 2em;
  margin-bottom: 1.5em;
}
.protect_box input {
  display: none;
}
.protect_box label {
  display: block;
  padding-left: 1.5em;
  line-height: 1;
  position: relative;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.protect_box label .ckdot {
  position: absolute;
  width: 1em;
  height: 1em;
  border: 1px solid #ffffff;
  top: 0;
  left: 0;
  border-radius: 50%;
  box-sizing: border-box;
}
.protect_box label .ckdot:before {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  background-color: #ffffff;
  top: calc(0.15em - 1px);
  left: calc(0.15em - 1px);
  opacity: 0;
}
.protect_box label a {
  color: #ffffff;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #ffffff;
}
.protect_box label a:hover {
  opacity: 0.9;
  border-color: transparent;
}
.protect_box input:checked ~ label .ckdot:before {
  opacity: 1;
}

/** 活動辦法 **********************************/
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.mask > .flexBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
}
.mask .protectRule_tent {
  position: relative;
  background-color: #8b3094;
  width: 96%;
  height: calc(96% - 3em);
  margin-top: 4em;
  max-width: 860px;
  max-height: 655px;
  box-sizing: border-box;
  padding: 1.5em;
  flex-direction: column;
}
.mask .protectRule_tent h3 {
  font-size: 1.15em;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
}

.protectRule_txt {
  background-color: #6f1c77;
  border-top: 1em solid #6f1c77;
  border-bottom: 0.8em solid #6f1c77;
  padding-left: 1.5em;
  padding-right: 2em;
  color: #ffffff;
  font-weight: 100;
  margin-top: 1em;
  margin-bottom: 1em;
  overflow-y: scroll;
  scrollbar-color: #f39800 #5e1165;
  scrollbar-width: thin;
}
.protectRule_txt::-webkit-scrollbar {
  width: 4px;
  border-radius: 10px;
}
.protectRule_txt::-webkit-scrollbar-track {
  background-color: #5e1165;
  border-radius: 10px;
}
.protectRule_txt::-webkit-scrollbar-thumb {
  background-color: #f39800;
  border-radius: 10px;
}
.protectRule_txt .partTlt {
  font-size: 0.825em;
  font-weight: 900;
  line-height: 1;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  opacity: 0.8;
}
.protectRule_txt ul {
  font-size: 0.6em;
  line-height: 1.5;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.protectRule_txt ul li {
  margin-bottom: 1em;
}
.protectRule_txt ul b {
  font-size: 1.1em;
}
.protectRule_txt ul.dot {
  font-size: 1em;
  list-style: decimal;
  padding-left: 1.2em;
}
.protectRule_txt ul.dot li {
  margin-bottom: 0.2em;
}
.protectRule_txt .part02 {
  margin-top: 2em;
  padding-bottom: 1em;
}

a.closeBtn {
  position: absolute;
  width: 1.5em;
  right: 0.4em;
  top: 0.4em;
  transform: rotate(45deg);
}
a.closeBtn div {
  height: 2px;
  background-color: #ffffff;
  margin-top: 0.74em;
  margin-bottom: 0.74em;
  position: relative;
}
a.closeBtn div:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(90deg);
}

.pp_tent {
  background-color: #8b3094;
  position: relative;
  width: 20.75em;
  max-width: 415px;
  height: 21em;
  max-height: 420px;
  box-sizing: border-box;
  padding: 2.4em 1.75em 2em 1.75em;
}
.pp_tent .nameCard {
  position: absolute;
  width: 13.4em;
  max-width: 268px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pp_tent .photoNum {
  font-size: 0.9em;
  font-weight: 100;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.4em;
}
.pp_tent .cutBox_imgBox {
  width: 17em;
  height: 9.5em;
  position: relative;
  margin: 0.5em auto 0 auto;
}
.pp_tent #cutBox_img {
  border: 5px solid #ffffff;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pp_tent #cutBox_img .dragCover {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../images/icon_move.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2em auto;
  z-index: 9;
}
.pp_tent #cutBox_img .cr-boundary {
  box-sizing: border-box;
  max-width: 100% !important;
  max-height: 100% !important;
}
.pp_tent #cutBox_img .cr-slider-wrap {
  margin-top: 1em;
  margin-left: 0;
  width: calc(100% - 3em);
}
.pp_tent #cutBox_img .cr-slider-wrap input {
  width: 100%;
}
.pp_tent .cutBox {
  position: relative;
  margin-bottom: 3.1em;
}
.pp_tent .cutBox .photo_rotate {
  font-size: 0.9em;
  position: absolute;
  letter-spacing: 0.05em;
  right: 0;
  top: calc(100% + 0.5em);
}

.pp_btnbox {
  border-radius: 4em;
  overflow: hidden;
}
.pp_btnbox a {
  font-size: 1.05em;
  line-height: 2.3;
  padding-bottom: 0.08em;
  flex-shrink: 0;
  text-align: center;
  font-weight: 500;
  box-sizing: border-box;
  position: relative;
}
.pp_btnbox a.btn_getPhoto {
  background-color: #57105e;
  color: #ffffff;
  padding-left: 1em;
  background-image: url(../images/icon_reupload.png);
  background-repeat: no-repeat;
  background-position: center left calc(50% - 2.5em);
  background-size: 0.85em auto;
  width: calc(50% - 1em);
}
.pp_btnbox a.btn_getPhoto:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 2.4em solid #57105e;
  border-right: 1em solid transparent;
  border-bottom: 0 solid #ffffff;
  border-left: 1em solid #57105e;
  position: absolute;
  top: 0;
  left: calc(100% - 0.5em);
  z-index: 5;
}
.pp_btnbox a.btn_finished {
  color: #8b3094;
  background-color: #ffffff;
  padding-right: 0.5em;
  background-image: url(../images/icon_finished.png);
  background-repeat: no-repeat;
  background-position: center right calc(50% - 1.8em);
  background-size: 0.55em auto;
  width: calc(50% + 1em);
}
.pp_btnbox a:before {
  pointer-events: none;
}
.pp_btnbox a:hover {
  font-weight: 900;
}

/** 填寫家族群組名稱 ***************************************/
.familyName > .flexBox {
  position: absolute;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  max-width: none;
}
.familyName .talkPurple {
  margin-top: 4.6em;
  min-height: 300px;
  max-height: 430px;
  height: 100%;
  width: 100%;
  max-width: 903px;
  box-sizing: border-box;
  padding: 2em 1.25em 2em 1.25em;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.familyName .talkPurple .nameCard {
  width: 10em;
  max-width: 198px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.familyName a.toMvBtn {
  margin-top: 2em;
  margin-bottom: 0;
}

.familyInp {
  width: 19em;
  border-bottom: 1px solid rgba(225, 225, 225, 0.5);
}
.familyInp input {
  font-size: 1.5em;
  color: #ffffff;
}

/** 加點暖心的話 ***************************************/
.warmText > .flexBox {
  justify-content: center;
  align-items: center;
  max-width: none;
  min-height: 100vh;
}
.warmText .talkPurple {
  margin-top: 4.6em;
  min-height: 400px;
  max-height: 600px;
  height: auto;
  width: 100%;
  max-width: 903px;
  box-sizing: border-box;
  padding: 2.5em 1.25em 2em 1.25em;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2.5em;
}
.warmText .talkPurple .nameCard {
  width: 10em;
  max-width: 198px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.warmText .submit_btnBox {
  margin-top: 2em;
  justify-content: center;
  width: 100%;
  flex-direction: row-reverse;
}
.warmText a.toMvBtn {
  margin: 0 0.5%;
  width: 49%;
  max-width: 212px;
}

.warmInp {
  width: 100%;
  max-width: 530px;
  height: auto;
  position: relative;
  background-image: url(../images/underLine.png);
  background-repeat: repeat;
  background-position: top left;
  background-size: auto calc(1.41em);
}
.warmInp textarea {
  font-size: 0.9em;
  color: #ffffff;
  line-height: 1.6;
  width: 100%;
  letter-spacing: 0;
  min-width: 10.4em;
  max-width: 10.4em;
  height: 100%;
  max-height: 14.4em;
  margin: auto;
  /*Firefox 19+瀏覽器專用*/
}
.warmInp textarea::placeholder {
  color: rgba(243, 241, 243, 0.4);
  font-size: 1em;
}
.warmInp .textNowNum {
  position: absolute;
  font-size: 0.7em;
  letter-spacing: 0.1em;
  right: 0;
  top: calc(100% + 0.2em);
}

/** 加碼抽陶板屋餐券 ***************************************/
.lotteryBox > .flexBox {
  position: absolute;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  max-width: none;
}
.lotteryBox .talkPurple {
  margin-top: 4.6em;
  min-height: 460px;
  max-height: 600px;
  height: calc(100% - 6.3em);
  width: 100%;
  max-width: 903px;
  box-sizing: border-box;
  padding: 3em 1.25em 2em 1.25em;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lotteryBox .talkPurple .nameCard {
  width: 12em;
  max-width: 380px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -40%);
}
.lotteryBox .talkPurple .nameCard div {
  font-size: 0.8em;
  opacity: 0.5;
  text-align: center;
  letter-spacing: 0.2em;
  margin-top: 0.5em;
}
.lotteryBox .submit_btnBox {
  margin-top: 1em;
  justify-content: center;
  width: 100%;
  flex-direction: row-reverse;
  position: relative;
  z-index: 5;
}
.lotteryBox a.toMvBtn {
  margin: 0 0.5%;
  width: 49%;
  max-width: 240px;
}

.lotteryInpBox {
  width: 100%;
  max-width: 495px;
  position: relative;
}
.lotteryInpBox .lotteryInp_tlt {
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 1.8em;
  position: relative;
}
.lotteryInpBox .lotteryInp {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(225, 225, 225, 0.5);
  margin-top: 0.8em;
}
.lotteryInpBox .lotteryInp label {
  display: block;
  flex-shrink: 0;
  width: 5em;
  font-weight: 300;
}
.lotteryInpBox .lotteryInp input {
  color: #ffffff;
}
.lotteryInpBox .lotteryInp input::placeholder {
  font-size: 0.9em;
}

.muDot {
  position: relative;
}
.muDot:before {
  content: "*";
  display: none;
  position: absolute;
  top: 0.3em;
  left: -0.6em;
  color: #f39800;
}
.muDot.protect_box:before {
  top: -0.2em;
  left: -0.6em;
}

.mustKey {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 0.25em);
  color: #f39800;
}
.mustKey:before {
  top: 0;
}

.error .mustKey {
  display: block;
}
.error .muDot:before {
  display: block;
}
.error ~ .muDot:before {
  display: block;
}

/** MV **************************/
.mvBox {
  display: none;
  text-align: center;
  padding-top: 3.6em;
  padding-bottom: 2em;
}
.mvBox .mvTent {
  max-width: 540px;
  margin: 0 auto 0 auto;
}
.mvBox .mvTent .coverImg {
  display: none;
}
.mvBox #customMV,
.mvBox .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mvBox .mvTltImg {
  max-width: 391px;
  width: 19.5em;
  margin: auto;
}
.mvBox .mvTltImg p {
  font-size: 0.85em;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #ffffff;
  padding-top: 0.6em;
}
.mvBox .playMVbox {
  margin-top: 0.8em;
  margin-bottom: 0.5em;
  position: relative;
  cursor: pointer;
}
.mvBox .playMVbox > img {
  opacity: 0;
}
.mvBox .playMVbox .coverMV {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mvBox .playMVbox .coverMV.nonStart {
  pointer-events: none;
}
.mvBox .playMVbox .coverMV > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mvBox .playMVbox .coverMV .coverMV_img {
  background-color: purple;
}
.mvBox .playMVbox .coverMV .playIcon {
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url(../images/icon_play.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
  transition: 0.2s;
}
.mvBox .playMVbox:hover .playIcon {
  background-color: rgba(0, 0, 0, 0.1);
}
.mvBox .submit_btnBox {
  flex-wrap: wrap;
  justify-content: center;
}
.mvBox .submit_btnBox a.toMvBtn {
  width: 48%;
  margin: 0.3em 1%;
  color: #ffffff;
  font-size: 0.85em;
  line-height: 2.5;
  font-weight: normal;
}
.mvBox .submit_btnBox a.toMvBtn.share_fb {
  background-color: #3289db;
}
.mvBox .submit_btnBox a.toMvBtn.share_line {
  background-color: #42c787;
}
.mvBox .submit_btnBox a.toMvBtn.share_MV {
  background-color: #8b3094;
}
.mvBox .submit_btnBox a.toMvBtn:hover {
  font-weight: bold;
}
.mvBox .submit_btnBox .spLine {
  height: 1px;
  background-color: #ffffff;
  width: 100%;
  opacity: 0.6;
  margin: 0.5em 0;
}

.flowerPageLinkBox {
  max-width: 500px;
  width: 25em;
  justify-content: space-between;
  margin: 1em auto 0 auto;
}
.flowerPageLinkBox a {
  width: 49%;
  height: 6.5em;
  font-weight: bold;
  position: relative;
  object-fit: cover;
  overflow: hidden;
}
.flowerPageLinkBox a > img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.flowerPageLinkBox a:nth-child(2) > img {
  top: auto;
  bottom: -20%;
}
.flowerPageLinkBox a:hover > img {
  transform: scale(1.05);
}
.flowerPageLinkBox a:hover .fpLcover {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.flowerPageLinkBox a:hover .fpLcover p span {
  right: -1.6em;
}
.flowerPageLinkBox .fpLcover {
  color: #ffffff;
  font-size: 0.8em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.8;
  transition: 0.2s;
}
.flowerPageLinkBox .fpLcover * {
  transition: 0.2s;
}
.flowerPageLinkBox .fpLcover > img {
  width: 1.2em;
  max-width: 58px;
  margin-bottom: 0.3em;
}
.flowerPageLinkBox .fpLcover p {
  position: relative;
}
.flowerPageLinkBox .fpLcover p span {
  width: 0.4em;
  position: absolute;
  top: calc(50% - 0.2em);
  right: -1.2em;
}
.flowerPageLinkBox .fpLcover p.twoLine {
  line-height: 3;
}

.clickFinger {
  z-index: 99;
  cursor: pointer;
}
.clickFinger .flexBox {
  align-items: center;
  justify-content: center;
}
.clickFinger .flexBox div {
  font-size: 1.05em;
  letter-spacing: 0.08em;
  line-height: 1.57;
  margin-top: 20%;
}
.clickFinger .flexBox div .finger {
  width: 2em;
  margin: 0.8em auto 0 auto;
}

/* skip btn *****************************/
a.skipBtn {
  position: absolute;
  font-size: 1.15em;
  background-color: #ef8902;
  color: #ffffff;
  padding: 1em 0.4em 2.2em 0.4em;
  border-radius: 3em;
  top: 2em;
  left: 50%;
  writing-mode: vertical-lr;
  letter-spacing: 0.1em;
  display: none;
  background-image: url(../images/talk_arr_w.png);
  background-repeat: no-repeat;
  background-position: center bottom 1em;
  background-size: 1em auto;
  z-index: 5;
}
a.skipBtn:hover {
  opacity: 0.9;
}

/** 活動辦法 ***************************************/
.ruleBox {
  height: 100%;
  position: relative;
}
.ruleBox > .flexBox {
  position: relative;
  justify-content: center;
  height: 100vh;
}
.ruleBox .talkPurple {
  display: flex;
  position: relative;
  margin-top: 5.8em;
  min-height: 460px;
  height: calc(100% - 7.8em);
  max-height: none;
  width: 100%;
  max-width: 775px;
  background-color: transparent;
  border: 3px solid rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
  padding: 1.4em 0.5em 4.7em 1.4em;
  margin-bottom: 2em;
}
.ruleBox .talkPurple .nameCard {
  width: 7.5em;
  max-width: 312px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -80%);
}
.ruleBox .ruleTxt {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.6em;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 100;
  text-align: justify;
  padding-right: 2em;
  overflow-y: scroll;
  scrollbar-color: #ffffff rgba(255, 255, 255, 0.5);
  scrollbar-width: thin;
}
.ruleBox .ruleTxt::-webkit-scrollbar {
  width: 4px;
  border-radius: 10px;
}
.ruleBox .ruleTxt::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.ruleBox .ruleTxt::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border-radius: 10px;
}
.ruleBox .ruleTxt li {
  margin-bottom: 1em;
}
.ruleBox .ruleTxt li b {
  font-size: 1.2em;
}
.ruleBox .ruleTxt ul {
  margin-bottom: 4em;
}
.ruleBox .ruleTxt ul.dot {
  font-size: 1em;
  list-style: decimal;
  padding-left: 2em;
  margin-bottom: 0.5em;
}
.ruleBox .ruleTxt ul.dot li {
  margin-bottom: 0;
}
.ruleBox .ruleTxt .partTlt {
  font-size: 1.6em;
  font-weight: bold;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0.5em;
}
.ruleBox a.toMvBtn {
  position: absolute;
  bottom: 1.4em;
  left: calc(50% - 8.35em);
  padding-right: 1em;
}
.ruleBox a.toMvBtn:before {
  display: block;
}

a.toMvBtn {
  font-size: 1em;
  font-weight: bold;
  color: #7e308e;
  width: 16.7em;
  text-align: center;
  background-color: #ffffff;
  line-height: 2.3;
  border-radius: 2em;
  box-sizing: border-box;
  margin: auto;
  letter-spacing: 0.15em;
  position: relative;
}
a.toMvBtn:before {
  content: "";
  display: none;
  width: 0;
  height: 0;
  border-top: 0.3em solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.6em solid #7e308e;
  position: absolute;
  top: calc(50% - 0.25em);
  left: calc(50% + 3.5em);
}
a.toMvBtn:hover {
  opacity: 0.9;
}
a.toMvBtn.disable {
  pointer-events: none;
  opacity: 0.5;
}
a.toMvBtn.disable00 {
  opacity: 0.5;
}
a.toMvBtn.disableUserInfo {
  opacity: 0.5;
}
a.toMvBtn.bgPurp {
  color: #ffffff;
  background-color: #57105e;
}

/** 品牌頁 ***************************************/
.brandMVBox {
  margin-top: 5.6em;
}

.cubeBox {
  position: relative;
  max-width: 38.75em;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
  border: 3px solid rgba(255, 255, 255, 0.7);
  padding: 1.5em 0.5em;
}
.cubeBox .nameCard {
  position: absolute;
  width: 11.25em;
  max-width: 312px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
}

.frameBox {
  max-width: 490px;
  width: 24.5em;
  position: relative;
  margin: 0 auto;
}
.frameBox iframe,
.frameBox .frameCover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.frameBox .frameCover {
  cursor: pointer;
}

/** 搜尋我家MV ******************************/
.searchMVBox {
  padding-top: 5.5em;
}
.searchMVBox p {
  text-align: center;
  font-size: 0.75em;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.searchBox {
  margin-bottom: 1.3em;
}
.searchBox .searchInp {
  font-size: 0.9em;
  max-width: 330px;
  margin: 0.5em auto;
  border-bottom: 1px solid #ffffff;
  position: relative;
}
.searchBox .searchInp input {
  color: #ffffff;
}
.searchBox a.searchBtn {
  position: absolute;
  width: 1.17em;
  max-width: 29px;
  right: 0;
  bottom: 0;
  padding: 0.4em 0.2em 0.4em 0.4em;
}

.resultBox {
  max-width: 500px;
  margin: 0 auto -0.5em auto;
  flex-wrap: wrap;
}
.resultBox .resImg {
  width: calc(50% - 0.25em);
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  position: relative;
}
.resultBox .resImg:nth-child(2n) {
  margin-right: 0;
}
.resultBox .resImg .coverMV {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.5em auto;
  transition: 0.2s;
}
.resultBox .resImg:hover .coverMV {
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url(../images/icon_play.png);
}

.photoWallBox {
  padding-top: 5.5em;
  padding-bottom: 3.5em;
}

.photoWall {
  max-width: 500px;
  margin: auto;
}
.photoWall .grid-item {
  width: calc(50% - 0.5em);
  margin: 0 0.25em 0.5em 0.25em;
}

/** pop ***************************/
.photo_pop {
  display: block;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s 0s;
}
.photo_pop.show {
  z-index: 99;
  opacity: 1;
  transition: opacity 0.5s 0.1s;
}
.photo_pop .photoP_tent {
  width: 96%;
  box-sizing: border-box;
  padding: 0.5em 0.5em 0.8em 0.5em;
  background-color: #ffffff;
  max-width: 500px;
  position: relative;
}
.photo_pop .photoS_box {
  padding-bottom: 0.6em;
}
.photo_pop .pageNum {
  font-size: 0.9em;
  line-height: 1;
  text-align: center;
  color: #892e94;
  letter-spacing: 0.05em;
}
.photo_pop a.closeBtn {
  top: 0.8em;
  right: 0.8em;
}
.photo_pop .closeMsk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a.slic_arr {
  position: absolute;
  bottom: 0.8em;
  width: 0.7em;
  max-width: 11px;
}
a.slic_arr.arr_l {
  left: 1em;
}
a.slic_arr.arr_r {
  right: 1em;
}

/** 圖片對位置 ***********************************/
.imgBox.relative:nth-child(1) {
  margin-top: 4em;
}

.coverImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.coverImg.cI01 img {
  position: absolute;
  width: 38%;
  transform-origin: 0 0;
  transform: rotateZ(2deg) perspective(1300px) rotateY(-10deg) skew(-4deg, 1deg);
  top: 17.5%;
  left: 49.9%;
}
.coverImg.cI02 img {
  position: absolute;
  width: 35.4%;
  top: 36.6%;
  left: 37.2%;
  transform: rotate(1deg);
}
.coverImg.cI03 > img {
  position: absolute;
  width: 36.2%;
  transform-origin: 0 0;
  transform: rotate(-1.5deg);
  top: 33.8%;
  left: 9%;
}

.coverMV .cI01.coverLabel,
.coverMV .cI02,
.coverMV .cI03 {
  display: block !important;
  opacity: 0;
  transition: 0s;
}
.coverMV .cI01.coverLabel.show,
.coverMV .cI02.show,
.coverMV .cI03.show {
  opacity: 1;
}

.cover03TxtBox {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.cover03TxtBox p {
  color: #7e318e;
  font-size: 12px;
  padding: 1em 0;
  margin-left: -1em;
}
.cover03TxtBox p.customWT {
  max-width: 10.4em;
  margin: auto;
}

.ending {
  margin: auto;
}
.ending.ed01 {
  width: 60%;
}
.ending.ed02 {
  width: 25.4%;
}

/* 得獎名單 ****************************/
.awp {
  font-size: 0.85em;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
  line-height: 1.88;
}

.awardBox {
  margin: auto;
  max-width: 460px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #ffffff;
  padding-bottom: 1.5em;
}
.awardBox .flexBox {
  flex-wrap: wrap;
  justify-content: space-between;
}
.awardBox .flexBox div {
  white-space: nowrap;
}
.awardBox .flexBox span.tel {
  margin-left: 0.5em;
}

.awNotice {
  padding: 0 1.2em;
  letter-spacing: 0.1em;
}
.awNotice .ruleTxt {
  border-top: 1px solid #ffffff;
}
.awNotice .ruleTxt .partTlt {
  text-align: center;
  font-size: 0.8em;
  line-height: 2.8;
  margin: auto;
}
.awNotice .ruleTxt .partTlt.ptt01 {
  max-width: 494px;
  line-height: 2.4;
  padding-top: 0.2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.awNotice .ruleTxt .partTlt.ptt03 {
  border-bottom: 1px solid #ffffff;
}
.awNotice .ruleTxt .partTlt:not(.ptt01) {
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
.awNotice .ruleTxt .partTlt:not(.ptt01):before, .awNotice .ruleTxt .partTlt:not(.ptt01):after {
  content: "+";
  display: block;
  position: absolute;
  font-size: 1.4em;
  line-height: 1;
  top: calc(50% - 0.55em);
  font-weight: 200;
}
.awNotice .ruleTxt .partTlt:not(.ptt01):before {
  left: 0.5em;
}
.awNotice .ruleTxt .partTlt:not(.ptt01):after {
  right: 0.5em;
}
.awNotice .ruleTxt .partTlt:not(.ptt01):hover, .awNotice .ruleTxt .partTlt:not(.ptt01).open {
  background-color: #ffffff;
  color: #7e308e;
}
.awNotice .ruleTxt .partTlt:not(.ptt01) ~ ul {
  display: none;
}
.awNotice ul {
  font-size: 0.6em;
  padding: 1em 0;
  margin-left: 2.2em;
}
.awNotice ul.num {
  list-style: decimal;
}
.awNotice ul.dot {
  list-style: disc;
}
.awNotice ul li {
  padding-left: 0.2em;
}

/* media
----------------------------------------------------------------------------*/
@media screen and (max-width: 1160px) {
  body, html {
    font-size: 98px;
  }
}
@media screen and (max-width: 900px) {
  body, html {
    font-size: 96px;
  }
}
@media screen and (max-width: 768px) {
  body, html {
    font-size: 100px;
  }

  .pc {
    display: none;
  }

  .mobile {
    display: block;
  }

  .bgBox {
    background-position: top left;
    background-size: cover;
  }

  .wrapper {
    font-size: 6.25vw;
  }

  .container {
    width: calc(100% - 1.6em);
    padding-left: 0.8em;
    padding-right: 0.8em;
  }

  .swal2-container {
    padding: 0.625em 5vw;
  }
  .swal2-container .swal2-popup {
    font-size: 2.94vw;
    min-height: 20em;
  }
  .swal2-container .swal2-styled.swal2-confirm {
    line-height: 1.6;
    font-weight: bold;
    width: 12em;
  }

  /** header *************************************/
  header .container {
    padding-top: 0.65em;
    padding-bottom: 0.65em;
  }
  header h1 a {
    width: 50vw;
  }
  header .navBtn div {
    height: 0.18em;
  }
  header nav ul {
    margin-top: 3em;
    width: 10em;
  }
  header nav ul a {
    line-height: 3;
    font-size: 1.1em;
    line-height: 1.4;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
  header .navBox.open .navBtn {
    width: 1.7em;
  }

  /*****************************************/
  #main {
    min-height: 0;
    padding-top: 0;
  }

  br.pcHide {
    display: inherit;
  }
}
@media screen and (min-width: 769px) and (max-height: 770px) {
  .itemBox {
    padding-bottom: 1em;
  }
}
@media screen and (min-width: 769px) and (max-height: 670px) {
  .itemBox {
    padding-bottom: 0.5em;
  }

  .ladingPage .ladingPageCover {
    background-size: cover;
  }
}
@media screen and (min-width: 1250px) and (max-height: 725px) {
  .itemBox {
    padding-bottom: 1em;
  }
}
@media screen and (min-width: 1250px) and (max-height: 725px) and (max-height: 680px) {
  .itemBox {
    padding-bottom: 0.2em;
  }
}
@media screen and (max-width: 768px) {
  /** 入口頁 **************************************/
  .ladingPage {
    height: auto;
  }
  .ladingPage:before, .ladingPage:after {
    display: none;
  }
  .ladingPage .ladingPageCover {
    background-image: url(../images/landBG_m.png);
    background-position: center;
    background-size: 100% auto;
    height: auto;
    min-height: 100%;
  }
  .ladingPage .ladingPage_slider {
    padding-bottom: 2.5em;
  }
  .ladingPage .ladingPage_slider .slickBox {
    min-width: 125vw;
    width: 125vw;
  }
  .ladingPage .ladingPage_slider .slickBox .sli03 img {
    transform: translateX(-12%);
  }

  .itemBox {
    padding-bottom: 0em;
    justify-content: flex-start;
    height: 50%;
    top: 50%;
  }

  a.toMvBtn.startBtn {
    width: 66vw;
    font-size: 4.6vw;
    letter-spacing: 0.02em;
  }
  a.toMvBtn.startBtn:first-child {
    margin-top: calc(40vw);
  }
  a.toMvBtn.startBtn:before {
    left: calc(50% + 5.7em);
  }

  /** 對話泡泡 **************************************/
  .talkBox {
    height: auto;
  }
  .talkBox .flexBox {
    padding-top: 4.5em;
    align-items: flex-start;
    min-height: 22em;
  }
  .talkBox .talkPurple {
    min-height: calc(100vh - 8em);
  }

  .talkPurple {
    width: 74vw;
    max-width: 470px;
  }
  .talkPurple .nameCard {
    width: 2em;
    left: -1em;
    top: 2em;
  }

  .talkTxt {
    font-size: 0.9em;
    padding-top: 1.4em;
    padding-left: 2em;
  }

  .momoImg {
    position: fixed;
    right: 0.4em;
    transform: none;
    width: 56vw;
  }

  /** 上傳圖片 ***************************************/
  .upload_box {
    height: auto;
  }
  .upload_box > .flexBox {
    position: static;
    display: block;
    padding-bottom: 1.5em;
  }
  .upload_box .talkPurple {
    margin-top: 4.3em;
    padding: 1.5em 1em 2em 1em;
  }
  .upload_box .talkPurple .nameCard {
    width: 4em;
  }
  .upload_box p {
    font-size: 0.8em;
  }

  .picTent {
    display: block;
    margin-top: 1em;
  }
  .picTent .pic_box {
    width: auto;
    max-width: none;
    font-size: 0.8em;
    margin-bottom: 1em;
  }

  .coverLabel.nofile {
    background-size: 2.5em auto;
  }

  .protect_box {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
  .protect_box label {
    line-height: 1.5;
  }
  .protect_box label .ckdot {
    top: 0.3em;
  }
  .protect_box label a {
    display: inline;
    padding-bottom: 0;
  }

  /** 活動辦法 **********************************/
  .mask .protectRule_tent {
    width: 96%;
    height: calc(96% - 4em);
    margin-top: 2.5em;
    padding: 1em 0.5em;
  }
  .mask .protectRule_tent h3 {
    font-size: 0.8em;
    font-weight: normal;
    line-height: 1.5;
  }

  .protectRule_txt {
    border-top: 0.5em solid #6f1c77;
    border-bottom: 0.5em solid #6f1c77;
    padding-left: 0.8em;
    padding-right: 1em;
    margin-top: 0.5em;
  }

  .pp_tent {
    font-size: 0.5em;
    width: 27.5em;
    max-width: 550px;
    height: auto;
    max-height: 560px;
    padding-bottom: 3em;
    padding-top: 2.6em;
    margin-top: 2em;
  }
  .pp_tent .nameCard {
    width: 18em;
    max-width: 357px;
  }
  .pp_tent .cutBox_imgBox {
    width: 22.5em;
    height: 12.6em;
  }
  .pp_tent #cutBox_img .cr-slider-wrap {
    margin-top: 1em;
  }
  .pp_tent .cutBox {
    margin-bottom: 3.4em;
    max-width: 22.5em;
    margin-left: auto;
    margin-right: auto;
  }
  .pp_tent .cutBox .photo_rotate {
    top: calc(100% + 0.7em);
  }

  /** 填寫家族群組名稱 ***************************************/
  .familyName > .flexBox {
    align-items: flex-start;
  }
  .familyName .talkPurple {
    max-height: none;
    height: calc(100% - 6.3em);
    padding: 3em 1.25em 2em 1.25em;
    justify-content: flex-start;
  }
  .familyName .talkPurple .nameCard {
    width: 4em;
    max-width: none;
    min-width: 130px;
  }
  .familyName .talkPurple .nameCard:before {
    font-size: 2.5vw;
  }
  .familyName a.toMvBtn {
    margin-top: 2em;
    margin-bottom: 0;
  }

  .familyInp {
    width: 100%;
  }
  .familyInp input {
    font-size: 0.75em;
  }

  /** 加點暖心的話 ***************************************/
  .warmText > .flexBox {
    padding-top: 1px;
    display: block;
  }
  .warmText .talkPurple {
    max-height: none;
    margin-bottom: 0;
  }
  .warmText .talkPurple .nameCard {
    width: 8em;
  }
  .warmText .submit_btnBox {
    display: block;
    margin-top: 1.5em;
  }
  .warmText a.toMvBtn {
    margin: 0 auto 0.3em auto;
    width: auto;
    max-width: 290px;
  }

  .warmInp textarea {
    height: 14.4em;
  }

  /** 加碼抽陶板屋餐券 ***************************************/
  .lotteryBox > .flexBox {
    display: block;
    position: relative;
    padding-bottom: 2.5em;
  }
  .lotteryBox .talkPurple {
    padding-bottom: 1em;
    padding-top: 2.3em;
    max-height: none;
  }
  .lotteryBox .talkPurple .nameCard {
    width: 10em;
  }
  .lotteryBox .talkPurple .nameCard div {
    font-size: 0.6em;
  }
  .lotteryBox .submit_btnBox {
    display: block;
    margin-top: 0;
  }
  .lotteryBox a.toMvBtn {
    margin: 0.5em auto 0 auto;
    width: auto;
    max-width: 290px;
  }
  .lotteryBox .protect_box {
    font-size: 0.7em;
  }

  .lotteryInpBox .lotteryInp_tlt {
    font-size: 0.7em;
    margin-bottom: 0;
    letter-spacing: 0.05em;
  }
  .lotteryInpBox .lotteryInp {
    font-size: 0.8em;
    margin-top: 0.5em;
  }
  .lotteryInpBox .lotteryInp label {
    font-size: 0.9em;
    width: 4.5em;
  }
  .lotteryInpBox .lotteryInp input {
    color: #ffffff;
  }
  .lotteryInpBox .lotteryInp input::placeholder {
    font-size: 0.9em;
  }

  .error .lotteryInp_tlt {
    margin-bottom: 1.8em;
  }

  /** MV **************************/
  .mvBox {
    padding-top: 3.6em;
    padding-bottom: 0;
  }
  .mvBox .mvTltImg {
    width: auto;
  }
  .mvBox .mvTltImg p {
    font-size: 0.6em;
  }
  .mvBox .playMVbox .coverMV {
    background-size: 2.5em auto;
  }
  .mvBox .submit_btnBox {
    display: block;
  }
  .mvBox .submit_btnBox a.toMvBtn {
    width: 90%;
    margin: 0 auto 0.6em auto;
    font-size: 0.8em;
  }
  .mvBox .submit_btnBox .spLine {
    margin: 0.6em 0;
  }

  .flowerPageLinkBox {
    max-width: none;
    width: 100%;
    justify-content: space-between;
    margin-top: 1em;
  }
  .flowerPageLinkBox a {
    width: 50%;
    height: 47vw;
  }
  .flowerPageLinkBox a:nth-child(2) > img {
    width: 110%;
    left: -5%;
    bottom: 0;
  }
  .flowerPageLinkBox .fpLcover {
    font-size: 0.7em;
  }
  .flowerPageLinkBox .fpLcover > img {
    width: 6vw;
  }

  .clickFinger .flexBox div {
    text-align: center;
    font-size: 0.75em;
    margin-top: 24%;
  }

  /* skip btn *****************************/
  a.skipBtn {
    font-size: 0.8125em;
    padding: 1em 0.2em 2.2em 0.2em;
    top: 1.6em;
    left: calc(50% + 1em);
  }
}
@media screen and (max-width: 580px) {
  .containBB {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media screen and (max-width: 400px) {
  .pp_btnbox a.btn_getPhoto:before {
    border-top: 3em solid #57105e;
  }
}
@media only screen and (max-device-width: 768px) and (orientation: landscape) {
  .wrapper {
    font-size: 4vw;
  }

  header .container {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
  }
  header h1 a {
    width: 26vw;
  }
  header nav ul {
    margin: 1em auto 0 auto;
    padding-bottom: 2.5em;
  }
  header nav ul a {
    font-size: 0.9em;
  }

  /** 對話泡泡 **************************************/
  .talkBox .flexBox {
    min-height: 24em;
  }

  .momoImg {
    position: fixed;
    right: 0.75em;
    transform: none;
    height: calc(100vh - 5em);
    max-height: 112.5vw;
  }

  .pp_tent {
    margin-top: 5em;
  }

  .pp_btnbox a.btn_getPhoto:before {
    border-top: 4em solid #57105e;
  }

  .horizonCover {
    opacity: 1;
    display: block;
  }
  .horizonCover.hide {
    opacity: 0;
    display: none;
  }
}
@media screen and (max-width: 768px) {
  /** 活動辦法 ***************************************/
  .ruleBox > .flexBox {
    padding-left: 0.5em;
    padding-right: 0.5em;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .ruleBox .talkPurple {
    margin-top: 4.8em;
    height: calc(100% - 6.8em);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 1em 0.3em 4em 1em;
    margin-bottom: 2em;
    min-height: 0;
  }
  .ruleBox .talkPurple .nameCard {
    width: 7.8em;
  }
  .ruleBox .ruleTxt {
    line-height: 1.3;
    padding-right: 1.2em;
  }
  .ruleBox .ruleTxt li {
    margin-bottom: 0.8em;
  }
  .ruleBox .ruleTxt li b {
    font-size: 1.1em;
  }
  .ruleBox .ruleTxt ul {
    margin-bottom: 2.5em;
  }
  .ruleBox .ruleTxt ul.dot li {
    margin-bottom: 0.2em;
  }
  .ruleBox .ruleTxt .partTlt {
    font-size: 1.2em;
  }
  .ruleBox a.toMvBtn {
    position: absolute;
    bottom: 1.1em;
    left: 1em;
  }

  a.toMvBtn {
    font-size: 0.9em;
    width: calc(100% - 2em);
    line-height: 2;
  }

  /** 品牌頁 ***************************************/
  .brandMVBox {
    margin-top: 4.7em;
  }

  .cubeBox {
    max-width: none;
    margin: 0 auto 0 auto;
    padding: 1em 0.25em;
  }
  .cubeBox .nameCard {
    width: 7.8em;
    max-width: 312px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -80%);
  }

  .frameBox {
    max-width: none;
    width: auto;
  }

  /** 搜尋我家MV ******************************/
  .searchMVBox {
    padding-top: 4.5em;
  }
  .searchMVBox p {
    font-size: 0.7em;
  }

  .searchBox {
    margin-bottom: 0.6em;
  }
  .searchBox .searchInp {
    font-size: 0.68em;
    max-width: none;
    width: 72vw;
    margin: 0.5em auto;
  }
  .searchBox a.searchBtn {
    width: 1.5em;
    max-width: 29px;
    right: 0;
    bottom: 0;
    box-sizing: content-box;
    padding: 0.8em 0.2em 0.4em 0.8em;
  }

  .resultBox {
    display: block;
  }
  .resultBox .resImg {
    width: auto;
    max-width: 80%;
    margin: 0 auto 0.5em auto;
  }
  .resultBox .resImg:nth-child(2n) {
    margin-right: auto;
  }

  .photoWallBox {
    padding-top: 4.5em;
    padding-bottom: 2em;
  }

  .photoWall {
    max-width: 500px;
    margin: auto;
  }
  .photoWall .grid-item {
    width: calc(50% - 0.2em);
    margin: 0 0.1em 0.2em 0.1em;
  }

  /** pop ***************************/
  .photo_pop {
    font-size: 0.5em;
  }

  /* 得獎名單 ****************************/
  .awp {
    font-size: 0.6em;
    line-height: 1.3;
    margin-top: 0.3em;
    margin-bottom: 0.8em;
  }

  .awardBox {
    padding-bottom: 1em;
    font-size: 0.7em;
    line-height: 1.6;
  }
  .awardBox .flexBox {
    justify-content: center;
  }

  .awNotice {
    padding: 0 0.3em;
  }
  .awNotice .ruleTxt .partTlt {
    font-size: 0.7em;
    line-height: 2.4;
    margin: auto;
  }
  .awNotice .ruleTxt .partTlt.ptt01 {
    max-width: 18.6em;
    line-height: 2;
  }
  .awNotice .ruleTxt .partTlt:not(.ptt01) {
    cursor: pointer;
    transition: 0.2s;
    position: relative;
  }
  .awNotice ul {
    font-size: 0.5em;
    letter-spacing: 0.06em;
    margin-left: 1.8em;
  }
  .awNotice ul.num {
    list-style: decimal;
  }
  .awNotice ul.dot .num {
    font-size: 1em;
    padding-top: 0;
  }
  .awNotice ul li {
    padding-left: 0;
  }
}
@media screen and (max-width: 450px) {
  .cover03TxtBox p {
    margin-left: 0;
    padding: 0.5em 0;
    transform: scale(0.9);
  }
  .cover03TxtBox p:not(.customWT) {
    white-space: nowrap;
  }
}
@media screen and (max-width: 380px) {
  .cover03TxtBox p {
    padding: 0 0;
    transform: scale(0.8);
  }
}
/*# sourceMappingURL=main.css.map */