* {
  resize: none;
  outline: 0;
}

*, *:after, *::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  margin: 0;
  min-height: 100%;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  overflow-x: hidden;
  font-family: 'Josefin Sans', "Microsoft JhengHei", "Heiti TC", sans-serif;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  body {
    font-size: 4.16667vw;
  }
}

p, div, a, h1, h2, h3, h4, h5, h6, label, select, option, span, input, li, textarea {
  padding: 0;
  margin: 0;
}

.c:after {
  clear: both;
  content: "";
  display: block;
}

.main-body {
  width: 100%;
  max-width: 1200px;
  position: relative;
  min-height: 100vh;
  margin: 0 auto;
  z-index: 2;
  background: #a38f72;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #a38f72), to(#d0c6b1));
  background: linear-gradient(90deg, #a38f72 40%, #d0c6b1 100%);
}

@media (min-width: 1025px) {
  .main-body:before, .main-body:after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 100%;
    top: 0;
    z-index: 0;
  }
  .main-body:before {
    right: 100%;
    background-color: #a38f72;
  }
  .main-body:after {
    left: 100%;
    background-color: #d0c6b1;
  }
}

.main-body > .wrapper {
  position: relative;
  z-index: 2;
  -webkit-transition: padding 0.3s linear;
  transition: padding 0.3s linear;
}

@media (max-width: 1200px) {
  .main-body > .wrapper {
    padding-top: 110px;
  }
}

@media (max-width: 768px) {
  .main-body > .wrapper {
    padding-top: 14.66667vw;
  }
}

