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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  color: #000;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.container-fluid {
  width: 100%;
}

.container {
  width: 80%;
}
.row {
  width: 100%;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

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

.justify-content-evenly {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
  }

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.img-fluid {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.text-white {
  color: white;
}

.header {
  background: transparent;
}

html,
html * {
  font-family: "微软雅黑", "Microsoft JhengHei", "微軟正黑體", sans-serif, Arial;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p,
ul,
li,
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
}
/* ------------------------------------------------------------------------動畫 */
@-webkit-keyframes bounce-In {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounce-In {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

[aos="bounceIn"].aos-animate {
  -webkit-animation-name: bounce-In;
  animation-name: bounce-In;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
/* ------------------------------------------------------------------------彈跳訊息 */
img,
a {
  display: block;
}

.e-header {
  font-size: 10px;
}

.brown {
  color: #5b3739;
  font-size: 19px;
}

#main {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.web-page {
  width: 100%;
  min-width: 1200px;
  font-size: 16px;
  color: #333333;
}

.inner {
  overflow: hidden;
  width: 1320px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.clearfix {
  display: block;
  clear: both;
}

.clearfix::before {
  content: "";
  display: block;
  visibility: hidden;
  font-size: 0;
  height: 0;
  clear: both;
}

.clearfix::after {
  content: "";
  display: block;
  visibility: hidden;
  font-size: 0;
  height: 0;
  clear: both;
}

.banner-posi {
  position: relative;
  z-index: 1;
  top: -74px;
  margin-bottom: -74px;
}

.popup-box .box-in .section5 h2.var-line {
  font-size: 0.28rem !important;
}

.popup-box {
  overflow: hidden;
  max-width: 95%;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 10%;
  background: #fff;
  z-index: 99999;
  padding: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.3);
}

.popup-box .close-top {
  padding: 0.1rem 0.3rem;
  font-size: 0.44rem;
  color: #754fe4;
  text-align: center;
  border-bottom: 0.02rem solid #754fe4;
  margin: 0 0.3rem;
  position: relative;
  font-weight: bold;
  width: calc(100% - 0.6rem);
}

.popup-box .close-top a {
  background: none;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  top: 0.3rem;
  right: 0;
  text-decoration: none;
}

.popup-box .close-top a:before,
.popup-box .close-top a:after {
  content: "";
  display: inline-block;
  background-color: #754fe4;
  height: 0.5rem;
  width: 0.02rem;
  border-radius: 0.4rem;
  top: 0;
  right: 0.22rem;
  position: absolute;
}

.popup-box .close-top a:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
}

.popup-box .close-top a:after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index: 2;
}

.popup-box .table1 td,
.popup-box .table2 td {
  width: 25%;
}

.popup-box .table3 td {
  width: 33.3333%;
}

.popup-box .table4 td {
  width: 16%;
}

.popup-box table.data-box {
  width: 100%;
  margin: 16px auto 0.25rem;
  text-align: center;
  border: 0 !important;
  font-size: 1.6em;
  border-collapse: collapse;
  border-spacing: 0;
}

.popup-box table.data-box .first-child {
  text-align: center;
  font-size: 0.28rem;
}

.popup-box table.data-box .first-child a {
  color: #666666;
  text-decoration: none;
}

.popup-box table.data-box thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
}

.popup-box table.data-box thead tr {
  border: 0.02rem solid #666;
}

.popup-box table.data-box thead th,
.popup-box table.data-box tbody td {
  font-size: 0.28rem;
  padding: 0.18rem 0.05rem;
  vertical-align: middle;
}

.popup-box table.data-box thead th {
  text-align: center;
    color: #fff;
    background: -webkit-gradient(to bottom, rgba(135, 94, 255, 0.9),rgba(96, 61, 196, 0.9), rgba(65, 35, 150, 0.9));
    background: linear-gradient(to bottom, rgba(135, 94, 255, 0.9),rgba(96, 61, 196, 0.9), rgba(65, 35, 150, 0.9));
    border-right: 1px solid #000;
}

.popup-box table.data-box thead th span {
  font-size: 0.2rem;
  display: inline-block;
  margin-top: 0.1rem;
}

.popup-box table.data-box tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}

