@charset "UTF-8";
/*750rem*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;600&display=swap");
:root {
  --remBasicSize: 16px;
}

/*思源*/
* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Noto Serif TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: calc(1 * var(--remBasicSize));
  width: 100%;
  height: 100%;
  background-color: #ffedc8;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

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

body {
  line-height: 1;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote {
  display: block;
}

nav ul {
  list-style: none;
}

ol {
  list-style: none;
}

ul {
  list-style: none;
}

ul ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

mark {
  background: none;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input[type=submit], input[type=button], button {
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: middle;
}

input, select, a img {
  vertical-align: middle;
}

/*-------------------------

         a

-------------------------*/
a,
button {
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}

a:focus,
button:focus {
  outline: none;
  text-decoration: none;
}

/*-------------------------
           fix
-------------------------*/
.fix {
  position: fixed;
  z-index: 110;
  right: 0%;
  bottom: 10%;
  width: calc(6.5 * var(--remBasicSize));
  height: calc(35.875 * var(--remBasicSize));
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.fix a {
  position: relative;
  width: calc(6.5 * var(--remBasicSize));
  display: flex;
}

.fix .fix-btn01 {
  width: calc(6.5 * var(--remBasicSize));
  height: calc(35.875 * var(--remBasicSize));
  position: relative;
  background: url(../images/fix.png) no-repeat center top/cover;
}

@media screen and (max-width: 750px) {
  .fix {
    position: fixed;
    z-index: 110;
    bottom: 0%;
    width: 100%;
    height: calc(6.5625 * var(--remBasicSize));
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .fix a {
    position: relative;
    width: calc(35.3125 * var(--remBasicSize));
    display: flex;
  }
  .fix .fix-btn01 {
    width: calc(35.3125 * var(--remBasicSize));
    height: calc(6.5625 * var(--remBasicSize));
    position: relative;
    background: url(../images/fix_m.png) no-repeat center top/cover;
  }
}
/*-------------------------

           kv

-------------------------*/
.kv {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 100%;
  min-height: calc(129.375 * var(--remBasicSize));
  background: url(../images/kv/bg.jpg) no-repeat center bottom/cover;
  background-color: #ffedc8;
}
.kv .container {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(129.375 * var(--remBasicSize));
}
.kv .container .kv_logo {
  position: relative;
  margin: 0 auto;
  top: calc(1.875 * var(--remBasicSize));
  width: calc(8.0625 * var(--remBasicSize));
  height: calc(8.125 * var(--remBasicSize));
  background: url(../images/kv/logo.png) no-repeat center top/cover;
}
.kv .container .big_title {
  position: relative;
  margin: 0 auto;
  top: calc(3.75 * var(--remBasicSize));
  width: calc(27.75 * var(--remBasicSize));
  height: calc(19.875 * var(--remBasicSize));
  background: url(../images/kv/big_title.png) no-repeat center top/cover;
  z-index: 4;
}
.kv .container .main_car {
  position: relative;
  margin: 0 auto;
  top: calc(0.625 * var(--remBasicSize));
  left: calc(-3.125 * var(--remBasicSize));
  width: calc(32.5625 * var(--remBasicSize));
  height: calc(43.6875 * var(--remBasicSize));
  background: url(../images/kv/main_car.png) no-repeat center top/contain;
  z-index: 3;
  animation: main_car 4s infinite alternate;
}
@keyframes main_car {
  0% {
    opacity: 10;
  }
  60% {
    opacity: 10;
    transform: rotate(-5deg);
    left: calc(3.4375 * var(--remBasicSize));
  }
  100% {
    opacity: 10;
  }
}
.kv .container .car {
  position: absolute;
  margin: 0 auto;
  top: calc(48.125 * var(--remBasicSize));
  left: calc(-49.375 * var(--remBasicSize));
  width: calc(145.875 * var(--remBasicSize));
  height: calc(14.875 * var(--remBasicSize));
  background: url(../images/kv/car.png) no-repeat center top/contain;
  z-index: 2;
}
.kv .container .circle {
  position: absolute;
  top: calc(26.25 * var(--remBasicSize));
  left: calc(-2.5 * var(--remBasicSize));
  width: calc(34 * var(--remBasicSize));
  height: calc(34 * var(--remBasicSize));
  background: url(../images/kv/circle.png) no-repeat center top/contain;
  z-index: 2;
}
.kv .container .dec {
  position: absolute;
  top: calc(32.1875 * var(--remBasicSize));
  left: calc(-8.75 * var(--remBasicSize));
  width: calc(65.375 * var(--remBasicSize));
  height: calc(36.125 * var(--remBasicSize));
  background: url(../images/kv/dec.png) no-repeat center top/contain;
  z-index: 1;
}
.kv .container .shiny1 {
  position: absolute;
  top: calc(21.25 * var(--remBasicSize));
  right: calc(1.25 * var(--remBasicSize));
  width: calc(6.1875 * var(--remBasicSize));
  height: calc(6.1875 * var(--remBasicSize));
  background: url(../images/shiny1.png) no-repeat center top/contain;
  animation: shiny1 2.5s infinite alternate;
}
@keyframes shiny1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 10;
  }
  100% {
    opacity: 0;
  }
}
.kv .container .shiny2 {
  position: absolute;
  top: calc(26.875 * var(--remBasicSize));
  right: calc(5.625 * var(--remBasicSize));
  width: calc(2.25 * var(--remBasicSize));
  height: calc(2.25 * var(--remBasicSize));
  background: url(../images/shiny2.png) no-repeat center top/contain;
  animation: shiny2 3s infinite alternate;
}
@keyframes shiny2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 10;
  }
}
.kv .container .shiny3 {
  position: absolute;
  top: calc(61.25 * var(--remBasicSize));
  left: calc(2.5 * var(--remBasicSize));
  width: calc(6.1875 * var(--remBasicSize));
  height: calc(6.1875 * var(--remBasicSize));
  background: url(../images/shiny1.png) no-repeat center top/contain;
  animation: shiny1 2.5s infinite alternate;
}
@keyframes shiny1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 10;
  }
  100% {
    opacity: 0;
  }
}
.kv .container .shiny4 {
  position: absolute;
  top: calc(59.375 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  width: calc(2.25 * var(--remBasicSize));
  height: calc(2.25 * var(--remBasicSize));
  background: url(../images/shiny2.png) no-repeat center top/contain;
  animation: shiny2 3s infinite alternate;
}
@keyframes shiny2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 10;
  }
}
.kv .container .number {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(35.875 * var(--remBasicSize));
  height: calc(25 * var(--remBasicSize));
  background: url(../images/kv/number_1.gif) no-repeat center top/contain;
}
.kv .container .h1 {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(32.65625 * var(--remBasicSize));
  height: calc(4.90625 * var(--remBasicSize));
  background: url(../images/kv/h1_2x.png) no-repeat center top/contain;
}
.kv .container .btn_area {
  position: relative;
  margin: 0 auto;
  top: calc(1.875 * var(--remBasicSize));
  width: calc(35 * var(--remBasicSize));
  height: calc(20 * var(--remBasicSize));
}
.kv .container .btn_area .btn1 {
  position: absolute;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  left: calc(0 * var(--remBasicSize));
  width: calc(15.25 * var(--remBasicSize));
  height: calc(19.5 * var(--remBasicSize));
  background: url(../images/kv/btn1_2x.png) no-repeat center top/contain;
  cursor: pointer;
}
.kv .container .btn_area .btn2 {
  position: absolute;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  right: calc(0 * var(--remBasicSize));
  width: calc(15.25 * var(--remBasicSize));
  height: calc(19.5 * var(--remBasicSize));
  background: url(../images/kv/btn2_2x.png) no-repeat center top/contain;
  cursor: pointer;
}
.kv .container .btn_area .btn_arr {
  position: absolute;
  margin: 0 auto;
  bottom: calc(6.25 * var(--remBasicSize));
  left: calc(6.25 * var(--remBasicSize));
  width: calc(3.0625 * var(--remBasicSize));
  height: calc(0.9375 * var(--remBasicSize));
  background: url(../images/kv/btn_arr.png) no-repeat center top/contain;
}
.kv .container .scroll_area {
  position: absolute;
  margin: 0 auto;
  top: calc(61.875 * var(--remBasicSize));
  right: calc(0 * var(--remBasicSize));
  width: calc(3.1875 * var(--remBasicSize));
  height: calc(15.3125 * var(--remBasicSize));
}
.kv .container .scroll_area .scroll {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  left: calc(-0.25 * var(--remBasicSize));
  width: calc(0.9375 * var(--remBasicSize));
  height: calc(7.1875 * var(--remBasicSize));
  background: url(../images/kv/scroll.png) no-repeat center top/contain;
}
.kv .container .scroll_area .scroll_arr {
  position: relative;
  margin: 0 auto;
  top: calc(0.625 * var(--remBasicSize));
  left: calc(0 * var(--remBasicSize));
  width: calc(0.9375 * var(--remBasicSize));
  height: calc(7.1875 * var(--remBasicSize));
  background: url(../images/kv/scroll_arr.png) no-repeat center top/contain;
  animation: scroll_arr 1s infinite alternate linear;
}
@keyframes scroll_arr {
  0% {
    opacity: 10;
  }
  60% {
    opacity: 10;
    top: calc(1.875 * var(--remBasicSize));
  }
  100% {
    opacity: 10;
  }
}

