@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);

/*================================================================================
  common
================================================================================*/
html,
body {
  margin: 0;
  font-family: Arial, '微軟正黑體', sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  background: url(../images/bg_emoij.png) no-repeat center 0;
}

body.hidden_b {
  overflow: hidden;
}

a {
  color: #333;
  text-decoration: none;
  outline: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

a:hover, a:focus {
  text-decoration: none;
}

.wrapper {
  float: left;
  width: 100%;
  padding-top: 100px;
  background: url(../images/top_bg.png) no-repeat center -90px;
  overflow: hidden;
}
.wrapper-inner {
  position: relative;
  float: left;
  width: 100%;
  min-height: calc(100vh - 205px);
  background: url(../images/bot_bg.png) no-repeat center bottom;
  background-size: 110%;
}

.touch-panel {
  position: absolute;
  top: -30px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: calc(100% - 25px);
  z-index: 1001;
}

.text-center {
  text-align: center;
}
.mr-1 {
  margin-right: 15px;
}
.mt-3 {
  margin-top: 60px;
}
.page-404 p {
  font-size: 1.3rem;
  margin: 20px 0;
}
.v_mobile {
  display: none !important;
}
.txt-word {
  color: #2d2d2d;
  margin-top: 20px;
  font-size: 1.3rem;
}
.icon-box {
  margin: 40px 0 30px 0;
}
.swal-overlay {
  z-index: 99999;
}
.fancybox-container {
  z-index: 1002 !important;
}
.fancybox-slide--html .fancybox-close-small {
  display: none;
  background: #41a1bd;
  border-radius: 30px;
  color: #FFF !important;
  opacity: 1;
  top: 10px !important;
  right: 10px !important;
  box-shadow: 2px 3px 1px rgb(40 103 121);
}
.fancybox-slide--iframe.fancybox-slide {
  padding: 0;
}
.fancybox-toolbar {
  opacity: 1 !important;
  visibility: visible !important;
}
.fancybox-button.fancybox-button--zoom, 
.fancybox-button.fancybox-button--play, 
.fancybox-button.fancybox-button--thumbs {
  display: none !important;
}


/*================================================================================
  header
================================================================================*/
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
}

header.fixed_top {
  background: #FFF;
}

header.hideUp {
  top: -122px;
}

.inner-block {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo {
  float: left;
  margin: 15px 0;
}

.logo img {
  width: 160px;
  display: block;
}

.logo,
nav.nav,
.top-link {
  transition: 0.3s;
}

header.fixed_top .logo {
  margin: 10px 0;
}

header.fixed_top .logo img {
  width: 160px;
}

nav.nav {
  float: right;
  /*margin-right: 170px;*/
  margin-top: 8px;
  font-size: 1.2rem;
}

header.fixed_top nav.nav {
  margin-top: 0;
}

nav.nav ul {
  /*display: flex;*/
}

nav.nav ul li {
  float: left;
  position: relative;
  margin: 12px 15px;
}

nav.nav ul li:last-child {
  /*margin-right: 0;*/
}

nav.nav ul li a {
  position: relative;
  display: block;
  color: #000;
  padding: 8px 0 5px 0;
}

nav.nav ul li a:after {
  display: block;
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #da5272;
  transition: 0.5s;
  opacity: 0;
}

nav.nav ul li>a:hover:after {
  width: 100%;
  opacity: 1;
}

nav.nav ul li a i {
  position: relative;
  top: -3px;
  font-size: 0.6rem;
  margin-left: 5px;
}

nav.nav ul li.btn-login {
  margin-right: 0;
}

nav.nav ul li.btn-login a {
  color: #FFF;
  background-color: #CC506C;
  border-radius: 30px;
  padding: 8px 20px 5px 20px;
}

nav.nav ul li.btn-login a:hover {
  color: #FFF;
  background-color: #b13f58;
}

nav.nav ul li ul.nav-submenu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 30px;
  right: -210px;
  display: flex;
  white-space: nowrap;
  background-color: #FFF;
  border-radius: 30px;
  padding: 0 10px;
  text-align: center;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 1px 4px 1px #f4d242;
}

nav.nav ul li ul.nav-submenu:after {
  position: absolute;
  display: block;
  content: " ";
  top: -13px;
  left: 53%;
  border: solid transparent;
  border-bottom: 13px solid #FFF;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

nav.nav ul li:last-child ul.nav-submenu {
  transform: translateX(0);
  left: initial;
  right: 0;
}

@media (min-width: 900px) {
  nav.nav ul li:hover>ul.nav-submenu {
    visibility: visible;
    opacity: 1;
    top: 45px;
  }

  nav.nav ul>li .menu-plus {
    display: none;
  }
}

nav.nav ul li ul.nav-submenu li {
  width: 100%;
  margin: 0;
  display: inline-block;
}

nav.nav ul li ul.nav-submenu li:nth-child(2) {
  order: -1;
}

nav.nav ul li ul.nav-submenu li a {
  position: relative;
  padding: 15px 10px;
  color: #4d4d4d;
}

nav.nav ul li ul.nav-submenu li a span {
  display: none;
}

nav.nav ul li ul.nav-submenu li a:hover {
  color: #000;
  transform: translateY(2px);
}

nav.nav ul li ul.nav-submenu li a:after {
  display: block;
  position: absolute;
  content: " ";
  top: 13px;
  left: inherit;
  right: 23px;
  width: 24px;
  height: 24px;
  background: url(../images/icon_red_line.png);
  background-size: 100%;
}

nav.nav ul li ul.nav-submenu li:nth-child(1) a:after, 
nav.nav ul li ul.nav-submenu li:nth-child(3) a:after {
  right: 7px;
}

nav.nav ul li li a:after {
  display: none;
}
nav.nav ul li.welcome {
  position: relative;
  top: 5px;
  float: right;
  background: #ffffff;
  border-radius: 30px;
}
.fixed_top nav.nav ul li.welcome {
  background: #f1eded;
}
nav.nav ul li.welcome a {
  display: inline-block;
  color: #6f4012;
  font-size: 1rem;
  padding: 5px 10px 5px 10px;
}
nav.nav ul li.welcome a:first-child {
  padding-right: 0;
}
nav.nav ul li.welcome a:last-child {
  padding-left: 0;
}
nav.nav ul li.welcome a:after {
  display: none;
}

.share-btn {
  display: inline-flex;
}

header .share-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
}

header.fixed_top .share-btn {
  top: 15px;
}

.share-btn ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.share-btn ul li {
  margin: 0 10px;
  color: #999999;
}

.share-btn ul li span {
  display: block;
  position: relative;
  margin-top: 10px;
  font-size: 0.9rem;
}

.footer .share-btn ul li span {
  font-size: 1rem;
  /*color: #FFF;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;*/
}

.share-btn ul li a {
  display: block;
}

.share-btn ul li a:hover {
  transform: translate(1px, 1px);
}

.share-btn ul li.btn-fb,
.share-btn ul li.btn-line,
.share-btn ul li.btn-twitter,
.share-btn ul li.btn-email,
.share-btn ul li.btn-message {
  margin: 0 5px;
}

.share-btn ul li.btn-fb a,
.share-btn ul li.btn-line a,
.share-btn ul li.btn-twitter a,
.share-btn ul li.btn-email a,
.share-btn ul li.btn-message a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 1.5rem;
  border-radius: 40px;
  border-style: solid;
  border-width: 2px;
  background-color: #FFF;
}

.share-btn ul li.btn-fb a {
  color: #3b5999;
  border-color: #3b5999;
  box-shadow: 2px 2px 1px #3b5999;
}

.share-btn ul li.btn-line a {
  color: #4caf50;
  border-color: #4caf50;
  box-shadow: 2px 2px 1px #4caf50;
}

.share-btn ul li.btn-twitter a {
  color: #55acee;
  border-color: #55acee;
  box-shadow: 2px 2px 1px #55acee;
}

.share-btn ul li.btn-email a {
  color: #c1272d;
  border-color: #c1272d;
  box-shadow: 2px 2px 1px #c1272d;
}

.share-btn ul li.btn-message {
  display: none;
}

.share-btn ul li.btn-message a {
  color: #22b573;
  border-color: #22b573;
  box-shadow: 2px 2px 1px #22b573;
}

.share-btn ul li.btn-email a i {
  font-size: 1.3rem;
  margin-top: -1px;
  display: block;
}

.share-btn ul li.btn-message a i {
  font-size: 1.3rem;
  display: block;
}

.share-to-friend {
  text-align: center;
  margin: 50px 0;
}

.share-to-friend .share-btn {}

.share-to-friend .share-btn ul li {
  position: relative;
  margin: 0 10px;
}

.share-to-friend .share-btn ul li a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 2.2rem;
  border-radius: 60px;
  box-shadow: 3px 3px 1px;
  border-width: 3px;
}

.share-to-friend .share-btn ul li.btn-email a i {
  font-size: 1.9rem;
}

.share-to-friend .share-btn ul li.btn-message a i {
  font-size: 1.8rem;
}

.share-btn ul li span.mark {
  opacity: 0;
  position: absolute;
  background: #f2f2f2;
  border-radius: 5px;
  padding: 5px;
  bottom: -35px;
  left: 50%;
  transform: translate(-50%, 10px);
  font-size: 1rem;
  white-space: nowrap;
  line-height: 1rem;
  transition: 0.3s;
  z-index: -1;
}

.share-btn ul li a:hover span.mark {
  opacity: 1;
  transform: translate(-50%, 0);
}

.share-to-link {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.share-to-link input {
  width: 100%;
  border-radius: 60px;
  border: #000 2px solid;
  background: #FFF;
  padding: 15px 130px 15px 20px;
  box-sizing: border-box;
  outline: 0;
  color: #666666;
  font-size: 1.1rem;
  margin-bottom: 0 !important;
  box-shadow: 5px 6px 1px #e6e6e6;
}

.share-to-link button {
  position: absolute;
  top: 0;
  right: 2px;
  height: 100%;
  color: #FFF;
  background: #000;
  border-radius: 60px;
  border: 0;
  outline: 0;
  padding: 10px 20px;
  font-size: 1.1rem;
}

/* qr box */
#qr-box .modal-dialog {
  
}
#qr-box .modal-body {
  padding: 0;
}
#qr-box .control {
  
}
#qr-box #container canvas, #qr-box img {
  max-width: 350px;
}

/* burgar-btn */
.burgar-btn-outer {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: #FFF;
  border-radius: 60px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  transition: 0.3s;

}

header.fixed_top .burgar-btn-outer {
  top: 10px;
}

.burgar-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 28px;
  height: 24px;
  margin: 0 auto;
  cursor: pointer;
  z-index: 50;
  transition: 0.3s;
}

.burgar-btn span {
  display: block;
  background-color: #da5272;
  position: absolute;
  transition: .3s cubic-bezier(.8, .5, .2, 1.4);
  width: 100%;
  height: 4px;
  transition-duration: 500ms;
  border-radius: 4px;
}

.burgar-btn span:nth-child(1) {
  top: 0px;
  left: 0px;
}

.burgar-btn span:nth-child(2) {
  top: 10px;
  left: 0px;
  opacity: 1;
}

.burgar-btn span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}

/*.burgar-btn:not(.open):hover span:nth-child(1){  
  transform: rotate(-3deg) scaleY(1.1);
  }
.burgar-btn:not(.open):hover span:nth-child(2){  
  transform: rotate(3deg) scaleY(1.1);
}
.burgar-btn:not(.open):hover span:nth-child(3){  
  transform: rotate(-4deg) scaleY(1.1);
}*/
.show .burgar-btn span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.show .burgar-btn span:nth-child(2) {
  opacity: 0;
}

.show .burgar-btn span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