.confetti {
  position: fixed;
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

.confetti #canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

nav {
  position: absolute;
  width: 100%;
  top: 50px;
  height: 90px;
  -webkit-transition: top 0.3s linear, height 0.3s linear;
  transition: top 0.3s linear, height 0.3s linear;
  z-index: 10;
}

@media (max-width: 1200px) {
  nav {
    top: 0;
    height: 110px;
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  nav {
    height: 90px;
  }
}

nav .nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 1200px) {
  nav .nav-wrap {
    height: 110px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 768px) {
  nav .nav-wrap {
    height: 90px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

nav .nav-logo {
  display: none;
}

nav .nav-logo img {
  width: 147px;
  height: 50px;
  display: block;
}

nav .page-menu {
  width: 100%;
  max-width: 1200px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  nav .page-menu {
    display: none;
  }
}

@media (min-width: 769px) {
  nav .page-menu li {
    max-width: 22%;
  }
}

@media (min-width: 1025px) {
  nav .page-menu li + li {
    margin-left: 50px;
  }
}

@media (min-width: 769px) {
  nav .page-menu li + li {
    margin-left: 4.46429%;
  }
}

nav .page-menu .menu-btn {
  position: relative;
  display: block;
  text-align: center;
  line-height: 1;
  padding: 15px 0;
  text-decoration: none;
}

@media (min-width: 769px) {
  nav .page-menu .menu-btn:before, nav .page-menu .menu-btn:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  nav .page-menu .menu-btn:before {
    top: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  nav .page-menu .menu-btn:after {
    bottom: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  nav .page-menu .menu-btn:hover:before, nav .page-menu .menu-btn:hover:after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

nav .page-menu .menu-btn span {
  display: block;
}

nav .page-menu .menu-btn span[lang=en] {
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  nav .page-menu .menu-btn span[lang=en] {
    font-size: 3.125vw;
  }
}

nav .page-menu .menu-btn span[lang=zh] {
  color: #000;
  font-size: 14px;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  nav .page-menu .menu-btn span[lang=zh] {
    font-size: 3.64583vw;
  }
}

nav .page-menu .menu-btn span + span {
  padding-top: 6px;
}

nav .page-menu .share-btn {
  width: 24px;
  height: 24px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

nav .page-menu .share-btn.share-facebook {
  background-image: url("../images/ico_f.svg");
}

nav .page-menu .share-btn.share-whatsapp {
  background-image: url("../images/ico_whatsapp.svg");
}

nav .btn-wrap {
  display: none;
}

@media (max-width: 768px) {
  nav .btn-wrap {
    display: block;
  }
}

nav .btn-wrap .btn-m-menu {
  display: block;
  width: 9.33333vw;
  height: 9.33333vw;
  border: 2px solid #fff;
  border-radius: 50%;
  background: url("../images/m_hamburger.svg") center no-repeat;
  background-size: contain;
}

nav.active {
  position: fixed;
  top: 0;
  background-color: #6e614f;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  z-index: 99;
}

nav.active .nav-wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

nav.active .nav-logo {
  display: inline-block;
}

nav.active .page-menu .menu-btn span[lang=zh] {
  color: #fff;
}

@media (max-width: 768px) {
  nav.m-menu-on {
    height: 100vh;
    background-color: #6e614f;
  }
  nav.m-menu-on .nav-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  nav.m-menu-on .nav-logo {
    display: inline-block;
  }
  nav.m-menu-on .page-menu {
    position: absolute;
    width: 100vw;
    height: auto;
    top: 100%;
    left: -30px;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 0;
  }
  nav.m-menu-on .page-menu .site-nav {
    display: block;
    width: 100%;
    border-bottom: 1px solid #000;
  }
  nav.m-menu-on .page-menu .site-nav .menu-btn {
    height: 17.64706vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 7.77202vw 5.18135vw;
  }
  nav.m-menu-on .page-menu .site-nav .menu-btn span[lang=zh] {
    color: #fff;
  }
  nav.m-menu-on .page-menu .social-nav {
    width: 49%;
    margin: 2.5vw 0;
    height: 12.64706vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav.m-menu-on .page-menu .social-nav .share-btn {
    width: 8.82353vw;
    height: 8.82353vw;
    margin: auto;
  }
  nav.m-menu-on .page-menu .social-nav + .social-nav {
    border-left: 1px solid #000;
  }
  nav.m-menu-on .btn-wrap .btn-m-menu {
    background-image: url("../images/m_hamburger_close.svg");
  }
}

.sect-title {
  letter-spacing: 3px;
  color: #fff;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

.sect-title span[lang=en] {
  font-size: 60px;
  text-transform: uppercase;
  background: url("../images/btn_shadow.png") center repeat;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  margin-left: 4px;
  margin-top: 4px;
  display: inline-block;
}

.sect-title span[lang=en]:before {
  content: attr(data-text);
  position: absolute;
  color: #ffffff;
  margin-left: -4px;
  margin-top: -4px;
  left: 0;
}

@media (max-width: 768px) {
  .sect-title span[lang=en] {
    font-size: 9.375vw;
  }
}

.sect-title span[lang=zh] {
  font-size: 40px;
}

@media (max-width: 768px) {
  .sect-title span[lang=zh] {
    font-size: 6.25vw;
  }
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  .btn-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.btn-wrap .btn {
  display: block;
  width: 210px;
  height: 56px;
  text-decoration: none;
  letter-spacing: 2px;
  color: #fff;
  position: relative;
}

@media (max-width: 1024px) {
  .btn-wrap .btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 190px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .btn-wrap .btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 43vw;
    height: 10vw;
  }
}

.btn-wrap .btn > .wrapper {
  background-color: #990000;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .btn-wrap .btn > .wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 1024px) {
  .btn-wrap .btn > .wrapper {
    padding: 0 2vw;
  }
}

.btn-wrap .btn > .wrapper span {
  margin-top: 3px;
}

.btn-wrap .btn > .wrapper:before {
  content: '';
  position: relative;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #fff;
  margin-right: 16px;
  display: inline-block;
}

@media (max-width: 768px) {
  .btn-wrap .btn > .wrapper:before {
    border-width: 8px 0 8px 8px;
    margin-right: 10px;
  }
}

.btn-wrap .btn > .wrapper:hover {
  background-color: #470808;
}

.btn-wrap .btn:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/btn_shadow.png") center repeat;
  z-index: 0;
  left: 4px;
  top: 4px;
}

.btn-wrap .btn + .btn {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .btn-wrap .btn + .btn {
    margin-top: 0;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .btn-wrap .btn + .btn {
    margin-top: 0;
    margin-left: 3.90625vw;
  }
}

.link-tnc {
  display: inline-block;
  margin-top: 0.8em;
  color: #B41500;
}

.club-referral .link-tnc {
  color: #fff;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 110px;
}

@media (max-width: 1024px) {
  header {
    padding-bottom: 14.32292%;
  }
}

@media (max-width: 768px) {
  header {
    display: block;
    padding-bottom: 14.32292%;
  }
}

header .kv-wrap {
  padding-top: 25px;
}

@media (max-width: 1024px) {
  header .kv-wrap {
    width: 66.27604%;
  }
}

@media (max-width: 768px) {
  header .kv-wrap {
    width: 80%;
    margin: 0 auto;
  }
}

header .kv-wrap img {
  display: block;
  width: 100%;
}

header .intro-wrap {
  width: 652px;
  margin-top: 340px;
  padding: 50px 40px;
  background: url("../images/kv_topbg.png") 0 0 no-repeat;
  background-size: 100% 100%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-transition: margin 0.3s linear;
  transition: margin 0.3s linear;
}

@media (max-width: 1200px) {
  header .intro-wrap {
    width: 54.33333%;
    margin-top: 28.33333vw;
    margin-left: 0;
    padding: 4.16667% 3.33333%;
  }
}

@media (min-width: 769px) {
  header .intro-wrap {
    margin-left: -10%;
  }
}

@media (max-width: 768px) {
  header .intro-wrap {
    width: 92%;
    padding: 6.66667% 5.33333%;
    margin: -9.33333vw 4% 0;
  }
}

header .intro-wrap .intro-title {
  width: 562px;
  height: 64px;
  line-height: 1;
  margin: 0 auto;
  background: url("../images/header.png") center no-repeat;
  background-size: contain;
}

@media (max-width: 1200px) {
  header .intro-wrap .intro-title {
    width: 86.19632%;
    height: 0;
    padding-top: 11.3879%;
  }
}

header .intro-wrap .intro-title span {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
}

header .intro-wrap .intro-text {
  padding: 25px 0 30px;
}

@media (max-width: 1024px) {
  header .intro-wrap .intro-text {
    padding: 3.83436% 0 4.60123%;
  }
}

.event-round {
  width: 98px;
  height: 98px;
  position: relative;
  margin: -45px auto 30px;
  background-color: #470808;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  .event-round {
    width: 12.76042vw;
    height: 12.76042vw;
    margin: -5.85938vw auto 3.90625vw;
  }
}

@media (max-width: 768px) {
  .event-round {
    width: 22.13542vw;
    height: 22.13542vw;
    margin: -11.71875vw auto 6.51042vw;
  }
}

.event-round span {
  font-size: 18px;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .event-round span {
    font-size: 4.16667vw;
  }
}

.subtitle {
  font-size: 30px;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .subtitle {
    font-size: 6.25vw;
  }
}

.slick-arrow {
  position: absolute;
  top: calc(50% - 3px - 0.5em);
  z-index: 99;
  padding: 0.5em;
}

.slick-arrow:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

.slick-prev {
  left: 8px;
}

.slick-prev:before {
  border-width: 8px 8px 8px 0;
  border-color: transparent #fff transparent transparent;
}

.slick-next {
  right: 8px;
}

.slick-next:before {
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
}

.giveaway {
  padding-top: 40px;
}

.daily-gift {
  position: relative;
  padding: 40px 0 105px;
  margin-bottom: 130px;
}

@media (max-width: 1024px) {
  .daily-gift {
    padding: 5.20833% 0 0;
    margin-bottom: 16.92708%;
  }
}

@media (max-width: 768px) {
  .daily-gift {
    padding: 10.41667% 0 0;
  }
}

.daily-gift .daily-intro {
  position: relative;
  width: 570px;
  height: 450px;
  z-index: 1;
}

@media (max-width: 1200px) {
  .daily-gift .daily-intro {
    width: 47.5vw;
    height: calc(37.5vw + (1200px - 100vw)/2.5);
  }
}

@media (max-width: 1024px) {
  .daily-gift .daily-intro {
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .daily-gift .daily-intro {
    width: calc(100% - 40px);
    height: 85vw;
    margin: 0 auto;
  }
}

.daily-gift .daily-intro > .wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #fff;
}

@media (max-width: 768px) {
  .daily-gift .daily-intro > .wrapper {
    width: 100vw;
    left: -20px;
    margin-right: -40px;
  }
}

.daily-gift .daily-intro > .wrapper .center {
  width: 500px;
  padding: 0 50px;
  position: relative;
  text-align: center;
}

@media (max-width: 1200px) {
  .daily-gift .daily-intro > .wrapper .center {
    width: 41.66667vw;
    padding: 0 4.16667vw;
  }
}

@media (max-width: 1024px) {
  .daily-gift .daily-intro > .wrapper .center {
    width: 100%;
    padding: 0 8%;
  }
}

@media (max-width: 768px) {
  .daily-gift .daily-intro > .wrapper .center {
    padding: 0 4%;
  }
}

.daily-gift .daily-intro > .wrapper .center .subtitle, .daily-gift .daily-intro > .wrapper .center .body-text {
  color: #000;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .daily-gift .daily-intro > .wrapper .center .subtitle, .daily-gift .daily-intro > .wrapper .center .body-text {
    padding-bottom: 2.60417vw;
  }
}

.daily-gift .daily-intro:before {
  content: '';
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 2px solid #fff;
}

.daily-gift .gift-detail {
  position: absolute;
  width: 670px;
  height: 519px;
  z-index: 2;
  right: 0;
  top: 75px;
  border: 2px solid transparent;
  -o-border-image: url("../images/goldborder.png") 1 round;
  border-image: url("../images/goldborder.png") 1 round;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1200px) {
  .daily-gift .gift-detail {
    width: 55.83333vw;
    height: 43.25vw;
    top: 6.25vw;
  }
}

@media (max-width: 1024px) {
  .daily-gift .gift-detail {
    position: relative;
    top: 0;
    margin: -8vw auto 0;
    width: 85%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .daily-gift .gift-detail {
    width: calc(100% - 4px);
    margin: -2vw auto 0;
  }
}

.daily-gift .gift-detail .img-slide {
  width: 400px;
  height: 515px;
}

@media (max-width: 1200px) {
  .daily-gift .gift-detail .img-slide {
    width: 33.33333vw;
    height: 42.91667vw;
  }
}

@media (max-width: 1024px) {
  .daily-gift .gift-detail .img-slide {
    width: 60.17699%;
    height: auto;
  }
}

.daily-gift .gift-detail .detail-slide {
  width: calc(100% - 400px);
  background-color: #352414;
  padding-top: 167.5px;
  height: 100%;
}

@media (max-width: 1200px) {
  .daily-gift .gift-detail .detail-slide {
    width: calc(100% - 33.33vw);
    height: 42.91667vw;
    padding-top: calc(14vw - (1200px - 100vw)/3);
  }
}

@media (max-width: 1024px) {
  .daily-gift .gift-detail .detail-slide {
    width: 39.82301%;
    height: 65.85619vw;
    padding-top: calc(25vw - (1024px - 100vw)/3);
  }
}

@media (max-width: 768px) {
  .daily-gift .gift-detail .detail-slide {
    padding-top: 15vw;
    height: 76.7vw;
  }
}

.daily-gift .gift-detail .detail-slide .date-wrap {
  width: 180px;
  height: 180px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
}

@media (max-width: 1200px) {
  .daily-gift .gift-detail .detail-slide .date-wrap {
    width: 15vw;
    height: 15vw;
    padding: 3.33333vw 0;
  }
}

@media (max-width: 1024px) {
  .daily-gift .gift-detail .detail-slide .date-wrap {
    width: 17.57812vw;
    height: 17.57812vw;
    padding: 3.90625vw 0;
  }
}

@media (max-width: 768px) {
  .daily-gift .gift-detail .detail-slide .date-wrap {
    width: 23.4375vw;
    height: 23.4375vw;
    padding: 5.20833vw 0;
  }
}

.daily-gift .gift-detail .detail-slide .date-wrap .date-sep {
  width: 100px;
  height: 1px;
  background: url("../images/goldbar_100.jpg") center no-repeat;
  background-size: contain;
  display: block;
}

@media (max-width: 1200px) {
  .daily-gift .gift-detail .detail-slide .date-wrap .date-sep {
    width: 8.33333vw;
  }
}

@media (max-width: 1024px) {
  .daily-gift .gift-detail .detail-slide .date-wrap .date-sep {
    width: 9.76562vw;
  }
}

@media (max-width: 768px) {
  .daily-gift .gift-detail .detail-slide .date-wrap .date-sep {
    width: 13.02083vw;
  }
}

.daily-gift .gift-detail .detail-slide .date-wrap span {
  line-height: 1;
  letter-spacing: 3px;
}

.daily-gift .gift-detail .detail-slide .date-wrap span[data-date=day] {
  font-size: 24px;
}

@media (max-width: 768px) {
  .daily-gift .gift-detail .detail-slide .date-wrap span[data-date=day] {
    font-size: 3.125vw;
  }
}

.daily-gift .gift-detail .detail-slide .date-wrap span[data-date=month] {
  font-size: 14px;
}

@media (max-width: 768px) {
  .daily-gift .gift-detail .detail-slide .date-wrap span[data-date=month] {
    font-size: 2.08333vw;
  }
}

.daily-gift .gift-detail .detail-slide .slick-prev {
  right: 8px;
  left: auto;
}

.daily-gift .gift-detail .detail-slide .slick-prev:before {
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
}

.daily-gift .gift-detail .detail-slide .slick-next {
  left: 8px;
  right: auto;
}

.daily-gift .gift-detail .detail-slide .slick-next:before {
  border-width: 8px 8px 8px 0;
  border-color: transparent #fff transparent transparent;
}

.daily-gift .gift-detail .detail-slide .gift-info {
  font-size: 16px;
  text-align: center;
  padding: 30px 20px 0;
}

@media (max-width: 1200px) {
  .daily-gift .gift-detail .detail-slide .gift-info {
    padding: 2.5vw 1.66667vw 0;
  }
}

@media (max-width: 768px) {
  .daily-gift .gift-detail .detail-slide .gift-info {
    font-size: 2.60417vw;
  }
}

.daily-gift .gift-detail .detail-slide .gift-info .brand {
  padding-bottom: 0.4em;
}

.daily-gift .gift-detail .detail-slide .gift-info span {
  display: block;
  line-height: 1.3;
}

.club-referral {
  margin-bottom: 100px;
  position: relative;
}

@media (max-width: 1024px) {
  .club-referral {
    margin-bottom: 13.02083%;
  }
}

@media (max-width: 768px) {
  .club-referral {
    padding: 13.02083% 0 0;
  }
}

.club-referral .referral-intro {
  position: relative;
  width: 570px;
  height: 480px;
  z-index: 1;
  margin-left: calc(100% - 570px);
}

@media (max-width: 1200px) {
  .club-referral .referral-intro {
    width: 47.5vw;
    height: calc(37.5vw + (1200px - 100vw)/2.5);
  }
}

@media (max-width: 1024px) {
  .club-referral .referral-intro {
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .club-referral .referral-intro {
    width: calc(100% - 40px);
    height: 90vw;
    margin: 0 auto;
  }
}

.club-referral .referral-intro > .wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #82735E;
}

@media (max-width: 768px) {
  .club-referral .referral-intro > .wrapper {
    width: 100vw;
    left: -20px;
    margin-right: -40px;
  }
}

.club-referral .referral-intro > .wrapper .center {
  width: 500px;
  padding: 0 50px;
  position: relative;
  text-align: center;
  margin-left: calc(100% - 500px);
}

@media (max-width: 1200px) {
  .club-referral .referral-intro > .wrapper .center {
    width: 41.66667vw;
    padding: 0 4.16667vw;
  }
}

@media (max-width: 1024px) {
  .club-referral .referral-intro > .wrapper .center {
    width: 100%;
    padding: 0 8%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .club-referral .referral-intro > .wrapper .center {
    padding: 0 4%;
  }
}

.club-referral .referral-intro > .wrapper .center .subtitle {
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .club-referral .referral-intro > .wrapper .center .subtitle {
    padding-bottom: 2.60417vw;
  }
}

.club-referral .referral-intro > .wrapper .center .body-text {
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .club-referral .referral-intro > .wrapper .center .body-text {
    padding-bottom: 2.60417vw;
  }
}

.club-referral .referral-intro:before {
  content: '';
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 2px solid #82735E;
}

.club-referral .referral-gift {
  position: absolute;
  width: 670px;
  height: 515px;
  z-index: 2;
  left: 0;
  top: -25px;
}

@media (max-width: 1200px) {
  .club-referral .referral-gift {
    width: 55.83333vw;
    height: 43.25vw;
    top: 6.25vw;
  }
}

@media (max-width: 1024px) {
  .club-referral .referral-gift {
    position: relative;
    margin: -10vw auto 0;
    width: 85%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .club-referral .referral-gift {
    width: 87.5%;
    margin: -10vw auto 0;
  }
}

.el32-logo {
  margin: 140px auto 100px;
  position: relative;
}

.el32-logo .img-el32-logo {
  width: 57px;
  height: 71px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -28px;
  margin-top: -35px;
}

.el32-logo .el-anni-round {
  margin: 0 auto;
  width: 170px;
  height: 170px;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 300;
}

.el32-logo .el-anni-round svg {
  -webkit-animation: spin 12s linear infinite;
  animation: spin 12s linear infinite;
}

.el32-logo .el-anni-round path {
  fill: transparent;
}

.el32-logo .el-anni-round text {
  fill: #ffffff;
}

.btn-join {
  position: absolute;
  left: 104%;
  top: calc(70px + 3em);
  z-index: 99;
}

@media (max-width: 1450px) {
  .btn-join {
    display: none;
  }
}

.btn-join .text-wrap {
  position: absolute;
  color: #470808;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.btn-join .text-wrap span {
  display: block;
  text-align: center;
}

.btn-join .text-wrap .text-l {
  font-size: 44px;
  bottom: 0;
  margin-top: auto;
}

.btn-join .text-wrap .text-s {
  font-size: 20px;
  top: 0;
  margin-bottom: auto;
}

.btn-join .el-anni-round {
  margin: 0 auto;
  width: 170px;
  height: 170px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 400;
}

.btn-join .el-anni-round svg {
  -webkit-animation: spin 12s linear infinite;
  animation: spin 12s linear infinite;
}

.btn-join .el-anni-round path {
  fill: transparent;
}

.btn-join .el-anni-round text {
  fill: #470808;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.el-mag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 100px;
}

.el-mag:after {
  content: '';
  position: absolute;
  display: block;
  background-color: #d0c6b1;
  width: 100vw;
  height: 495px;
  z-index: 0;
  left: 50%;
  margin-left: -50vw;
  bottom: 105px;
}

.el-mag .mag-wrap {
  margin-bottom: 150px;
  position: relative;
  z-index: 3;
}

.el-mag .mag-wrap .mag-cover {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .el-mag .mag-wrap {
    width: 33.59375vw;
    padding-top: 31.25vw;
    margin-left: 3.90625vw;
    margin-right: -2.60417vw;
  }
}

.el-mag .style-sep {
  background: url("../images/goldbar_215.jpg") center no-repeat;
  width: 2px;
  height: 215px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .el-mag .style-sep {
    height: 33.59375vw;
    left: -18.75vw;
  }
}

.el-mag .mag-info {
  width: 548px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .el-mag .mag-info {
    width: 67.1875vw;
  }
}

@media (max-width: 768px) {
  .el-mag .mag-info .sect-title {
    width: 100vw;
    margin-left: -32.5vw;
  }
}

.el-mag .mag-info .info-wrap {
  background-color: #fff;
  padding: 30px 70px 50px;
  color: #000;
  text-align: center;
}

@media (max-width: 768px) {
  .el-mag .mag-info .info-wrap {
    padding: 7.8125vw 3.90625vw;
  }
}

.el-mag .mag-info .info-wrap .subtitle {
  padding-bottom: 30px;
  line-height: 1;
}

@media (max-width: 768px) {
  .el-mag .mag-info .info-wrap .subtitle {
    padding-bottom: 4.6875vw;
  }
}

.el-mag .mag-info .info-wrap .body-text {
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .el-mag .mag-info .info-wrap .body-text {
    padding-bottom: 4.6875vw;
  }
}

.el-mag .mag-info .onpack-slide {
  width: 90%;
  margin: 0 auto;
}

.el-mag .mag-info .onpack-slide .slide {
  text-align: center;
}

.el-mag .mag-info .onpack-slide .slide img {
  width: 211px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .el-mag .mag-info .onpack-slide .slide img {
    width: 32.96875vw;
  }
}

.el-mag .mag-info .onpack-slide .slick-prev {
  left: 0;
}

.el-mag .mag-info .onpack-slide .slick-prev:before {
  border-color: transparent #000 transparent transparent;
}

.el-mag .mag-info .onpack-slide .slick-next {
  right: 0;
}

.el-mag .mag-info .onpack-slide .slick-next:before {
  border-color: transparent transparent transparent #000;
}

.el-mag .mag-info .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0 30px;
  line-height: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #6e614f;
  font-size: 18px;
  letter-spacing: 3px;
}

.el-mag .mag-info .wrapper .btn-mag-sub {
  color: #6e614f;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.el-mag .mag-info .wrapper .btn-mag-sub:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #6e614f;
}

.el-mag .mag-info .price {
  text-align: right;
}

.feature-article .sect-title {
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .feature-article .sect-title {
    font-size: 7.8125vw;
  }
}

.feature-article .body-text {
  text-align: center;
  padding-bottom: 30px;
  color: #000;
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .feature-article .body-text {
    max-width: 90%;
    padding-bottom: 7.8125vw;
  }
}

.feature-article .article-wrap {
  position: relative;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .feature-article .article-wrap {
    margin-bottom: 13.02083vw;
  }
}

.feature-article .article-wrap .img-art {
  display: block;
  width: 700px;
  height: 700px;
}

@media (max-width: 768px) {
  .feature-article .article-wrap .img-art {
    width: 100%;
    height: auto;
  }
}

.feature-article .article-wrap .article-desc {
  position: absolute;
  bottom: 50px;
  width: 510px;
  padding: 30px;
  background-color: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .feature-article .article-wrap .article-desc {
    position: relative;
    bottom: initial;
    width: 92.1875vw;
    padding: 3.90625vw;
    margin: -4vw auto 0;
  }
}

.feature-article .article-wrap .article-desc .article-title {
  font-size: 30px;
  line-height: 1.1;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .feature-article .article-wrap .article-desc .article-title {
    text-align: center;
    padding-bottom: 2.60417vw;
    font-size: 6.25vw;
  }
}

.feature-article .article-wrap .article-desc .article-content {
  font-size: 14px;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .feature-article .article-wrap .article-desc .article-content {
    padding-bottom: 2.60417vw;
    font-size: 3.64583vw;
  }
}

@media (max-width: 768px) {
  .feature-article .article-wrap .article-desc .link-wrap {
    text-align: center;
  }
}

.feature-article .article-wrap .article-desc .btn-article {
  font-size: 18px;
  letter-spacing: 2px;
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

@media (max-width: 768px) {
  .feature-article .article-wrap .article-desc .btn-article {
    font-size: 4.6875vw;
  }
}

.feature-article .article-wrap .article-desc .btn-article:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #000;
}

.feature-article .article-wrap .article-desc:after {
  content: '';
  display: block;
  background: url("../images/goldbar_215.jpg") center no-repeat;
  background-size: contain;
  width: 2px;
  height: 215px;
  position: absolute;
  right: 15px;
  top: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 768px) {
  .feature-article .article-wrap .article-desc:after {
    height: 33.59375vw;
  }
}

.feature-article .article-wrap.l-img .article-desc {
  right: 0;
}

.feature-article .article-wrap.l-img .article-desc:after {
  right: 15px;
}

.feature-article .article-wrap.r-img .img-art {
  margin-left: calc(100% - 700px);
}

@media (max-width: 768px) {
  .feature-article .article-wrap.r-img .img-art {
    margin-left: 0;
  }
}

.feature-article .article-wrap.r-img .article-desc {
  left: 0;
}

.feature-article .article-wrap.r-img .article-desc:after {
  left: 15px;
}

.editor-share {
  margin-top: 100px;
  text-align: center;
}

@media (max-width: 768px) {
  .editor-share {
    margin-top: 15.625vw;
  }
}

.editor-share .title {
  font-size: 36px;
  line-height: 1;
}

@media (max-width: 768px) {
  .editor-share .title {
    font-size: 7.8125vw;
  }
}

.editor-share .intro {
  color: #000;
  padding-top: 20px;
  max-width: 660px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .editor-share .intro {
    max-width: 90%;
    padding-top: 5.20833vw;
  }
}

.editor-share .share-list {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 30px;
}

@media (max-width: 1024px) {
  .editor-share .share-list {
    width: calc(100% - 30px);
  }
}

@media (max-width: 768px) {
  .editor-share .share-list {
    padding-top: 7.8125vw;
  }
}

.editor-share .share-list .grid-sizer {
  width: calc((100% - 60px)/3);
}

@media (max-width: 1024px) {
  .editor-share .share-list .grid-sizer {
    width: calc((100% - 40px)/2);
  }
}

@media (max-width: 768px) {
  .editor-share .share-list .grid-sizer {
    width: calc(100% - 30px);
  }
}

.editor-share .share-list .stamp {
  position: absolute;
  width: calc((100% - 60px)/3);
  top: 30px;
}

@media (max-width: 1024px) {
  .editor-share .share-list .stamp {
    width: calc((100% - 30px)/2);
  }
}

.editor-share .share-list .stamp-1 {
  left: calc((100% - 60px)/3 + 30px);
  height: 30px;
}

@media (max-width: 768px) {
  .editor-share .share-list .stamp-1 {
    display: none;
  }
}

@media (max-width: 1024px) {
  .editor-share .share-list .stamp-1 {
    left: calc(50% + 30px/2);
  }
}

.editor-share .share-list .stamp-2 {
  left: calc(((100% - 60px)/3 + 30px) * 2);
  height: 60px;
}

@media (max-width: 1024px) {
  .editor-share .share-list .stamp-2 {
    display: none;
  }
}

.editor-share .share-list .share-wrap {
  padding: 26px 26px 30px;
  background-color: #fff;
  margin-bottom: 30px;
  width: calc((100% - 60px)/3);
}

@media (max-width: 1024px) {
  .editor-share .share-list .share-wrap {
    width: calc((100% - 30px)/2);
    padding: 15px 15px 40px;
    margin-bottom: 2.60417vw;
  }
}

@media (max-width: 768px) {
  .editor-share .share-list .share-wrap {
    width: 100%;
    padding: 15px 15px 30px;
    margin-bottom: 7.8125vw;
  }
}

.editor-share .share-list .img-editor {
  width: 100%;
  display: block;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .editor-share .share-list .img-editor {
    padding-bottom: 5.20833vw;
  }
}

.editor-share .share-list .share-body {
  color: #000;
  font-size: 14px;
}

@media (max-width: 768px) {
  .editor-share .share-list .share-body {
    font-size: 3.64583vw;
    padding: 0 15px;
  }
}

.editor-share .share-list .share-body .name {
  font-size: 18px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .editor-share .share-list .share-body .name {
    font-size: 4.6875vw;
  }
}

.editor-share .share-list .share-body .position {
  line-height: 1.2;
}

.editor-share .share-list .share-body .content {
  text-align: left;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .editor-share .share-list .share-body .content {
    padding-top: 5.20833vw;
  }
}

#gift nav {
  position: fixed;
  top: 0;
  background-color: #6e614f;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  z-index: 99;
}

#gift nav .nav-wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#gift nav .nav-logo {
  display: inline-block;
}

@media (max-width: 1200px) {
  #gift nav .page-menu {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  #gift nav .page-menu {
    padding: 0;
  }
}

#gift nav .page-menu .menu-btn span[lang=zh] {
  color: #fff;
}

#gift .main-body > .wrapper {
  padding-top: 90px;
  min-height: 100vh;
  position: relative;
}

@media (max-width: 1200px) {
  #gift .main-body > .wrapper {
    padding-top: 110px;
  }
}

#gift .all-gift {
  padding-top: 50px;
}

#gift .sect-menu {
  padding-top: 55px;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  #gift .sect-menu {
    padding-top: 7.16146vw;
  }
}

#gift .sect-menu:after {
  content: '';
  position: absolute;
  z-index: 0;
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #6E614F;
  margin-top: 4px;
  margin-left: -50vw;
  left: 50%;
}

