@charset "utf-8";
@import "base.css";
@import "swiper.min.css";
/* 禁止选择文本 */
.us-no {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* 弹性盒子 */
.fx {
  display: flex;
  -webkit-display: flex;
}
.fx-w {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.fx-ai {
  align-items: center;
  -webkit-align-items: center;
}
.fx-aie {
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.fx-jc {
  justify-content: center;
  -webkit-justify-content: center;
}
.fx-jcb {
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.fx-g {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.fx-s {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.fx-dir {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.fx-dirr {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
* {
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
body {
  background-size: 100% auto;
  font-size: 0.24rem;
  line-height: 1;
}
img {
  width: 100%;
}
select,
textarea,
input[type="text"],
input[type="number"],
input[type="password"] {
  display: block;
  padding: 0 0.3rem;
  width: 100%;
  height: 1rem;
  background: #EBF2FF;
  border: none;
  border-radius: 0.3rem;
  outline: none;
  font-size: 0.34rem;
  color: #8AB5DB;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="text"],
input[type="number"],
input[type="password"] {
  padding-bottom: 0.05rem;
}
input[type='radio'],
input[type='checkbox'] {
  position: relative;
  top: -0.1em;
  vertical-align: middle;
}
textarea {
  padding: 0.1rem;
  height: 0.8rem;
  line-height: 1.2;
}
:-moz-placeholder {
  color: #888;
}
::-webkit-input-placeholder {
  color: #888;
}
.check {
  position: relative;
  padding-left: 0.36rem;
  line-height: 1.4;
}
.check > input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.check > input:checked + label:before {
  background: #1BA2FF;
  border: 0.06rem solid #fff;
}
.check > label:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0.04rem;
  width: 0.32rem;
  height: 0.32rem;
  background: #fff;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.check span {
  color: #39cdea;
}
.check + .check {
  margin-top: 0.2rem;
}
.check.disabled > input:checked + label:before {
  background: #a3a3a3;
}
.form .form-item {
  position: relative;
}
.form .form-item .icon {
  position: absolute;
  left: 0.25rem;
  top: 50%;
  width: 0.6rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.form .form-item .icon + input {
  padding-left: 1.05rem;
}
.form .form-item + .form-item {
  margin-top: 0.5rem;
}
#app {
  position: relative;
  min-height: 100vh;
  z-index: 1;
  overflow: hidden;
}
#app .poploading {
  background: #fff;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 135%;
  left: 0;
  top: 0;
}
#app .popend {
  top: 0;
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  background: rgba(5, 42, 69, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
#app .popend p {
  background: rgba(0, 0, 0, 0.8);
  padding: 0.5rem;
  border-radius: 0.2rem;
  line-height: 0.4rem;
}
.btn {
  display: inline-block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.2s;
}
.btn.press {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
}
.btn.txt-btn {
  height: 0.66rem;
  line-height: 0.66rem;
  background-image: linear-gradient(to right, #11C0FF, #3586FF);
  border-radius: 0.7rem;
  color: #fff;
  font-size: 0.3rem;
  box-shadow: 0.05rem 0.05rem 0.15rem 0 #ccc;
  display: flex;
  -webkit-display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  vertical-align: bottom;
}
.btn.img-btn > span {
  display: block;
}
.btn.img-btn > span img {
  width: auto;
  height: 0.75rem;
}
button {
  outline: none;
  border: none;
  background-color: transparent;
  transition: all 0.15s;
}
img {
  width: 100%;
  height: auto;
}
/* 页面 */
.page {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100vh;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  overflow: hidden;
  color: #fff;
  opacity: 0;
  z-index: -1;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
.page.show {
  position: relative;
  height: auto;
  overflow: visible;
  opacity: 1;
  z-index: 1;
}
.page-inner {
  position: relative;
  min-height: 100vh;
  z-index: 2;
  display: flex;
  -webkit-display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.page-inner .home {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.page-inner .home-content {
  width: 100%;
  text-align: center;
}
.page-inner .home-content-bc {
  width: 100%;
  margin-top: -2px;
}
.page-inner .home-content .share {
  position: fixed;
  z-index: 1;
  top: 5vh;
  right: 0;
}
.page-inner .home-content .share img {
  height: 0.6rem;
}
.page-inner .home-content-btns {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.page-inner .home-content-btns .btn {
  width: 100%;
}
.page-inner .home-content-btns .btn img {
  width: 99%;
  height: auto;
}
.page-inner .home-content-btn {
  position: absolute;
  top: 500vw;
  width: 100%;
  display: flex;
  justify-content: center;
}
.page-inner .home-content-btn .btn img {
  width: auto;
  height: 1rem;
}
.page-inner .home-content-coupons {
  position: absolute;
  top: 577vw;
  width: 86%;
  left: 6.5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.page-inner .home-content-coupons img {
  width: 31%;
  height: auto;
  margin-top: 3.5vw;
  margin-left: 1.5vw;
}
.page-inner .home-content-swiper {
  position: absolute;
  top: 783vw;
  width: 86%;
  left: 7vw;
}
.page-inner .home-content-swiper .coupon-swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 108%;
  left: -4%;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
  padding: 0 0.1rem;
  box-sizing: border-box;
}
.page-inner .home-content-swiper .coupon-swiper-nav .nav-prev,
.page-inner .home-content-swiper .coupon-swiper-nav .nav-next {
  pointer-events: auto;
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-inner .home-content-swiper .coupon-swiper-nav .nav-prev img,
.page-inner .home-content-swiper .coupon-swiper-nav .nav-next img {
  width: 100%;
  height: auto;
}
.page-inner .home-content-swiper .coupon-swiper {
  width: 100%;
  overflow: hidden;
}
.page-inner .home-content-swiper .coupon-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  pointer-events: none;
}
.page-inner .home-content-rules {
  position: absolute;
  top: 1130vw;
  width: 82%;
  left: 9vw;
  height: 150vw;
}
.page-inner .home-content-rules .swiper-scroll-rules {
  height: 100%;
  border-radius: 0.15rem;
  overflow: hidden;
}
.page-inner .home-content-rules .swiper-scroll-rules .swiper-wrapper {
  height: auto !important;
}
.page-inner .home-content-rules .swiper-scroll-rules .swiper-slide {
  height: auto !important;
  padding-right: 0.1rem;
}
.page-inner .home-content-rules .swiper-scroll-rules .swiper-slide img {
  width: 100%;
  height: auto;
}
.page-inner .home-content-rules .swiper-scroll-rules .swiper-scrollbar {
  position: absolute;
  right: 0rem;
  top: 0;
  height: 100%;
  width: 0.06rem;
  background: #dbd7d1;
  border-radius: 0.03rem;
}
.page-inner .home-content-rules .swiper-scroll-rules .swiper-scrollbar-drag {
  background: #c59d63;
  border-radius: 0.03rem;
}
.back-btn {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: 1;
}
.back-btn img {
  height: 0.5rem !important;
}
.swiper-scroll .swiper-wrapper,
.swiper-scroll .swiper-slide {
  height: auto;
}
.swiper-scroll.full {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.swiper-scroll > .swiper-scrollbar {
  right: 0;
  width: 0.1rem;
  background: none;
}
.swiper-scroll .swiper-scrollbar-drag {
  background: #d96d69;
}
.pub-text {
  line-height: 0.48rem;
  font-size: 0.3rem;
}
.pub-text span {
  margin: 0 0.03rem 0 0.05rem;
  font-size: 0.4rem;
  color: #ffdc40;
  letter-spacing: 0.02rem;
}
/* 弹出层 */
.pop-enter-active,
.pop-leave-active {
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}
.pop-enter,
.pop-leave-to {
  opacity: 0;
}
.pop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/pop-mask.png);
  background-size: 100% 100%;
  color: #515151;
  overflow: hidden;
  z-index: 99;
  display: flex;
  -webkit-display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.pop .pop-content {
  position: relative;
  background-image: url(../images/pop-coupon-bg.png);
  background-size: 100% 100%;
  z-index: 10;
}
.pop .pop-close {
  position: absolute;
  left: 85%;
  top: -8%;
  margin: -0.28rem 0 0 -0.1rem;
  width: 1rem;
  height: 1rem;
  background-image: url(../images/pop-close.png);
  z-index: 10;
}
.pop .pop-hd {
  text-align: center;
}
.pop .pop-hd > img {
  width: auto;
  height: 0.48rem;
}
.pop .pop-bd {
  height: 8rem;
}
.pop .pop-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.pop.normal .pop-content {
  padding: 0.28rem;
  width: 6.03rem;
  height: 9rem;
}
.pop.normal .pop-hd {
  position: relative;
  margin: -0.08rem 0 0.2rem;
  z-index: 1;
}
.pop.normal .pop-bd {
  position: relative;
  background: #fff;
  border-radius: 0.24rem;
  min-height: 1rem;
  z-index: 1;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.pop.normal .pop-ft {
  position: relative;
  margin-top: 0.28rem;
  margin-bottom: -0.06rem;
  z-index: 1;
  display: flex;
  -webkit-display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.pop.normal.dec .pop-content:after,
.pop.normal.dec .pop-content:before {
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: '';
}
.pop.pop-poster .pop-content {
  display: flex;
  -webkit-display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  background: none;
  padding: 0;
  text-align: center;
  height: auto;
}
.pop.pop-poster .pop-content .pop-bd {
  background: none;
}
.pop.pop-poster .pop-content img {
  width: 90%;
}
.pop.pop-poster .pop-content .poster-tips {
  margin-top: 0.2rem;
}
.pop.pop-coupon .pop-content {
  background-color: transparent;
  background-image: url(../images/pop-coupon-bg.png);
  background-size: 100% 100%;
  padding: 0.28rem;
  width: 6.03rem;
  height: 9rem;
}
.pop.pop-coupon .pop-content .pop-bd {
  background: none;
  border-radius: 0;
  width: 96%;
  left: 4%;
  height: 8rem;
  overflow: hidden;
}
.pop.pop-coupon .pop-content .pop-bd .swiper-scroll-coupon {
  height: 100%;
}
.pop.pop-coupon .pop-content .pop-bd .swiper-scroll-coupon .swiper-wrapper {
  height: auto !important;
}
.pop.pop-coupon .pop-content .pop-bd .swiper-scroll-coupon .swiper-slide {
  height: auto !important;
  padding-right: 0.5rem;
  box-sizing: border-box;
}
.pop.pop-coupon .pop-content .pop-bd .swiper-scroll-coupon .swiper-slide img {
  width: 100%;
  height: auto;
}
.pop.pop-coupon .pop-content .pop-bd .swiper-scroll-coupon .swiper-scrollbar {
  position: absolute;
  right: 0rem;
  top: 0;
  height: 100%;
  width: 0.1rem;
  background: #dbd7d1;
  border-radius: 0.03rem;
}
.pop.pop-coupon .pop-content .pop-bd .swiper-scroll-coupon .swiper-scrollbar-drag {
  background: #c59d63;
  border-radius: 0.03rem;
}
.pop.pop-ismember .pop-content {
  height: 8rem;
  display: flex;
  -webkit-display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  padding-top: 2.25rem;
  background-color: transparent;
  background: url('../images/pop-member.png') center center no-repeat;
  background-size: 100% 100%;
}
.pop.pop-ismember .pop-ft {
  margin-top: 4rem;
}
.pop.pop-ismember .pop-ft .btn {
  width: 4.37rem;
  height: 0.98rem;
}
.pop.pop-ismember .pop-ft .btn img {
  width: 100%;
  height: auto;
}