@media (max-width: 900px) {
  .burgar-btn-outer {
    display: block;
  }

  nav.nav {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100vh;
    font-size: 1.3rem;
    margin: 0 !important;
    opacity: 0;
    transition: all 0.3s;
    visibility: hidden;
    background: #FFF;
    display: none;
  }

  .show nav.nav {
    display: block;
    opacity: 1;
    top: 80px;
    visibility: visible;
    overflow: auto;
    padding-bottom: 180px;
  }
  header.fixed_top.show nav.nav {
    top: 65px;
  }

  nav.nav ul {
    display: block;
  }

  nav.nav ul li {
    margin: 0;
    padding: 10px 20px;
    text-align: center;
    float: none;
  }

  nav.nav ul>li {
    border-bottom: #efefef 2px dashed;
  }

  nav.nav ul li.welcome {
    float: none;
  }
  .fixed_top nav.nav ul li.welcome {
    background: none;
  }

  nav.nav ul li.welcome a {
    font-size: 1.3rem;
  }

  nav.nav ul li.welcome a:last-child {
    display: none;
  }

  nav.nav ul li.btn-login a {
    color: #FFF;
  }

  nav.nav ul li a:after {
    display: none;
  }

  nav.nav ul li ul.nav-submenu {
    /*display: none;*/
    position: relative;
    visibility: visible;
    height: auto;
    opacity: 1;
    left: 0;
    transform: translateX(0);
    width: 100%;
    margin-bottom: 40px;
    border: #f4d243 1px solid;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav.nav ul li ul.nav-submenu:after {
    border-bottom: 13px solid #f4d243;
    left: 50%;
    top: -15px;
    margin-left: -7px;
  }

  nav.nav ul li ul.nav-submenu li {
    padding: 0;
    border: 0;
    flex: 0 0 50%;
  }

  nav.nav ul li ul.nav-submenu li a:after {
    display: none;
  }

  nav.nav ul li ul.nav-submenu li:first-child a,
  nav.nav ul li ul.nav-submenu li:last-child a {
    border-radius: 0;
  }

  nav.nav ul li a i {
    display: none;
  }

  nav.nav ul>li .menu-plus {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 66px;
    height: 64px;
    z-index: 99;
    padding: 0;
    color: #FFF;
    cursor: pointer;
  }

  nav.nav ul>li .menu-plus i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 900;
    font-size: 1.5rem;
    transition: 0.3s;
  }

  nav.nav ul>li .menu-plus.open i {
    transform: translate(-50%, -50%) rotate(-180deg);
  }

  nav.nav ul>li .menu-plus.close i {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .top-link li a i {
    display: block !important;
    font-size: 1.4rem !important;
  }

  .top-link ul li.btn-fb a,
  .top-link ul li.btn-youtube a {
    width: 35px;
    height: 35px;
    padding: 10px 0;
  }
}

/*================================================================================
  main
================================================================================*/
.banner {
  float: left;
  width: 100%;
  position: relative;
  margin: 20px 0 0 0;
}

.banner .inner-block {
  display: flex;
  max-width: 830px;
}

.banner-slogn,
.banner-subslogn {
  max-width: 100%;
}

.banner-slogn img,
.banner-subslogn img {
  width: 100%;
}

.banner-slogn {
  position: relative;
  float: left;
  margin-top: -20px;
}

/*.banner-subslogn {
  float: left;
  width: 483px;
  height: 176px;
  font-size: 1.7rem;
  margin-top: -40px;
    margin-left: -20px;
  color: #c67c2c;
  background: url(../images/banner_label.png) no-repeat 0 0;
}
.banner-subslogn span {
  display: block;
    margin: 48px 50px 0 60px;
  transform: rotate(-12deg);
}*/
.banner-subslogn {
  float: left;
  margin-top: -20px;
  margin-left: -25px;
}

.banner-subslogn span {
  transform: rotate(-7deg);
  display: block;
}

.banner-slogn,
.banner-subslogn {
  opacity: 0;
  transform: translateY(-50px);
}

.banner-slogn {
  position: relative;
  z-index: 100;
  transition: opacity .3s ease, all .3s ease-out;
}

.banner-subslogn {
  transition: opacity .5s ease, all .5s ease-out;
}

.banner-slogn.play,
.banner-subslogn.play {
  opacity: 1;
  transform: translateY(0px);
}

/*---------- womo_line_box -----------*/
.womo_line_box {
  max-width: 400px;
  margin: 0 auto 40px auto;
  display: flex;
  align-items: center;
  /*border: #44af34 2px solid;*/
  border: #e6e6e6 2px solid;
  border-radius: 20px;
  padding: 10px;
  background: #FFF;
  box-shadow: 5px 5px 1px #e6e6e6;
}
.womo_line_box .pic {
  margin-right: 15px;
}
.womo_line_box .pic img {
  width: 100%;
  display: block;
}
.womo_line_box .txt {
  text-align: left;
  font-size: 1.1rem;
}
.womo_line_box a {
  display: block;
  text-align: center;
  width: 100%;
  color: #FFF;
  background: #44af34;
  margin-top: 10px;
  padding: 3px;
  font-size: 1rem;
  border-radius: 30px;
  transition: 0.1s;
}
.womo_line_box a:hover {
  background: #319023;
}
.womo_line_box a i {
  display: inline-block;
  transition: 0.1s;
}
.womo_line_box a:hover i {
  transform: translateX(2px);
}
.womo_line_box2 {
  margin-top: 10px;
  border: #e6e6e6 2px solid;
  box-shadow: 5px 5px 1px #e6e6e6;
}
.womo_line_box2 a {
  background: #3a3a3a;
}
.womo_line_box2 a:hover {
  background: #000;
}
@media(max-width: 300px) {
  .womo_line_box {
    position: relative;
    padding-bottom: 45px;
  }
  .womo_line_box a {
    position: absolute;
    left: 15px;
    width: calc(100% - 30px);
    margin-top: 12px;
  }
  .womo_line_box .pic {
    margin-right: 0;
  }
  .womo_line_box .txt {
    font-size: 0.9rem;
  }
}

/*---------- face-block ------------*/
.face-block {
  background: url(../images/bg_line.png) no-repeat center center;
}

.face-upload-outer {
  max-width: 819px;
  margin: 0 auto;
  padding: 90px 20px 40px 20px;
  text-align: center;
  background: url(../images/bg_circle.png) no-repeat center 0;
}

/*.face-upload-inner {
  position: relative;
  z-index: 991;
  display: inline-block;
  width: 446px;
  height: 430px;
  border-radius: 100%;
  background: url(../images/coin_bg.png) no-repeat 0 0;
  background-size: 100%;
}*/
.face-upload-inner {
  position: relative;
  z-index: 991;
  display: inline-block;
  max-width: 446px;
  width: 100%;
  border-radius: 100%;
  background: url(../images/coin_bg.png) no-repeat 0 0;
  background-size: 100%;
}

/*.face-upload-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 304px;
  height: 304px;
  margin-left: -9px;
  margin-top: -1px;
}*/
.face-upload-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 14% 18% 19% 15%;
}

/*.face-upload-box {
  position: relative;
  width: 304px;
  height: 304px;
  border-radius: 304px;
  overflow: hidden;
}*/

.face-upload-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 304px;
  overflow: hidden;
}

.face-upload-block img {
  width: 100%;
}

.upload-face-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
  z-index: 5;
}

.btn-upload-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
  border-radius: 100%;
  overflow: hidden;
  z-index: 100;
}

.btn-reset-pic {
  position: absolute;
  right: 30px;
  bottom: 50px;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  border: #d05445 4px solid;
  background: #FFF;
  z-index: 9;
  box-shadow: 3px 3px 1px #a53f34;
}

.btn-reset-pic i {
  display: block;
  color: #d97c73;
  font-size: 2.3rem;
  margin-top: -8px;
}

.btn-reset-pic span {
  display: block;
  font-size: 0.8rem;
  margin-top: -10px;
}

.face-upload-block .mask {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FFF;
  font-size: 1.7rem;
  border-radius: 100%;
  overflow: hidden;
  background: rgb(0 0 0 / 30%);
}

.face-upload-block .mask span {
  display: block;
}

.face-upload-block .mask .pic {
  margin: 30px 0 5px 0;
  padding: 15px;
}

.face-upload-block .mask .pic img {
  width: 70px;
}

.face-pic-slide {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.face-pic-slide .slick-slide {
  border-radius: 100%;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.banner_word {
  position: absolute;
}

.banner_word img {
  width: 80%;
}

.word1 {
  right: -200px;
  top: -60px;
}

.word2 {
  right: -230px;
  top: 110px;
}

.word3 {
  right: -250px;
  bottom: 100px;
}

.word4 {
  right: -230px;
  bottom: -30px;
}

.word5 {
  left: -300px;
  top: 100px;
}

.word6 {
  left: -280px;
  top: 52%;
}

.word7 {
  left: -280px;
  bottom: -60px;
}

.main {
  float: left;
  width: 100%;
  margin-top: -140px;
}
#step-1 .btn-area {
  margin-top: 0;
}
#step-1 .btn-underline {
  margin: 20px 0;
  display: inline-block;
}

/*================================================================================
  award-show-block
================================================================================*/
.award-show-block {
  float: left;
  width: 100%;
  padding: 60px 0 120px 0;
}

.award-show-block .inner-block {
  text-align: center;
  max-width: 1000px;
}

.award-list {
  position: relative;
  display: inline-block;
  width: 30%;
  margin: 0 -30px;
}

.award-list:nth-child(1) {
  width: 17%;
  margin-right: 20px;
}

.award-list:nth-child(3) {
  top: 40px;
}

.award-list:nth-child(4) {
  width: 33%;
}

.award-list:nth-child(5), .award-list:nth-child(5) {
  display: none;
}

.award-list .pic {
  display: block;
}

.award-list:nth-child(1) .pic {
  transform: rotate(-5deg);
}

.award-list:nth-child(2) .pic, 
.award-list:nth-child(3) .pic {
  padding: 15px;
  background: #FFF;
  border-radius: 100%;
  box-shadow: 2px 2px 13px 0px rgb(0 0 0 / 13%);
}

.award-list .pic img {
  width: 100%;
}

.award-list:nth-child(1) .pic img {
  width: 100%;
}

.award-list:nth-child(2) .pic img, 
.award-list:nth-child(3) .pic img {
  border-radius: 100%;
  display: block;
}

.award-list .txt {
  position: absolute;
}

.award-list:nth-child(1) .txt {
  bottom: 30px;
  transform: rotate(-5deg);
}

.award-list:nth-child(2) .txt {
  left: 80px;
  bottom: 30px;
  transform: rotate(10deg);
}

.award-list:nth-child(3) .txt {
  left: 17px;
  top: 20px;
  transform: rotate(-15deg);
}

.award-list:nth-child(4) .txt {
  right: 40px;
  bottom: 20px;
  transform: rotate(-10deg);
}

.award-list .name {
  position: relative;
  z-index: 2;
  background-color: #000;
  color: #FFF;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 1.3rem;
  white-space: nowrap;
}

.award-list .name span {
  display: none;
}

.btn-free-get {
  display: block;
  position: absolute;
  top: 18px;
  font-size: 1.1rem;
  white-space: nowrap;
  color: #fb9929;
  border: #fb9929 2px solid;
  border-radius: 20px;
  background-color: #FFF;
  padding: 20px 15px 3px 15px;
}

.award-list:nth-child(1) .btn-free-get, 
.award-list:nth-child(3) .btn-free-get {
  right: -5px;
}

.award-list:nth-child(2) .btn-free-get {
  left: -5px;
}

.btn-free-get span {
  display: inline-block;
  transition: 0.2s;
}

.btn-free-get i {
  position: relative;
  display: inline-block;
  top: -3px;
  color: #FFF;
  font-size: 0.9rem;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #fb9929;
  border-radius: 100%;
  padding: 0;
  margin-left: 3px;
  transition: 0.4s;
}

.btn-free-get:hover i {
  transform: translateX(-72px);
}

.btn-free-get:hover span {
  transform: translateX(25px);
}

/*================================================================================
  main-content
================================================================================*/
.main-content {
  padding: 0 15px;
}

.title-bar-g {
  position: relative;
  font-size: 1.3rem;
  text-align: center;
}

.title-bar-g span {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: #FFF;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 15px 30px;
  background-color: #34d1cd;
}

.title-bar-g span:after {
  display: block;
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  z-index: -1;
  background: url(../images/title_bg_line.png) repeat;
}

.title-moto span {
  padding-right: 160px;
}

.title-moto span .pic {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 5;
}

.txt-desc {
  max-width: 550px;
  margin: 40px auto;
  font-size: 1.3rem;
  line-height: 2rem;
}

.txt-desc b {
  border-bottom: #fbb03b 5px solid;
}

.txt-desc b:after {
  display: none;
  content: " ";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: #fbb03b;
  width: 100%;
  height: 10px;
}

/*------- scroll-text --------*/
.scroll-text {
    height: 60vh; 
    overflow: auto;
    margin-bottom: 10px;
    text-align: left;
}
.scroll-text ul, .scroll-text ol {
    padding-left: 20px;
}
.scroll-text ul li {
    list-style: cjk-ideographic inside;
    padding-right: 20px;
    margin-bottom: 10px;
}
.scroll-text ul li li {
    list-style: decimal;
    padding-right: 20px;
}
.scroll-text h5 {
  margin: 10px 0;
}
.scroll-text ol li {
  padding-right: 20px;
  margin-bottom: 10px;
}

/*-------- btn ----------*/
.btn-area {
  margin: 30px 0;
}

.btn-round-border {
  min-width: 300px;
  display: inline-block;
  font-size: 1.4rem;
  border-width: 2px;
  border-style: solid;
  background: #FFF;
  border-radius: 30px;
  outline: 0 !important;
  cursor: pointer;
  padding: 8px 30px;
  box-shadow: 5px 5px 1px #e6e6e6;
  transition: 0.1s;
}

.btn-round-border:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 1px #e6e6e6;
}

.btn-round-border .icofont-rounded-right {
  display: inline-block;
  position: relative;
  top: -2px;
  color: #FFF;
  border-radius: 30px;
  width: 23px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  font-size: 1.2rem;
  margin-left: 8px;
}

.btn-green {
  border-color: #44af34;
  color: #44af34;
}

.btn-green .icofont-rounded-right {
  background: #44af34;
}