/*-------------------------

            pd

-------------------------*/
.pd {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 100%;
  height: calc(119.5 * var(--remBasicSize));
  background-color: #f8e3ef;
}
.pd .container {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(119.5 * var(--remBasicSize));
}
.pd .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(21.875 * var(--remBasicSize));
  top: calc(4.375 * var(--remBasicSize));
}
.pd .icon {
  position: relative;
  margin: 0 auto;
  top: calc(-0.3125 * var(--remBasicSize));
  width: calc(6.4375 * var(--remBasicSize));
  height: calc(5.5 * var(--remBasicSize));
  background: url(../images/pd/icon.png) no-repeat center top/contain;
}
.pd .title_h1 {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(4.0625 * var(--remBasicSize));
  font-size: calc(3.4375 * var(--remBasicSize));
  line-height: calc(4.5 * var(--remBasicSize));
  letter-spacing: calc(0 * var(--remBasicSize));
  font-weight: bold;
  text-align: center;
}
.pd .title_area h1 {
  position: relative;
  margin: 0 auto;
  top: calc(6.25 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(5.3125 * var(--remBasicSize));
  font-size: calc(2 * var(--remBasicSize));
  line-height: calc(3 * var(--remBasicSize));
  letter-spacing: calc(0 * var(--remBasicSize));
  font-weight: 500;
  text-align: center;
}

/*-----------------
     slider
-----------------*/
.pd .pd_slider {
  margin: 0 auto;
  position: relative;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(96.875 * var(--remBasicSize));
  top: calc(3.125 * var(--remBasicSize));
  z-index: 9;
}

.pd .pd_slider_area {
  margin: 0 auto;
  position: relative;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(88.75 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
}

.pd .pd_dec {
  position: relative;
  margin: 0 auto;
  width: calc(1.1875 * var(--remBasicSize));
  height: calc(3.625 * var(--remBasicSize));
  text-align: center;
  background: url(../images/pd/dec.png) no-repeat center top/contain;
  top: calc(12.8125 * var(--remBasicSize));
  left: calc(0.625 * var(--remBasicSize));
}

.pd .pd_pic {
  position: relative;
  margin: 0 auto;
  width: calc(43.75 * var(--remBasicSize));
  height: calc(32.1875 * var(--remBasicSize));
  text-align: center;
  top: calc(1.875 * var(--remBasicSize));
}

.pd .pd_pic img {
  position: relative;
  margin: 0 auto;
  width: calc(43.75 * var(--remBasicSize));
  height: calc(32.1875 * var(--remBasicSize));
  text-align: center;
  top: calc(9.375 * var(--remBasicSize));
}

.pd .pd_bg {
  position: absolute;
  margin: 0 auto;
  width: calc(43.625 * var(--remBasicSize));
  height: calc(31.1875 * var(--remBasicSize));
  text-align: center;
  background: url(../images/pd/pd_bg.png) no-repeat center top/contain;
  top: calc(40 * var(--remBasicSize));
  right: calc(0 * var(--remBasicSize));
}

.pd .shiny1 {
  position: absolute;
  top: calc(62.375 * var(--remBasicSize));
  left: calc(5 * var(--remBasicSize));
  width: calc(6.1875 * var(--remBasicSize));
  height: calc(6.1875 * var(--remBasicSize));
  background: url(../images/shiny1.png) no-repeat center top/contain;
  animation: shiny1 2.5s infinite alternate;
}
@keyframes shiny1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 10;
  }
  100% {
    opacity: 0;
  }
}

