@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: #004894;
    font-weight: bold;
    position: relative;
}

.popup-box .close-top {
    height: 70px;
    line-height: 70px;
    color: #004894;
    border-bottom: 1px solid #004894;
    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: #004894;
    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(36, 88, 141,.9), rgba(14,63, 112, .9), rgba(10, 45, 81, .9));
    background: linear-gradient(to bottom, rgba(36, 88, 141,.9), rgba(14,63, 112, .9), rgba(10, 45, 81, .9));
    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: #004894;
    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: 383.2px;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 4em;
}

.web-fixed a img,
.btn-wrap a img {
    width: 383.2px;
    left: 0px;
}

.GA-chat-btn {
    color: #454545;
}

.GA-details-btn {
    color: #454545;
}

/* ---------------------------------主體css-------------------------------------- */
body {
    background: #cdeafe;
    color: #000;
}

.banner {
    position: relative;
    background: url("../images/oldCampaign2602/banner_bg.png") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 603px;
    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: 461px;
    top: 100px;
    right: -27em;
    z-index: 5;
}

.banner .t1_2 {
    position: absolute;
    width: 462px;
    top: 280px;
    right: -28em;
    z-index: 5;
}

.banner .t1_3 {
    position: absolute;
    width: 50px;
    top: 334px;
    left: -35em;
    z-index: 5;
}

.banner .t1_4 {
    position: absolute;
    width: 355px;
    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: 1920px;
    top: -4.65em;
    left: -8em;
    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: 535px;
    top: 198px;
    right: 3em;
    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("../images/oldCampaign2602/block1_bg.png") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 1030px;
    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: 1004px;
    width: 100%;
    height: auto;
    margin-top: 15px;
}

.block1 .inner img{
    width: 851px;
}

.block1 .inner img:first-child {
    max-width: 615px;
    width: 100%;
    height: auto;
}

.block1 .inner .showtable img {
    position: relative;
    display: block;
    max-width: 837px;
    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(../images/oldCampaign2602/block2_bg.png) no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    height: 511px;
    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("../images/oldCampaign2602/block3_bg.png") no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: 376px;
    top: 0px;
}

.block3 .inner {
    position: relative;
    padding-top: 0px;
    padding-bottom: 30px;
    z-index: 2;
}

.block3 .inner img {
    max-width: 216px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.block3 .inner img.block3-title {
    max-width: 525px;
    width: 100%;
    height: auto;
}

.block3 .steps {
    padding-top: 2rem;
    margin: 0 auto;
}

.block3 .steps >div{
    width: 300px;
  }
/* 
  .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: 196px;
    margin-bottom: 1px;
}

.block4 {
    background: url("../images/oldCampaign2602/block4_bg.png") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
    height: 418px;
    top: -1px;
}

.block4 .inner {
    position: relative;
    padding-top: 0;
    z-index: 2;
}

.block4 .inner>img {
    max-width: 747px;
    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 #14579a;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #004894;
    border-radius: 10px;
}

/* reward btn */

.page_btn {
    display: flex;
    justify-content: center; /* 水平置中 */
    align-items: center; /* 垂直置中 */
    padding: 70px 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: 320px;
    height: 72.8px;
    line-height: 116px;
    letter-spacing: 3px;
    background: url("../images/oldCampaign2509/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: -7%;
    -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: 93%;
    left: 31%;
  }
  
  .popup-box1 .light-box a[type="button"] img {
    content: url("../images/oldCampaign2509/popup_btn.png");
    width: 299.2px;
    height: 68px;
  }
  
  
  .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("../images/oldCampaign2602/popup_content.png") no-repeat;
    background-size: 100% 100%;
    width: 792px;
    height: 530px;
    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;
}

/* =================================================================
   ★ 2月活动页 - 动态特效整合包 (Fix Layout Issue Ver.)
   ================================================================= */

/* --- 1. 定义核心动画关键帧 (Keyframes) --- */

/* [Banner] 上下悬浮 (模拟海浪/呼吸感) */
@keyframes float-y-safe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); } /* 仅垂直移动，不影响水平定位 */
}

/* [Banner] 闪电风暴 (模拟忽闪忽灭) */
@keyframes lightning-flash {
    0%, 90%, 100% { opacity: 0; }
    92% { opacity: 0.1; }
    93% { opacity: 0.8; filter: brightness(1.5) contrast(1.2); } /* 强闪 */
    94% { opacity: 0.1; }
    96% { opacity: 0; }
}

