@charset "UTF-8";
@import url("./reset.css");
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;
}

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

.row90 {
  width: 90%;
}

.row80 {
  width: 80%;
}

.row75 {
  width: 75%;
}

.row70 {
  width: 70%;
}

.row65 {
  width: 65%;
}

.row60 {
  width: 60%;
}

.row50 {
  width: 50%;
}

.col-20 {
  width: 100%;
}

.col-19 {
  width: calc(100% / 20 * 19);
}

.col-18 {
  width: calc(100% / 20 * 18);
}

.col-17 {
  width: calc(100% / 20 * 17);
}

.col-16 {
  width: calc(100% / 20 * 16);
}

.col-15 {
  width: calc(100% / 20 * 15);
}

.col-14 {
  width: calc(100% / 20 * 14);
}

.col-13 {
  width: calc(100% / 20 * 13);
}

.col-12 {
  width: calc(100% / 20 * 12);
}

.col-11 {
  width: calc(100% / 20 * 11);
}

.col-10 {
  width: calc(100% / 20 * 10);
}

.col-9 {
  width: calc(100% / 20 * 9);
}

.col-8 {
  width: calc(100% / 20 * 8);
}

.col-7 {
  width: calc(100% / 20 * 7);
}

.col-6 {
  width: calc(100% / 20 * 6);
}

.col-5 {
  width: calc(100% / 20 * 5);
}

.col-4 {
  width: calc(100% / 20 * 4);
}

.col-3 {
  width: calc(100% / 20 * 3);
}

.col-2 {
  width: calc(100% / 20 * 2);
}

.col-1 {
  width: calc(100% / 20 * 1);
}

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

.float-r {
  float: right;
}

.float-l {
  float: left;
}

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

.p-absolute {
  position: absolute;
}

.p-relative {
  position: relative;
}

.p-fixed {
  position: fixed;
}

.p-static {
  position: static;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 5px;
}

.m-2 {
  margin: 10px;
}

.m-3 {
  margin: 15px;
}

.m-4 {
  margin: 20px;
}

.m-5 {
  margin: 25px;
}

.m-6 {
  margin: 30px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mb-3 {
  margin-bottom: 15px;
}

.mb-4 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 25px;
}

.mb-6 {
  margin-bottom: 30px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 5px;
}

.mt-2 {
  margin-top: 10px;
}

.mt-3 {
  margin-top: 15px;
}

.mt-4 {
  margin-top: 20px;
}

.mt-5 {
  margin-top: 25px;
}

.mt-6 {
  margin-top: 30px;
}

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

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

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

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

.mx-1 {
  margin-left: 5px;
  margin-right: 5px;
}

.mx-2 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-3 {
  margin-left: 15px;
  margin-right: 15px;
}

.mx-4 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-5 {
  margin-left: 25px;
  margin-right: 25px;
}

.mx-6 {
  margin-left: 30px;
  margin-right: 30px;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-3 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-5 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-6 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 5px;
}

.p-2 {
  padding: 10px;
}

.p-3 {
  padding: 15px;
}

.p-4 {
  padding: 20px;
}

.p-5 {
  padding: 25px;
}

.p-6 {
  padding: 30px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 5px;
}

.pb-2 {
  padding-bottom: 10px;
}

.pb-3 {
  padding-bottom: 15px;
}

.pb-4 {
  padding-bottom: 20px;
}

.pb-5 {
  padding-bottom: 25px;
}

.pb-6 {
  padding-bottom: 30px;
}

.pt-0 {
  padding: 0;
}

.pt-1 {
  padding: 5px;
}

.pt-2 {
  padding: 10px;
}

.pt-3 {
  padding: 15px;
}

.pt-4 {
  padding: 20px;
}

.pt-5 {
  padding: 25px;
}

.pt-6 {
  padding: 30px;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 5px;
  padding-right: 5px;
}

.px-2 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-3 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-4 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-5 {
  padding-left: 25px;
  padding-right: 25px;
}

.px-6 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-3 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-4 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-5 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-6 {
  padding-top: 30px;
  padding-bottom: 30px;
}

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

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%;
  font-size: 16px;
  color: #333333;
}