.btn-green span.icofont-rounded-right:before {
  position: relative;
  left: 3px;
}

.btn-green2 {
  border-color: #44af34;
  background-color: #44af34;
  color: #FFF;
}

.btn-green2 .icofont-rounded-right {
  color: #44af34;
  background: #FFF;
}

.btn-blue {
  border-color: #659fe9;
  color: #659fe9;
}

.btn-blue .icofont-rounded-right {
  background: #659fe9;
}

.btn-org {
  border-color: #fb9929;
  color: #fb9929;
}

.btn-org .icofont-rounded-right {
  background: #fb9929;
}

.btn-underline {
  position: relative;
  font-size: 1.2rem;
  color: #4d4d4d;
}

.btn-underline:before,
.btn-underline:after {
  display: block;
  content: " ";
  position: absolute;
  height: 2px;
  left: 0;
  bottom: -6px;
}

.btn-underline:before {
  background: #4d4d4d;
  width: 100%;
}

.btn-underline:after {
  background: #000;
  transition: width 0.6s;
  width: 0;
  z-index: 2;
}

.btn-underline:hover {
  color: #000;
}

.btn-underline:hover:after {
  width: 100%;
}

/*------ get-friend-number --------*/
.get-friend-number {
  position: relative;
  z-index: 99;
  max-width: 450px;
  margin: -85px auto 40px auto;
  background: #fdd203;
  border: #6a3907 3px solid;
  padding: 15px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 5px 6px 1px #e6e6e6;
}

.get-friend-number > div:first-child {
}

.get-friend-number div img {
  max-width: 100%;
}

.get-friend-number ul {
  display: flex;
}

.get-friend-number li {
  margin: 0 5px;
  flex: 1;
  background: #FFF;
  font-size: 3rem;
  color: #d8c4af;
  align-self: flex-end;
}

.get-friend-number li.arrived {
  color: #6a3907;
}

.get-friend-number li:last-child {
  background: transparent;
  flex: none;
  font-size: 2rem;
  color: #6a3907;
}

.rank-num {
  margin-bottom: 20px;
  color: #d46a00;
  background: #feeda5;
  display: inline-block;
  padding: 5px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  -moz-box-shadow: 1px 1px 2px 1px rgb(222 204 126) inset;
  -webkit-box-shadow: 1px 1px 2px 1px rgb(222 204 126) inset;
  box-shadow: 1px 1px 2px 1px rgb(222 204 126) inset;
}

.friend-comment {
  display: flex;
  margin-top: 20px;
}

.friend-comment > div {
  color: #f9e7e7;
  border-radius: 5px;
  flex: 1;
  padding: 5px;
  margin: 0 5px;
  background: rgb(160 102 102 / 35%);
}

.friend-comment .pic img {
  width: 30px;
  position: relative;
  top: 3px;
}

.friend-comment .txt b {
  margin: 0 5px;
  font-size: 1.6rem;
  color: #FFF;
}

.btn-go-view {
  color: #FFF;
  background: #6a3906;
  padding: 5px 15px 5px 20px;
  display: inline-block;
  border-radius: 30px;
  margin-top: 17px;
}

.btn-go-view:hover {
  background: #542d05;
}

.btn-go-view i {
  display: inline-block;
  transition: 0.3s;
}

.btn-go-view:hover i {
  transform: translateX(2px);
}

/*---- sub-wrapper -----*/
.sub-wrapper {
  background: url(../images/top_bg_sub.png) no-repeat center -230px;
}

.sub-wrapper .main {
  margin-top: 30px;
}

.sub-title {
  font-size: 3rem;
  color: #FFF;
  text-align: center;
  /*-webkit-text-stroke: 1px #D67718;*/
  text-shadow:
    -1px -1px 0 #D67718,
    1px -1px 0 #D67718,
    -1px 1px 0 #D67718,
    1px 1px 0 #D67718,
    3px 3px 0px #D67718;
}

/*------- mybag-block ---------*/
.mybag-block {
  max-width: 850px;
  margin: 50px auto;
  text-align: center;
}

.mybag-block-top {
  max-width: 700px;
  position: relative;
  color: #FFF;
  font-size: 1.4rem;
  background-color: #F2A040;
  border-radius: 30px;
  padding: 15px 30px;
  margin: 0 auto;
  top: 25px;
  text-align: center;
}

.mybag-block-top:before,
.mybag-block-top:after {
  position: absolute;
  display: block;
  content: " ";
  width: 50px;
  height: 50px;
  border-radius: 50px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.mybag-block-top:before {
  background-color: #CE7E2E;
  z-index: -2;
  margin-left: -30px;
}

.mybag-block-top:after {
  background-color: #F2A040;
  z-index: -1;
  margin-right: -30px;
}

.mybag-block-inner {
  padding: 60px 20px 30px 20px;
  background-color: #FFF;
  border-radius: 20px;
  border: #BC710D 3px dashed;
  box-shadow: 5px 6px 1px #e6e6e6;
}

.mybag-block-inner {
  display: flex;
  flex-wrap: wrap;
}

.mybag-block-inner.empty {
  display: block;
  padding: 80px 20px 50px 20px;
}

.empty .pic span {
  display: inline-block;
  width: 120px;
  height: 120px;
  padding: 20px;
  border-radius: 120px;
  background: #f1f1f1;
}

.empty .pic img {
  opacity: 0.9;
  width: 70px;
}

.empty .txt {
  max-width: 550px;
  margin: 20px auto;
  color: #5a5a5a;
  font-size: 1.1rem;
}

.empty .txt h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #000;
}

.voucher-block-inner .empty, .mybag-block-inner .empty {
  display: block;
  width: 100%;
}

.mybag-block-inner .coin-list {
  width: 25%;
  padding: 20px;
  margin-bottom: 20px;
}
.mybag-block-inner .coin-list a[data-fancybox] {
  border: 0;
  outline: 0;
}

/*------- coin-list ---------*/
.coin-pic {
  width: 100%;
  padding: 14% 18% 13% 15%;
  background: url(../images/coin_bg.png) no-repeat;
  background-size: 100%;
}

.coin-pic img {
  width: 100%;
  border-radius: 100%;
}

.coin-list .name {
  position: relative;
  color: #000;
  background: #FFF;
  border: #D05445 3px solid;
  border-radius: 30px;
  padding: 3px;
  margin: -40px 15px 0 15px;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 3px 3px 0px #A53E32;
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.coin-list .rank {
  text-align: center;
  margin: 10px 0;
}

.lottery-num {
  position: relative;
  color: #FFF;
  background-color: #d2aaaa;
  border-radius: 5px;
  box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 30%);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.lottery-num .icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background: url(../images/icon_lottery.png) no-repeat center center;
  background-size: 100%;
}

.lottery-num .num {
  display: block;
  font-size: 0.9rem;
  padding-left: 10px;
  border-left: #e0caca 2px dashed;
}

.lottery-num .num b {
  display: block;
}

/*------- recommend-list -----------*/
.hashtag-word {
  color: #2497c3;
  text-align: left;
  margin-top: -10px;
  margin-bottom: 10px;
}
.swal-recommend {
  display: inline-flex;
  flex-wrap: wrap;
}
.swal-recommend .swal-title , .swal-recommend .swal-footer {
  width: 100%;
}
.swal-recommend .swal-footer {
  /*padding: 0;*/
}
.swal-recommend .swal-text {
  max-width: none;
  padding: 0 20px;
}
.swal-recommend .swal-content {
  /*order: 1;
  margin-bottom: 30px;*/
}

.recommend-list .mybag-block-inner {
    padding: 10px;
}
.recommend-list h5 {
  width: 100%;
  margin-bottom: 10px;
  background: #f5ebdd;
  border-radius: 30px;
  padding: 3px;
  color: #804a02;
}
.recommend-list .coin-list {
    width: 33.33%;
    padding: 5px;
    margin-bottom: 0;
}
.recommend-list .text-center {
  width: 100%;
  margin-top: 20px;
}
.recommend-list .text-center a {
  display: inline-block;
  border: #659fe9 1px solid;
  color: #659fe9;
  padding: 3px 15px;
  border-radius: 30px;
}
.recommend-list .text-center a:hover {
  color: #FFF;
  background: #659fe9;
}

/*------- user-bag -------------*/
.user-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.user-info .pic {
  width: 300px;
  margin-right: 50px;
}
.user-info .pic a {
  outline: 0;
  border: 0;
}
.user-info .right {
  flex: 1;
  text-align: left;
  font-size: 1.3rem;
}
.user-info .right .name {
  margin: 0 0 10px 0;
  font-size: 2.2rem;
  color: #FFF;
  /* -webkit-text-stroke: 1px #D67718; */
  text-shadow: -1px -1px 0 #d67718, 1px -1px 0 #d67718, -1px 1px 0 #d67718, 1px 1px 0 #d67718, 3px 3px 0px #d67718;
}
.btn-vote {
  display: inline-block;
  font-size: 1rem;
  border: #44af34 1px solid !important;
  color: #44af34;
  border-radius: 30px;
  padding: 3px 15px;
  outline: 0 !important;
}
.btn-vote:hover, .btn-vote.active {
  color: #FFF;
  background: #44af34;
}
.btn-vote.active:before {
  font-family: IcoFont!important;
  content: "\eed7";
  margin-right: 5px;
}
.btn-vote.disabled {
  background: #44af34;
  color: #FFF;
  pointer-events: none;
}
.user-info .btn-vote {
  margin-top: 15px;
}