/* [Banner] 深海巨浪氛围 (背景流动) */
@keyframes turbulent-sea {
    0% { background-position: 0% 0%; }
    50% { background-position: 20% 10%; }
    100% { background-position: 0% 0%; }
}

/* [Button] 按钮扫光特效 (流光) */
@keyframes shiny-sweep {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

/* [Coins] 金币/金属光泽闪烁 */
@keyframes gold-glint {
    0%, 100% { filter: brightness(100%); transform: scale(1); }
    50% { filter: brightness(120%) contrast(110%); transform: scale(1.02); }
}

/* --- 2. Banner 区域特效 (解决走位问题版) --- */

/* 2.1 闪电与海浪氛围层 (叠加在背景图之上，文字之下) */
.banner::before {
    /* 深海流动层 */
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(9, 23, 43, 0.4) 0%, rgba(23, 73, 133, 0.1) 50%, rgba(5, 17, 33, 0.6) 100%);
    background-size: 150% 150%;
    animation: turbulent-sea 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1; 
}

.banner::after {
    /* 闪电光照层 */
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(200, 230, 255, 0.4);
    mix-blend-mode: overlay; /* 叠加模式，让亮部更亮 */
    animation: lightning-flash 5s infinite cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
    z-index: 1;
}

/* 2.2 Banner 内部元素浮动 (分别对图片做动画，不动父容器，完美解决走位) */
.banner .aimg {
    /* 基础浮动动画 */
    animation: float-y-safe 4s ease-in-out infinite;
    /* 确保 z-index 高于闪电层 */
    position: absolute; 
    z-index: 5; 
}

/* 设置不同的延迟，营造层次感，不要大家一起动 */
.banner .t1_1 { animation-duration: 5s; animation-delay: 0s; }   /* 主标题 */
.banner .t1_2 { animation-duration: 6s; animation-delay: 1s; }   /* 副标题 */
.banner .t1_4 { animation-duration: 4.5s; animation-delay: 0.5s; } /* 人物 */
.banner .alarm { animation-duration: 3s; animation-delay: 1.5s; } /* 警报灯 */

/* --- 3. 报名按钮交互 (Block1) - 针对扁长椭圆优化版 --- */

.page_btn1 a {
    position: relative;
    /* 关键点：将矩形容器强行裁切为胶囊/椭圆形 */
    /* 高度约72px，设置大一点的圆角值(如50px)即可自动变成胶囊形 */
    border-radius: 50px; 
    
    /* 隐藏溢出：这会让流光只在圆角内部显示，不会跑到四个角落 */
    overflow: hidden; 
    
    /* 确保 z-index 使得光效在背景图之上 */
    z-index: 10;
}

/* 优化后的流光：调整角度和宽度，更适合长条形按钮 */
.page_btn1 a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* 起始位置更靠左，防止穿帮 */
    width: 60%;  /* 光稍微宽一点，扫过时更有质感 */
    height: 100%;
    
    /* 制作一道柔和的白光 */
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.8) 50%, /* 中间亮一点 */
        rgba(255,255,255,0) 100%
    );
    
    /* 倾斜角度：30度看起来更有速度感 */
    transform: skewX(-30deg);
    
    /* 动画：3秒循环一次，infinite表示无限循环 */
    animation: shiny-sweep 3s infinite;
    
    pointer-events: none; /* 让鼠标可以直接点击穿透光效 */
}

/* --- 4. 收益案例金币特效 (Block2) --- */

/* 让右侧的金币图片闪烁 */
.block2 .rightcontent img {
    animation: gold-glint 3s ease-in-out infinite;
}

/* 左侧人物鼠标悬停微动 */
.block2 .leftpeople img {
    transition: transform 0.5s ease;
}
.block2 .leftpeople:hover img {
    transform: translateY(-10px);
}

/* --- 5. 步骤图交互 (Block3) --- */

.block3 .steps > div {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* 贝塞尔曲线实现Q弹效果 */
}

.block3 .steps > div:hover {
    transform: translateY(-10px) scale(1.05); /* 向上浮动并轻微放大 */
    cursor: pointer;
}

/* --- 6. 表格行交互 (Block1 & Popup) --- */
/* 仅针对弹窗内的真实表格生效 */
.popup-box table.data-box tbody tr {
    transition: all 0.2s ease;
}

.popup-box table.data-box tbody tr:hover {
    background-color: #fffbf0 !important; /* 淡金背景 */
    transform: scale(1.01); /* 极轻微放大，避免破坏布局 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    cursor: default;
}