.pd .shiny2 {
  position: absolute;
  top: calc(68.125 * var(--remBasicSize));
  left: calc(5 * var(--remBasicSize));
  width: calc(2.25 * var(--remBasicSize));
  height: calc(2.25 * var(--remBasicSize));
  background: url(../images/shiny2.png) no-repeat center top/contain;
  animation: shiny2 3s infinite alternate;
}
@keyframes shiny2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 10;
  }
}

/* Dots */
#pd_slider > .slick-dotted.slick-slider {
  margin-bottom: calc(0 * var(--remBasicSize));
}

#pd_slider > .slick-dots {
  position: absolute;
  top: calc(0 * var(--remBasicSize));
  z-index: 10;
  display: block;
  width: 100%;
  height: calc(4.3125 * var(--remBasicSize));
  padding: calc(0 * var(--remBasicSize));
  margin: calc(0 * var(--remBasicSize));
  list-style: none;
  text-align: center;
}

#pd_slider > .slick-dots li {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: calc(6.4375 * var(--remBasicSize));
  height: calc(4.3125 * var(--remBasicSize));
  margin: 0 calc(0 * var(--remBasicSize));
}

#pd_slider > .slick-dots li button {
  font-size: calc(0 * var(--remBasicSize));
  line-height: calc(0 * var(--remBasicSize));
  display: block;
  width: calc(6.4375 * var(--remBasicSize));
  height: calc(4.3125 * var(--remBasicSize));
  cursor: pointer;
  color: transparent;
  border: calc(0 * var(--remBasicSize));
  outline: none;
  background: transparent;
}

#pd_slider > .slick-dots li button:hover,
#pd_slider > .slick-dots li button:focus {
  outline: none;
}

#pd_slider > .slick-dots li button:hover:before {
  opacity: 1;
  background-color: #000;
}

#pd_slider > .slick-dots li button:before {
  position: absolute;
  top: calc(0 * var(--remBasicSize));
  left: calc(0 * var(--remBasicSize));
  width: calc(6.4375 * var(--remBasicSize));
  height: calc(4.3125 * var(--remBasicSize));
  content: "";
  text-align: center;
  opacity: 1;
  border: calc(0.0625 * var(--remBasicSize)) #000 solid;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#pd_slider > .slick-dots li:nth-child(1) button:before {
  background: url(../images/pd/dot_a.png) no-repeat center top/contain;
}

#pd_slider > .slick-dots li:nth-child(2) button:before {
  background: url(../images/pd/dot_b.png) no-repeat center top/contain;
}

#pd_slider > .slick-dots li:nth-child(3) button:before {
  background: url(../images/pd/dot_c.png) no-repeat center top/contain;
}

#pd_slider > .slick-dots li:nth-child(4) button:before {
  background: url(../images/pd/dot_d.png) no-repeat center top/contain;
}

#pd_slider > .slick-dots li:nth-child(5) button:before {
  background: url(../images/pd/dot_e.png) no-repeat center top/contain;
}

#pd_slider > .slick-dots li:nth-child(6) button:before {
  background: url(../images/pd/dot_f.png) no-repeat center top/contain;
}

#pd_slider > .slick-dots li:nth-child(7) button:before {
  background: url(../images/pd/dot_g.png) no-repeat center top/contain;
}

#pd_slider > .slick-dots li:nth-child(1).slick-active button:before {
  background: url(../images/pd/dot_a_active.png) no-repeat center top/contain;
  z-index: 9999;
  animation: dots-ani 0.5s linear infinite alternate;
  -webkit-animation: dots-ani 0.5s linear infinite alternate;
  background-color: #e638c5;
  border: calc(0.0625 * var(--remBasicSize)) #000 solid;
}

#pd_slider > .slick-dots li:nth-child(2).slick-active button:before {
  background: url(../images/pd/dot_b_active.png) no-repeat center top/contain;
  z-index: 9999;
  animation: dots-ani 0.5s linear infinite alternate;
  -webkit-animation: dots-ani 0.5s linear infinite alternate;
  background-color: #e638c5;
  border: calc(0.0625 * var(--remBasicSize)) #000 solid;
}

#pd_slider > .slick-dots li:nth-child(3).slick-active button:before {
  background: url(../images/pd/dot_c_active.png) no-repeat center top/contain;
  z-index: 9999;
  animation: dots-ani 0.5s linear infinite alternate;
  -webkit-animation: dots-ani 0.5s linear infinite alternate;
  background-color: #e638c5;
  border: calc(0.0625 * var(--remBasicSize)) #000 solid;
}

#pd_slider > .slick-dots li:nth-child(4).slick-active button:before {
  background: url(../images/pd/dot_d_active.png) no-repeat center top/contain;
  z-index: 9999;
  animation: dots-ani 0.5s linear infinite alternate;
  -webkit-animation: dots-ani 0.5s linear infinite alternate;
  background-color: #e638c5;
  border: calc(0.0625 * var(--remBasicSize)) #000 solid;
}

#pd_slider > .slick-dots li:nth-child(5).slick-active button:before {
  background: url(../images/pd/dot_e_active.png) no-repeat center top/contain;
  z-index: 9999;
  animation: dots-ani 0.5s linear infinite alternate;
  -webkit-animation: dots-ani 0.5s linear infinite alternate;
  background-color: #e638c5;
  border: calc(0.0625 * var(--remBasicSize)) #000 solid;
}