/*------- coin-pic-fancybox -------*/
.coin-pic-fancybox {
  max-width: 500px !important;
  width: 400px;
  padding: 0 !important;
  background: none !important;
}
@media (max-width: 414px) {
  .coin-pic-fancybox {
    width: 100%;
  }
}
.coin-pic-fancybox .name {
  color: #FFF;
  text-align: center;
  font-size: 1.3rem;
  margin: 10px 0;
}
.coin-pic-fancybox .vot-select {
  margin-top: 0;
}
.coin-pic-fancybox .vot-select .btn-select {
  padding: 5px;
}
.coin-pic-fancybox .vot-select ul li span {
  display: inline-block;
}
.coin-pic-fancybox .vot-select ul li span.pic {
  margin: 0;
  position: relative;
  top: 4px;
}
.coin-pic-fancybox .vot-select ul li span.pic img {
  width: 25px;
}
.coin-pic-fancybox .vot-select ul li span.txt {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/*------- all-rank-block ------*/
.all-rank-block {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

.all-rank-block-inner {
  display: flex;
  flex-wrap: wrap;
}

.all-rank-block .rank1,
.all-rank-block .rank2,
.all-rank-block .rank3 {
  position: relative;
  width: 30%;
  padding: 30px;
  align-self: flex-end;
  margin-bottom: 20px;
}

.all-rank-block .rank1 {
  width: 40%;
}

.all-rank-block .rank2 {
  /*order: -1;*/
}

.rank-list {
  position: relative;
  display: flex;
  width: calc(100% - 60px);
  background: #fff8f8;
  border-radius: 100px;
  margin: 0 30px 20px 30px;
  padding: 10px;
  align-items: center;
  box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 30%);
}

.rank-list.rank-me {
  opacity: 0;
  position: fixed;
  bottom: 20px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  margin: 0;
  background: #ffd6e0;
  transition: 0.3s;
}
.rank-list.rank-me.on {
  opacity: 1;
  z-index: 997;
}

.all-rank-block .mark {
  color: #FFF;
  min-width: 40px;
  border-radius: 30px;
  padding: 5px;
  box-shadow: 2px 2px 1px #e6e6e6;
  background: #7d92d9;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #7d92d9 0%, #df6295 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #7d92d9 0%, #df6295 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #7d92d9 0%, #df6295 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d92d9', endColorstr='#df6295', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.all-rank-block .rank1 .mark,
.all-rank-block .rank2 .mark,
.all-rank-block .rank3 .mark {
  width: 100px;
  position: absolute;
  top: 20px;
  left: 35px;
  transform: rotate(-15deg);
}

.all-rank-block .rank1 .mark {
  width: 120px;
}

.rank-list .mark {
  top: 50%;
    left: -5px;
    transform: translateY(-50%);
    position: absolute;
    border-top-left-radius: 10px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 10px;
}

.rank-list .coin-pic {
  width: 90px;
  padding: 13px 17px 9px 13px;
  margin-left: 60px;
}

.rank-list .name {
  flex: 1;
  text-align: left;
  margin: 0;
  background: 0;
  border: 0;
  box-shadow: none;
  padding: 0 30px;
}

.rank-list .rank {
  margin: 0 20px 0 0;
}

.all-rank-block .rank1 .rank,
.all-rank-block .rank2 .rank,
.all-rank-block .rank3 .rank {
  background: #ffe4e4;
  border-radius: 5px;
  padding: 5px;
  margin: 15px 15px 0 15px;
}
.all-rank-block .rank1 .rank span,
.all-rank-block .rank2 .rank span,
.all-rank-block .rank3 .rank span {
  display: block;
  font-size: 1.4rem;
}

.all-rank-block .rank span {
  color: #dc8f56;
}

.rank-notice-txt {
  margin: -20px 40px 20px 30px;
  color: #326c7d;
  text-align: right;
  width: 100%;
}

.btn-area-block {
  width: 100%;
  text-align: center;
}

.btn-read-more {
  display: inline-block;
  font-size: 1rem;
  color: #FFF;
  background: #44af34;
  padding: 10px 25px;
  outline: 0 !important;
  margin-top: 20px;
}

.btn-read-more:hover {
  color: #FFF;
  background: #369a27;
}

/*------- voucher-block ---------*/
.voucher-block {
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
}

.voucher-block-inner {
  display: flex;
  flex-wrap: wrap;
}
.voucher-give.voucher-block {
  margin-top: 20px;
}
.voucher-give .voucher-block-inner {
  justify-content: center;
}

.voucher-list {
  position: relative;
  width: 46%;
  margin: 2%;
  padding-left: 60px;
  background: #FFF;
  border-radius: 5px;
  box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 15%);
}

.voucher-list:before,
.voucher-list:after {
  position: absolute;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  content: ' ';
  top: 50%;
  margin-top: -15px;
  background: #FFF;
  z-index: 9;
}

.voucher-list:before {
  box-shadow: inset -2px 0px 3px #e4e4e4;
  left: -19px;
}

.voucher-list:after {
  box-shadow: inset 2px 0px 1px #dfdfdf;
  right: -19px;
}

.voucher-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.voucher-list a.disabled {
  pointer-events: none;
  cursor: default;
}

.voucher-list .mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  color: #FFF;
  padding: 0 10px 0 15px;
  background-color: #ababab;
  border-right: #f1f1f1 2px dotted;
  border-left: #f1f1f1 1px dotted;
  font-size: 1.4rem;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.voucher-list .mark:before,
.voucher-list .mark:after {
  position: absolute;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  content: ' ';
  right: -10px;
  background: #ffffff;
}

.voucher-list .mark:before {
  box-shadow: inset 0px -2px 3px #e4e4e4;
  top: -8px;
}

.voucher-list .mark:after {
  box-shadow: inset 0px 2px 3px #dfdfdf;
  bottom: -8px;
}

.voucher-list.voucher1-on .mark {
  background: #D468A1;
  border-right: #fbe7f2 2px dotted;
}

.voucher-list.voucher2-on .mark {
  background: #1BBC9C;
  border-right: #ddf1ec 2px dotted;
}

.voucher-list.voucher3-on .mark {
  background: #2396da;
  border-right: #c6eaff 2px dotted;
}

.voucher-list .pic {
  width: 120px;
  flex: 0 0 120px;
  text-align: center;
  margin: 20px 10px;
}

.voucher-list .pic img {
  height: 120px;
}

.voucher-store-name {
  display: inline-block;
  background: #efefef;
  padding: 5px;
  margin-top: 5px;
  border: #e8e8e8 1px solid;
  border-radius: 5px;
  text-align: center;
}
.voucher-store-name span {
  display: inline-block;
  margin-right: 3px;
  color: #bb5050;
}
.voucher-store-name a {
  color: #FFF;
  background: #bb5050;
  display: inline-block;
  border-radius: 30px;
  padding: 1px 10px;
  font-size: 0.8rem;
}

.voucher-list .info {
  flex: 1; 
  position: relative;
  color: #666;
  text-align: left;
  margin: 20px 20px 20px 0;
}

.voucher-list .info .title {
  color: #000;
  font-size: 1.2rem;
}
.voucher-list .info .title2 {
  color: #1b8090;
  font-size: 1.1rem;
}
.voucher-list .info .title a {
  color: #000;
}
.voucher-list .voucher-status {
  position: absolute;
  top: 0;
  left: -50px;
}
.voucher-list .voucher-status img {
  width: 100px;
}
.voucher-list .btn-block {
  flex: 0 0 100%;
  margin-bottom: 20px;
}

.btn-exchange {
  display: inline-block;
  border: #fb9929 1px solid;
  color: #fb9929;
  padding: 5px 15px;
  border-radius: 30px;
  transition: 0.3s;
  outline: 0 !important;
}

.btn-exchange:hover {
  color: #FFF;
  background: #fb9929;
}
.btn-exchange.btn-disabled {
  color: #FFF;
  pointer-events: none;
  cursor: default;
  background: #CCC;
  border: #CCC 1px solid;
}
.btn-share {
  display: inline-block;
  color: #44af34;
  border: #44af34 1px solid;
  padding: 5px 15px;
  border-radius: 30px;
  margin-left: 5px;
  transition: 0.3s;
}
.btn-share:hover {
  color: #FFF;
  background: #44af34;
}
.share-btn .btn-share {
  padding: 5px 15px;
}
.ticket-detail-fancybox {
  display: none; width: 100%; height: 100%;
}

/*------ share-modal ----------*/
#share-modal .modal-header {
  border-bottom: 0;
  text-align: center;
}
#share-modal .modal-header h4 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
#share-modal .modal-content {
  padding: 30px 10px 0 10px;
}
#share-modal .share-to-friend {
  margin: 0 0 50px 0;
}

/*------ voucher-detail -------*/
.voucher-detail-page .modal-backdrop.in {
  opacity: 0.2;
}
#nologin-modal .animated {
  bottom: 0;
  position: absolute;
  width: 100%;
  padding: 0 15px;
  text-align: center;
}
#nologin-modal .modal-content {
  padding: 10px 0;
}
#nologin-modal .animated a {
  padding: 5px 30px;
}
#nologin-modal .animated a:first-child {
  margin-right: 15px;
}
.voucher-detail-page  {
  /*overflow: hidden;*/
}
.voucher-detail-page header {
  position: relative !important;
  top: 0 !important;
}
.voucher-detail-page .wrapper {
  position: absolute;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
    
}
.voucher-detail-page .wrapper-inner {
  height: 100%;
}
.voucher-detail-page .main {
  margin: 0;
}
.share-voucher {
  display: block !important;
}
.share-voucher .btn-share {
  padding: 5px 10px;
}
.voucher-detail-inner {
  position: relative;
  max-width: 600px;
  height: calc(100vh - 155px);
  height: calc(var(--vh, 1vh) * 100 - 155px);
  margin: 0 auto;
  background: #FFF;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 15%);
}
.voucher-detail-inner:before, .voucher-detail-inner:after {
    position: absolute;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    content: ' ';
    top: 60%;
    background: #FFF;
    z-index: 9;
}
.voucher-detail-inner:before {
    box-shadow: inset -2px 0px 3px #e4e4e4;
    left: -19px;
}
.voucher-detail-inner:after {
    box-shadow: inset 2px 0px 1px #dfdfdf;
    right: -19px;
}
.voucher-detail .info-top {
  position: relative;
}
.voucher-detail .voucher-status {
  display: none;
  position: absolute;
  right: 15%;
  top: 20%;
}
.voucher-detail .voucher-status.on {
  display: block;
}
.voucher-detail .voucher-status img {
  width: 140px;
}
.voucher-iframe {
  width: 100%; 
  height: 100%; 
  position: absolute; 
  top: 0; 
  left: 0;
}
.voucher-modal  .info {
  /*background-image: radial-gradient(circle at left bottom, #000, #000 15px, transparent 16px), 
  radial-gradient(circle at right bottom, #000, #000 15px, transparent 16px);*/
}
.voucher-modal .modal-content {
    padding: 20px;
    box-shadow: 5px 5px 1px #e6e6e6;
}
.voucher-modal .info-top .pic {
    text-align: center;
}
.voucher-modal .info-top .pic img {
  height: 140px;
}
.voucher-modal .info-top .title {
  color: #000;
  font-size: 1.3rem;
  margin: 5px 0;
  text-align: center;
}
.voucher-modal .mark {
  color: #FFF;
  border-radius: 30px;
  padding: 3px 15px;
  font-size: 1.2rem;
  text-align: center;
}
.voucher-modal.voucher1 .mark {
  background-color: #D468A1;
}
.voucher-modal.voucher2 .mark {
  background-color: #1BBC9C;
}
.voucher-modal .store-name {
  text-align: center;
  margin: 15px 0;
}
.voucher-modal .store-name span {
  display: inline-block;
  border: #f7d4a0 1px solid;
  color: #af6902;
  border-radius: 30px;
  padding: 3px 15px;
  background: #fdecd4;
}
.voucher-modal .info {
  border-top: #CCC 1px dashed;
  padding-top: 15px;
}
.voucher-modal .stamp-block {
  margin-top: 15px;
  border-top: #CCC 1px dashed;
  /*background-image: radial-gradient(circle at left top, #000, #000 15px, transparent 16px), 
  radial-gradient(circle at right top, #000, #000 15px, transparent 16px);*/
}
.voucher-modal .stamp-inner {
  background-color: #f2f2f2;
  padding: 15px;
  text-align: center;
}
.voucher-modal .stamp-block span {
  display: block;
  margin-top: 5px;
}
.voucher-modal .btn-area {
  /*position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;*/
}
.voucher-modal .btn-exchange, .voucher-modal .btn-share {
  margin: 10px 0;
  padding: 5px 15px;
  position: relative;
  z-index: 999;
}

/*--- self-check---*/
.btn-self-check {
  margin: 15px 0;
}
.btn-self-check a {
  color: #f2f2f2;
  border: #f2f2f2 1px solid;
  width: 30px;
  height: 30px;
  padding: 5px;
  line-height: 30px;
  text-align: center;
  border-radius: 30px;
}
#self-check-modal.modal {
  background: rgb(0 0 0 / 60%);
}
.phone-num-check {
  text-align: center;
}
.phone-num-check ul {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin: 30px 0;
}
.phone-num-check ul li {
  background: #FFF;
  padding: 10px;
  margin: 10px;
  font-size: 3rem;
  border-radius: 5px;
}
.phone-num-check h4 {
  display: inline-block;
  color: #FFF;
  background: #000;
  padding: 5px 20px;
  font-size: 1.2rem;
  border-radius: 30px;
}
#self-check-modal .store-pwd-block {
  margin: 30px 0;
}
#self-check-modal input.store_pwd {
  border: 0;
  outline: 0;
  padding: 10px;
  background: #FFF;
  border-radius: 10px; 
}

/*select-store-modal*/
#select-store-modal .modal-body {
  height: calc(100vh - 155px);
  padding: 15px;
}
.select-area {
  display: flex;
  margin:0 -5px 15px -5px; 
}
.select-area span {
  display: block;
  width: 50%;
  padding: 0 5px;
}
.select-area select {
  width: 100%;
  padding: 5px;
  outline: 0;
  border: #CCC 1px solid;
  border-radius: 5px;
}
.store-list {
  position: relative;
  height: 90%;
  overflow: auto;
  margin-bottom: 20px;
}
.store-list li {
  position: relative;
  border-bottom: #f2f2f2 1px solid;
}
.store-list li {
  display: block;
  padding: 10px 5px;
  padding-right: 75px;
}
.store-list li:hover {
  background: #f2f2f2;
}
.store-list span {
  display: block;
}
.store-list .store-name a {
  color: #000;
}
.store-list .store-address {
  font-size: 0.9rem;
}
.store-list .store-address a {
  display: inline-block;
  background: #f2f2f2;
  padding: 3px 5px;
}
.store-list .btn-select {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.store-list .btn-select a {
  display: block;
  color: #fb9929;
  padding: 3px 15px;
  border: #fb9929 1px solid;
  border-radius: 30px;
}
.store-list .btn-select a:hover {
  color: #FFF;
  background-color: #fb9929;
}
#select-store-modal .txt-notice2 {
  float: right;
  margin-top: -20px;
}

/*------- form-style1 -----------*/
.form-style1 {
  background: #FFF;
  padding: 30px;
  border: #CCC 3px dashed;
  box-shadow: 5px 5px 1px #e6e6e6;
  border-radius: 20px;
  margin-top: 30px;
}
.form-style1 h5.form-section {
  margin-bottom: 20px;
  text-align: center;
  padding: 5px;
  font-weight: bold;
  color: #FFF;
  background: #659FE9;
  border-radius: 30px
}
.form-style1 input.form-control {
  border: #e4e4e4 1px solid;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.form-style1 .form-control:disabled, .form-style1 .form-control[readonly] {
    background-color: #ECEFF1;
}