#gift .sect-menu .gift-sect-link {
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: #6E614F;
  letter-spacing: 3px;
  font-size: 18px;
  display: inline-block;
  padding: 10px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  #gift .sect-menu .gift-sect-link {
    letter-spacing: 2px;
    font-size: 4.16667vw;
  }
}

#gift .sect-menu .gift-sect-link:before {
  content: '';
  position: relative;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #6E614F;
  margin-right: 18px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (max-width: 768px) {
  #gift .sect-menu .gift-sect-link:before {
    border-width: 8px 0 8px 8px;
    margin-right: 2.34375vw;
  }
}

#gift .sect-menu .gift-sect-link:hover, #gift .sect-menu .gift-sect-link.active {
  color: #000000;
}

#gift .sect-menu .gift-sect-link:hover:first-child ~ a:last-child:after, #gift .sect-menu .gift-sect-link.active:first-child ~ a:last-child:after {
  margin-left: -120%;
  width: 170px;
}

@media (max-width: 768px) {
  #gift .sect-menu .gift-sect-link:hover:first-child ~ a:last-child:after, #gift .sect-menu .gift-sect-link.active:first-child ~ a:last-child:after {
    margin-left: -88%;
    width: 36.45833vw;
  }
}

#gift .sect-menu .gift-sect-link:hover:last-child:after, #gift .sect-menu .gift-sect-link.active:last-child:after {
  margin-left: 0%;
}