.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 {
  max-width: 1000px;
  height: 650px;
  position: fixed;
  left: 0;
  right: 0;
  margin: -325px auto 0 auto;
  top: 50%;
  background: #fff;
  z-index: 9999999999;
  padding: 0 20px 20px 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup-box h2 {
  color: #7be7da;
  font-weight: bold;
  position: relative;
}

.popup-box .close-top {
  height: 70px;
  line-height: 70px;
  color: #7be7da;
  border-bottom: 1px solid #7be7da;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}

.popup-box .close-top a {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 22px;
  right: 20px;
  text-decoration: none;
}

.popup-box .close-top a:before,
.popup-box .close-top a:after {
  content: "";
  display: inline-block;
  background-color: #7be7da;
  height: 30px;
  width: 1px;
  border-radius: 4px;
  top: 0;
  right: 12px;
  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 table.data-box {
  width: 623px;
  margin-top: 30px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #000;
}

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

.popup-box table.data-box thead th {
  text-align: center;
  color: #ffffff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(20%, #7be7da),
    to(#ffe294)
  );
  background: linear-gradient(180deg, #7be7da 20%, #acf2ea 100%);
  border-right: 1px solid #000;
}

.popup-box table.data-box thead th span {
  font-size: 12px;
  margin-left: 5px;
  display: inline-block;
}

.popup-box table.data-box thead th:last-child {
  border-right: 1px solid #000;
}

.popup-box table.data-box thead tr {
  border: 1px solid #000;
}

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

.popup-box table.data-box thead th,
.popup-box table.data-box tbody td {
  font-size: 14px;
  padding: 8px;
}

.popup-box table.data-box tbody td {
  text-align: center;
  border: 1px solid #000;
  color: #000;
  vertical-align: middle;
}

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

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

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

.popup-box .box-in {
  margin: 25px;
  color: #333333;
  overflow: auto;
  height: 500px;
  padding-right: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.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: 10px;
}

ol.num-list {
  list-style: decimal;
  padding-left: 20px;
}

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;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 140px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

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

.bot-fixed ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.bot-fixed li {
  margin: 0 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* ---------------------------------動畫效果--------------------------------- */
@-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;
}
/* ---------------------------------web fixed------------------------------------ */
.web-fixed {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: rgba(90, 5, 17, 0.9);
  height: 100px;
  text-align: center;
  z-index: 99999;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.web-fixed.show {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  bottom: 0;
}

.web-fixed .item,
.btn-wrap .item {
  overflow: hidden;
  display: inline-block;
  margin: 0 12px;
}

.web-fixed a,
.btn-wrap a {
  overflow: hidden;
  display: block;
  width: 310.4px;
  margin: 0 auto;
  cursor: pointer;
}

.web-fixed a,
.btn-wrap a {
    overflow: hidden;
    display: block;
    width: 200px;
    border-radius: 10px;
    font-size: 18px;
    letter-spacing: 1px;  
    margin: 0 auto;
    cursor: pointer;
    padding: 17px 0;
}

.GA-chat-btn {
    color: #fff;
    background-image: linear-gradient(to bottom, #24b0dc, #187cdb);
    text-align: center;
}

.GA-details-btn {
    color: #fff;
    background-image: linear-gradient(to bottom, #ffb200, #ff6d00);
    text-align: center;
}
/* ---------------------------------主體css-------------------------------------- */
/* .bg_cover {
  position: absolute;
  width: 1536px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-position: center!important;
  background-size: cover!important;
  z-index: 1;
  top: 0;
}
.bg_cover1 {
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2202/block1_bg_cover.png") no-repeat;
  height: 645.6px;
  width: 1204px;
  top: 17.6px;
}
.bg_cover3 {
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2202/block3_bg_cover.png") no-repeat;
  height: 822.4px;
  width: 1456.8px;
  top: 44px;
} */
body {
  background: #fffbe9;
  color: #000;
}
.banner {
  position: relative;
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2204/banner_bg.png") no-repeat;
  background-size: 100% 100%;
  background-color: #b9f4f6;
  background-position: center;
  height: 384px;
  top: -74px;
  margin-bottom: -74px;
}
.banner .inner {
  width: 100%;
  width: 1128px;
  z-index: 11;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}
.aimg {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
.banner .main_img {
  max-width: 464px;
  width: 100%;
  height: auto;
  position: absolute;
  left: 420px;
  top: 25px;
}
.banner .tt {
  top: 280px;
  z-index: 5;
}

.banner .t1_2 {
  width: 87.2px;
  right: 627px;
  top: 77px;
}

.banner .t1_1 {
  max-width: 72.8px;
  width: 100%;
  height: auto;
  right: 807px;
  top: 100px;
}

.banner .t1_6 {
  width: 78.4px;
  right: 278px;
  top: 80px;
}

.banner .t1_5 {
  max-width: 75.2px;
  width: 100%;
  height: auto;
  right: 443px;
  top: 100px;
}

.banner .t1_7 {
  width: 84.8px;
  right: 380px;
  top: 30px;
}

.banner .t1_8 {
  max-width: 152.8px;
  width: 100%;
  height: auto;
  right: 710px;
  top: 200px;
}

.banner .t1_9 {
  max-width: 173.6px;
  width: 100%;
  height: auto;
  right: 312px;
  top: 155px;
  z-index: 1;
}

.banner .t1_3 {
  left: 449.6px;
}
.banner .t1_4 {
  left: 552.8px;
}
.banner .t1 {
  top: 25.2px;
  width: 1128px;
}
.banner .t2 {
  top: 355.6px;
  width: 140.8px;
}
.banner .t3 {
  top: 283.4px;
  width: 56.8px;
  right: 235.4px;
}
.banner .t4 {
  top: 269.4px;
  width: 235.2px;
  right: 248px;
}
section h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 6px;
  line-height: 1.4;
  text-align: center;;
  color:#3e866d;
  z-index: 2;
}
section p {
  font-size: 16px;
  color: #575756;
  line-height: 1.5;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 2;
  letter-spacing: 2px;
}
section p.p2 {
  font-size: 14px;
  color: #898989;
  padding: 40px 0;
}
.block1 {
  position: relative;
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2204/block1_bg.png") no-repeat;
  background-size: 100% 100.5%;
  background-position: center;
  width: 100%;
}

.page_title{
  position: relative;
}

.left_swallow{
  max-width: 74.4px;
  width: 100%;
  height: auto;
  top: -25px;
  left: -110px;
  position: absolute;
}

.right_swallow{
  max-width: 74.4px;
  width: 100%;
  height: auto;
  top: -25px;
  right: -110px;
  position: absolute;
}

.block1 .inner {
  position: relative;
  padding-top: 98.6px;
  padding-bottom: 50px;
}

.block1 .showtable img {
    width: 100%;
    max-width: 995.4px;
    height: auto;
}

.block2 {
  position: relative;
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2204/block2_bg.png") no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-color: #fee37b;
  padding-top: 79px;
  padding-bottom: 79px;
  z-index: 1;
  height: 442.4px;
}

.bg_cover2 {
    background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2204/people_table.png") no-repeat;
    height: 284px;
    background-size: 80% 100%;
  } 

  @media only screen and (min-width: 768px) {
    .bg_cover2 {
      background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2204/people_table.png") no-repeat;
      height: 284px;
      background-size: 100% 100%;
    } 
  }

  @media only screen and (min-width: 992px) {
    .bg_cover2 {
      background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2204/people_table.png") no-repeat;
      height: 284px;
      background-size: 90% 100%;
    } 
  }

  @media only screen and (min-width: 1200px) {
    .bg_cover2 {
      background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2204/people_table.png") no-repeat;
      height: 284px;
      background-size: 85% 100%;
    } 
  }

  @media only screen and (min-width: 1440px) {
    .bg_cover2 {
      background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2204/people_table.png") no-repeat;
      height: 284px;
      background-size: 80% 100%;
    } 
  }

.block2 .table_wrap {
  position: relative;
  width:882px
}

.block2 .people_table {
  width: 884px;
}

.block2 .aimg2 {
  position: absolute;
}

.block2 .rightcontent h2{
   color:#ffea00;
}

.block2 .people {
  max-width: 279.2px;
  width:100%;
  height: auto;
  top: -58px;
  left: 69px;
}

.block2 .people_leaf {
  max-width: 144.8px;
  width: 100%;
  height: auto;
  top: 98.2px;
  left: 22.6px;
}

.block2 .people_coin {
  max-width: 56px;
  width: 100%;
  height: auto;
  top: 221.2px;
  left: 41.6px;
}

.block2 .people_circle {
  max-width: 360px;
  width:100%;
  height: auto;
  top: -40px;
  left: 32.2px;
}

.block2 .rightcontent {
  top: 45px;
  right: 55px;
}

@media only screen and (max-width: 900px) {
  .block2 .rightcontent {
    top: 45px;
    right: 0px;
  }
}

.block2 .rightcontent p,
.block2 .rightcontent h2 {
  text-align: center;
}

.block2 .rightcontent p {
  padding-top: 20px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.yellow {
  color: #ffea00;
}

.block3 {
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2204/block3_bg.png")
    no-repeat;
  background-size: 101% 101%;
  background-position: center;
  padding: 73.6px 0 100px;
  position: relative;
}

.block3 .inner {
  position: relative;
  z-index: 2;
}

.block3 .steps {
  padding-top: 24.8px;
  margin: 0 auto;
}

.block3_right {
  width: 138.6px;
  position: absolute;
  top: -25px;
  right: -125px;
}

.block3_left {
  width: 230.4px;
  position: absolute;
  bottom: -40px;
  left: -170px;
}

.block3_gold {
  width: 132px;
  position: absolute;
  top: -20px;
  left: 256.8px;
}

.block3 .steps > div.step1 > img {
  width: 213.6px;
}

.block3 .steps > div.step2 > img,
.block3 .steps > div.step3 > img {
  width: 229.6px;
}

.block3 .steps > div.step4 > img {
  width: 212.8px;
}

.block3-inner2 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.cards {
  margin-top: 25px;
}

.cards img {
  width: 191.2px;
  margin: 0 18px;
}

.footer {
  background-color: transparent;
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2202/bottom-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0;
}

.footer p {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #9d9d9c;
  padding-top: 0;
  padding-bottom: 0;
}