/*------- about-womo-block ---------*/
.about-womo-block {
  position: relative;
  float: left;
  width: 100%;
  min-height: 850px;
  padding: 50px 0;
  background: url(../images/about_womo.jpg) no-repeat center bottom;
  text-align: center;
}
.womo-slogn {
  text-align: center;
  color: #FFF;
  font-size: 2.2rem;
  text-shadow: -1px -1px 0 #d67718, 1px -1px 0 #d67718, -1px 1px 0 #d67718, 1px 1px 0 #d67718, 3px 3px 0px #d67718;
}
.womo-logo {
  text-align: center;
  margin: 30px 0;
}
.womo-logo img {
  width: 200px;
}
.about-womo-block .txt {
  display: inline-block;
  color: #FFF;
  padding: 7px 12px;
  font-size: 1.4rem;
  border: #FFF 1px solid;
  margin-bottom: 50px;
}
.about-womo-block .btn-area {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 600px) {
  .about-womo-block {
    padding: 30px 0;
    min-height: inherit;
    background: url(../images/about_womo_m.jpg) no-repeat center bottom;
    background-size: 100%;
  }
  .womo-slogn {
    font-size: 1.4rem;
  }
  .womo-logo {
    margin: 10px 0;
  }
  .womo-logo img {
    width: 120px;
  }
  .about-womo-block .txt {
    font-size: 1rem;
    margin-bottom: 60%;
  }
  .about-womo-block .btn-area {
    margin-bottom: 10px;
  }
  .about-womo-block .btn-round-border {
    font-size: 1rem;
    transform: scale(0.8);
  }
} 

/*================================================================================
  fixed-btn-block
================================================================================*/
.fixed-btn-block {
  position: fixed;
  right: 15px;
  top: 13%;
  text-align: center;
  z-index: 999;
}

.fixed-btn-block a {
  display: block;
  width: 65px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  border-radius: 80px;
  background: #FFF;
  padding: 5px;
  text-align: center;
  margin-bottom: 15px;
  transition: 0.2s;
}

.fixed-btn-block a:hover {
  transform: scale(1.1);
}

.fixed-btn-block a .pic {
  display: block;
}

.fixed-btn-block a .pic img {
  width: 100%;
  display: block;
}

.fixed-btn-block a .txt {
  display: inline-block;
  font-size: 1.3rem;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
}

.fixed-btn-block a.fixed-btn-challenge .pic {
  padding: 10px 10px 5px 10px;
}

.fixed-btn-block a.fixed-btn-upload .pic {
  padding: 0 0 5px 0;
}

.fixed-btn-block a.fixed-btn-news .pic {
  padding: 10px 0 5px 5px;
}

.fixed-btn-block a.fixed-btn-news {
  position: relative;
}

.fixed-btn-block a.fixed-btn-news .txt_n {
  display: block;
  position: absolute;
  top: 5px;
  left: -10px;
  background: #f00;
  color: #FFF;
  border-radius: 30px;
  padding: 0 5px;
  font-size: 0.8rem;
  animation-duration: 0.5s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  transform: rotate(5deg);
  transition: 0.5s;
}

@keyframes slidein {
    from {
      transform: rotate(5deg);
      background: #d80202;
    }

    to {
      transform: rotate(-5deg);
      background: #f00;
    }
}

@media (min-width: 600px) {
  .home_page .fixed-btn-block a.fixed-btn-upload {
    display: none;
  }
}

@media (max-width: 600px) {
  .fixed-btn-block a.fixed-btn-challenge {
    display: none;
  }
  .fixed-btn-block a.fixed-btn-news .txt_n {
    top: -8px;
    left: 15px;
  }
}

/*================================================================================
  footer
================================================================================*/
.footer {
  position: relative;
  overflow: hidden;
  float: left;
  width: 100%;
  padding: 20px 15px;
  background: #FFF;
}

.footer a {
  color: #9e9eaf;
}

.footer a:hover {
  color: #FFF;
}

.footer-left-block {
  float: left;
}

.footer-right-block {
  float: right;
  margin-right: 30px;
}

.footer-right-block .share-btn {
  margin-top: 10px;
}

.bot-logo {
  float: left;
}

.bot-logo img {
  width: 200px;
}

.footer-copyright {
  float: right;
  margin-top: 20px;
  margin-left: 20px;
}

/*================================================================================
      ad-store-block
======================================================================================== */
.ad-store-block {
  clear: both;
  background: #ebded5;
  padding-bottom: 100px;
}
.ad-store-block .inner-block {
  max-width: 980px;
}
.ad-store-block h4 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2rem;
}
.ad-store-block h4 b {
  font-size: 2.6rem;
}
.ad-store-list {
  margin-bottom: 20px;
}
.ad-store-block ul {
  display: flex;
  flex-wrap: wrap;
}
.ad-store-block ul li {
  display: flex;
  padding: 20px 10px;
  /*align-items: center;*/
}
.ad-store-block ul li .pic a {
  display: block;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 0px 5px 1px rgb(128 128 128 / 15%);
  padding: 4px;
}
.ad-store-block ul li .pic img {
  border-radius: 5px;
  border: #f1f1f1 1px solid;
  display: block;
}
.ad-store-block ul li .right {
  margin-left: 15px;
}
.ad-store-block ul li .title {
  display: block;
  margin-top: 10px;
}
.ad-store-block ul li .txt {
  font-size: 0.9rem;
  color: #666;
}
.ad-store-block ul li .btn-go {
  display: inline-block;
  font-size: 0.9rem;
  color: #b18589;
  transition: 0.2s;
}
.ad-store-block ul li .btn-go:hover {
  transform: translateX(3px);
}

.ad-block1 {
  margin-bottom: 10px;
}
.ad-block1 li {
  width: 33.33%;
}
.ad-block1 li .pic img {
  width: 120px;
}
.ad-block2 li {
  width: 25%;
  justify-content: center;
}
.ad-block2 li .pic img {
  width: 80px;
}
.ad-block2 li:nth-child(1), .ad-block2 li:nth-child(2), .ad-block2 li:nth-child(3) {
  width: 33.33%;
}
.ad-block2 li:nth-child(1) .pic img, .ad-block2 li:nth-child(2) .pic img, .ad-block2 li:nth-child(3) .pic img {
  width: 120px;
}

.ad-school-list ul {
  display: flex;
  align-items: center;
}
.ad-school-list li {
  width: 20%;
  align-items: center;
}
.ad-school-list span {
  display: block;
}
.ad-school-list .pic img {
  width: 60px;
}
.ad-school-list span.txt {
  padding-left: 15px;
  color: #2f2f2f !important;
}

@media(max-width: 600px) {
  .ad-store-block {
    padding: 30px 0;
  }
  .ad-store-block h4 {
    margin-bottom: 10px;
  }
  .ad-block1 li {
    width: 100%;
  }
  .ad-block2 li {
    width: 50% !important;
    justify-content: flex-start;
  }
  .ad-block2 li .pic img {
    width: 60px !important;
  }
  .ad-school-list li {
    width: 33.33%;
  }
}

@media(max-width: 414px) {
  .ad-block2 li {
    width: 100% !important;
  }
  .ad-school-list li {
    width: 50%;
  }
}

/*================================================================================
    croppie
================================================================================*/
.upload-face-pic label.cabinet {
  display: block;
  cursor: pointer;
}

.upload-face-pic label.cabinet input.file {
  position: relative;
  height: 100%;
  width: 120px;
  opacity: 0;
  -moz-opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  margin-top: -30px;
}

#upload-demo {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  padding-bottom: 25px;
}

#upload-square {
  width: 100%;
}

#upload-square.croppie-container .cr-boundary {
  width: 432px;
  height: 173px;
}

@media(max-width: 468px) {
  #upload-square.croppie-container .cr-boundary {
    width: 292px;
    height: 117px;
  }
}

#upload-square.croppie-container .cr-viewport,
#upload-square.croppie-container .cr-resizer {
  width: 100% !important;
  height: 100% !important;
  border: 2px solid #d8d8d8 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.cabinet_banner {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.cabinet_banner figure {
  margin-bottom: 0;
}

.cabinet_banner .item-img {
  display: none;
}

#cropImagePop .modal-footer .btn {
  padding: 5px 15px;
}

#cropImagePop .modal-footer .btn-outline-secondary {
  color: #fff;
  background-color: #828282;
}
#cropImagePop .modal-footer .btn-outline-secondary:hover {
  color: #fff;
  background-color: #545454;
}
#cropImagePop .modal-footer .btn-red {
  color: #fff;
  background-color: #da5171;
}
#cropImagePop .modal-footer .btn-red:hover {
  color: #fff;
  background-color: #b13b56;
}

/*--------- modal ---------*/
.txt-notice {
  margin: 30px 0 0 0;
  color: #4f92ad;
  text-align: center;
}

.txt-notice2 {
  color: #af7979;
  font-size: 0.9rem;
  text-align: center;
}

.form-style {
  margin: 0 0 30px 0;
}

.form-style dl {
  position: relative;
  padding-left: 60px;
}

.form-style dt {
  position: absolute;
  top: 8px;
  left: 0;
}

.form-style input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 0;
  outline: 0;
  background: #f2f2f2;
}

.sw .toolbar {
  display: none;
}

/*--- award-select ----*/
.award-select ul {
  display: inline-flex;
  margin: 30px 0 20px 0;
}

.award-select ul li img {
  width: 100%;
}

.award-select ul li {
  display: block;
  margin: 10px 20px 20px 20px;
}

.award-select ul li label {
  display: block;
  background: #f1f1f1;
  border: #d6d6d6 2px solid;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  width: 213px;
  height: 100%;
  cursor: pointer;
}

.award-select ul li input {
  position: absolute;
  visibility: hidden;
}

.award-select ul li span {
  display: block;
  margin-bottom: 5px;
}
.award-select ul li span.txt {
  font-size: 1.1rem;
}
.award-select ul li span.desc {
  color: #8e6666;
  font-size: 0.9rem;
}
.award-select ul li span.txt > b {
  color: #4c84a5;
}
.award-select ul li span.txt span {
  display: block;
  background: #FFF;
  margin: 10px -10px -15px -10px;
  padding: 10px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
.award-select ul li span.txt span b {
  font-size: 1.5rem;
  color: #c53636;
}

.award-select ul li label:hover,
.award-select ul li.active label {
  border-color: #da5171;
  background: #f1efef;
}

.award-select .txt-notice2 {
  margin: 0 0 20px 0;
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  .award-select ul li span.txt span {
    padding: 10px 0;
  }
  .award-select ul li span.txt span b {
    font-size: 1.1rem;
  }
}

/*------- myface_share_page ----------*/
.myface_share_page .main {
  margin-top: -80px;
}
.myface_share_page .banner > .text-center {
  padding: 0 15px;
}
.myface_share_page .banner-slogn {
  position: relative;
}
.myface_share_page .banner .txt-desc {
  position: relative;
  padding-left: 15px;
  padding-right: 70px;
  margin-bottom: 10px;
}
.myface_share_page .banner .text-center .txt-bag {
  padding-right: 0;
  padding-left: 0;
}
.myface_share_page .banner .text-center .pic-bag {
  position: absolute;
  z-index: 9;
  right: 0;
  top: 0;
  display: block;
  transform: rotate(15deg);
}
.myface_share_page .banner .text-center .pic-bag img {
  width: 60px;
}
.txt-word-b {
  margin-top: 5px;
  font-size: 1.5rem;
}
.myface_share_page .fixed-btn-block {
  display: none;
}
.select_award_arrow {
  opacity: 0.8;
  padding: 0 10px;
  margin-bottom: 30px;
}
.select_award_arrow img {
  max-width: 100%;
}
@media (min-width: 600px) {
  .myface_share_page .banner .inner-block {
    max-width: 1200px;
  }
  .myface_share_page .banner-slogn {
    position: absolute;
    width: 30%;
  }
  .myface_share_page .banner-slogn img {
    width: 100%;
  }
  .myface_share_page .word1 {
    display: none;
  }
  .myface_share_page .banner .txt-desc {
    padding-left: 0;
    padding-right: 0;
  }
  .myface_share_page .banner .text-center .pic-bag {
    right: -10px;
    top: 0px;
  }
  .myface_share_page .banner .text-center .pic-bag img {
    width: 60px;
  }
  .myface_share_page .banner .text-center .txt-bag {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 900px) {
  .myface_share_page .footer {
    padding-bottom: 30px;
  }
}
@media (max-width: 300px) {
  .myface_share_page .banner .txt-desc {
    padding-left: 0;
    padding-right: 70px;
  }
  .myface_share_page .banner .text-center .pic-bag {
    right: 0;
  }
}

/*--- vot-select ---*/
#share_to_friend .inner-block {
  max-width: 500px;
  padding: 0;
  z-index: 992;
}
.vot-select, #share_to_friend .vot-select2 {
  margin-top: -40px;
}

.vot-select ul {
  display: flex;
  margin: 0 auto 30px auto;
  max-width: 550px;
}

.vot-select ul li .pic {
  
}

.vot-select ul li {
  width: 50%;
  display: block;
  margin: 10px 20px;
}

.vot-select ul li .btn-select {
  display: block;
  width: 100%;
  height: 100%;
  border: #b5b5b5 3px solid;
  border-radius: 10px;
  background: #FFF;
  padding: 5px;
  box-shadow: 5px 5px 1px #c7c7c7;
  outline: 0;
  -webkit-appearance: none;  /* Safari 和 Chrome，常用於iOS下移除內建樣式 */
  -moz-appearance: none;     /* FireFox */
  appearance: none;
}

.vot-select .btn-select > span {
  display: block;
  color: #eaeaea;
  background: #b5b5b5;
  padding: 15px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.3s;
  
}