@media (max-width: 768px) {
  #gift .sect-menu .gift-sect-link:hover:last-child:after, #gift .sect-menu .gift-sect-link.active:last-child:after {
    width: 45.57292vw;
  }
}

#gift .sect-menu .gift-sect-link:hover:before, #gift .sect-menu .gift-sect-link.active:before {
  border-color: transparent transparent transparent #000;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

#gift .sect-menu .gift-sect-link + .gift-sect-link {
  margin-left: 78px;
}

@media (max-width: 768px) {
  #gift .sect-menu .gift-sect-link + .gift-sect-link {
    margin-left: 3vw;
  }
}

#gift .sect-menu a:last-child:after {
  display: block;
  content: '';
  height: 10px;
  width: 210px;
  background-color: #6E614F;
  right: 0;
  left: 0;
  position: absolute;
  margin-top: 10px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

#gift .gift-section {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  #gift .gift-section {
    max-width: initial;
  }
}

#gift section {
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-transform: translateY(60vh);
          transform: translateY(60vh);
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
  z-index: 0;
  visibility: hidden;
  max-height: 100vh;
  overflow: hidden;
}

#gift section.active {
  z-index: 1;
  position: relative;
  opacity: 1;
  -webkit-transform: translateY(0vh);
          transform: translateY(0vh);
  visibility: visible;
  max-height: initial;
}

