@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: #fec213;
  text-align: center;
  border-bottom: 0.02rem solid #fec213;
  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: #fec213;
  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(to bottom, rgba(253, 191, 17, 1), rgba(253, 167, 57, 1), rgba(252, 137, 34, 1)
  );
  background: linear-gradient(to bottom, rgba(253, 191, 17, 1), rgba(253, 167, 57, 1), rgba(252, 137, 34, 1)
  );
  border-right: 0.02rem solid #666;
}

.popup-box table.data-box thead th span {
  font-size: 0.15rem;
  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.28rem;
}

.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;
  padding-right: 0.15rem;
}

.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: #fec213;
  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-size: 0.29rem;
}

ol.num-list {
  list-style: decimal;
  padding-left: 20px;
  font-size: 0.25rem;
  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 {
  position: fixed;
  padding: 0.3rem 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(159, 112, 15, 1);
  overflow: hidden;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 888;
}

.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;
  margin: 0 0 0 0.1rem;
}

.bot-fixed img {
  margin: 0 auto;
  width: 3.3rem;
}

.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: #fde7d0;
}
/* ------------------------------------------------------------------------banner */
.banner {
  background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2311/banner_bg.png")
    no-repeat;
  background-size: 100% 100%;
  background-position: center;
  width: 7.5rem;
  height: 11.29rem;
  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.t1_1 {
  top: 1.1rem;
  right: 0rem;
  width: 5.59rem;
  z-index: 5;
}
.banner_title img.t1_2 {
  top: 2.5rem;
  left: 1.1rem;
  width: 5.24rem;
  z-index: 5;
}
.banner_title img.t1_3 {
  top: 4.35rem;
  left: 1.2rem;
  width: 4.91rem;
  z-index: 5;
}

.banner_title img.t1_4 {
  top: 4.2rem;
  left: 3.4rem;
  width: 0.89rem;
  z-index: 5;
}

.banner_title img.framework {
  top: 4.75rem;
  left: 3.15rem;
  width: 1.18rem;
  z-index: 6;
}

.banner_title img.p2 {
  top: 9.88rem;
  left: 3.88rem;
  width: 1.44rem;
  z-index: 1;
}

.banner_title img.p3 {
  top: 4.88rem;
  left: -5.5rem;
  width: 1.56rem;
  z-index: 3;
}

.banner_title img.p1 {
    top: 5rem;
    left: 0rem;
    width: 7.5rem;
    z-index: 1;
}

@keyframes shakeDraw {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

@keyframes flashDraw {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

h2 {
  font-size: 0.48rem;
  letter-spacing: 0.05rem;
  text-align: center;
  font-weight: bold;
  background: linear-gradient(to bottom, #fec213, #fec213);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
p {
  font-size: 0.2rem;
  color: #575756;
  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: #000000;
    font-weight: bold;
    letter-spacing: 1px;
}
/* ----------------------------------------------------------------block1 */
.block1 {
  background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2311/block1_bg.png")
    no-repeat;
  background-position: center;
  background-size: 100% 100%;
  height: 8.21rem;
  position: relative;
  padding-bottom: 0rem;
  z-index: 2;
  margin-bottom: -2px;
}

.block1 img {
  margin: 0 auto;
}

.block1_title {
  width: 5.14rem;
  padding-top: 1rem;
}

.block1 p {
    margin: 0 auto;
    padding: 0.25rem 0;
    width: 7rem;
    color: #000000;
    font-size: 0.24rem;
    line-height: 0.3rem;
    letter-spacing: 1px;
    font-family: Microsoft JhengHei;
    font-weight: 700;
}

.block1 .table {
  width: 6.8rem;
  margin: 0 auto;
  margin-top: 0.1rem;
}

.block1 .table img {
  display: inline-block;
  width: 6.8rem;
  margin: 0 auto;
}

.block1 .swiper-container-table .swiper-slide {
  width: 6.8rem;
}
.block1 .swiper-container-table .swiper-slide img {
  width: 6.8rem;
}

/* -----------------------------------------------------------------------block2 */
.block2 {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2311/block2_bg.png") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    margin: 0;
    height: 9.06rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column;
    justify-content: end;
    align-items: center;
}
    .block2 .people_bg {
      width: 5rem;
      margin-top: -0.33rem;
      position: relative;
      z-index: 2;
      right: 0.2rem;
      top: -2rem;
    }

  .block2 .case_text {
      z-index: 2;
      width: 4.04rem;
      margin-top: -0.4rem;
  }

  .block2 .people {
    position: absolute;
    z-index: 1;
    width: 3.86rem;
    top: -0.6rem;
    left: 1.9rem;
  }

  .block2 .people_box {
      background: url("https://sc.cfygxz.com/source/www/zt/lp-img/mobile/oldCampaign2112/people_table.png") no-repeat;
      background-size: cover;
      width: 7.05rem;
      height: 3.77rem;
      margin: -0.65rem auto 0;
      position: relative;
      z-index: 3;
      padding-top: 1.32rem;
  }

  .block2 .sakura1 {
    bottom: 0.8rem;
    left: 0.3rem;
    position: absolute;
    width: 1.35rem;
}

.block2 .leaf {
  bottom: -1.4rem;
  right: 0rem;
  position: absolute;
  width: 1.98rem;
}

  .block2 p {
      line-height: 1.3;
      color: #000000;
      letter-spacing: 1px;
      font-family: Microsoft JhengHei;
      font-size: 0.25rem;
      font-weight: normal;
      text-align: left;
  }

/* ---------------------------------------------------------------------block3 */
.block3 {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2311/block3_bg.png") no-repeat;
    background-size: 100% 100%;
    position: relative;
    height: 9.32rem;
    display: flex;
    justify-content: center;
    flex-flow: column;
}

.block3_title {
  margin: 0rem auto;
  width: 3.19rem;
  padding-bottom: 0.2rem;
}

.block3 .steps {
  position: relative;
  top: 0.3rem;
  padding: 0.15rem 0;
}

.block3 .steps .step-item {
  margin: 0.16rem 0;
}
.block3 .steps .step-item img {
  width: 3.2rem;
}

/* --------------------------------------------------------------------block4 */
.block4 {
  background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2311/block4_bg.png")
    no-repeat;
  background-size: 100% 100%;
  position: relative;
  height: 11.96rem;
  top: -0.1rem;
}
.block4_title {
  display: block;
  position: relative;
  width: 6rem;
  margin: 0 auto;
  padding-top: 0.8rem;
}

.block4 .swiper-wrapper1 {
  position: relative;
  top: 5.5rem; 
  transform: scale(1.8);
}
.block4 .swiper-container {
  width: 7.5rem;
}

.block4 .swiper-container .swiper-slide {
  opacity: 0.5 !important;
}

.block4 .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.block4 .swiper-container .swiper-slide img {
  width: 100%;
}

/* --------------------------------------------------------------------footer */
.footer {
  position: relative;
  top: -4.5rem;
  scale: 1;
  width: 100%;
}
.footer .warning {
    font-size: 0.18rem;
    color: #000000;
    line-height: 1.8;
    letter-spacing: 1px;
    padding: 0 0.1rem;
    font-family: Microsoft JhengHei;
}
.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 #fcecba; 
    border-radius: 5px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #fec213; 
    border-radius: 10px;
  }

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