/*.vot-select ul li label {
  display: block;
  color: #eaeaea;
  background: #b5b5b5;
  padding: 15px;
  text-align: center;
  width: 213px;
  cursor: pointer;
  transition: 0.3s;
}

.vot-select ul li input {
  visibility: hidden;
  position: absolute;
  z-index: -1;
}*/

.vot-select ul li span {
  display: block;
}

.vot-select ul li span.pic {
  margin: 10px 0 10px 0;
}
.vot-select ul li span.pic img {
  width: 40px;
  opacity: 0.8;
}

.vot-select ul li span.txt {
  margin-bottom: 10px;
}

.vot-select ul li span.txt b {
  display: block;
  font-size: 1.3rem;
  color: #FFF;
  margin-top: -5px;
  margin-bottom: 5px;
}

.vot-select ul li:first-child .btn-select, .vot-select ul li:first-child.active {
  box-shadow: 3px 3px 1px #fa90c1;
  border-color: #d4327a;
}

.vot-select ul li:first-child .btn-select > span, .vot-select ul li:first-child.active label {
  background: #d4327a;
  color: #ffdfee;
}

.vot-select ul li:last-child .btn-select, .vot-select ul li:last-child.active {
  box-shadow: 3px 3px 1px #9ac7c5;
  border-color: #139a95;
}

.vot-select ul li:last-child .btn-select > span, .vot-select ul li:last-child.active label {
  color: #baecea;
  background: #139a95;
}

@media (min-width: 600px) {
  .vot-select ul li:first-child:hover .btn-select {
  border-color: #c71d69;
}
.vot-select ul li:first-child:hover .btn-select > span {
  background: #c71d69;
}
  .vot-select ul li:last-child:hover .btn-select {
  border-color: #078681;
}
.vot-select ul li:last-child:hover .btn-select > span {
  background: #078681;
}

.vot-select ul li .btn-select:hover,
.vot-select ul li.active {
  transform: translate(2px, 2px);
}

}

.vot-select2 ul {
  display: flex;
}

.vot-select2 ul li {
  width: 50%;
  display: block;
  margin: 10px;
}

.vot-select2 ul li .btn-select {
  display: block;
  width: 100%;
  height: 100%;
  border: #b5b5b5 3px solid;
  border-radius: 10px;
  color: #eaeaea;
  background: #b5b5b5;
  padding: 5px;
  text-align: center;
  box-shadow: 5px 5px 1px #c7c7c7;
  outline: 0;
  transition: 0.3s;
  -webkit-appearance: none;  /* Safari 和 Chrome，常用於iOS下移除內建樣式 */
  -moz-appearance: none;     /* FireFox */
  appearance: none;
}

.vot-select2 ul li:first-child .btn-select {
  box-shadow: 3px 3px 1px #fa90c1;
  border-color: #d4327a;
  background: #d4327a;
  color: #ffdfee;
}

.vot-select2 ul li:last-child .btn-select {
  box-shadow: 3px 3px 1px #9ac7c5;
  border-color: #139a95;
  color: #baecea;
  background: #139a95;
}

.vot-select2 ul li .pic {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  background-size: 100%;
}

.vot-select2 ul li .pic img {
  display: none;
}

.vot-select2 ul li .txt {
  display: inline-block;
  font-size: 1.2rem;
}

.vot-select2 ul li:first-child .pic {
  background-image: url(../images/icon_smile.svg);
}

.vot-select2 ul li:last-child .pic {
  background-image: url(../images/icon_dis.svg);
}
@media (min-width: 600px) {
  .vot-select2 ul li .btn-select {
    transition: 0.1s;
  }
  .vot-select2 ul li .btn-select:hover {
    transform: translate(2px, 2px);
  }
  .vot-select2 ul li:first-child .btn-select:hover {
    box-shadow: 2px 2px 1px #fa90c1;
  }
  .vot-select2 ul li:last-child .btn-select:hover {
    box-shadow: 2px 2px 1px #9ac7c5;
  }
}

/*---- modal-info-box ------*/
.modal-info-box {
  text-align: center;
}
#norecive-code {
  text-align: left;
}
.norecive-word {
  text-align: right; 
  display: block; 
  text-decoration: underline; 
  color: #666;
}
.modal-info-box .modal-header {
  padding: 0 !important;
}
.modal-info-box .modal-dialog {
  max-width: 550px;
  /*top: 50% !important;
  -webkit-transform: translate(0,-50%) !important;
  transform: translate(0,-50%) !important;*/
}
.modal-info-box h4 {
  font-size: 1.5rem;
  margin: 15px 0;
}
.modal-info-box .txt {
  font-size: 1.1rem;
  color: #797979;
}
.modal-info-box .modal-btn li a {
  margin: 20px auto;
}
/*.modal-info-box .modal-btn li:nth-child(2) {
  color: #a9a9a9;
  padding: 5px 0;
}*/
.modal-info-box .modal-btn li:nth-child(2) a {
  background-color: #636363;
}

.home_page .modal-backdrop.in {
  opacity: 0.7;
}
.modal-info-box2 .modal-dialog {
  max-width: 550px;
  /*transform: translate(0,-50%) !important;
  top: 50% !important;*/
}
.modal-info-box2 .modal-content {
  /*background-color: #bf7a2e;*/
  background-color: transparent;
  box-shadow: none;
  border-radius: 15px;
}
.modal-info-box2 .modal-header {
  min-height: 0px;
  padding: 0;
  border: 0;
}
.modal-info-box2 .modal-body {
  padding: 5px;
}
.modal-info-box2 .modal-body img {
  width: 100%;
}
@media(min-width: 1025px) {
  .modal-info-box2.modal .close {
    top: 40px;
    right: 40px;
  }
  .modal-info-box2 .modal-dialog {
    max-width: 1000px !important;
    width: auto;
  }
  .modal-info-box2 .modal-body {
    display: flex;
    align-items: center;
  }
  .modal-info-box2 .modal-body img {
    display: block;
    width: 57%;
  }
  .modal-info-box2 .modal-body a {
    display: block;
    width: 50%;
    margin-left: -7%;
  }
  .modal-info-box2 .modal-body a img {
    width: 100%;
  }
}

/*---- content-inner --*/
.content-inner {
  max-width: 800px;
  min-height: 300px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.content-inner h4, .content-inner .title-h4 {
  margin: 10px 0;
  font-size: 1.2rem;
}
.content-inner h4 i, .content-inner .title-h4 i {
  display: inline-block;
  transform: rotate(90deg);
}
.content-inner h4 span, .content-inner .title-h4 span {
  display: inline-block;
  color: #FFF;
  background: #659FE9;
  border-radius: 30px;
  padding: 3px 15px;
}
.content-inner p {
  margin-bottom: 5px;
}
.list-style ul {
  padding-left: 20px;
}
.list-style ul li {
  list-style: decimal;
}
.list-style ul li span {
  color: #af4900;
}
.list-style ul li span.txt-red-s, .txt-red-s {
  color: #de0505;
  font-size: 1rem;
}
.list-style ul li li {
  list-style: disc;
}
.video-block {
  max-width: 700px;
  background: #FFF;
  padding: 15px;
  margin: 30px auto 50px auto;
  border-radius: 20px;
  border: #CCC 3px dashed;
  box-shadow: 5px 5px 1px #e6e6e6;
}
.video-block span, .video-block div {
  display: block;
  position: relative;
  /*padding-bottom: 56.25%;*/
  overflow: hidden;
}
.video-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.video-block img {
  width: 100%;
  display: block;
}
.brand-logo {
  margin: 50px 0;
}




.welcome-video-block {
  max-width: 700px;
  background: #d05445;
  padding: 20px;
  margin: 30px auto 50px auto;
  border-radius: 30px;
  box-shadow: 5px 5px 1px #a53e33;
}
.welcome-video-block span {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 15px;
  border: #ab4136 5px solid;
}
.welcome-video-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.count-box {
  max-width: 550px;
  margin: 0 auto;
}
.count-down{
  display: flex;
  width: 100%;
  margin: 10px 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.count-down .timer{
  height: 100%;
  width: 100px;
  border: #6a3906 2px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdd201;
  color: #6a3906;
}
.count-down .timer .numb{
  font-size: 30px;
  font-weight: 500;
}
.count-down .timer .text{
  font-size: 15px;
}
.count-down .clone{
  font-size: 45px;
}
.welcome-page .sub-title {
  margin-bottom: 30px; 
  margin-top: -30px;
}
.welcome-page .btn-green {
  margin-bottom: 30px;
}
.welcome-page .get-friend-number {
  margin-top: 0;
  max-width: 500px;
}
.get-friend-number .count-down .timer {
  height: 80px;
  width: 80px;
  background: #fff8d7;
  color: #6a3906;
  border: 0;
  box-shadow: 4px 4px 1px #f3eedb inset;
}
.get-friend-number .count-down .clone {
  color: #c3905a;
}
@media (max-width: 600px) {
  .welcome-page .sub-title {
    margin-top: -10px;
  }
  .welcome-page .footer {
    padding-bottom: 40px;
  }
  .count-down .timer .numb{
    font-size: 20px;
  }
  .count-down .timer .text{
    font-size: 13px;
  }
  .count-down .clone{
    font-size: 40px;
  }
}
@media (max-width: 542px){
  .count-down .timer{
    height: 70px !important;
    width: 70px !important;
  }
  .count-down .timer .numb{
    font-size: 28px;
  }
  .count-down .timer .text{
    font-size: 15px;
  }
  .count-down .clone{
    display: none;
  }
}
@media (max-width: 340px){
  .welcome-page .sub-title {
    font-size: 2rem;
    margin-top: -20px;
    margin-bottom: 20px;
  }
  .count-down .timer{
    height: 50px !important;
    width: 50px !important;
  }
  .count-down .timer .numb {
    font-size: 20px;
  }
  .count-down .timer .text {
    font-size: 15px;
    line-height: 15px;
  }
}

/*---- list-box -------*/
.list-box ul {
  display: flex;
  flex-wrap: wrap;
}
.list-box ul li {
  padding: 10px;
  margin-bottom: 10px;
}
.list-box ul li a {
  display: block;
  padding: 10px;
  height: 100%;
  border-radius: 15px;
}
.list-box ul li:nth-child(1) a, .list-box ul li:nth-child(5) a {
  background: #8192DA;
}
.list-box ul li:nth-child(2) a, .list-box ul li:nth-child(6) a {
  background: #D468A1;
}
.list-box ul li:nth-child(3) a, .list-box ul li:nth-child(7) a {
  background: #E18887;
}
.list-box ul li:nth-child(4) a, .list-box ul li:nth-child(8) a {
  background: #E8962A;
}
.list-box ul li .pic {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
.list-box ul img {
  width: 100%;
  display: block;
  transition: 0.3s;
}
.list-box ul li a:hover .pic img {
  transform: scale(1.08);
}
.list-box ul li .txt {
  display: block;
  color: #FFF;
}

.list-row-4 li {
  flex: 0 0 25%;
}

/*------ method-list -------*/
.method-list {
  position: relative;
  margin-top: 80px;
}
.method-list:before {
  position: absolute;
  top: 100px;
  left: 45px;
  content: " ";
  width: 10px;
  height: 78%;
  background: rgb(125,146,217); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(125,146,217,1) 0%, rgba(223,98,149,1) 21%, rgba(255,175,54,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(125,146,217,1) 0%,rgba(223,98,149,1) 21%,rgba(255,175,54,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(125,146,217,1) 0%,rgba(223,98,149,1) 21%,rgba(255,175,54,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d92d9', endColorstr='#ffaf36',GradientType=0 ); /* IE6-9 */
}
.method-list dl {
  position: relative;
  padding-left: 150px;
  margin-bottom: 50px;
}
.method-list dt {
  position: absolute;
  top: 20px;
  left: 0;
  border-radius: 100px;
  text-align: center;
  background: #8192DA;
}
.method-list dt span {
  display: block;
  background: #FFF;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 80px;
  margin: 10px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}
.method-list dd {
  position: relative;
  background: #E9EBF4;
  border-radius: 20px;
  padding: 30px 50px;
  font-size: 1.2rem;
  box-shadow: 10px 10px 1px #8192DA;
}
.method-list dd:after {
  content: " ";
  position: absolute;
  top: 60px;
  left: -15px;
  width: 0px;
  height: 0px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 15px solid;
}

.method-list .method-step1 dt {
  color: #8192DA;
  background: #8192DA;
}
.method-list .method-step1 dd {
  background: #E9EBF4;
  box-shadow: 10px 10px 1px #8192DA;
}
.method-list .method-step1 dd:after {
  border-right-color: #E9EBF4;
}

.method-list .method-step2 dt {
  color: #D468A1;
  background: #D468A1;
}
.method-list .method-step2 dd {
  background: #F9EDF4;
  box-shadow: 10px 10px 1px #D468A1;
}
.method-list .method-step2 dd:after {
  border-right-color: #F9EDF4;
}

.method-list .method-step3 dt {
  color: #E18887;
  background: #E18887;
}
.method-list .method-step3 dd {
  background: #F9F2F2;
  box-shadow: 10px 10px 1px #E18887;
}
.method-list .method-step3 dd:after {
  border-right-color: #F9F2F2;
}

.method-list .method-step4 dt {
  color: #FFAF36;
  background: #FFAF36;
}
.method-list .method-step4 dd {
  background: #FCF5ED;
  box-shadow: 10px 10px 1px #E8962A;
}
.method-list .method-step4 dd:after {
  border-right-color: #FCF5ED;
}

.method-list .title {
  margin-bottom: 10px;
}
.method-list .title img {
  height: 45px;
}
.method-step-list {
  display: flex;
  margin-bottom: 60px;
}
.method-step-list .pic {
  margin-right: 30px;
}
.method-step-list .pic img {
  width: 250px;
}
.method-step-list .txt {
  margin-top: 40px;
}
.method-step-list .txt .btn-go {
  border: #44af34 1px solid;
  color: #FFF;
  background-color: #44af34;
  border-radius: 30px;
  padding: 3px 5px 3px 10px;
  font-size: 1.1rem;
  margin-top: 15px;
}
.method-step-list .txt .btn-go:hover {
  background: #359627;
}
.method-step-list .txt .btn-go span {
  transition: 0.2s;
}
.method-step-list .txt .btn-go:hover span {
  margin-left: 5px;
}
.method-award-list ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.method-award-list ul li {
  flex: 1;
}
.method-award-list ul li:nth-child(2) {
  flex: initial;
  padding: 0 20px;
  align-self: center;
  color: #bb7d9e;
}
.method-award-list ul li a {
  display: block;
  height: 100%;
  background: #f3e1ea;
  border: #d4b6c6 2px dotted;
  border-radius: 10px;
  padding: 20px 10px;
}
.method-award-list ul li span {
  display: block;
  font-size: 1rem;
  text-align: center;
  color: #a22467;
}
.method-award-list ul li span.pic img {
  max-width: 100%;
  max-height: 100px;
}
.method-award-list ul li span.txt {
  margin-top: 10px;
}
.method-award-list ul li span b {
  display: block;
}


/*================================================================================
      fancybox settings
======================================================================================== */
/*.fancybox-bg {
    background: #efefef !important;
    opacity: 1 !important;
}
.fancybox-slide--html .fancybox-close-small {
  margin: 5px 10px;
    color: #FFF !important;
    padding: 5px !important;
  background: #35cea8 !important;
  border-radius: 100% !important;
  box-shadow: 2px 2px 1px rgb(0 0 0 / 0.2);
  transition: .3s;
  opacity: 1;
}
.fancybox-slide--html .fancybox-close-small:hover {
  transform: rotate(90deg);
  box-shadow: 2px -2px 1px rgb(0 0 0 / 0.2);
}*/
.modal-fancybox-block {
  width: 100%;
}

.modal-fancybox-block h4 {
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

/*back to top*/
.back-top-block {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.back-top-block>div {
  position: absolute;
  width: 35px;
  right: 15px;
}

#back-to-top {
  position: fixed;
  z-index: 996;
  width: 45px;
  height: 45px;
  bottom: 10px;
  right: 25px;
  text-align: center;
  color: #000;
  background: #FFF;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 19%);
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s ease-out;
  opacity: 0;
}

#back-to-top i {
  display: inline-block;
  font-size: 2rem;
  margin-top: -10px;
  color: #da5272;
}

#back-to-top span {
  display: block;
  font-size: 0.8rem;
  margin-top: -15px;
}

#back-to-top.show:hover {
  transform: scale(1.1);
}

#back-to-top.show {
  opacity: 1;
}

/* -------------------------------- 
swal 
-------------------------------- */
.swal-footer {
  text-align: center;
}
.swal-button {
  color: #fff;
  background-color: #828282;
  transition: 0.3s;
}
.swal-button--confirm {
  background-color: #da5171;
}
.swal-button.swal-button--confirm:hover, .swal-button.swal-button--confirm:active {
  background-color: #b13b56 !important;
}
.swal-button--cancel {
  color: #fff;
  background-color: #828282;
}
.swal-button--cancel:hover, .swal-button--cancel:active {
  background-color: #545454;
}
.btn-go-womoline {
  background: #4caf50;
}
.btn-go-womoline:hover {
  background: #3e9242
}

/* -------------------------------- 
xsigin/signup popup 
-------------------------------- */
.cd-user-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 54, 66, 0.9);
  z-index: 9999;
  overflow-y: auto;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0, visibility 0 0.3s;
  -moz-transition: opacity 0.3s 0, visibility 0 0.3s;
  transition: opacity 0.3s 0, visibility 0 0.3s;
}

.cd-user-modal.is-visible {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s 0, visibility 0 0;
  -moz-transition: opacity 0.3s 0, visibility 0 0;
  transition: opacity 0.3s 0, visibility 0 0;
}

.cd-user-modal.is-visible .cd-user-modal-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-user-modal-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: #FFF;
  margin: 3em auto 4em;
  cursor: auto;
  border-radius: 0.25em;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.cd-user-modal-container .cd-switcher:after {
  content: "";
  display: table;
  clear: both;
}

.cd-user-modal-container .cd-switcher li {
  width: 50%;
  float: left;
  text-align: center;
}

.cd-user-modal-container .cd-switcher li:first-child a {
  border-radius: .25em 0 0 0;
}

.cd-user-modal-container .cd-switcher li:last-child a {
  border-radius: 0 .25em 0 0;
}

.cd-user-modal-container .cd-switcher a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #d2d8d8;
  color: #809191;
}