#gift section.referral-gift-wrap .btn-wrap {
  padding: 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#gift section.referral-gift-wrap .btn-wrap .btn {
  width: 270px;
}

@media (max-width: 768px) {
  #gift section.referral-gift-wrap .btn-wrap .btn {
    width: 60vw;
  }
}

#gift section.referral-gift-wrap .gift-wrap .gift-item {
  text-align: center;
  margin-bottom: 15px;
}

#gift section.referral-gift-wrap .gift-wrap .gift-item .gift-info {
  height: 8em;
}

#gift section.referral-gift-wrap .gift-wrap .gift-item .gift-rank {
  color: #B41500;
  font-weight: bold;
}

#gift section .intro-text {
  padding: 40px 20px 30px;
  max-width: 686px;
  margin: 0 auto;
  color: #000;
  text-align: center;
}

@media (max-width: 768px) {
  #gift section .intro-text {
    padding: 10.41667vw 5.20833vw 7.8125vw;
    max-width: 90%;
  }
}

#gift section .gift-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1039px) {
  #gift section .gift-wrap {
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  #gift section .gift-wrap {
    margin: 0 10px;
  }
}

#gift section .gift-wrap .gift-item {
  position: relative;
  width: 250px;
  margin: 0 5px 30px;
}

@media (max-width: 1039px) {
  #gift section .gift-wrap .gift-item {
    width: calc((100%/3) - 30px);
    margin: 0 15px 30px;
  }
}

