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

.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: #c52125;;
  text-align: center;
  border-bottom: 0.02rem solid #c52125;;
  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: #c52125;
  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: #ffffff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(20%, #b62626),
    to(#f84242)
  );
  background: linear-gradient(180deg, #b62626 20%, #f84242 100%);
  border-right: 0.02rem solid #666;
}

.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: #c52125;
  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;
}

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(247, 65, 65, 0.9), rgba(117, 10, 10, 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);
  padding-left: 0.2rem;
}

.GA-chat-btn {
  background: rgb(7, 7, 7);
  background-image: linear-gradient(to bottom, #46d0e4, #1b8d9d);
}
.GA-chat-btn:hover span{ padding-right: 0.25rem;}
.GA-chat-btn span:after{ content: "»"; opacity: 0; transition: 0.2s; } 
.GA-chat-btn:hover span:after{ opacity: 1;}
.GA-details-btn {
  background: rgb(252,218,59);
  background-image: linear-gradient(to bottom, #feb701, #fe9101);
}
.GA-details-btn:hover span{ padding-right: 0.25rem;}
.GA-details-btn span:after{ content: "»"; opacity: 0; transition: 0.2s; } 
.GA-details-btn:hover span:after{ opacity: 1;}
.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;
}
[aos=fade-down2]{-webkit-transform:translate(0,-50px);-ms-transform:translate(0,-50px);transform:translate(0,-50px)}
[aos=fade-down2].aos-animate{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}
/* ------------------------------------------------------------------------banner */
.banner {
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/mobile/campaign211101/topbackground.png") no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0;
  height: 13.64rem;
  position: relative;
  margin-bottom: -0.53rem;
  z-index: 1;
}
.banner_title {
  position: relative;
  height: 100%;
}
.banner_title img {
  position: absolute;
}
.banner_title img.bannerArrow {
  width: 10.88rem;
  top: 5.42rem;
  left: -4rem;
  right: 0;
  margin: 0 auto;
  z-index: 0;
}
.banner_title img.bannerFire {
  width: 6.88rem;
  bottom: 0.5rem;
  left: 0.5rem;
  z-index: 1;
}
.banner_title img.toptitle {
  width: 5.58rem;
  top: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
.banner_title img.dollar {
  width: 3.29rem;
  top: 4.45rem;
  left: 2.05rem;
  z-index: 2;
}
h2 {
  font-size: 0.48rem;
  color: #ffffff;
  letter-spacing: 0.05rem;
  text-align: center;
  font-weight: 550;
}
p {
  font-size: 0.24rem;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
  padding-top: 0.6rem;
  padding-bottom: 0.5rem;
}
p.p2 {
  font-size: 0.14rem;
  color: #898989;
  line-height: 1.4;
}
/* ----------------------------------------------------------------block1 */
.block1 {
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/mobile/campaign211101/block1_background.png") no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
  padding-top: 1.5rem;
  height: 9.32rem;
  position: relative;
}
.swiper-container-table .swiper-slide {
  width: 4.72rem;
}
.swiper-container-table .swiper-slide img {
  width: 4.32rem;
}
/* -----------------------------------------------------------------------block2 */
.block2 {
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/mobile/campaign211101/block2_background.png") no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0;
  height: 7.66rem;
}
.block2 .profit_rate{
    width: 2.36rem;
    position: absolute;
    left: 0;
    margin-top: -2.05rem;
}
.block2 .lady {
  margin-top: -0.38rem;
  width: 3.26rem;
  margin-left:0.8rem;
}
.block2 .box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block2 h2 {
  padding-top: 0.35rem;
}
.block2 h2,
.block2 p {
 color: #fff;
}

.ml10 {
  position: relative;
  font-weight: 900;
}

.ml10 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
}

.ml10 .letter {
  display: inline-block;
  line-height: 1em;
  transform-origin: 0 0;
}

/* ---------------------------------------------------------------------block3 */
.colorlayer{
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/mobile/campaign211101/block3_background.png") no-repeat;
  background-size: cover;
  position: relative;
}
.block3 {
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/mobile/campaign211101/block3_index.png") no-repeat;
  background-size: cover;
  position: relative;
  background-position: bottom;
}
.block3 .steps {
  width: 7.2rem;
  margin: 0.4rem auto 0;
}
.block3 .steps .step-item {
  width: 2.85rem;
  margin: 0.4rem 0.3rem;
}
.block3 .steps .step-item img {
  width: 100%;
}
.block3-inner1 {
  padding-top: 1.36rem;
  padding-bottom: 0.6rem;
}
.block3-inner1 h2 {
  padding-bottom: 0.53rem;
}
.block3-inner2 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.swiper-wrapper1 {
  margin-left: -2.55rem;
}
.swiper-container .swiper-slide {
  width: 2.74rem;
}
.swiper-container .swiper-slide img {
  width: 2.78rem;
  margin: 0 auto;
}
.benefit{
  color:#ffe400;
}
/* --------------------------------------------------------------------block4 */
.footer {
  width: 100%;
  padding-bottom: 1.2rem;
  background: #5c000d;

}
.footer p {
  font-size: 0.2rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01rem;
  padding-top:0.4rem;
}
.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;
}
.swiper-pagination-bullet-active{opacity:1;background:#ffffff !important;}
.pdd1 {
    margin-left: 0.1rem;
  }
  
.pdd4 {
    margin-right: 0.1rem;
  }
  
.bullets_position{
      left:13% !important;
  }

.step_position{
    padding: 0 0 10% 0;
}
 
.TableImg { 
        max-width: 100%;
        height: auto;
    }

.table{
    padding: 0 0.2rem;
}
/*# sourceMappingURL=all.css.map */