.cd-user-modal-container .cd-switcher a.selected {
  background: #FFF;
  color: #505260;
}

@media only screen and (min-width: 600px) {
  .cd-user-modal-container {
    margin: 4em auto;
  }

  .cd-user-modal-container .cd-switcher a {
    height: 70px;
    line-height: 70px;
  }
}

.cd-form {
  padding: 1.4em;
}

.cd-form .fieldset {
  position: relative;
  margin: 1.4em 0;
}

.cd-form .fieldset:first-child {
  margin-top: 0;
}

.cd-form .fieldset:last-child {
  margin-bottom: 0;
}

.cd-form label {
  font-size: 14px;
  font-size: 0.875rem;
}

.cd-form label.image-replace {
  /* replace text with an icon */
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  text-shadow: none;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.cd-form label.cd-username {
  background-image: url("../img/cd-icon-username.svg");
}

.cd-form label.cd-email {
  background-image: url("../img/cd-icon-email.svg");
}

.cd-form label.cd-password {
  background-image: url("../img/cd-icon-password.svg");
}

.cd-form input {
  margin: 0;
  padding: 0;
  border-radius: 0.25em;
}

.cd-form input.full-width {
  width: 100%;
}

.cd-form input.has-padding {
  padding: 12px 20px 12px 50px;
}

.cd-form input.has-border {
  border: 1px solid #d2d8d8;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.cd-form input.has-border:focus {
  border-color: #343642;
  box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
  outline: none;
}

.cd-form input.has-error {
  border: 1px solid #d76666;
}

.cd-form input[type=password] {
  /* space left for the HIDE button */
  padding-right: 65px;
}

.cd-form input[type=submit] {
  padding: 16px 0;
  cursor: pointer;
  background: #2f889a;
  color: #FFF;
  font-weight: bold;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.no-touch .cd-form input[type=submit]:hover,
.no-touch .cd-form input[type=submit]:focus {
  background: #3599ae;
  outline: none;
}

.cd-form .hide-password {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 15px;
  border-left: 1px solid #d2d8d8;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  font-size: 0.875rem;
  color: #343642;
}

.cd-form .cd-error-message {
  display: inline-block;
  position: absolute;
  left: -5px;
  bottom: -35px;
  background: rgba(215, 102, 102, 0.9);
  padding: .8em;
  z-index: 2;
  color: #FFF;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0.25em;
  /* prevent click and touch events */
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0, visibility 0 0.2s;
  -moz-transition: opacity 0.2s 0, visibility 0 0.2s;
  transition: opacity 0.2s 0, visibility 0 0.2s;
}

.cd-form .cd-error-message::after {
  /* triangle */
  content: '';
  position: absolute;
  left: 22px;
  bottom: 100%;
  height: 0;
  width: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(215, 102, 102, 0.9);
}

.cd-form .cd-error-message.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s 0, visibility 0 0;
  -moz-transition: opacity 0.2s 0, visibility 0 0;
  transition: opacity 0.2s 0, visibility 0 0;
}

@media only screen and (min-width: 600px) {
  .cd-form {
    padding: 2em;
  }

  .cd-form .fieldset {
    margin: 2em 0;
  }

  .cd-form .fieldset:first-child {
    margin-top: 0;
  }

  .cd-form .fieldset:last-child {
    margin-bottom: 0;
  }

  .cd-form input.has-padding {
    padding: 16px 20px 16px 50px;
  }

  .cd-form input[type=submit] {
    padding: 16px 0;
  }
}

.cd-form-message {
  padding: 1.4em 1.4em 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .cd-form-message {
    padding: 2em 2em 0;
  }
}

.cd-form-bottom-message {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -30px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}

.cd-form-bottom-message a {
  color: #FFF;
  text-decoration: underline;
}

.cd-close-form {
  /* form X button on top right */
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0;
  top: -40px;
  background: url("../img/cd-icon-close.svg") no-repeat center center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

@media only screen and (min-width: 1170px) {
  .cd-close-form {
    display: none;
  }
}

#cd-login,
#cd-signup,
#cd-reset-password {
  display: none;
}

#cd-login.is-selected,
#cd-signup.is-selected,
#cd-reset-password.is-selected {
  display: block;
}

/*modal*/
.float-right {
    float: right !important;
}
.modal .close {
    position: absolute;
    top: -15px;
    right: -15px;
    line-height: 1;
    background: #fa657b;
    color: #FFF;
    width: 44px;
    height: 44px;
    border-radius: 40px;
    opacity: 1;
    text-shadow: none;
    font-weight: normal;
    z-index: 9;
}
.modal .close:after {
    font: normal normal normal 20px/1 IcoFont;
    content: "\eee1";
}
.modal.fade .modal-dialog {
  top: 0;
  padding: 0 15px;
  margin: 30px auto !important;
}
.modal .modal-content {
  border: 0;
}

/*--- notice-box ----*/
#notice-box .modal-dialog {
  max-width: 650px;
  width: auto;
}
#notice-box .modal-header {
  border: 0;
  margin-bottom: 30px;
}
#notice-box .modal-header .title-bar-g span {
  width: 100%;
  padding: 5px 10px;
}
#notice-box .modal-body {
  padding: 0;
  text-align: left;
}
#notice-box .modal-content {
  padding: 20px;
  margin: 0;
  color: #5d5d5d;
  border: #4abcbb 1px solid;
  box-shadow: 5px 5px 1px #4abcbb;
}
#notice-box .modal-content ol {
  list-style: outside;
  list-style-type:decimal;
  padding-left: 20px;
}
#notice-box .modal-content ol li {
  margin-bottom: 10px;
}
.txt-org {
  color: #b34510;
}
#notice-box .modal-content ol li b {
  font-weight: bold;
  color: #000;
}
#notice-box .modal-content .modal-body {
  margin-top: 45px;
  background: #f7f3f3;
  padding: 20px;
  border-radius: 10px;
}
.date-bar {
  margin-top: -30px;
  margin-bottom: 10px;
}
.date-bar span {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3px 20px;
  color: #b98000;
  background: #e8d7b0;
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 30px;
}
.date-bar:after {
  display: none;
  position: absolute;
  content: " ";
  top: 14px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff6dd;
}
.p-title {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.btn-close2 {
  display: inline-block;
  font-size: 0.9rem;
  color: #333;
  border: #333 2px solid;
  padding: 5px 25px;
  border-radius: 30px;
  outline: 0 !important;
  margin-top: 10px;
}

/*----- invitation_page ------*/
.invitation_page .sub-title {
  margin-top: -10px;
  margin-bottom: 30px; 
  font-size: 2.5rem;
}
.invitation_page .content-inner {
  /*margin-top: 30px;*/
}
@media(max-width: 600px) {
  .invitation_page .sub-title {
    font-size: 1.8rem;
  }
}

/* animation settings
======================================================================================== */
.fuwafuwa {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
  animation-name: anim_ptn01;
}

@keyframes anim_ptn01 {
  0% {
    transform: translate(0, 0px);
  }

  100% {
    transform: translate(0, -15px);
  }
}

.shakeshake {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.8s;
  animation-name: anim_ptn02;
}

@keyframes anim_ptn02 {
  0% {

    transform: rotate(0deg);
  }

  7% {
    transform: rotate(-9deg);
  }

  10% {

    transform: rotate(8deg);
  }

  12% {
    transform: rotate(-5deg);
  }

  15% {

    transform: rotate(0deg);
  }

  100% {

    transform: rotate(0deg);
  }
}


.nav .top-link,
.btn-mobile {
  display: none;
}

@media (max-width: 900px) {
  header .share-btn {
    display: none;
  }

  .btn-mobile {
    display: block;
  }

  /*mybag-block*/
  .mybag-block-inner .coin-list {
    width: 33.33%;
  }

  /*voucher-list*/
  .voucher-block {
    margin-bottom: 40px;
  }
  .voucher-list {
    width: 96%;
  }

  /*rank*/
  .rank-list.rank-me {
    position: fixed;
    bottom: 120px;
    z-index: 998;
    left: 0;
    transform: none;
    width: 96%;
    margin: 0 2%;
  }

  /*method-list*/
  .method-list dl {
    padding-left: 120px;
  }

  /*list-box*/
  .list-row-4 li {
    flex: 0 0 33.33%;
  }

  /*footer*/
  .footer {
    padding-bottom: 140px;
  }
  .voucher-detail-page .footer {
    padding-bottom: 0;
  }
  .footer-left-block {
    width: 100%;
    text-align: center;
  }
  .bot-logo {
    display: none;
  }
  .footer-copyright {
    float: none;
    margin-left: 0;
  }
  .footer-right-block {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }

  /*#back-to-top*/
  #back-to-top {
    bottom: 15%;
  }

  /*fixed-btn-block*/
  .fixed-btn-block {
    width: 100%;
    right: 0;
    bottom: 0;
    top: inherit;
    display: flex;
  }
  .fixed-btn-block a {
    display: flex;
    align-items: center;
    width: 50%;
    margin: 10px 5px;
    padding: 10px;
    border-radius: 15px;
  }
  .fixed-btn-block a:hover {
    transform: none;
  }
  .fixed-btn-block a .pic {
    display: inline-block;
    width: 80px;
    margin-bottom: 0;
  }
  .fixed-btn-block a.fixed-btn-upload .pic {
    padding: 0;
  }
  .fixed-btn-block a.fixed-btn-challenge .pic {
    padding: 5px 10px;
  }
  .fixed-btn-block a .txt {
    flex: 1;
    font-size: 1.8rem;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    margin-bottom: 0;
  }

}