@media (max-width: 768px) {
  #gift section .gift-wrap .gift-item {
    width: calc(50% - 20px);
    margin: 0 10px 30px;
  }
}

#gift section .gift-wrap .gift-item:hover .gift-info {
  background-color: #E8E0C9;
}

#gift section .gift-wrap .gift-item img {
  display: block;
  width: 100%;
}

#gift section .gift-wrap .gift-item .gift-info {
  background-color: #fff;
  padding: 30px 10px;
  height: 10em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#gift section .gift-wrap .gift-item.coming .gift-info {
  padding: 0 10px 30px;
}

#gift section .gift-wrap .gift-item .logo-holder {
  width: 100%;
  height: 0;
  padding-top: 18.51852%;
  background-color: #fff;
}

#gift section .gift-wrap .gift-item .detail-text {
  font-size: 14px;
  color: #000;
}

@media (max-width: 768px) {
  #gift section .gift-wrap .gift-item .detail-text {
    font-size: 3.64583vw;
  }
}

#gift section .gift-wrap .gift-item .center {
  text-align: center;
  padding: 8px 0;
}

#gift section .gift-wrap .gift-item .center .coming-text {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
}

@media (max-width: 768px) {
  #gift section .gift-wrap .gift-item .center .coming-text {
    font-size: 6.25vw;
  }
}