#pd_slider > .slick-dots li:nth-child(6).slick-active button:before {
  background: url(../images/pd/dot_f_active.png) no-repeat center top/contain;
  z-index: 9999;
  animation: dots-ani 0.5s linear infinite alternate;
  -webkit-animation: dots-ani 0.5s linear infinite alternate;
  background-color: #e638c5;
  border: calc(0.0625 * var(--remBasicSize)) #000 solid;
}

#pd_slider > .slick-dots li:nth-child(7).slick-active button:before {
  background: url(../images/pd/dot_g_active.png) no-repeat center top/contain;
  z-index: 9999;
  animation: dots-ani 0.5s linear infinite alternate;
  -webkit-animation: dots-ani 0.5s linear infinite alternate;
  background-color: #e638c5;
  border: calc(0.0625 * var(--remBasicSize)) #000 solid;
}

/*-----------------
     beauty-ss
----------------*/
.pd .beauty_ss {
  margin: 0 auto;
  position: relative;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(56.25 * var(--remBasicSize));
  top: calc(12.5 * var(--remBasicSize));
}

.pd .beauty_edit {
  position: relative;
  margin: 0 auto;
  width: calc(45.625 * var(--remBasicSize));
  min-height: calc(15 * var(--remBasicSize));
  margin-bottom: calc(1.25 * var(--remBasicSize));
}

.pd .beauty_edit > img {
  position: relative;
  width: calc(14.25 * var(--remBasicSize));
  height: calc(14.5 * var(--remBasicSize));
}

.pd .beauty_edit .beauty_edit_p {
  position: absolute;
  width: calc(30 * var(--remBasicSize));
  min-height: calc(13.75 * var(--remBasicSize));
  top: calc(0.3125 * var(--remBasicSize));
  right: calc(0.625 * var(--remBasicSize));
}

.pd .beauty_edit .beauty_edit_p > h1 {
  position: relative;
  margin: 0 auto;
  width: calc(31.25 * var(--remBasicSize));
  height: calc(2.625 * var(--remBasicSize));
  text-align: justify;
  top: calc(0 * var(--remBasicSize));
  font-size: calc(1.75 * var(--remBasicSize));
  letter-spacing: calc(0.0625 * var(--remBasicSize));
  font-weight: bold;
  color: #000;
}

.pd .beauty_edit .beauty_edit_p > p {
  position: relative;
  margin: 0 auto;
  width: calc(30 * var(--remBasicSize));
  min-height: calc(15 * var(--remBasicSize));
  text-align: justify;
  top: calc(0 * var(--remBasicSize));
  font-size: calc(1.625 * var(--remBasicSize));
  letter-spacing: calc(0.03125 * var(--remBasicSize));
  line-height: calc(2.25 * var(--remBasicSize));
  font-weight: 400;
  color: #000;
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

.pd .beauty_edit .beauty_edit_p > p span {
  position: relative;
  margin: 0 auto;
  width: calc(22.5 * var(--remBasicSize));
  min-height: calc(19.375 * var(--remBasicSize));
  text-align: justify;
  top: calc(0 * var(--remBasicSize));
  font-size: calc(1.5 * var(--remBasicSize));
  letter-spacing: calc(0 * var(--remBasicSize));
  line-height: calc(2.25 * var(--remBasicSize));
  font-weight: 400;
  color: #000;
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

.pd .beauty_slider {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(21.375 * var(--remBasicSize));
  margin-bottom: calc(1.25 * var(--remBasicSize));
  margin-top: calc(1.625 * var(--remBasicSize));
  background-color: #ffedc8;
  border-radius: 0 calc(5 * var(--remBasicSize)) 0 0;
}

.pd .beauty_slider_area {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(42.5 * var(--remBasicSize));
  height: calc(22.5 * var(--remBasicSize));
  margin-top: calc(1.625 * var(--remBasicSize));
}

.pd .beauty_slider_area > img {
  position: relative;
  width: calc(18.75 * var(--remBasicSize));
  height: calc(18.75 * var(--remBasicSize));
  left: calc(2.25 * var(--remBasicSize));
  top: calc(-0.3125 * var(--remBasicSize));
}

.pd .beauty_p {
  position: absolute;
  width: calc(22.5 * var(--remBasicSize));
  height: calc(18.4375 * var(--remBasicSize));
  top: calc(0.3125 * var(--remBasicSize));
  right: calc(2.25 * var(--remBasicSize));
}

.pd .beauty_p > h1 {
  position: relative;
  margin: 0 auto;
  width: calc(23.75 * var(--remBasicSize));
  height: calc(2.625 * var(--remBasicSize));
  text-align: justify;
  top: calc(0 * var(--remBasicSize));
  font-size: calc(1.75 * var(--remBasicSize));
  letter-spacing: calc(0.0625 * var(--remBasicSize));
  font-weight: bold;
  color: #212121;
}

.pd .beauty_p > p {
  position: relative;
  margin: 0 auto;
  width: calc(22.5 * var(--remBasicSize));
  height: calc(11.875 * var(--remBasicSize));
  text-align: justify;
  top: calc(0 * var(--remBasicSize));
  font-size: calc(1.625 * var(--remBasicSize));
  letter-spacing: calc(0.03125 * var(--remBasicSize));
  line-height: calc(2.25 * var(--remBasicSize));
  font-weight: 400;
  color: #000;
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

.pd .beauty_btn_more {
  position: absolute;
  margin: 0 auto;
  width: calc(8.25 * var(--remBasicSize));
  height: calc(8.25 * var(--remBasicSize));
  text-align: right;
  background: url(../images/pd/btn_more.png) no-repeat right top/contain;
  z-index: 9;
  bottom: calc(2.6875 * var(--remBasicSize));
  right: calc(0 * var(--remBasicSize));
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.pd .beauty_btn_more:hover {
  background: url(../images/pd/btn_more_h.png) no-repeat right top/contain;
}

/* Dots */
#beauty_slider .slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  padding: calc(0 * var(--remBasicSize));
  margin: calc(0 * var(--remBasicSize));
  top: calc(24.375 * var(--remBasicSize));
  list-style: none;
  text-align: center;
}

#beauty_slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: calc(1.25 * var(--remBasicSize));
  height: calc(1.25 * var(--remBasicSize));
  margin: 0 calc(0.375 * var(--remBasicSize));
  padding: calc(0 * var(--remBasicSize));
  cursor: pointer;
}

#beauty_slider .slick-dots li button {
  font-size: calc(0 * var(--remBasicSize));
  line-height: calc(0 * var(--remBasicSize));
  display: block;
  width: calc(1.25 * var(--remBasicSize));
  height: calc(1.25 * var(--remBasicSize));
  padding: calc(0.3125 * var(--remBasicSize));
  cursor: pointer;
  color: transparent;
  border: calc(0 * var(--remBasicSize));
  outline: none;
  background: transparent;
}

#beauty_slider .slick-dots li button:hover,
#beauty_slider .slick-dots li button:focus {
  outline: none;
}

