@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: #d42a1e;
    font-weight: bold;
    position: relative;
}

.popup-box .close-top {
    height: 70px;
    line-height: 70px;
    color: #d42a1e;
    border-bottom: 1px solid #d42a1e;
    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: #d42a1e;
    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(242, 82, 0, 1), rgba(185, 45, 1, 1), rgba(142, 16, 1, 1));
    background: linear-gradient(to bottom, rgba(242, 82, 0, 1), rgba(185, 45, 1, 1), rgba(142, 16, 1, 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;
}

.explain {
    font-weight: 700;
}

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;
    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: linear-gradient(to bottom, rgba(254, 78, 0,.9), rgba(198, 50, 0, .9), rgba(121, 12, 0, .9));
    align-items: center;
}

.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: #cdeafe;
    color: #000;
}

.banner {
    position: relative;
    background: url("https://www.cfd139.com/cn/zt/images/oldCampaign2501/banner_bg.png") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 600px;
    top: -74px;
    margin-bottom: -75px;
    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: 499px;
    top: 33px;
    left: 35em;
    z-index: 5;
}

.banner .t1_2 {
    position: absolute;
    width: 502px;
    top: 180px;
    left: -36em;
    z-index: 5;
}

.banner .t1_3 {
    position: absolute;
    width: 50px;
    top: 334px;
    left: -35em;
    z-index: 5;
}

.banner .t1_4 {
    position: absolute;
    width: 435px;
    top: 335px;
    left: 475px;
    z-index: 5;
}

.banner .t1_5 {
    position: absolute;
    width: 87px;
    top: 300px;
    left: 37.5em;
    z-index: 5;
}

.banner .p1 {
    position: absolute;
    width: 804px;
    top: 1.4em;
    left: -37em;
    z-index: 3;
    /* -webkit-animation-name: ;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s; */
}

/* @keyframes lighting {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 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(30deg) rotateZ(200deg);
        opacity: 1;
        top: 222px;
    }
}

.banner .alarm {
    position: absolute;
    width: 273px;
    top: 296px;
    left: 32em;
    z-index: 1;
    /* animation: lighting 1s infinite;
    animation-delay: 2s; */
}

.banner .coin1 {
    position: absolute;
    background-image: url(https://www.cfd139.com/cn/zt/images/oldCampaign2309/coin1_banner.png);
    background-size: 100% 100%;
    width: 120px;
    height: 114px;
    right: 1022px;
    animation: coin_dropping1 1.5s linear both;
    z-index: 3;
}

@keyframes cloud_floating {
    0% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(5px);
    }
}

.banner .coin4 {
    background-image: url(https://www.cfd139.com/cn/zt/images/oldCampaign2309/coin4_banner.png);
    background-size: 100% 100%;
    position: absolute;
    width: 92px;
    height: 76px;
    top: 205px;
    right: 790px;
    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: 346px;
    }
}

@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: 112px;
    }
}

.banner .coin2 {
    position: absolute;
    background-image: url(https://www.cfd139.com/cn/zt/images/oldCampaign2309/coin2_banner.png);
    background-size: 100% 100%;
    width: 76px;
    height: 70px;
    right: 805px;
    animation: coin_dropping2 2s linear both;
    z-index: 3;
}

.banner .coin3 {
    position: absolute;
    background-image: url(https://www.cfd139.com/cn/zt/images/oldCampaign2309/coin3_banner.png);
    background-size: 100% 100%;
    width: 109px;
    height: 104px;
    right: 165px;
    z-index: 1;
    animation: coin_dropping3 1.5s linear both;
}

@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: linear-gradient(to bottom, #e4b0a3, #ea522a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
}

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

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

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

.block5_title{
    height: auto;
    margin: 30px auto 0;
}

.block1 .block5_icon{
    width: 1124px !important;
    height: auto;
    margin: 30px auto;
}

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

.block1 .block1-subtitle{
    max-width: 748px;
    width: 100%;
    height: auto;
    margin-top: 15px;
}

.block1 .inner img{
    width: 690px;
}

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

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

.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/oldCampaign2501/block2_bg.png) no-repeat;
    background-position: top center;
    background-size: cover;
    height: 512px;
    z-index: 2;
    padding: 35px 0 0 0;
}

