@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%;
}

.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;
}

/*-------------------------
         得獎公告
-------------------------*/
#pop_first {
  display: block;
}

#pop_first div {
  display: block;
}

.pop_first {
  width: 100vw;
  height: 100vh;
  display: block;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.85);
  overflow: scroll;
}

.pop_first .btn_close_pop {
  /*  position: fixed;*/
  position: absolute;
  z-index: 999;
  color: #fff;
  font-size: 5em;
  border: 0;
  width: calc(3.4375 * var(--remBasicSize));
  height: calc(3.4375 * var(--remBasicSize));
  display: block;
  top: calc(-0.625 * var(--remBasicSize));
  right: calc(-4.375 * var(--remBasicSize));
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}

.pop_first .btn_close_pop:hover {
  transform: scale(1.2);
}

.pop_first .btn_close_pop span {
  width: calc(0.1875 * var(--remBasicSize));
  height: calc(3.4375 * var(--remBasicSize));
  background: #fff;
  position: absolute;
  transform: rotate(45deg);
  top: 15%;
  left: 40%;
}

.pop_first .btn_close_pop span.btn_right_line {
  transform: rotate(-45deg);
  position: absolute;
  top: 15%;
  left: 40%;
}

.pop_body {
  width: calc(28.125 * var(--remBasicSize));
  height: calc(41.875 * var(--remBasicSize));
  margin: 0 auto;
  text-align: center;
  position: relative;
  background-color: #fff;
  margin-top: calc(3.125 * var(--remBasicSize));
  margin-bottom: calc(6.25 * var(--remBasicSize));
  background: url(../images/gift.png) no-repeat top center/contain;
}

.pop_first .btn_apply {
  position: relative;
  display: block;
  margin: 0 auto;
  width: calc(20.875 * var(--remBasicSize));
  height: calc(3.5625 * var(--remBasicSize));
  top: calc(28.125 * var(--remBasicSize));
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  background: url(../images/awardbtn.png) no-repeat top center/contain;
}

.pop_first .btn_apply:hover {
  background: url(../images/awardbtn_h.png) no-repeat top center/contain;
}