#beauty_slider .slick-dots li button:focus {
  background: transparent;
}

#beauty_slider .slick-dots li button:hover:before,
#beauty_slider .slick-dots li button:focus:before {
  opacity: 1;
  background: transparent;
}

#beauty_slider .slick-dots li button:before {
  font-family: "slick";
  font-size: calc(2.5 * var(--remBasicSize));
  line-height: calc(1.25 * var(--remBasicSize));
  position: absolute;
  top: calc(0 * var(--remBasicSize));
  left: calc(0 * var(--remBasicSize));
  width: calc(1.25 * var(--remBasicSize));
  height: calc(1.25 * var(--remBasicSize));
  content: "•";
  text-align: center;
  color: #212121;
}

#beauty_slider .slick-dots li.slick-active button:before {
  color: #e638c5;
}

/*--- Arrows ---*/
#beauty_slider .slick-prev,
#beauty_slider .slick-next {
  font-size: calc(0 * var(--remBasicSize));
  line-height: calc(0 * var(--remBasicSize));
  position: absolute;
  top: 116%;
  display: block;
  width: calc(3.8125 * var(--remBasicSize));
  height: calc(0.875 * var(--remBasicSize));
  padding: calc(0 * var(--remBasicSize));
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 9;
}

#beauty_slider .slick-prev {
  left: calc(14.375 * var(--remBasicSize));
  z-index: 9;
  background: url(../images/pd/arr-l.png) no-repeat center top/contain;
}

[dir=rtl] #beauty_slider .slick-prev {
  left: auto;
}

#beauty_slider .slick-prev:before {
  content: "";
}

[dir=rtl] #beauty_slider .slick-prev:before {
  content: "";
}

#beauty_slider .slick-next {
  right: calc(14.375 * var(--remBasicSize));
  background: url(../images/pd/arr-r.png) no-repeat center top/contain;
}

[dir=rtl] #beauty_slider .slick-next {
  right: auto;
  left: calc(0 * var(--remBasicSize));
}

#beauty_slider .slick-next:before {
  content: "";
}

[dir=rtl] #beauty_slider .slick-next:before {
  content: "";
}

/*-------------------------

          edit

-------------------------*/
.edit {
  position: relative;
  width: 100%;
  height: calc(81.25 * var(--remBasicSize));
  margin: 0 auto;
  background-color: #f8e3ef;
}
.edit .container {
  position: relative;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(81.25 * var(--remBasicSize));
  margin: 0 auto;
}
.edit .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(12.5 * var(--remBasicSize));
  top: calc(7.1875 * var(--remBasicSize));
  z-index: 2;
}
.edit .icon {
  position: relative;
  margin: 0 auto;
  top: calc(-0.3125 * var(--remBasicSize));
  width: calc(4.1875 * var(--remBasicSize));
  height: calc(5.6875 * var(--remBasicSize));
  background: url(../images/edit/icon.png) no-repeat center top/contain;
}
.edit .title_area .title_h1 {
  position: relative;
  margin: 0 auto;
  top: 0px;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(4.6875 * var(--remBasicSize));
  font-size: calc(3.4375 * var(--remBasicSize));
  line-height: calc(4.5 * var(--remBasicSize));
  letter-spacing: calc(0 * var(--remBasicSize));
  font-weight: bold;
  text-align: center;
}
.edit .title_area h1 {
  position: relative;
  margin: 0 auto;
  top: calc(5.625 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(6.25 * var(--remBasicSize));
  font-size: calc(2 * var(--remBasicSize));
  font-weight: 500;
  line-height: calc(3 * var(--remBasicSize));
  letter-spacing: calc(0 * var(--remBasicSize));
  text-align: center;
}
.edit .dec_bg {
  position: absolute;
  margin: 0 auto;
  width: calc(70.125 * var(--remBasicSize));
  height: calc(70.125 * var(--remBasicSize));
  top: calc(4.375 * var(--remBasicSize));
  left: calc(-11.25 * var(--remBasicSize));
  background: url(../images/edit/bg.png) no-repeat center top/contain;
}
.edit .edit_slides {
  position: relative;
  margin: 0 auto;
  top: calc(19.375 * var(--remBasicSize));
  width: calc(41 * var(--remBasicSize));
  height: calc(37.1875 * var(--remBasicSize));
  text-align: center;
}
.edit .edit_area {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(37.5 * var(--remBasicSize));
  height: calc(37.1875 * var(--remBasicSize));
  text-align: center;
}
.edit .edit_area img {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(41.1875 * var(--remBasicSize));
  height: calc(20.625 * var(--remBasicSize));
  text-align: center;
}
.edit .edit_area p {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(37.5 * var(--remBasicSize));
  min-height: calc(8.4375 * var(--remBasicSize));
  top: calc(1.25 * var(--remBasicSize));
  text-align: center;
  font-size: calc(1.625 * var(--remBasicSize));
  line-height: calc(2.375 * var(--remBasicSize));
  letter-spacing: calc(0.03125 * var(--remBasicSize));
  z-index: 9;
  font-weight: 400;
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.edit .btn_more {
  position: absolute;
  margin: 0 auto;
  top: calc(30.625 * var(--remBasicSize));
  left: calc(10 * var(--remBasicSize));
  width: calc(21.875 * var(--remBasicSize));
  height: calc(4.375 * var(--remBasicSize));
  color: #fff;
  font-size: calc(1.75 * var(--remBasicSize));
  letter-spacing: calc(0.25 * var(--remBasicSize));
  line-height: calc(4.375 * var(--remBasicSize));
  padding-left: calc(2.5 * var(--remBasicSize));
  background: url(../images/btn_bg.png) no-repeat center top/cover;
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  z-index: 11;
  cursor: pointer;
  text-indent: calc(-4.375 * var(--remBasicSize));
  transition: all ease-in-out 0.3s;
}
.edit .btn_more:hover {
  background: url(../images/btn_bg_h.png) no-repeat center top/cover;
}
.edit .btn_more .btn_arr {
  position: absolute;
  margin: 0 auto;
  top: calc(1.625 * var(--remBasicSize));
  right: calc(5.3125 * var(--remBasicSize));
  width: calc(0.875 * var(--remBasicSize));
  height: calc(1 * var(--remBasicSize));
  background: url(../images/edit/arr.png) no-repeat center top/contain;
  animation: btn_arr 1s infinite;
}
@keyframes btn_arr {
  0% {
    opacity: 10;
  }
  50% {
    opacity: 10;
    right: calc(4.6875 * var(--remBasicSize));
  }
  100% {
    opacity: 10;
  }
}

/* Dots */
#edit .slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  top: calc(37.5 * var(--remBasicSize));
  list-style: none;
  text-align: center;
}

#edit .slick-dots li {
  position: relative;
  display: inline-block;
  width: calc(1.25 * var(--remBasicSize));
  height: calc(1.25 * var(--remBasicSize));
  margin: 0 calc(0.375 * var(--remBasicSize));
  padding: 0;
  cursor: pointer;
}