.popup-box table.data-box tbody td {
  text-align: center;
  color: #333333;
  border: 0.02rem solid #666;
}

.popup-box table.data-box tbody tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}

.popup-box table.data-box tbody tr.grey td:nth-child(1) {
  line-height: 1.5;
  font-size: 0.26rem;
}

.popup-box table.data-box tbody tr.grey {
  background: #fff;
}

.popup-box table.data-box tbody tr.last-row td {
  border-bottom: 1px solid #cccccc;
}

.popup-box table.data-box tbody .unit {
  font-size: 0.8em;
}

.popup-box .box-in {
  margin: 0.3rem 0.34rem;
  overflow-y: auto;
  height: 8rem;
}

.popup-box .box-in .line-throw {
  font-size: 0.3rem;
}

.popup-box .box-in .section1 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 0.1rem;
}

.popup-box .box-in .section1 h2 {
  font-size: 0.27rem;
  font-weight: bold;
  color: #754fe4;
  letter-spacing: 0;
}

.popup-box .box-in .section1 p {
  font-size: 0.27rem;
  line-height: 1.5;
  word-wrap: break-word;
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
  color: #000;
}

.popup-box .box-in .point.point {
  font-weight: bold;
  font-size: 0.29rem;
}

ol.num-list {
  list-style: decimal;
  padding-left: 20px;
  font-size: 0.29rem;
  line-height: 1.5;
}

ol.num-list li {
  list-style: decimal;
  padding-left: 5px;
  margin-bottom: 10px;
}

ol.num-list.dot-list li {
  list-style: disc;
}

.d-none {
  display: none;
}

.text-hide {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: transparent;
}

.header .mega-menu > li > a {
  color: #ffffff;
}

.header .mega-menu .cre-bt a {
  color: #fff;
}

.header .mega-menu .bt-log > a {
  color: #fff;
}

.bot-fixed {
  background-image: linear-gradient(to bottom, rgba(135, 94, 255, 0.9)
  , rgba(99, 63, 200, 0.9), rgba(65, 36, 151, 0.9));
  position: fixed;
  z-index: 888;
  width: 100%;
  left: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0.3rem 0;
}

.bot-fixed.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.bot-fixed ul,
.btn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.bot-fixed ul li,
.btn ul li {
  width: 45%;
}

.bot-fixed ul a,
.btn ul a {
  font-size: 0.3rem;
  color: #fff;
  padding: 0.24rem 0;
  display: block;
  border-radius: 0.12rem;
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.12);
  letter-spacing: 2px;
}

.GA-chat-btn {
  background: rgb(7, 7, 7);
  background: linear-gradient(180deg, rgba(36,179,220,1) 0%, rgba(23,120,219,1) 100%);
}

.GA-details-btn {
  background: rgb(252,218,59);
  background: linear-gradient(180deg, rgba(225,180,0,1) 0%, rgba(225,102,0,1) 100%);
}

.tc-hide {
  display: none;
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  line-height: 1.8;
}

.masking {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.text-hide {
  opacity: 0;
}

body {
  background: #fffbe9;
}
/* ------------------------------------------------------------------------banner */
.banner {
    background: url(https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2309/banner_bg.png) no-repeat;
    background-size: 100% 100%;
    /* background-position: center; */
    margin: 0;
    height: 14.47rem;
    position: relative;
    z-index: 1;
}
.banner_title {
  position: relative;
  height: 100%;
}
.banner_title img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 0;
}
.banner_title img.d1 {
    width: 6.9rem;
    top: 1rem;
    right: 0;
    z-index: 2;
  }
.banner_title img.d2 {
    width: 4.93rem;
    top: 1.3rem;
    left: 1.95rem;
    z-index: 2;
  }
.banner_title img.d3 {
    width: 6.16rem;
    top: 3.56rem;
    left: 0;
    z-index: 2;
  }