.pop_first ul {
  width: calc(23.75 * var(--remBasicSize));
  position: relative;
  margin: 0 auto;
  top: calc(26.875 * var(--remBasicSize));
  left: calc(0.625 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  line-height: calc(1.75 * var(--remBasicSize));
  text-align: justify;
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

.pop_first ul li {
  list-style: decimal;
}

@media screen and (max-width: 750px) {
  .pop_first .btn_close_pop {
    width: calc(4.375 * var(--remBasicSize));
    height: calc(4.375 * var(--remBasicSize));
  }
  .pop_first .btn_apply {
    width: calc(24 * var(--remBasicSize));
    height: calc(5.4375 * var(--remBasicSize));
    top: calc(36.875 * var(--remBasicSize));
  }
  .pop_first .btn_close_pop span {
    height: calc(4.375 * var(--remBasicSize));
  }
  .pop_first .btn_close_pop {
    top: calc(-5.625 * var(--remBasicSize));
    right: calc(0 * var(--remBasicSize));
  }
  .pop_body {
    width: calc(42.5 * var(--remBasicSize));
    height: calc(55.4375 * var(--remBasicSize));
    margin-top: calc(13.75 * var(--remBasicSize));
  }
  .pop_first ul {
    width: calc(36.25 * var(--remBasicSize));
    top: calc(41.25 * var(--remBasicSize));
    font-size: calc(1.5625 * var(--remBasicSize));
    line-height: calc(2.5 * var(--remBasicSize));
  }
}
/*-------------------------

           kv

-------------------------*/
.kv_video_area {
  position: relative;
  text-align: center;
  margin: 0 auto;
  display: block;
  top: calc(0 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(88.375 * var(--remBasicSize));
  z-index: 8;
}

.kv_video {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  top: calc(15 * var(--remBasicSize));
  width: calc(46.0625 * var(--remBasicSize));
  height: calc(74.375 * var(--remBasicSize));
  background: url(../images/kv/kv_video.mp4) no-repeat center top/cover;
  z-index: 11;
  background-color: #fff;
}

.kv {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  top: calc(0 * var(--remBasicSize));
  height: calc(93.75 * var(--remBasicSize));
  background: url(../images/kv/bg2.png) no-repeat center top/cover;
  z-index: 9;
  overflow: hidden;
}
.kv .container {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(93.75 * var(--remBasicSize));
}
.kv .container .kv_pic {
  position: relative;
  margin: 0 auto;
  top: calc(10.625 * var(--remBasicSize));
  width: calc(46.0625 * var(--remBasicSize));
  height: calc(74.375 * var(--remBasicSize));
  background: url(../images/kv/kv_pic.png) no-repeat center top/cover;
}
.kv .container .kv_title {
  position: absolute;
  top: calc(2.375 * var(--remBasicSize));
  left: calc(1.5625 * var(--remBasicSize));
  width: calc(35.5 * var(--remBasicSize));
  height: calc(13.90625 * var(--remBasicSize));
  background: url(../images/kv/title.png) no-repeat center top/contain;
  z-index: 2;
}
.kv .container .kv_key {
  position: absolute;
  top: calc(7.5 * var(--remBasicSize));
  left: calc(6.875 * var(--remBasicSize));
  width: calc(37.5 * var(--remBasicSize));
  height: calc(13.78125 * var(--remBasicSize));
  background: url(../images/kv/key.png) no-repeat center top/contain;
  z-index: 1;
  animation: kv_key 2s infinite alternate;
}
@keyframes kv_key {
  0% {
    opacity: 10;
  }
  80% {
    opacity: 10;
    transform: rotate(-5deg);
    left: calc(7.1875 * var(--remBasicSize));
  }
  100% {
    opacity: 10;
  }
}
.kv .container .btn_play {
  position: absolute;
  top: calc(59.375 * var(--remBasicSize));
  left: calc(17.5 * var(--remBasicSize));
  width: calc(10.0625 * var(--remBasicSize));
  height: calc(14.9375 * var(--remBasicSize));
  cursor: pointer;
  background: url(../images/kv/btn_play.png) no-repeat center top/contain;
  z-index: 3;
  animation: kv-shine1 2s linear infinite alternate;
}
@keyframes kv-shine1 {
  0% {
    opacity: 10;
  }
  50% {
    opacity: 10;
    transform: scale(1.1);
  }
  100% {
    opacity: 10;
  }
}
.kv .container .dec_flower {
  position: absolute;
  top: calc(13.75 * var(--remBasicSize));
  left: calc(-9.25 * var(--remBasicSize));
  width: calc(65.875 * var(--remBasicSize));
  height: calc(48.4375 * var(--remBasicSize));
  background: url(../images/kv/dec_flower.gif) no-repeat center top/contain;
  z-index: 0;
  overflow-x: hidden;
}

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

           kol

-------------------------*/
.kol {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 100%;
  height: calc(184.375 * var(--remBasicSize));
  background: url(../images/kol/bg.png) no-repeat center bottom;
  background-color: #dbe479;
  /*--------------
        跑馬燈
  --------------*/
}
@media screen and (max-width: 750px) {
  .kol {
    height: calc(190.625 * var(--remBasicSize));
  }
}
.kol .container {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(184.375 * var(--remBasicSize));
  /*--------------
        tab
  --------------*/
  /*--------------
        內容
  --------------*/
  /*--------------
        slides
  --------------*/
  /*共用*/
  /*--- Dots ---*/
  /*--- 左右按鍵 ---*/
}
.kol .container .kol_title {
  position: relative;
  margin: 0 auto;
  top: calc(5 * var(--remBasicSize));
  width: calc(34.78125 * var(--remBasicSize));
  height: calc(16.53125 * var(--remBasicSize));
  z-index: 20;
  background: url(../images/kol/title.png) no-repeat center top/cover;
}
.kol .container .kol_p {
  position: relative;
  margin: 0 auto;
  top: calc(8.125 * var(--remBasicSize));
  width: calc(42.8125 * var(--remBasicSize));
  height: calc(10.25 * var(--remBasicSize));
  background: url(../images/kol/p.png) no-repeat center top/cover;
}
.kol .container .kol_h2 {
  position: absolute;
  margin: 0 auto;
  top: calc(39.375 * var(--remBasicSize));
  right: calc(3.125 * var(--remBasicSize));
  width: calc(13 * var(--remBasicSize));
  height: calc(18.6875 * var(--remBasicSize));
  background: url(../images/kol/h2.png) no-repeat center top/cover;
}
.kol .container .dec_flower {
  position: absolute;
  margin: 0 auto;
  top: calc(18.75 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  width: calc(44.625 * var(--remBasicSize));
  height: calc(87.125 * var(--remBasicSize));
  background: url(../images/kol/dec_flower.gif) no-repeat center top/cover;
}
.kol .container .kol_pic {
  position: relative;
  margin: 0 auto;
  top: calc(11.25 * var(--remBasicSize));
  left: calc(-4.375 * var(--remBasicSize));
  width: calc(56.5 * var(--remBasicSize));
  height: calc(58.59375 * var(--remBasicSize));
  background: url(../images/kol/kol_pic.png) no-repeat center top/cover;
}
.kol .container .btn_more {
  position: absolute;
  margin: 0 auto;
  bottom: calc(-6.875 * var(--remBasicSize));
  left: calc(17.8125 * var(--remBasicSize));
  width: calc(19.0625 * var(--remBasicSize));
  height: calc(4.6875 * var(--remBasicSize));
  z-index: 2;
  background: url(../images/kol/btn_more.png) no-repeat center top/cover;
}
.kol .container .btn_key {
  position: relative;
  margin: 0 auto;
  top: calc(-0.3125 * var(--remBasicSize));
  right: calc(-9.0625 * var(--remBasicSize));
  width: calc(4.9375 * var(--remBasicSize));
  height: calc(3.125 * var(--remBasicSize));
  background: url(../images/kol/btn_key.png) no-repeat center top/cover;
  animation: btn_key 2s infinite alternate;
}
@keyframes btn_key {
  0% {
    opacity: 10;
  }
  50% {
    opacity: 10;
    transform: rotate(15deg);
    right: calc(-8.75 * var(--remBasicSize));
  }
  100% {
    opacity: 10;
  }
}
.kol .container .pd_area {
  position: relative;
  margin: 0 auto;
  top: calc(25 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(56.875 * var(--remBasicSize));
}
.kol .container .pd_tab_group {
  position: relative;
  width: 100%;
  height: calc(4.875 * var(--remBasicSize));
  display: flex;
  justify-content: center;
  z-index: 5;
}
.kol .container .pd_tab_group::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: calc(4.875 * var(--remBasicSize));
}
.kol .container .pd_tab_group .tab {
  justify-content: center;
  position: relative;
  display: inline-block;
  width: calc(13.25 * var(--remBasicSize));
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
  list-style: none;
}
.kol .container .pd_tab_group .tab .btn {
  position: relative;
  font-size: 0;
  line-height: 0;
  display: block;
  width: calc(13.25 * var(--remBasicSize));
  height: calc(4.875 * var(--remBasicSize));
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
}
.kol .container .pd_tab_group .tab .btn:hover, .kol .container .pd_tab_group .tab .btn:focus {
  outline: none;
}
.kol .container .pd_tab_group .tab .btn:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
}
.kol .container .pd_tab_group .tab:nth-child(1) .btn {
  position: relative;
  left: calc(0.625 * var(--remBasicSize));
  z-index: 2;
  display: block;
  width: calc(13.25 * var(--remBasicSize));
  height: calc(4.875 * var(--remBasicSize));
}
.kol .container .pd_tab_group .tab:nth-child(2) .btn {
  position: relative;
  right: calc(0.625 * var(--remBasicSize));
  display: block;
  width: calc(13.25 * var(--remBasicSize));
  height: calc(4.875 * var(--remBasicSize));
}
.kol .container .pd_tab_group .tab:nth-child(3) .btn {
  position: relative;
  right: calc(0.625 * var(--remBasicSize));
  display: block;
  width: calc(13.25 * var(--remBasicSize));
  height: calc(4.875 * var(--remBasicSize));
}
.kol .container .pd_tab_group .tab:nth-child(1).active .btn {
  width: calc(13.25 * var(--remBasicSize));
  height: calc(4.875 * var(--remBasicSize));
}
.kol .container .pd_tab_group .tab:nth-child(2).active .btn {
  width: calc(13.25 * var(--remBasicSize));
  height: calc(4.875 * var(--remBasicSize));
  z-index: 3;
}
.kol .container .pd_tab_group .tab:nth-child(3).active .btn {
  width: calc(13.25 * var(--remBasicSize));
  height: calc(4.875 * var(--remBasicSize));
  z-index: 4;
}
.kol .container .pd_tab_content {
  position: relative;
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(56.25 * var(--remBasicSize));
  top: calc(-5 * var(--remBasicSize));
}
.kol .container .pd_content {
  display: none;
}
.kol .container .pd_content.active {
  display: block;
}
.kol .container .pd_content1 {
  width: calc(46.875 * var(--remBasicSize));
  height: calc(59.65625 * var(--remBasicSize));
  background: url(../images/kol/bg_wei.png) no-repeat center top/cover;
}
.kol .container .pd_content2 {
  width: calc(46.875 * var(--remBasicSize));
  height: calc(59.65625 * var(--remBasicSize));
  background: url(../images/kol/bg_ruby.png) no-repeat center top/cover;
}
.kol .container .pd_content3 {
  width: calc(46.875 * var(--remBasicSize));
  height: calc(59.65625 * var(--remBasicSize));
  background: url(../images/kol/bg_janet.png) no-repeat center top/cover;
}
.kol .container .store_slides {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(37.5 * var(--remBasicSize));
  min-height: calc(27 * var(--remBasicSize));
  top: calc(26.875 * var(--remBasicSize));
}
.kol .container .store_slides_page {
  position: relative;
  margin: 0 auto;
  width: calc(37.5 * var(--remBasicSize));
  min-height: calc(27 * var(--remBasicSize));
}
.kol .container .slider_wrap {
  position: relative;
  margin: 0 auto;
  width: calc(37.5 * var(--remBasicSize));
  min-height: calc(27 * var(--remBasicSize));
}
.kol .container .slider_wrap .pic {
  position: relative;
  margin: 0 auto;
  width: calc(37.5 * var(--remBasicSize));
  height: calc(27.9375 * var(--remBasicSize));
}
.kol .container .slider_wrap .pic img {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.kol .container .slick-dotted.slick-slider {
  margin-bottom: calc(0 * var(--remBasicSize));
}
.kol .container .slick-dots {
  position: absolute;
  z-index: 3;
  bottom: calc(-1.25 * var(--remBasicSize));
  display: block;
  width: 100%;
  height: calc(0.625 * var(--remBasicSize));
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.kol .container .slick-dots li {
  position: relative;
  display: inline-block;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  margin: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 calc(0.5 * var(--remBasicSize));
}
.kol .container .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  cursor: pointer;
  color: transparent;
  border-radius: calc(2.5 * var(--remBasicSize));
  outline: none;
  background-color: rgba(0, 0, 0, 0.3);
}
.kol .container .slick-dots li button:hover,
.kol .container .slick-dots li button:focus {
  outline: none;
}
.kol .container .slick-dots li button:hover:before,
.kol .container .slick-dots li button:focus:before {
  opacity: 1;
  background-color: transparent;
}
.kol .container .slick-dots li button:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  border-radius: calc(2.5 * var(--remBasicSize));
  text-align: center;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.kol .container .slick-dots li.slick-active button:before {
  background-color: #000;
}
.kol .container .slick-prev,
.kol .container .slick-next {
  position: absolute;
  z-index: 5;
  transform: scale(1);
  background-color: transparent;
  font-size: 0;
  cursor: pointer;
}
.kol .container .slick-prev {
  left: 6%;
  top: 35%;
}
.kol .container .slick-next {
  right: 6%;
  top: 35%;
}
.kol .container .slick-prev:before {
  display: block;
  content: "";
  color: transparent;
  width: calc(2.125 * var(--remBasicSize));
  height: calc(5.5 * var(--remBasicSize));
  background: url(../images/kol/arr_l.png) no-repeat center top/cover;
}
.kol .container .slick-next:before {
  display: block;
  content: "";
  color: transparent;
  width: calc(2.125 * var(--remBasicSize));
  height: calc(5.5 * var(--remBasicSize));
  background: url(../images/kol/arr_r.png) no-repeat center top/cover;
}
.kol .beauty-marquee {
  position: relative;
  top: calc(-7.5 * var(--remBasicSize));
  left: 0;
  width: 100%;
  z-index: 9;
  transform: rotate(-3deg);
}
@media screen and (max-width: 750px) {
  .kol .beauty-marquee {
    top: calc(-6.25 * var(--remBasicSize));
  }
}
.kol .beauty-marquee .outer-box {
  width: 100%;
  height: calc(1.25 * var(--remBasicSize));
  animation: 15s marquee infinite linear;
}
@keyframes marquee {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.kol .beauty-marquee .outer-box {
  background: url(../images/kol/elle_bestie.png) repeat-x;
  background-size: cover;
}

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

           pd

-------------------------*/
.pd {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(153.125 * var(--remBasicSize));
  background-color: #f2a2aa;
}
.pd .container {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(153.125 * var(--remBasicSize));
  /*--------------
        slides
  --------------*/
  /*--------------
     佳麗寶影片
  --------------*/
  /*--- Dots ---*/
  /*--- 左右按鍵 ---*/
}
.pd .container .pd_title {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(39.3125 * var(--remBasicSize));
  height: calc(16.5625 * var(--remBasicSize));
  background: url(../images/pd/title.png) no-repeat center top/cover;
}
.pd .container .pd_p {
  position: relative;
  margin: 0 auto;
  top: calc(3.75 * var(--remBasicSize));
  width: calc(42.53125 * var(--remBasicSize));
  height: calc(10.25 * var(--remBasicSize));
  background: url(../images/pd/p.png) no-repeat center top/cover;
}
.pd .container .dec_flower {
  position: absolute;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  width: calc(40.4375 * var(--remBasicSize));
  height: calc(18.875 * var(--remBasicSize));
  background: url(../images/pd/dec_flower.gif) no-repeat center top/cover;
}
.pd .container .pd_slides_bg {
  position: absolute;
  margin: 0 auto;
  top: calc(21.875 * var(--remBasicSize));
  left: calc(-8.75 * var(--remBasicSize));
  width: calc(65.5 * var(--remBasicSize));
  height: calc(93.8125 * var(--remBasicSize));
  background: url(../images/pd/edit_bg.png) no-repeat center top/cover;
}
.pd .container .pd_slides {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(112.5 * var(--remBasicSize));
  top: calc(6.25 * var(--remBasicSize));
  z-index: 2;
}
.pd .container .pd_list_area_sliders {
  position: relative;
  margin: 0 auto;
  text-align: center;
  top: calc(0 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(112.5 * var(--remBasicSize));
  z-index: 2;
}
.pd .container .pd_slides_page {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(112.5 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
}
.pd .container .kanabo_video {
  position: absolute;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(26.375 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  z-index: 9;
}
.pd .container .kanabo_video iframe {
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(26.375 * var(--remBasicSize));
}
.pd .container .article_pic {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(36 * var(--remBasicSize));
  z-index: 3;
}
.pd .container .article_pic img {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(36 * var(--remBasicSize));
}
.pd .container .article_pic p {
  position: relative;
  margin: 0 auto;
  width: calc(43.75 * var(--remBasicSize));
  height: auto;
  bottom: calc(8.5 * var(--remBasicSize));
  left: calc(0 * var(--remBasicSize));
  color: #fff;
  font-size: calc(1.625 * var(--remBasicSize));
  line-height: calc(2.375 * var(--remBasicSize));
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.pd .container .pd_h1 {
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  width: calc(33.40625 * var(--remBasicSize));
  height: calc(4.71875 * var(--remBasicSize));
  background: url(../images/pd/h1.png) no-repeat center top/cover;
  z-index: 3;
}
.pd .container .pd_h111 {
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  width: calc(33.40625 * var(--remBasicSize));
  height: calc(4.71875 * var(--remBasicSize));
  background: url(../images/pd/h1.png) no-repeat center top/cover;
  z-index: 3;
}
.pd .container .pd_list_area {
  position: relative;
  margin: 0 auto;
  text-align: center;
  top: calc(0 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(64.375 * var(--remBasicSize));
  z-index: 2;
}
.pd .container .pd_info {
  position: relative;
  margin: 0 auto;
  text-align: center;
  margin-bottom: calc(1.5625 * var(--remBasicSize));
  width: calc(23.125 * var(--remBasicSize));
  height: calc(28.4375 * var(--remBasicSize));
  display: inline-block;
}
.pd .container .pd_info img {
  position: relative;
  margin: 0 auto;
  width: calc(21.875 * var(--remBasicSize));
  height: calc(14.375 * var(--remBasicSize));
}
.pd .container .pd_info h1 {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  top: calc(0.3125 * var(--remBasicSize));
  color: #000;
  font-size: calc(1.75 * var(--remBasicSize));
  line-height: calc(2.25 * var(--remBasicSize));
  margin-bottom: calc(0.125 * var(--remBasicSize));
}
.pd .container .pd_info h1 span {
  font-size: calc(1.4375 * var(--remBasicSize));
  line-height: calc(2.125 * var(--remBasicSize));
}
.pd .container .pd_info h2 {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  top: calc(0.3125 * var(--remBasicSize));
  left: calc(0.1875 * var(--remBasicSize));
  color: #f2a2aa;
  font-size: calc(1.375 * var(--remBasicSize));
  line-height: calc(2.25 * var(--remBasicSize));
  margin-bottom: calc(0.5 * var(--remBasicSize));
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.pd .container .pd_info p {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  top: calc(0.1875 * var(--remBasicSize));
  color: #000;
  font-size: calc(1.3125 * var(--remBasicSize));
  line-height: calc(2 * var(--remBasicSize));
  letter-spacing: calc(0 * var(--remBasicSize));
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.pd .container .pd_info p span {
  font-size: calc(1.3125 * var(--remBasicSize));
  line-height: calc(2 * var(--remBasicSize));
  letter-spacing: calc(-0.0625 * var(--remBasicSize));
  text-align: justify;
}
.pd .container .pd_info_big {
  position: relative;
  margin: 0 auto;
  text-align: center;
  margin-bottom: calc(1.5625 * var(--remBasicSize));
  width: calc(44.6875 * var(--remBasicSize));
  height: calc(38.6875 * var(--remBasicSize));
  display: inline-block;
  top: calc(4.375 * var(--remBasicSize));
}
.pd .container .pd_info_big .pic11 {
  position: relative;
  margin: 0 auto;
  width: calc(20.625 * var(--remBasicSize));
  height: calc(16.6875 * var(--remBasicSize));
  background: url(../images/pd/edit_2_pd_1.jpg) no-repeat center top/cover;
}
.pd .container .pd_info_big .pic22 {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(44.6875 * var(--remBasicSize));
  height: calc(19.6875 * var(--remBasicSize));
  top: calc(2.8125 * var(--remBasicSize));
  background: url(../images/pd/edit_2_pd_2.jpg) no-repeat center top/cover;
}
.pd .container .pd_info_big h1 {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  top: calc(0.9375 * var(--remBasicSize));
  color: #000;
  font-size: calc(1.75 * var(--remBasicSize));
  line-height: calc(2.25 * var(--remBasicSize));
  margin-bottom: calc(0.125 * var(--remBasicSize));
}
.pd .container .pd_info_big h2 {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  top: calc(0.9375 * var(--remBasicSize));
  left: calc(0.1875 * var(--remBasicSize));
  color: #f2a2aa;
  font-size: calc(1.625 * var(--remBasicSize));
  line-height: calc(2.375 * var(--remBasicSize));
  margin-bottom: calc(0.5 * var(--remBasicSize));
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.pd .container .pd_info_big p {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  top: calc(0.8125 * var(--remBasicSize));
  color: #000;
  font-size: calc(1.625 * var(--remBasicSize));
  line-height: calc(2.375 * var(--remBasicSize));
  letter-spacing: calc(0 * var(--remBasicSize));
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.pd .container .slick-dotted.slick-slider {
  margin-bottom: calc(0 * var(--remBasicSize));
}
.pd .container .slick-dots {
  position: absolute;
  z-index: 3;
  bottom: calc(72.5 * var(--remBasicSize));
  display: block;
  width: 100%;
  height: calc(0.625 * var(--remBasicSize));
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.pd .container .slick-dots li {
  position: relative;
  display: inline-block;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  margin: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 calc(0.5 * var(--remBasicSize));
}
.pd .container .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  cursor: pointer;
  color: transparent;
  border-radius: calc(2.5 * var(--remBasicSize));
  outline: none;
  background-color: rgba(0, 0, 0, 0.3);
}
.pd .container .slick-dots li button:hover,
.pd .container .slick-dots li button:focus {
  outline: none;
}
.pd .container .slick-dots li button:hover:before,
.pd .container .slick-dots li button:focus:before {
  opacity: 1;
  background-color: transparent;
}
.pd .container .slick-dots li button:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  border-radius: calc(2.5 * var(--remBasicSize));
  text-align: center;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pd .container .slick-dots li.slick-active button:before {
  background-color: #000;
}
.pd .container .slick-prev,
.pd .container .slick-next {
  position: absolute;
  transform: scale(1);
  background-color: transparent;
  font-size: 0;
  cursor: pointer;
  z-index: 22;
}
.pd .container .slick-prev {
  left: 20%;
  top: 34%;
}
.pd .container .slick-next {
  right: 20%;
  top: 34%;
}
.pd .container .slick-prev:before {
  z-index: 9;
  display: block;
  content: "";
  color: transparent;
  width: calc(7.5625 * var(--remBasicSize));
  height: calc(2.0625 * var(--remBasicSize));
  background: url(../images/pd/arr_l.png) no-repeat center top/cover;
}
.pd .container .slick-next:before {
  z-index: 9;
  display: block;
  content: "";
  color: transparent;
  width: calc(7.5625 * var(--remBasicSize));
  height: calc(2.0625 * var(--remBasicSize));
  background: url(../images/pd/arr_r.png) no-repeat center top/cover;
}

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

           editor

-------------------------*/
.editor {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(71.25 * var(--remBasicSize));
  background-color: #dbe479;
  /*--------------
        跑馬燈
  --------------*/
}
.editor .title_bg {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(9.5 * var(--remBasicSize));
  background: url(../images/editor/title_bg.png) no-repeat center top/cover;
}
.editor .beauty-marquee2 {
  position: relative;
  top: calc(-6.25 * var(--remBasicSize));
  left: 0;
  width: 100%;
  z-index: 9;
}
@media screen and (max-width: 750px) {
  .editor .beauty-marquee2 {
    top: calc(-6.25 * var(--remBasicSize));
  }
}
.editor .beauty-marquee2 .outer-box {
  width: 100%;
  height: calc(1.25 * var(--remBasicSize));
  animation: 15s marquee infinite linear;
}
@keyframes marquee {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.editor .beauty-marquee2 .outer-box {
  background: url(../images/editor/ellebestie.png) repeat-x;
  background-size: cover;
}
.editor .container {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(71.25 * var(--remBasicSize));
  /*--------------
        slides
  --------------*/
  /*--- Dots ---*/
  /*--- 左右按鍵 ---*/
}
.editor .container .editor_title {
  position: relative;
  top: calc(-5 * var(--remBasicSize));
  left: calc(1.5625 * var(--remBasicSize));
  width: calc(41.625 * var(--remBasicSize));
  height: calc(16.46875 * var(--remBasicSize));
  background: url(../images/editor/title.png) no-repeat center top/contain;
}
.editor .container .dec_flower {
  position: absolute;
  top: calc(10 * var(--remBasicSize));
  left: calc(3.4375 * var(--remBasicSize));
  width: calc(36.1875 * var(--remBasicSize));
  height: calc(47.9375 * var(--remBasicSize));
  background: url(../images/editor/dec_flower.gif) no-repeat center top/contain;
}
.editor .container .editor_sliders {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(43.625 * var(--remBasicSize));
  height: calc(33.75 * var(--remBasicSize));
  z-index: 2;
}
.editor .container .editor_page {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(43.625 * var(--remBasicSize));
  height: calc(33.75 * var(--remBasicSize));
}
.editor .container .editor_page img {
  position: absolute;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(43.625 * var(--remBasicSize));
  height: calc(31.9375 * var(--remBasicSize));
}
.editor .container .editor_page p {
  position: relative;
  text-align: justify;
  margin: 0 auto;
  top: calc(22.5 * var(--remBasicSize));
  width: calc(38 * var(--remBasicSize));
  height: calc(13 * var(--remBasicSize));
  font-size: calc(1.625 * var(--remBasicSize));
  line-height: calc(2.4375 * var(--remBasicSize));
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.editor .container .editor_page .btn_more {
  position: absolute;
  top: calc(28.75 * var(--remBasicSize));
  left: calc(12.1875 * var(--remBasicSize));
  width: calc(19.5625 * var(--remBasicSize));
  height: calc(5 * var(--remBasicSize));
  z-index: 2;
  cursor: pointer;
}
.editor .container .editor_page .btn_more .btn_more_pic {
  position: relative;
  margin: 0 auto;
  text-align: center;
  top: calc(2.1875 * var(--remBasicSize));
  left: calc(-0.3125 * var(--remBasicSize));
  width: calc(9.875 * var(--remBasicSize));
  height: calc(1.375 * var(--remBasicSize));
  background: url(../images/editor/btn_more.png) no-repeat center top/contain;
}
.editor .container .slick-dotted.slick-slider {
  margin-bottom: calc(0 * var(--remBasicSize));
}
.editor .container .slick-dots {
  position: absolute;
  z-index: 3;
  bottom: calc(-3.125 * var(--remBasicSize));
  display: block;
  width: 100%;
  height: calc(0.625 * var(--remBasicSize));
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.editor .container .slick-dots li {
  position: relative;
  display: inline-block;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  margin: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 calc(0.5 * var(--remBasicSize));
}
.editor .container .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  cursor: pointer;
  color: transparent;
  border-radius: calc(2.5 * var(--remBasicSize));
  outline: none;
  background-color: rgba(0, 0, 0, 0.3);
}
.editor .container .slick-dots li button:hover,
.editor .container .slick-dots li button:focus {
  outline: none;
}
.editor .container .slick-dots li button:hover:before,
.editor .container .slick-dots li button:focus:before {
  opacity: 1;
  background-color: transparent;
}
.editor .container .slick-dots li button:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  border-radius: calc(2.5 * var(--remBasicSize));
  text-align: center;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.editor .container .slick-dots li.slick-active button:before {
  background-color: #000;
}
.editor .container .slick-prev,
.editor .container .slick-next {
  position: absolute;
  z-index: 5;
  transform: scale(1);
  background-color: transparent;
  font-size: 0;
  cursor: pointer;
}
.editor .container .slick-prev {
  left: -3%;
  top: 40%;
}
.editor .container .slick-next {
  right: -3%;
  top: 40%;
}
.editor .container .slick-prev:before {
  display: block;
  content: "";
  color: transparent;
  width: calc(2.125 * var(--remBasicSize));
  height: calc(5.5 * var(--remBasicSize));
  background: url(../images/editor/arr_l.png) no-repeat center top/cover;
}
.editor .container .slick-next:before {
  display: block;
  content: "";
  color: transparent;
  width: calc(2.125 * var(--remBasicSize));
  height: calc(5.5 * var(--remBasicSize));
  background: url(../images/editor/arr_r.png) no-repeat center top/cover;
}

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

           igwall

-------------------------*/
.igwall {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: calc(106.25 * var(--remBasicSize));
  text-align: center;
  background-color: #f2a2aa;
  /*------------------
       IG照片區域
  ------------------*/
}
.igwall .container {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(106.25 * var(--remBasicSize));
}
.igwall .container .igwall_title_area {
  position: relative;
  margin: 0 auto;
  text-align: center;
  top: calc(5 * var(--remBasicSize));
  left: calc(-3.125 * var(--remBasicSize));
  width: calc(55.4375 * var(--remBasicSize));
  height: calc(104 * var(--remBasicSize));
  background: url(../images/igwall/bg.png) no-repeat center top/contain;
}
.igwall .container .igwall_title {
  position: relative;
  margin: 0 auto;
  top: calc(7.5 * var(--remBasicSize));
  left: calc(-1.875 * var(--remBasicSize));
  width: calc(33.875 * var(--remBasicSize));
  height: calc(12.3125 * var(--remBasicSize));
  background: url(../images/igwall/title.png) no-repeat center top/contain;
}
.igwall .container .dec_pic {
  position: absolute;
  margin: 0 auto;
  top: calc(23.75 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  width: calc(20.9375 * var(--remBasicSize));
  height: calc(27.125 * var(--remBasicSize));
  background: url(../images/igwall/dec_pic.png) no-repeat center top/contain;
}
.igwall .container .igwall_h1 {
  position: absolute;
  margin: 0 auto;
  top: calc(24.375 * var(--remBasicSize));
  right: calc(7.1875 * var(--remBasicSize));
  width: calc(24.6875 * var(--remBasicSize));
  height: calc(21.1875 * var(--remBasicSize));
  background: url(../images/igwall/h1.png) no-repeat center top/contain;
  z-index: 2;
}
.igwall .container .info {
  position: relative;
  margin: 0 auto;
  top: calc(39.375 * var(--remBasicSize));
  left: calc(-1.25 * var(--remBasicSize));
  width: calc(43.25 * var(--remBasicSize));
  height: calc(42.71875 * var(--remBasicSize));
  background: url(../images/igwall/info.png) no-repeat center top/contain;
  z-index: 2;
}
.igwall .container .hashtag-button {
  position: relative;
  margin: 0 auto;
  top: calc(40.625 * var(--remBasicSize));
  width: calc(16.875 * var(--remBasicSize));
  height: calc(3.125 * var(--remBasicSize));
  background-color: #000;
  color: #fff;
  font-size: calc(1.5 * var(--remBasicSize));
  border-radius: calc(3.125 * var(--remBasicSize));
  z-index: 9;
  cursor: pointer;
}
.igwall .container .dec_flower {
  position: absolute;
  margin: 0 auto;
  top: calc(20.625 * var(--remBasicSize));
  left: calc(5.625 * var(--remBasicSize));
  width: calc(42.375 * var(--remBasicSize));
  height: calc(42.625 * var(--remBasicSize));
  background: url(../images/igwall/dec_flower.gif) no-repeat center top/contain;
}
.igwall .contetnt {
  display: flex;
  justify-content: center;
  margin-top: calc(7.5 * var(--remBasicSize));
}
.igwall .contetnt .item_box {
  width: calc(45.75 * var(--remBasicSize));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: calc(5 * var(--remBasicSize));
}
.igwall .contetnt .item_box .item {
  align-self: stretch;
  display: block;
  width: calc(22.8125 * var(--remBasicSize));
  min-height: calc(41.25 * var(--remBasicSize));
  border-radius: calc(0.1875 * var(--remBasicSize));
  background: url(../images/igwall/igwall_block_bg.png) no-repeat center top/contain;
  padding: calc(3.4375 * var(--remBasicSize)) calc(0.875 * var(--remBasicSize)) calc(1 * var(--remBasicSize)) calc(1.5625 * var(--remBasicSize));
  margin: 0 auto;
}
.igwall .contetnt .item_box .item .pic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(19.4375 * var(--remBasicSize));
  height: calc(19.4375 * var(--remBasicSize));
  overflow: hidden;
  margin-bottom: calc(2.5 * var(--remBasicSize));
}
.igwall .contetnt .item_box .item .pic img {
  width: 100%;
}
.igwall .contetnt .item_box .item .txt {
  top: calc(1.875 * var(--remBasicSize));
  width: calc(19.4375 * var(--remBasicSize));
  text-align: left;
  word-wrap: break-word;
}
.igwall .contetnt .item_box .item .txt > p {
  position: relative;
  top: calc(0.75 * var(--remBasicSize));
  left: calc(2.1875 * var(--remBasicSize));
  font-size: calc(1.375 * var(--remBasicSize));
  line-height: 1.5em;
  color: #f2a2aa;
  font-weight: 400;
  letter-spacing: 0px;
  text-align: left;
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  word-wrap: break-word;
}
.igwall .contetnt .item_box .item .txt > span {
  position: relative;
  top: calc(0.9375 * var(--remBasicSize));
  left: calc(0.3125 * var(--remBasicSize));
  font-size: calc(1.25 * var(--remBasicSize));
  line-height: 1.4em;
  color: #333;
  letter-spacing: 0px;
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  word-wrap: break-word;
}

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

          footer

-------------------------*/
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: transparent;
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
footer > a {
  color: #fff;
}

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

         lightbox

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

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

.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: 0px;
  outline: 0;
}

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

---------------------- */
.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(31.25 * var(--remBasicSize));
}
.style-box .modal-dialog .close {
  position: absolute;
  right: 0;
  top: 10vh;
  z-index: 10;
  width: calc(4 * var(--remBasicSize));
  height: calc(4 * var(--remBasicSize));
  color: #fff;
  background-color: transparent;
  font-size: calc(4.375 * var(--remBasicSize));
  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;
}
@media screen and (max-width: 750px) {
  .style-box .modal-dialog .close {
    top: 20vh;
    width: calc(6.25 * var(--remBasicSize));
    height: calc(6.25 * var(--remBasicSize));
  }
}/*# sourceMappingURL=main.css.map */