#edit .slick-dots li button {
  font-size: calc(0 * var(--remBasicSize));
  line-height: calc(0 * var(--remBasicSize));
  display: block;
  width: calc(1.25 * var(--remBasicSize));
  height: calc(1.25 * var(--remBasicSize));
  padding: calc(0.3125 * var(--remBasicSize));
  cursor: pointer;
  color: transparent;
  border: calc(0 * var(--remBasicSize));
  outline: none;
  background: transparent;
}

#edit .slick-dots li button:hover,
#edit .slick-dots li button:focus {
  outline: none;
}

#edit .slick-dots li button:focus {
  background: transparent;
}

#edit .slick-dots li button:hover:before,
#edit .slick-dots li button:focus:before {
  opacity: 1;
  background: transparent;
}

#edit .slick-dots li button:before {
  font-family: "slick";
  font-size: calc(2.5 * var(--remBasicSize));
  line-height: calc(1.25 * var(--remBasicSize));
  position: absolute;
  top: calc(0 * var(--remBasicSize));
  left: calc(0 * var(--remBasicSize));
  width: calc(1.25 * var(--remBasicSize));
  height: calc(1.25 * var(--remBasicSize));
  content: "•";
  text-align: center;
  color: #212121;
}

#edit .slick-dots li.slick-active button:before {
  color: #e638c5;
}

/*--- Arrows ---*/
#edit .slick-prev,
#edit .slick-next {
  font-size: calc(0 * var(--remBasicSize));
  line-height: calc(0 * var(--remBasicSize));
  position: absolute;
  top: 103%;
  display: block;
  width: calc(3.8125 * var(--remBasicSize));
  height: calc(0.875 * var(--remBasicSize));
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 9;
}

#edit .slick-prev {
  left: calc(7.5 * var(--remBasicSize));
  z-index: 9;
  background: url(../images/edit/arr-l.png) no-repeat center top/contain;
}

[dir=rtl] #edit .slick-prev {
  left: auto;
}

#edit .slick-prev:before {
  content: "";
}

[dir=rtl] #edit .slick-prev:before {
  content: "";
}

#edit .slick-next {
  right: calc(7.5 * var(--remBasicSize));
  background: url(../images/edit/arr-r.png) no-repeat center top/contain;
}

[dir=rtl] #edit .slick-next {
  right: auto;
  left: calc(0 * var(--remBasicSize));
}

#edit .slick-next:before {
  content: "";
}

[dir=rtl] #edit .slick-next:before {
  content: "";
}