.banner_title img.d4 {
    width: 6.05rem;
    top: 4.89rem;
    left: 0rem;
    z-index: 2;
  } 
.banner_title img.t1 {
  width: 5.11rem;
  top: 1.72rem;
  right: 1.1rem;
}
.banner_title img.t2 {
  width: 6.17rem;
  top: 1.68rem;
  left: 0.2rem;
}

@keyframes lighting {
    0% {
      opacity: 1;
    }
  
    15% {
        opacity: 0.5;
    }
  
    50% {
        opacity: 0;
    }
  
    100% {
        opacity: 1;
    }
  }

.banner_title img.t3 {
    width: 3.48rem;
    top: 5.65rem;
    right: 7.5rem;
    animation: lighting 0.8s infinite;
}

.banner_title img.t4 {
    width: 1.22rem;
    top: 5.45rem;
    left: 0.2rem;
}

@keyframes cloud_floating {
    0% {
      transform: translateX(0.05rem);
    }
  
    50% {
      transform: translateX(-0.05rem);
    }
  
    100% {
      transform: translateX(0.05rem);
    }
  }

  .t4 {
    background-image: url(https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2309/coin1.png);
    background-size: 100% 100%;
    position: absolute;
    width: 0.93rem;
    height: 1.12rem;
    top: 9.79rem;
    left: -0.1rem;
    z-index: 2;
    animation: cloud_floating 6s infinite ease both reverse;
    /* animation-delay: 2s; */
}

@keyframes coin_dropping2 {
    0% {
      transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
      top: 0;
      opacity: 0;
    }
  
    5% {
      opacity: 1;
    }
  
    95% {
      opacity: 1;
    }
  
    100% {
      transform: rotateX(2000deg) rotateY(30deg) rotateZ(200deg);
      opacity: 1;
      top: 12.2rem;
    }
  }

.gift1 {
    position: absolute;
    background-image: url(https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2309/coin2.png);
    background-size: 100% 100%;
    width: 1.4rem;
    height: 1.3rem;
    left: 0.5rem;
    animation: coin_dropping2 2s linear both;
    z-index: 1;
  }

  @keyframes coin_dropping1 {
    0% {
      transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
      top: 0;
      opacity: 0;
    }
  
    5% {
      opacity: 1;
    }
  
    95% {
      opacity: 1;
    }
  
    100% {
      transform: rotateX(1422deg) rotateY(21deg) rotateZ(355deg);
      opacity: 1;
      top: 9.9rem;
    }
  }

  .gift2 {
    position: absolute;
    background-image: url(https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2309/coin3.png);
    background-size: 100% 100%;
    width: 1.93rem;
    height: 1.82rem;
    left: 2.25rem;
    animation: coin_dropping1 1.5s linear both;
    z-index: 3;
  }

.banner_title img.theme {
    width: 9.4rem;
    top: 5.98rem;
    left: -0.75rem;
}

.banner_title img.gift1 {
    width: 2.65rem;
    top: 3.95rem;
    right: 2.7rem;
}

.banner_title img.gift2 {
    width: 1.47rem;
    top: 1rem;
    left: 2.65rem;
}

@keyframes coin_dropping3 {
    0% {
      transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
      top: 0;
      opacity: 0;
    }
  
    5% {
      opacity: 1;
    }
  
    95% {
      opacity: 1;
    }
  
    100% {
      transform: rotateX(2000deg) rotateY(30deg) rotateZ(200deg);
      opacity: 1;
      top: 8rem;
    }
  }

  .cloud {
    position: absolute;
    background-image: url(https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2309/coin4.png);
    background-size: 100% 100%;
    width: 1.44rem;
    height: 1.64rem;
    right: -0.5rem;
    z-index: 1;
    animation: coin_dropping3 2s linear both;
}