#gift section .gift-wrap .gift-item .activity-link {
  color: #B41500;
}

#gift section .gift-wrap .gift-item .date-wrap {
  position: absolute;
  width: 30px;
  bottom: -15px;
  text-align: center;
  letter-spacing: 2px;
  left: 50%;
  margin-left: -15px;
}

#gift section .gift-wrap .gift-item .date-wrap .month {
  display: block;
  color: #000;
  font-size: 11px;
  line-height: 1;
}

#gift section .gift-wrap .gift-item .date-wrap .day {
  text-align: center;
  font-size: 14px;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #6E614F;
}

#gift section .gift-wrap .gift-item.current .center {
  margin-top: auto;
  margin-bottom: 0;
}

#gift section .gift-wrap .gift-item.current .date-wrap .day {
  background-color: #B41500;
}

footer {
  position: relative;
  width: 100%;
  padding: 100px 0 150px;
}

footer:after {
  position: absolute;
  content: '';
  width: 2px;
  height: 110px;
  left: calc(50% - 1px);
  bottom: 0;
  display: block;
  background: url("../images/goldbar_110.jpg") center no-repeat;
  z-index: 1;
}

footer .footer-wrap {
  margin-top: 40px;
  padding-bottom: 30px;
}

footer .footer-wrap .copyright {
  text-align: center;
  font-size: 14px;
  width: 80%;
  margin: 0px auto;
}

