@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;
  justify-content: space-evenly;
}

.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;
  overflow-x: hidden;
}

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

.tc-hide {
    display: none
}

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

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

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

.popup-box .close-top {
  height: 70px;
  line-height: 70px;
  color: #f69e7a;
  border-bottom: 1px solid #f69e7a;
  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: #f69e7a;
  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(to bottom, rgba(244, 206, 112, 1),rgba(245, 182, 116, 1), rgba(246, 158, 122, 1));
  background: linear-gradient(to bottom, rgba(244, 206, 112, 1),rgba(245, 182, 116, 1), rgba(246, 158, 122, 1));
  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 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: -12em;
  left: 0;
  width: 100%;
  height: 10em;
  text-align: center;
  z-index: 99999;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: rgba(159, 112, 15, 1);
}

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

.web-fixed .item,
.btn-wrap .item {
  overflow: hidden;
  display: inline-block;
  position: relative;
  padding: 1.5em 2em;
  left: 2em;
}

.web-fixed a,
.btn-wrap a {
  overflow: hidden;
  display: block;
  width: 400px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 4em;
}

.web-fixed a img,
.btn-wrap a img {
  width: 400px;
  left: 0px;
}

.GA-chat-btn {
  color: #454545;
}

.GA-details-btn {
  color: #454545;
}

/* ---------------------------------主體css-------------------------------------- */
body {
  background: #fdf0de;
  color: #000;
}

.banner {
  position: relative;
  background: url("https://www.cfd139.com/cn/zt/images/oldCampaign2310/banner_bg.png")
    no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 531px;
  top: -74px;
  margin-bottom: -74px;
  z-index: 2;
}

.banner .inner {
  width: 100%;
  max-width: 1920px;
  z-index: 11;
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
}