h2 {
  font-size: 0.48rem;
  letter-spacing: 0.05rem;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
}
p {
  font-size: 0.21rem;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
p.p2 {
  font-size: 0.14rem;
  color: #898989;
  line-height: 1.4;
}
.yellow {
    color: #ffea00;
}
/* ----------------------------------------------------------------block1 */
.block1 {
    background: url('https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2309/block1_bg.png') no-repeat;
    background-size: 100% 100%;
    margin: 0;
    padding-top: 1rem;
    height: 8.32rem;
    position: relative;
}

.block1_text {
    font-size: 0.22rem;
    color: #ffffff;
    line-height: 1.4;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    letter-spacing: 1px;
}

.block1_tips {
    font-size: 0.2rem;
    color: #ffffff;
    line-height: 1.4;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    letter-spacing: 1px;
}

.block1_left {
    width: 0.93rem;
    position: absolute;
    top: 0.85rem;
    left: 0.6rem;
}

.block1_right {
    width: 0.93rem;
    position: absolute;
    top: 0.85rem;
    right: 0.6rem;
}

.swiper-container-table .swiper-slide {
  width: 4.72rem;
}
.swiper-container-table .swiper-slide img {
  width: 4.06rem;
}
/* -----------------------------------------------------------------------block2 */
.block2 {
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2201/block2_background.png") no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0;
  height: 8rem;
  position: relative;
  top: -1px;
}

.block2 .case_text {
  z-index: 2;
  width: 3.36rem;
  margin-top: -0.4rem;
}.block2 {
    background: url("https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2309/block2_bg.png") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    margin: 0;
    height: 10.23rem;
    position: relative;
  }
  .block2 >div .block2_title{
    width: 7.52rem;
  }
  
  .block2 .framework{
    z-index: 99;
    width: 6.67rem;
    position: absolute;
    top: 1.45rem;
}

.block2 .framework img{
    width: 6.76rem; 
}

/* ---------------------------------------------------------------------block3 */
.block3 {
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2309/block3_bg.png") no-repeat;
  background-size: 100% 101%;
  position: relative;
  height: 11rem;
  padding: 0.6rem 0.15rem 0 0.15rem;
  top:-1px;
}
.block3 .step_title{
  padding-bottom: 0.3rem;
}
.block3 .steps {
  margin: 0.4rem auto 0;
}
.block3 .steps .step-item {
  width: 2.3rem;
  margin: 0;
}
.block3 .steps .step-item img {
  width: 100%;
}
/* --------------------------------------------------------------------block4 */
.block4 {
  background: url('https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2309/block4_bg.png') no-repeat;
  background-size: 100% 100%;
  position: relative;
  height: 5.63rem;
  padding-top: 0.8rem;
  top:-1px;
}

.block4_gift {
  width: 2.18rem;
  position: absolute;
  top: -0.9rem;
  right: 0.3rem;
}

.block3_leaf {
    width: 1.66rem;
    position: absolute;
    top: 0.05rem;
    right: 0.1rem;
}

.swiper-wrapper1 {
  width: 8.37rem;
  margin-left: -0.5rem;
  margin-top: 0.82rem;
}
.swiper-container .swiper-slide {
  width: 2.79rem;
  opacity: 1!important;
}
.swiper-container .swiper-slide img {
  width: 2.6rem;
  margin: 0 auto;
}
/* --------------------------------------------------------------------block5 */
.block5 {
  background: url('https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2201/block5_background.png') no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 1.25rem;
}
/* --------------------------------------------------------------------footer */
.footer {
  width: 100%;
  padding: 0 0.2rem;
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2112/bottom-bg.png") no-repeat;
  background-size: cover;
}
.footer p {
  font-size: 0.18rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.4;
  padding-top: 1rem;
  letter-spacing: 1px;
}
.swiper-container-table .swiper-slide {
  opacity: 0.5;
}
.swiper-container-table .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-container .swiper-slide {
  opacity: 0.5;
}
.swiper-container .swiper-slide.swiper-slide-active,
.swiper-container .swiper-slide.swiper-slide-next {
  opacity: 1;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #bd3df9; 
    border-radius: 5px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #6e2cee; 
    border-radius: 10px;
  }

/*# sourceMappingURL=all.css.map */