@media (max-width: 768px) {
  footer .footer-wrap .copyright {
    width: 95%;
    font-size: 2.60417vw;
  }
}

footer .footer-wrap .footer-link {
  text-align: center;
  font-size: 14px;
  width: 80%;
  margin: 0px auto;
}

@media (max-width: 768px) {
  footer .footer-wrap .footer-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 95%;
    font-size: 2.60417vw;
  }
}

footer .footer-wrap .footer-link a {
  position: relative;
}

@media (max-width: 768px) {
  footer .footer-wrap .footer-link a {
    width: 45%;
    padding: 0 2%;
    text-align: right;
  }
  footer .footer-wrap .footer-link a:last-child, footer .footer-wrap .footer-link a:first-child + a {
    text-align: left;
  }
  footer .footer-wrap .footer-link a:last-child:before, footer .footer-wrap .footer-link a:first-child + a:before {
    display: inline-block;
    content: '|';
    position: absolute;
    left: -1%;
  }
}

footer .footer-wrap .footer-link a:link, footer .footer-wrap .footer-link a:visited {
  text-decoration: none;
  color: #fff;
}

@media (min-width: 769px) {
  footer .footer-wrap .footer-link .footerlinktext + .footerlinktext:before {
    display: inline-block;
    content: '|';
  }
}
/*# sourceMappingURL=style.css.map */