.block2_title {
    max-width: 202px;
    width: 100%;
    height: auto;
}

.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: 429.3px;
    height: 396px;
}

.leftpeople img {
    position: absolute;
    width: 100%;
    top: -30px;
    left: 0px;
    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;
    font-family: Microsoft JhengHei;
}

.red {
    color: #fc3e3e;
}

.yellow {
    color: #fff000;
}

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

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

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

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

.block3 .steps {
    padding-top: 2rem;
    margin: 0 auto;
}

/* .block3 .steps >div{
    padding: 0 25px;
  }

  .block3 .steps >div:nth-child(3){
    padding: 0 25px 0 35px;
  }

  .block3 .steps >div:nth-child(2){
    padding: 0 35px 0 25px;
  } */

.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/oldCampaign2501/block3_bg.png") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
    height: 925px;
    top: -1px;
}

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

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

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

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

.block5 {
    background-color: #5225d2;
    height: 200px;
}

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

.footer img {
    position: relative;

}

.footer .warning {
    padding: 0 30px;
    font-family: Microsoft JhengHei;
    margin-top: 10px;
    color: #ffffff;
    font-weight: 700;
    width: 1000px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #461a00;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #d42a1e;
    border-radius: 10px;
}

/* reward btn */

.page_btn {
    display: flex;
    justify-content: center; /* 水平置中 */
    align-items: center; /* 垂直置中 */
    padding: 20px 0 30px 0;
  }
  
  .page_btn .page_btn1, .page_btn .page_btn2 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  
  .page_btn1 a {
    overflow: hidden;
    display: block;
    margin: 0 auto;
    font-size: 32px;
    font-weight: normal;
    text-align: center;
    color: transparent;
    width: 329.4px;
    height: 132.3px;
    line-height: 116px;
    letter-spacing: 3px;
    background: url("https://www.cfd139.com/cn/zt/images/oldCampaign2501/block1_btn.png") no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
  }

/*弹窗*/
.popup-box1 {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.8;
  }
  
  .light-box a[type="button"] span {
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 30px;
    white-space: nowrap;
    font-family: "Microsoft YaHei", "Microsoft JhengHei", arial, sans-serif;
    font-weight: 600;
  }
  
  .popup-box1 .light-box a[type="button"] {
    position: absolute;
    cursor: pointer;
    margin: 0 auto;
    top: 84%;
    left: 31%;
  }
  
  .popup-box1 .light-box a[type="button"] img {
    content: url("https://www.cfd139.com/cn/zt/images/oldCampaign2501/popup_btn.png");
    width: 324px;
    height: 127px;
  }
  
  
  .popup-box1 .content > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
    padding-top: 0.7rem;
  }
  
  .popup-box1 .content > ul li {
    margin: 0 45px;
    font-weight: bold;
    font-size: 29px;
    text-align: center;
  }
  
  .popup-box1 .content > ul li > img {
    margin-bottom: 12px;
  }
  
  .popup-box1 .light-box {
    position: absolute;
    /* top: -8%; */
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 9999;
    color: #edebeb;
  }
  
  .popup-box1 .content {
    background: url("https://www.cfd139.com/cn/zt/images/oldCampaign2501/popup_content.png") no-repeat;
    background-size: 100% 100%;
    width: 849.6px;
    height: 586.6px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding-top: 0.5rem;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

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


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

.ios, .android{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.ios img, .android img{
    width: 143px;
    margin-top: 20px;
}

.ios img:first-child, .android img:first-child{
    width: 216px;
    margin-top: 60px;
}

.ios-code:hover{
    transform: scale(1.1, 1.1);
}

.ios-title:hover{
    transform: scale(1.1, 1.1);
}

.ios a{
    display: flex;
    flex-flow: column;
    align-items: center;
}