.banner .aimg {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.banner .t1_1 {
    position: absolute;
    width: 173px;
    top: 100px;
    right: -24em;
    z-index: 5;
}

.banner .t1_2 {
    position: absolute;
    width: 174px;
    top: 2em;
    left: 41em;
    z-index: 5;
}

.banner .t1_3 {
    position: absolute;
    width: 218px;
    top: 235px;
    left: 922px;
    z-index: 1;
}

.banner .t1_6 {
    position: absolute;
    width: 111px;
    top: 180px;
    left: 805px;
    z-index: 1;
}

.banner .t1_4 {
  position: absolute;
  width: 20em;
  top: 20.5em;
  left: 44em;
  z-index: 5;
}

.banner .t1_5 {
    position: absolute;
    width: 56px;
    top: 19em;
    left: 53em;
    z-index: 5;
  }

.banner .p1 {
    position: absolute;
    width: 50em;
    top: 1.5em;
    left: -36em;
    z-index: 1;
    -webkit-animation-name: ;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
}

@keyframes scaleDraw {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

section h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 6px;
  line-height: 1.4;
  text-align: center;
  background: #ebebeb;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
}

section p {
    font-size: 16px;
    color: #000000;
    line-height: 20px;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 30px;
    z-index: 2;
    letter-spacing: 2px;
    font-family: Microsoft JhengHei;
    font-weight: 700;
}

section p.p2 {
  font-size: 16px;
  padding: 50px 0;
}

.block1 {
  position: relative;
  background: url("https://www.cfd139.com/cn/zt/images/oldCampaign2310/block1_bg.png")
    no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 762px;
  z-index: 2;
}

.block1 .inner {
  position: relative;
  padding-top: 60px;
}

.block1 .inner img:first-child{
    max-width: 449.1px;
    width:100%;
    height: auto;
}

.block1 .inner .showtable img {
    position: relative;
    display: block;
    max-width: 855px;
    width: 100%;
    height: auto;
  }

.block1 .showtable {
  position: relative;
  text-align: center;
  z-index: 2;
}

.block1 .showtable img {
  width: 100%;
  padding: 10px;
}

.block1 .inner .fireworks {
    position: absolute;
    top: -74px;
    left: 100px;
    margin: 0;
    padding: 0;
}

.block1 .inner .fireworks img {
    max-width: 1624px;
    width: 100%;
    height: auto;
}

.block2 {
    position: relative;
    background: url(https://www.cfd139.com/cn/zt/images/oldCampaign2310/block2_background.png) no-repeat;
    background-position: bottom;
    background-size: cover;
    height: 382px;
    z-index: 2;
}

.block2_title{
    background: url('https://www.cfd139.com/cn/zt/images/oldCampaign2310/block2_title.png') no-repeat;
    background-position: left;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 217.8px;
    height: 81.9px;
}

.block2 h2 {
    color: #fff;
    font-weight: 700;
    font-size: 38px;
}

.block2 p {
    color: #ffffff;
    text-align: left;
  }

  .block2 .reward{
      font-weight: 700;
      font-family: Microsoft JhengHei;
  }

.block2 .leftpeople,
.block2 .rightcontent {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;
    position: relative;
}

.rightcontent {
  text-align: left;
}

.leftpeople {
  width: 394.2px;
  height: 368px;
}

.leftpeople img {
    position: absolute;
    width: 100%;
    top: -10px;
    left: -58px;
    max-width: 431px;
    height: auto;
}

.rightcontent p {
    line-height: 1.4;
    padding: 35px 0 0 0;
    letter-spacing: 1px;
    font-weight: normal;
    font-size: 17px;
}

.rightcontent .btnText {
  background: url("https://sc.cfygxz.com/source/www/zt/lp-img/pc/oldCampaign2110/btnText.png") no-repeat;
  background-size: cover;
  width: 555.2px;
  height: 49.6px;
  display: flex;
  align-items: center;
  padding-left: 22px;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 17px;
}

.sakura1{
    position: absolute;
    top: 10px;
    right: -30px;
}

.sakura2{
    position: absolute;
    bottom: -60px;
    right: -30px;
}

.block3 {
  position: relative;
  background: url("https://www.cfd139.com/cn/zt/images/oldCampaign2310/block3_bg.png")
    no-repeat;
  background-position: center;
  background-size: 100% 100%;
  height: 521px;
  top: -2px;
}

.block3 .inner {
  position: relative;
  padding-top: 0px;
  padding-bottom: 30px;
  z-index: 2;
}

.block3 .inner img {
  max-width: 288px;
  width: 100%;
  height: auto;
}

.block3 .steps {
  padding-top: 3rem;
  margin: 0 auto;
  scale: 1;
  /* padding-left: 4em; */
}

.block3 .steps > div.step1 > img {
  width: 100%;
}

.block3 .steps > div.step2 > img,
.block3 .steps > div.step3 > img {
  width: 100%;
}

.block3 .steps > div.step4 > img {
  width: 100%;
  margin-bottom: 1px;
}

.block4 {
  background: url("https://www.cfd139.com/cn/zt/images/oldCampaign2310/block4_bg.png")
    no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: relative;
  height: 973.8px;
  top: -3px;
}

.block4 .inner {
  position: relative;
  padding-top: 50px;
  z-index: 2;
}

.block4 .inner >img {
    max-width: 572px;
    width: 100%;
    height: auto;
}

.cards {
    scale: 1;
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: 3em auto 1em;
}

.cards img {
  max-width: 317px;
  width: 100%;
  height: auto;
  margin: 0 20px;
}

.footer {
  height: 220px;
  background-color: #fed8c600;
  padding-bottom: 10rem;
}

.footer img {
  position: relative;  

}

.footer .warning{
    padding: 0 30px;
    color: #ffffff;
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 1px;
}

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

/* @media screen and (max-width: 1440px) {
  .banner {
    height: 430px;
  }
  .block1 {
    height: 770px;
  }
  .block2 {
    height: 370px;
  }
  .block3 {
    height: 560px;
  }
  .block4 {
    height: 760px;
  }
} */