@media (max-width: 600px) {
  .v_web {
    display: none !important;
  }
  .v_mobile {
    display: block !important;
  }
  .banner {
    margin: 0;
    background: url(../images/top_bg_line.png) no-repeat right bottom;
  }
  .banner .inner-block {
    width: 80%;
    display: block;
  }
  .banner-subslogn {
    margin-top: -20px;
  }
  .banner_word {
    display: none;
  }
  .main {
    margin-top: -100px;
  }
  .title-bar-g span {
    padding: 15px;
    font-size: 1.3rem;
  }
  .txt-desc {
    font-size: 1.1rem;
    margin-top: 20px;
    line-height: 1.8rem;
  }
  .title-moto span .pic {
    display: none;
  }

  /*btn*/
  .btn-round-border {
    padding: 8px 15px;
  }
  .btn-round-border:hover {
    transform: none;
    box-shadow: 5px 5px 1px #e6e6e6;
  }

  /*.face-upload*/
  .face-upload-outer {
    background: url(../images/bg_circle_m.png) no-repeat center center;
    background-size: 115%;
    margin-top: 40px;
    padding: 50px 20px 0 20px;
  }
  .face-upload-block .mask {
    font-size: 1.2rem;
  }
  .face-upload-block .mask .pic img {
    width: 50px;
  }
  .btn-reset-pic {
    right: 3%;
    bottom: 10%;
  }

  /*myface*/
  .get-friend-number {
    margin-top: -35px;
  }

  /*share*/
  .share-to-friend .share-btn ul li {
    margin: 7px;
  }
  .share-to-friend .share-btn ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 2rem;
  }
  .share-to-friend .share-btn ul li.btn-email a i {
    font-size: 1.6rem;
  }
  .share-btn ul li.btn-message {
    display: block;
  }
  .share-to-friend .share-btn ul li.btn-message a i {
    font-size: 1.6rem;
  }
  #share-modal .share-to-friend {
    
  }
  #share-modal .modal-body {
    padding: 20px 0;
  }
  #share-modal .share-btn ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.6rem;
  }
  #share-modal .share-btn ul li.btn-email a i, #share-modal .share-btn ul li.btn-message a i {
    font-size: 1.4rem;
  }
  /*.modal .share-btn, .modal .share-btn ul {
    display: block;
  }
  .modal .share-btn ul li {
    margin: 0 0 20px 0;
  }
  .modal .share-btn ul li a {
    width: 100%;
    height: auto;
    line-height: 40px;
  }
  .modal .share-btn ul li span.mark {
    opacity: 1;
    position: relative;
    top: -7px;
    left: 0;
    display: inline-block;
    z-index: 2;
    transform: none;
    margin-left: 10px;
    background: none;
  }
  .modal .share-btn ul li.btn-email a i, .modal .share-btn ul li.btn-message a i {
    display: inline-block;
  }*/

  /*award-select*/
  .award-select ul {
    width: 100%;
  }
  .award-select ul li {
    width: 50%;
    padding: 0;
    margin: 10px 10px 20px 10px;
  }
  .award-select ul li label {
    width: 100%;
    margin: 0;
  }
  .award-select ul li img {
  }

  /*vot-select*/
  .vot-select ul li {
    width: 50%;
    margin: 10px;
  }
  .vot-select ul li label {
    width: 100%;
    height: 100%;
  }
  .vot-select, #share_to_friend .vot-select2 {
    margin: -15px -10px 0 -10px;
  }
  .vot-select2 ul li .pic {
    width: 35px;
    height: 35px;
  }
  .vot-select2 ul li .txt {
    display: block;
    font-size: 1.2rem;
    margin-top: 5px;
  }

  /*award-list*/
  .award-show-block {
    padding: 60px 0;
  }
  .award-show-block .inner-block {
    padding: 0;
  }
  .award-list {
    margin: 0;
  }
  .award-list:nth-child(1) {
    width: 30%;
  }
  .award-list:nth-child(2), .award-list:nth-child(3) {
    width: 50%;
  }
  .award-list:nth-child(2) .pic, .award-list:nth-child(3) .pic {
    padding: 10px;
  }
  .award-list:nth-child(4) {
    width: 40%;
  }
  /*.award-list {
    margin: 0 -10px;
  } 
  .award-list:nth-child(1) .pic, .award-list:nth-child(2) .pic {
    padding: 5px;
  }
  .award-list:nth-child(1) .txt {
    left: 20px;
    bottom: 10px;
  }
  .award-list:nth-child(2) .txt {
    top: -40px;
  }
  .award-list:nth-child(3) {
    margin-left: 0;
    margin-right: -25px;
  }
  .award-list:nth-child(3) .txt {
    right: 20px;
    bottom: 0px;
  }*/
  .award-list .name {
    padding: 8px 10px;
    font-size: 1rem;
    white-space: nowrap;
  }
  .btn-free-get {
    padding-top: 15px;
    font-size: 0.9rem;
  }

  /*mybag-block*/
  .mybag-block-inner {
    padding: 40px 10px 10px 10px;
  }
  .mybag-block-inner .coin-list {
    width: 50%;
    padding: 5px;
  }
  .recommend-list .coin-list {
    width: 33.33%;
  }

  /*user bag*/
  .user-info .pic {
    width: 100%;
    margin-right: 0;
    margin-top: -50px;
  }
  .user-info .right {
    text-align: center;
    margin-top: 20px;
  }

  /*rank*/
  .all-rank-block-inner {
    
  }

  .all-rank-block .rank1, .all-rank-block .rank2, .all-rank-block .rank3 {
    padding: 5px;
  }
  .all-rank-block .rank1 .mark, .all-rank-block .rank2 .mark, .all-rank-block .rank3 .mark {
    width: 70px;
    position: absolute;
    top: -20px;
    left: 50%;
    padding: 5px 10px;
    transform: translateX(-50%) rotate(0deg);
  }
  .all-rank-block .rank1 .mark {
    width: 90px;
  }
  .all-rank-block .rank1 .rank, .all-rank-block .rank2 .rank, .all-rank-block .rank3 .rank {
    margin: 10px 5px 0 5px;
  }
  .rank-list {
    width: 100%;
    margin: 10px 0;
  }
  .coin-list .name {
    margin: -15px 5px 0 5px;
  }
  .rank-list .name {
    padding: 0 10px;
  }
  .rank-list .coin-pic {
    margin-left: 20px;
  }
  .rank-list .rank {
    margin-right: 5px;
  }
  .all-rank-block .rank span {
    display: block;
    font-size: 1.6rem;
  }
  .rank-list.rank-me {
    bottom: 90px;
  }
  .rank-notice-txt {
    text-align: center;
    margin: 0px 10px 10px 10px;
  }

  /*login*/
  .login .modal-body {
    padding: 10px 0 0 0;
  }

  /*list-box*/
  .list-row-4 li {
    flex: 0 0 50%;
  }

  /*method-list*/
  .method-list {
    margin: 40px 10px 0 10px;
  }
  .method-list dl {
    padding-left: 0;
  }
  .method-list dt {
    display: inline-block;
    position: relative;
    z-index: 9;
  }
  .method-list dd {
    padding: 30px 20px 20px 20px;
  }
  .method-list dd:after {
    display: none;
  }
  .method-step-list {
    display: block;
  }
  .method-step-list:last-child {
    margin-bottom: 0;
  }
  .method-step-list .pic {
    margin: 0;
    text-align: center;
  }
  .method-step-list .pic img {
    max-width: 100%;
  }
  .method-award-list ul li {
    width: 100%;
  }
  .method-award-list ul li:nth-child(2) {
    text-align: center;
    margin: 10px 0;
  }
  .method-award-list ul li a {
    display: flex;
    align-items: center;
  }
  .method-award-list ul li span {
    text-align: left;
  }
  .method-award-list ul li span.txt {
    margin-top: 0;
    margin-left: 10px;
  }

  /*voucher-list*/
  .voucher-block {
    margin-bottom: 40px;
  }
  .voucher-give.voucher-block {
    margin-top: 60px;
  }
  .voucher-list {
    width: 96%;
    padding-left: 0;
    margin-bottom: 70px;
  }
  .voucher-list:last-child {
    margin-bottom: 0;
  }
  .voucher-list .mark {
    top: -52px;
    width: 100%;
    height: auto;
    padding: 10px;
    border-left: 0;
    border-right: 0;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
  }
  .voucher-list .mark:before {
    top: initial;
    right: initial;
    bottom: -8px;
    left: -10px;
    box-shadow: inset -2px 0px 3px #e4e4e4;
  }
  .voucher-list .mark:after {
    box-shadow: inset 2px 0px 3px #dfdfdf;
  }
  .voucher-list.voucher1-on .mark {
    border-right: 0;
    border-bottom: #fbe7f2 2px dotted;
  }
  .voucher-list.voucher2-on .mark {
    border-right: 0;
    border-bottom: #ddf1ec 2px dotted;
  }
  #select-store-modal .txt-notice2 {
    width: 100%;
    text-align: left;
    margin-top: 0;
    float: none;
  }

  /*voucher-detail*/
  .voucher-detail-page  {
    overflow: hidden;
  }
  .voucher-detail-page .wrapper-inner {
    background-size: 200%;
  }
  .voucher-detail-page header {
    position: relative;
  }

  /*footer*/
  .footer {
    padding-bottom: 100px;
  }

  /*fixed-btn-block*/
  .fixed-btn-block a {
    padding: 5px;
  }
  .fixed-btn-block a .pic {
    width: 60px;
  }
  .fixed-btn-block a .txt {
    font-size: 1.2rem;
  }

}
@media (max-width: 559px) {
  
}

@media (max-width: 415px) {
  .get-friend-number li {
    margin: 0 2px;
    font-size: 2rem;
  }
  .ad-block1 li .pic img {
    width: 80px;
  }
  .footer .share-btn ul li:first-child {
    width: 100%;
    margin-bottom: 10px;
  }
  /*voucher*/
  .voucher-list {
    padding: 20px;
  }
  .voucher-list .pic {
    width: 100%;
    flex: 0 0 100%;
    margin: 0;
  }
  .voucher-list .info {
    margin: 15px 0;
  }
  .voucher-list .btn-block {
    margin-bottom: 0;
  }
  .voucher-list .btn-block a {
    width: 100%;
    margin: 5px 0;
  }
  .voucher-list .voucher-status {
    top: -70px;
    left: initial;
    right: 0px;
  }
}
@media (max-width: 300px) {
  .wrapper-inner {
    background-size: 800%;
  }
  .face-upload-block .mask {
    font-size: 1rem;
  }
  .face-upload-block .mask .pic {
    margin-top: 15px;
    padding-bottom: 0;
  }
  .face-upload-block .mask .pic img {
    width: 30px;
  }
  .ad-block2 li {
    width: 100%;
  }
  .award-list, .award-list:nth-child(3) {
    width: 50%;
  }
  .method-list {
    margin: 40px 5px 0 5px;
  }
  .btn-round-border {
    min-width: 100%;
  }
  .vot-select2 ul li .txt {
    font-size: 1rem;
  }
}