/*-------------------------

           qa

-------------------------*/
.qa {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 100%;
  min-height: calc(116.875 * var(--remBasicSize));
  background-color: #ffedc8;
  /*-------------------------
       game 測驗區塊 步驟01
  -------------------------*/
  /*-------------------------
       game 測驗區塊 步驟02
  -------------------------*/
}
.qa .inner {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(116.875 * var(--remBasicSize));
}
.qa .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(21.875 * var(--remBasicSize));
  top: calc(5.625 * var(--remBasicSize));
}
.qa .icon {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(5.6875 * var(--remBasicSize));
  height: calc(3.4375 * var(--remBasicSize));
  background: url(../images/quiz/icon_crown.png) no-repeat center top/contain;
}
.qa .title_h1 {
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(4.0625 * var(--remBasicSize));
  font-size: calc(3.4375 * var(--remBasicSize));
  line-height: calc(4.5 * var(--remBasicSize));
  letter-spacing: calc(0 * var(--remBasicSize));
  font-weight: bold;
  text-align: center;
}
.qa .title_area h1 {
  position: relative;
  margin: 0 auto;
  top: calc(2.8125 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(5.3125 * var(--remBasicSize));
  font-size: calc(2 * var(--remBasicSize));
  line-height: calc(3 * var(--remBasicSize));
  letter-spacing: calc(0 * var(--remBasicSize));
  font-weight: 500;
  text-align: center;
}
.qa .icon_arr {
  position: relative;
  margin: 0 auto;
  top: calc(5 * var(--remBasicSize));
  width: calc(6.5625 * var(--remBasicSize));
  height: calc(2 * var(--remBasicSize));
  background: url(../images/quiz/icon_arr.png) no-repeat center top/contain;
}
.qa .title_info {
  position: relative;
  margin: 0 auto;
  top: calc(5 * var(--remBasicSize));
  width: calc(41.34375 * var(--remBasicSize));
  height: calc(22.5625 * var(--remBasicSize));
  background: url(../images/quiz/p_2x.png) no-repeat center top/contain;
}
.qa .btn_gift {
  position: absolute;
  margin: 0 auto;
  top: calc(51.25 * var(--remBasicSize));
  left: calc(13.75 * var(--remBasicSize));
  width: calc(20 * var(--remBasicSize));
  height: calc(3.4375 * var(--remBasicSize));
  background: url(../images/quiz/btn_gift_2x.png) no-repeat center top/contain;
  cursor: pointer;
  z-index: 9;
}
.qa .btn_gift:hover {
  background: url(../images/quiz/btn_gift_h_2x.png) no-repeat center top/contain;
}
.qa .step01 {
  position: relative;
  margin: 0 auto;
  display: block;
  top: calc(13.75 * var(--remBasicSize));
  width: calc(42.375 * var(--remBasicSize));
  min-height: calc(52.25 * var(--remBasicSize));
  background: url(../images/quiz/mirror.png) no-repeat center top/contain;
}
.qa .step01 .step1_p {
  position: relative;
  margin: 0 auto;
  display: block;
  top: calc(8.75 * var(--remBasicSize));
  width: calc(19.46875 * var(--remBasicSize));
  height: calc(10.4375 * var(--remBasicSize));
  background: url(../images/quiz/step1_p_2x.png) no-repeat center top/contain;
}
.qa .step01 .btn_more {
  position: relative;
  margin: 0 auto;
  display: block;
  top: calc(10.625 * var(--remBasicSize));
  width: calc(16.875 * var(--remBasicSize));
  height: calc(3.4375 * var(--remBasicSize));
  background: url(../images/quiz/btn_more_2x.png) no-repeat center top/contain;
  cursor: pointer;
}
.qa .step01 .btn_more:hover {
  background: url(../images/quiz/btn_more_h_2x.png) no-repeat center top/contain;
}
.qa .step01 .start-btn {
  position: relative;
  margin: 0 auto;
  display: block;
  top: calc(13.125 * var(--remBasicSize));
  width: calc(14.25 * var(--remBasicSize));
  height: calc(14.25 * var(--remBasicSize));
  background: url(../images/quiz/btn_start.png) no-repeat center top/contain;
  cursor: pointer;
}
.qa .step01 .btn_arr {
  position: relative;
  margin: 0 auto;
  display: block;
  top: calc(3.4375 * var(--remBasicSize));
  left: calc(0 * var(--remBasicSize));
  width: calc(3.0625 * var(--remBasicSize));
  height: calc(0.9375 * var(--remBasicSize));
  background: url(../images/quiz/btn_arr.png) no-repeat center top/contain;
  animation: qa_btn_arr 1s infinite;
}
@keyframes qa_btn_arr {
  0% {
    opacity: 10;
  }
  50% {
    opacity: 10;
    left: calc(0.625 * var(--remBasicSize));
  }
  100% {
    opacity: 10;
  }
}
.qa .step02 {
  position: relative;
  margin: 0 auto;
  display: block;
  top: calc(13.75 * var(--remBasicSize));
  width: calc(42.375 * var(--remBasicSize));
  min-height: calc(52.25 * var(--remBasicSize));
  background: url(../images/quiz/mirror.png) no-repeat center top/contain;
}
.qa .step02 .clock {
  position: relative;
  margin: 0 auto;
  width: calc(3.4375 * var(--remBasicSize));
  height: calc(3.9375 * var(--remBasicSize));
  top: calc(8.4375 * var(--remBasicSize));
  background: url(../images/quiz/clock.png) no-repeat center top/contain;
  font-size: calc(1.625 * var(--remBasicSize));
  font-weight: bold;
  color: #fff;
  line-height: calc(4.125 * var(--remBasicSize));
  text-align: center;
  font-family: Arial;
}
.qa .step02 .qa-number {
  position: relative;
  margin: 0 auto;
  width: calc(43.125 * var(--remBasicSize));
  height: calc(3.125 * var(--remBasicSize));
  line-height: calc(3.125 * var(--remBasicSize));
  top: calc(8.9375 * var(--remBasicSize));
  font-size: calc(1.875 * var(--remBasicSize));
  font-weight: bold;
  color: #000000;
  text-align: center;
  font-family: Arial;
}
.qa .step02 .qa-q {
  position: relative;
  margin: 0 auto;
  width: calc(23.5625 * var(--remBasicSize));
  height: calc(6.875 * var(--remBasicSize));
  top: calc(8.75 * var(--remBasicSize));
  font-size: calc(1.6875 * var(--remBasicSize));
  line-height: calc(2.375 * var(--remBasicSize));
  color: #000000;
  text-align: center;
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.qa .step02 .qa-bar {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(23.5625 * var(--remBasicSize));
  height: calc(15.625 * var(--remBasicSize));
  top: calc(12.5 * var(--remBasicSize));
}
.qa .step02 .qa-a {
  display: block;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(23.5625 * var(--remBasicSize));
  height: calc(3.75 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  margin-bottom: calc(1.5625 * var(--remBasicSize));
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  color: #fff;
  font-size: calc(1.375 * var(--remBasicSize));
  line-height: calc(2.1875 * var(--remBasicSize));
  z-index: 9;
}
.qa .step02 .qa-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(23.5625 * var(--remBasicSize));
  height: calc(3.75 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  margin-bottom: calc(1.5625 * var(--remBasicSize));
  background-color: #231f20;
  border-radius: calc(5 * var(--remBasicSize));
  cursor: pointer;
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  color: #fff;
  font-size: calc(1.375 * var(--remBasicSize));
  line-height: calc(2.1875 * var(--remBasicSize));
}
.qa .step02 .qa-checkbox:hover {
  background-color: #e638c5;
}
/*-------------------------
       game 測驗區塊 步驟03
  -------------------------*/
.step03 {
  position: relative;
  margin: 0 auto;
  display: block;
  top: calc(13.125 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(52.25 * var(--remBasicSize));
}

/*-------------------------

          data

-------------------------*/
.data_group {
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(112.5 * var(--remBasicSize));
  margin: 0 auto;
  position: relative;
  top: calc(1.25 * var(--remBasicSize));
  background-color: #ffffff;
  padding: calc(3.125 * var(--remBasicSize));
  margin-bottom: calc(3.125 * var(--remBasicSize));
}
.data_group .result-p {
  position: relative;
  max-width: 0 auto;
  top: calc(0.3125 * var(--remBasicSize));
  z-index: 9;
  text-align: center;
  color: #e638c5;
  font-size: calc(2.125 * var(--remBasicSize));
  line-height: calc(2.1875 * var(--remBasicSize));
  font-weight: bold;
}
.data_group .data_title {
  position: relative;
  margin: 0 auto;
  top: calc(3.125 * var(--remBasicSize));
  width: calc(30.75 * var(--remBasicSize));
  height: calc(8.34375 * var(--remBasicSize));
  margin-bottom: calc(6.25 * var(--remBasicSize));
  background: url(../images/quiz/data_title_2x.png) no-repeat center top/contain;
}

.data_group .event-theme.el-form .el-form-item input::-moz-placeholder {
  background-color: transparent;
  border: 0;
  color: #a4a4a4;
  height: auto;
  line-height: 1;
  padding: 0;
}

.data_group .event-theme.el-form .el-form-item input::placeholder {
  background-color: transparent;
  border: 0;
  color: #a4a4a4;
  height: auto;
  line-height: 1;
  padding: 0;
}

.event-theme.el-form .el-input__icon {
  color: #a4a4a4;
}

/*-------------------------

          notice

-------------------------*/
.notice {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(42.5 * var(--remBasicSize));
  min-height: calc(20 * var(--remBasicSize));
  top: calc(1.25 * var(--remBasicSize));
  left: calc(-1.25 * var(--remBasicSize));
}
.notice .container {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(40.625 * var(--remBasicSize));
  min-height: calc(20 * var(--remBasicSize));
  z-index: 2;
}
.notice .container .p_area {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  left: calc(-0.25 * var(--remBasicSize));
  width: calc(40.625 * var(--remBasicSize));
  min-height: calc(18.75 * var(--remBasicSize));
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.notice .container h2 {
  position: relative;
  margin: 0 auto;
  text-align: left;
  top: calc(0 * var(--remBasicSize));
  height: calc(2.5 * var(--remBasicSize));
  font-size: calc(1.5625 * var(--remBasicSize));
  font-weight: bold;
  letter-spacing: calc(0.1875 * var(--remBasicSize));
  color: #000;
}
.notice .container ul {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  left: calc(1.25 * var(--remBasicSize));
  width: calc(39.375 * var(--remBasicSize));
  list-style-type: decimal;
}
.notice .container li {
  position: relative;
  margin: 0 auto;
  text-align: justify;
  top: calc(0.3125 * var(--remBasicSize));
  font-size: calc(1.5625 * var(--remBasicSize));
  line-height: calc(2.625 * var(--remBasicSize));
  font-weight: 400;
  color: #000;
}

/*-------------------------

          跑馬燈

-------------------------*/
.beauty-marquee {
  position: relative;
  top: calc(0 * var(--remBasicSize));
  left: 0;
  width: 100%;
  background-color: #ffedc8;
  z-index: 9;
  height: calc(6.25 * var(--remBasicSize));
}
.beauty-marquee .outer-box {
  width: 100%;
  height: calc(3.125 * var(--remBasicSize));
  animation: 60s marquee infinite linear;
}

@keyframes marquee {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.beauty-marquee .outer-box {
  background: url(../images/marquee.png) repeat-x center top/cover;
}

/*-------------------------

          footer

-------------------------*/
footer {
  position: relative;
  text-align: center;
  margin: 0 auto;
  bottom: 0;
  width: 100%;
  height: calc(5 * var(--remBasicSize));
  line-height: calc(5 * var(--remBasicSize));
  background-color: #ffedc8;
}
footer > a {
  color: rgb(0, 0, 0);
}

@media screen and (max-width: 750px) {
  footer {
    position: relative;
    text-align: center;
    margin: 0 auto;
    bottom: 0;
    width: 100%;
    height: calc(15 * var(--remBasicSize));
    line-height: calc(15 * var(--remBasicSize));
    background-color: #ffedc8;
  }
  footer > a {
    color: rgb(0, 0, 0);
  }
}
/*-------------------------

         lightbox

-------------------------*/
/* ---------------------
           共用
---------------------- */
.modal {
  background-color: transparent;
}

/*背景底色*/
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background: rgba(255, 237, 200, 0.8980392157);
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 1;
  filter: alpha(opacity=100);
}

.modal-open .modal {
  overflow-x: auto;
  overflow-y: auto;
}

.modal .modal-content {
  position: relative;
  background-color: transparent;
  border-radius: calc(0 * var(--remBasicSize));
  outline: 0;
}

/* ---------------------
        彈出內容1
---------------------- */
.style-box .modal-dialog {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  display: block;
  /* 關閉按鈕 */
}
.style-box .modal-dialog .modal-body {
  width: calc(46.875 * var(--remBasicSize));
  height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.style-box .modal-dialog .modal-body iframe {
  position: absolute;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(89.375 * var(--remBasicSize));
}
.style-box .modal-dialog .gift-explan-pop {
  position: relative;
  margin: 0 auto;
  top: calc(16.875 * var(--remBasicSize));
  width: calc(42.25 * var(--remBasicSize));
  height: calc(106.25 * var(--remBasicSize));
  background: url(../images/quiz/gift.png) no-repeat center/cover;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .style-box .modal-dialog .gift-explan-pop {
    top: calc(2.8125 * var(--remBasicSize));
  }
}
.style-box .modal-dialog .close {
  position: absolute;
  right: calc(1.875 * var(--remBasicSize));
  top: calc(10 * var(--remBasicSize));
  z-index: 10;
  width: calc(2.8125 * var(--remBasicSize));
  height: calc(2.8125 * var(--remBasicSize));
  color: rgb(255, 0, 0);
  background-color: transparent;
  font-size: calc(4.375 * var(--remBasicSize));
  background: url(../images/close.png) no-repeat center top/cover;
  cursor: pointer;
  transition: all ease-in-out 0.5s;
}
.style-box .modal-dialog .close:hover {
  transform: scale(1.5);
  transition: all ease-in-out 0.5s;
}/*# sourceMappingURL=index.css.map */