@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    color: #000;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.container-fluid {
    width: 100%;
}

.container {
    width: 80%;
}

.row {
    width: 100%;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.img-fluid {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.text-white {
    color: white;
}

.header {
    background: transparent;
}

html,
html * {
    font-family: "微软雅黑", "Microsoft JhengHei", "微軟正黑體", sans-serif, Arial;
}

body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
p,
ul,
li,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

/* ------------------------------------------------------------------------動畫 */
@-webkit-keyframes bounce-In {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounce-In {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

[aos="bounceIn"].aos-animate {
    -webkit-animation-name: bounce-In;
    animation-name: bounce-In;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* ------------------------------------------------------------------------彈跳訊息 */
img,
a {
    display: block;
}

.e-header {
    font-size: 10px;
}

.brown {
    color: #5b3739;
    font-size: 19px;
}

#main {
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.web-page {
    width: 100%;
    min-width: 1200px;
    font-size: 16px;
    color: #333333;
}

.inner {
    overflow: hidden;
    width: 1320px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.clearfix {
    display: block;
    clear: both;
}

.clearfix::before {
    content: "";
    display: block;
    visibility: hidden;
    font-size: 0;
    height: 0;
    clear: both;
}

.clearfix::after {
    content: "";
    display: block;
    visibility: hidden;
    font-size: 0;
    height: 0;
    clear: both;
}

.banner-posi {
    position: relative;
    z-index: 1;
    top: -74px;
    margin-bottom: -74px;
}

.popup-box .box-in .section5 h2.var-line {
    font-size: 0.28rem !important;
}

.popup-box {
    overflow: hidden;
    max-width: 95%;
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 10%;
    background: #fff;
    z-index: 99999;
    padding: 0;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.3);
}

.popup-box .close-top {
    padding: 0.1rem 0.3rem;
    font-size: 0.44rem;
    color: #ffbc6c;
    text-align: center;
    border-bottom: 0.02rem solid #ffbc6c;
    margin: 0 0.3rem;
    position: relative;
    font-weight: bold;
    width: calc(100% - 0.6rem);
}

.popup-box .close-top a {
    background: none;
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    top: 0.3rem;
    right: 0;
    text-decoration: none;
}

.popup-box .close-top a:before,
.popup-box .close-top a:after {
    content: "";
    display: inline-block;
    background-color: #ffbc6c;
    height: 0.5rem;
    width: 0.02rem;
    border-radius: 0.4rem;
    top: 0;
    right: 0.22rem;
    position: absolute;
}

.popup-box .close-top a:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1;
}

.popup-box .close-top a:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 2;
}

.popup-box .table1 td,
.popup-box .table2 td {
    width: 25%;
}

.popup-box .table3 td {
    width: 33.3333%;
}

.popup-box .table4 td {
    width: 16%;
}

.popup-box table.data-box {
    width: 100%;
    margin: 16px auto 0.25rem;
    text-align: center;
    border: 0 !important;
    font-size: 1.6em;
    border-collapse: collapse;
    border-spacing: 0;
}

.popup-box table.data-box .first-child {
    text-align: center;
    font-size: 0.28rem;
}

.popup-box table.data-box .first-child a {
    color: #666666;
    text-decoration: none;
}

.popup-box table.data-box thead {
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
}

.popup-box table.data-box thead tr {
    border: 0.02rem solid #666;
}

.popup-box table.data-box thead th,
.popup-box table.data-box tbody td {
    font-size: 0.28rem;
    padding: 0.18rem 0.05rem;
    vertical-align: middle;
}

.popup-box table.data-box thead th {
    text-align: center;
    color: #ffffff;
    background: -webkit-gradient(to bottom, rgba(255, 222, 154,.9), rgba(226,172, 78, .9), rgba(245, 196, 103, .9));
    background: linear-gradient(to bottom, rgba(255, 222, 154,.9), rgba(226,172, 78, .9), rgba(245, 196, 103, .9));
    border-right: 0.02rem solid #666;
    font-weight: 700;
}

.popup-box table.data-box thead th span {
    font-size: 0.15rem;
    display: inline-block;
    margin-top: 0.1rem;
}

.popup-box table.data-box tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.popup-box table.data-box tbody td {
    text-align: center;
    color: #333333;
    border: 0.02rem solid #666;
}

.popup-box table.data-box tbody tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.popup-box table.data-box tbody tr.grey td:nth-child(1) {
    line-height: 1.5;
    font-size: 0.28rem;
}

.popup-box table.data-box tbody tr.grey {
    background: #fff;
}

.popup-box table.data-box tbody tr.last-row td {
    border-bottom: 1px solid #cccccc;
}

.popup-box table.data-box tbody .unit {
    font-size: 0.8em;
}

.popup-box .box-in {
    margin: 0.3rem 0.34rem;
    overflow-y: auto;
    height: 8rem;
    padding-right: 0.15rem;
}

.popup-box .box-in .line-throw {
    font-size: 0.3rem;
}

.popup-box .box-in .section1 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 0.1rem;
}

.popup-box .box-in .section1 h2 {
    font-size: 0.27rem;
    font-weight: bold;
    color: #ffbc6c;
    letter-spacing: 0;
}

.popup-box .box-in .section1 p {
    font-size: 0.27rem;
    line-height: 1.5;
    word-wrap: break-word;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
    color: #000;
}

.explain {
    font-weight: 700;
}

.popup-box .box-in .point.point {
    font-size: 0.29rem;
}

ol.num-list {
    list-style: decimal;
    padding-left: 20px;
    font-size: 0.25rem;
    line-height: 1.5;
}

ol.num-list li {
    list-style: decimal;
    padding-left: 5px;
    margin-bottom: 10px;
}

ol.num-list.dot-list li {
    list-style: disc;
}

.d-none {
    display: none;
}

.text-hide {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: transparent;
}

.header .mega-menu>li>a {
    color: #ffffff;
}

.header .mega-menu .cre-bt a {
    color: #fff;
}

.header .mega-menu .bt-log>a {
    color: #fff;
}

.bot-fixed {
    position: fixed;
    padding: 0.3rem 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: url("../../images/oldCampaign2511/bottom_bg.png") no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 888;
}

.bot-fixed.show {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.bot-fixed ul,
.btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 0 0.1rem;
}

.bot-fixed img {
    margin: 0 auto;
    width: 3.35rem;
    height: .76rem;
}

.tc-hide {
    display: none;
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    line-height: 1.8;
}

.masking {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.text-hide {
    opacity: 0;
}

body {
    background: #fde7d0;
}

/* ------------------------------------------------------------------------banner */
.banner {
    background: url("../../images/oldCampaign2511/banner_bg.png") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    width: 100%;
    height: 15.04rem;
    position: relative;
    z-index: 3;
}

.banner_title {
    position: relative;
    height: 100%;
}

.banner_title img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0;
}

@keyframes right-btn-animation {
    0% {
        transform: translateY(.15rem);
    }

    50% {
        transform: translateY(-.15rem);
    }

    100% {
        transform: translateY(.15rem);
    }
}

.banner_title img.t1_1 {
    top: 0rem;
    right: 0rem;
    width: 7.5rem;
    z-index: 5;
}

.banner_title img.t1_2 {
    top: 2.6rem;
    left: 0rem;
    width: 4.95rem;
    z-index: 5;
}

.banner_title img.t1_3 {
    left: 0.5rem;
    width: 4.93rem;
    height: 2.43em;
    z-index: 4;
    top: 3.6rem;
}

.banner_title img.t1_4 {
    top: 4.8rem;
    left: 0rem;
    width: 7.5rem;
    z-index: 5;
}

.banner_title img.framework {
    top: 5rem;
    right: 0.1rem;
    width: 4rem;
    z-index: 3;
}

.banner_title img.p2 {
    top: 4.8rem;
    left: 1.75rem;
    width: 0.65rem;
    z-index: 1;
}

.banner_title img.p1 {
    top: 6.1rem;
    left: 0rem;
    width: 7.5rem;
    z-index: 5;
}

@keyframes shakeDraw {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }
}

@keyframes flashDraw {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

h2 {
    font-size: 0.48rem;
    letter-spacing: 0.05rem;
    text-align: center;
    font-weight: bold;
    background: linear-gradient(to bottom, #ffbc6c, #ffbc6c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 0.2rem;
    color: #575756;
    line-height: 1.4;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

p.p2 {
    font-size: 0.14rem;
    color: #898989;
    line-height: 1.4;
}

.yellow {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 1px;
}

/* ----------------------------------------------------------------block1 */
.block1 {
    background: #1d0e05;
    background-position: center;
    background-size: 100% 100%;
    height: 10.38rem;
    position: relative;
    padding-bottom: 0rem;
    z-index: 2;
    top: -1px;
}

.block1 img {
    margin: 0 auto;
}

.block5_title{
    width: 6.83rem;
    height: .6rem;
    margin-top: 0.5rem !important;
}

.block5_icon{
    width: 7.08rem;
    height: 7.12rem;
    margin-top: 0.3rem !important;
}

.block1_title {
    width: 6.86rem;
    padding-top: 1rem;
}

.block1_subtitle {
    width: 6.12rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.block1 p,
.block5 p {
    margin: 0 auto;
    padding: 0.25rem 0;
    width: 7rem;
    color: #ffffff;
    font-size: 0.23rem;
    line-height: 0.3rem;
    letter-spacing: 1px;
    font-family: Microsoft JhengHei;
    font-weight: 700;
}

.block1 .table {
    width: 6.99rem;
    margin: 0 auto;
    margin-top: 0.1rem;
}

.block1 .table img {
    display: inline-block;
    width: 6.99rem;
    margin: 0 auto;
}

.block1 .swiper-container-table .swiper-slide {
    width: 6.99rem;
}

.block1 .swiper-container-table .swiper-slide img {
    width: 6.99rem;
}

/* -----------------------------------------------------------------------block2 */
.block2 {
    background: url("../../images/oldCampaign2511/block2_bg.png") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    margin: 0;
    height: 11.41rem;
    position: relative;
    top: -1px;
    display: flex;
    justify-content: center;
}

.block2 .case_text {
    z-index: 2;
    width: 3.36rem;
    margin-top: -0.4rem;
}

.block2>div .block2_title {
    width: 7.43rem;
    height: 10.84rem;
}

.block2 .framework {
    z-index: 99;
    width: 6.43rem;
    position: absolute;
    top: 3.15rem;
    right: 0.9rem;
}

.block2 .framework img {
    width: 6.76rem;
}

/* ---------------------------------------------------------------------block3 */
.block3 {
    background: url("../../images/oldCampaign2511/block3_bg.png") no-repeat;
    background-size: 100% 100%;
    position: relative;
    height: 8.28rem;
    display: flex;
    justify-content: center;
    flex-flow: column;
    margin-top: -1px;
    align-items: center;
    top:-1px;
}

.block3_title {
    margin: 0rem auto;
    width: 4.95rem;
    /* padding-bottom: 0.2rem; */
}

.block3 .steps {
    position: relative;
    /* top: 0.3rem; */
    /* padding: 0.15rem 0; */
}

.block3 .steps .step-item {
    margin: 0.16rem 0.2rem;
}

.block3 .steps .step-item img {
    width: 2.99rem;
}

.block3 .steps .step4 img {
    width: 2.71rem;
}

/* --------------------------------------------------------------------block4 */
.block4 {
    background: url('../../images/oldCampaign2511/block4_bg.png') no-repeat;
    background-size: 100% 100%;
    position: relative;
    height: 5.39rem;
    padding-top: 0.8rem;
    top: -2px;
}

.block4_title {
    width: 6.46rem;
    margin: 0 auto 0.45rem;
}

.block4_gift {
    width: 2.18rem;
    position: absolute;
    top: -0.9rem;
    right: 0.3rem;
}

.cards {
    margin: 0.4rem 0;
}

.card-item img {
    width: 3.03rem;
}

.block3_leaf {
    width: 1.66rem;
    position: absolute;
    top: 0.05rem;
    right: 0.1rem;
}

.swiper-wrapper{
    height: 9rem !important;
}

.swiper-wrapper1 {
    width: 8.37rem;
    margin-left: -0.5rem;
    margin-top: 0.5rem;
}

.swiper-container .swiper-slide {
    width: 2.79rem;
    opacity: 1 !important;
}

.swiper-container .swiper-slide img {
    width: 2.6rem;
    margin: 0 auto;
}

.block5 {
    background: url('https://m.cfd139.com/cn/zt/images/oldCampaign2407/block5_bg.png') no-repeat;
    background-size: 100% 100%;
    position: relative;
    height: 25.28rem;
    padding-top: 0.8rem;
    top: -1px;
}

.block5>div {
    padding-bottom: 0.5rem;
}

.block5_title {
    margin: 0 auto;
    width: 6.46rem;
}

.rewards img {
    width: 4.09rem;
    margin: -1.5rem auto;
    /* animation-delay: 2s;
    animation: right-btn-animation 0.5s linear infinite; */
}

/* @keyframes right-btn-animation {
    0% {
      transform: translateY(0.05rem);
    }
  
    50% {
      transform: translateY(-0.05rem);
    }
  
    100% {
      transform: translateY(0.05rem);
    }
  } */

/* --------------------------------------------------------------------footer */
.footer {
    position: relative;
    scale: 1;
    width: 100%;
}

.footer p {
    font-size: 0.2rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.4;
    padding-top: 0rem;
    letter-spacing: 1px;
    font-family: Microsoft JhengHei;
}

.footer .warning {
    margin: 0 auto;
    width: 6.1rem;
}

.swiper-container-table .swiper-slide {
    opacity: 0.5;
}

.swiper-container-table .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.swiper-container .swiper-slide {
    opacity: 0.5;
}

.swiper-container .swiper-slide.swiper-slide-active,
.swiper-container .swiper-slide.swiper-slide-next {
    opacity: 1;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* popup */
.block1 .btn {
    overflow: hidden;
    display: block;
    color: #ffffff;
    font-size: 0.32rem;
    text-align: center;
    width: 3.99rem;
    height: 0.91rem;
    line-height: 0.96rem;
    cursor: pointer;
    background-image: url('../../images/oldCampaign2511/reward_btn.png');
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 auto;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 0.2rem;
}

#popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 0.36rem;
    letter-spacing: 1.5px;
    text-align: center;
    z-index: 999;
    display: none;
}

#popup-wrapper .inner {
    margin-top: 1.5rem;
    width: auto;
    height: 5rem;
}

#message-section .inner {
    padding: 0;
    width: 6rem;
    margin: 0 auto;
    margin-top: 1rem;
}

#popup-wrapper #go-to-app-section {
    background: url('../../images/oldCampaign2511/go-to-app-section.png') center no-repeat;
    background-size: 100% 100%;
    color: #ffffff;
}

#popup-wrapper #go-to-app-section .inner {
    margin-top: 1.5rem;
}

#popup-wrapper #login-section {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2505/go-to-app-section.png") center no-repeat;
    background-size: 100% 100%;
    color: #ffffff;
}

#popup-wrapper #activation-section {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2407/activation-section.png") center no-repeat;
    background-size: 100% 100%;
    color: #ffffff;
}

#popup-wrapper #no-demo-section {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2407/no-demo-section.png") center no-repeat;
    background-size: 100% 100%;
    color: #ffffff;
}

#popup-wrapper #no-demo-section .inner {
    margin: 0.3rem 0.3rem;
}

#message-section {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2407/message-section2.png") center no-repeat;
    background-size: 100% 100%;
    padding-top: 0.8rem;
    color: #ffffff;
}

#message-section .description {
    /* margin-top: -0.8rem; */
}

#final-bonus-section {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2407/final-bonus-section.png") center no-repeat;
    background-size: 100% 100%;
    padding-top: 0.8rem;
}

#bonus-section {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2407/bonus-section.png") center no-repeat;
    background-size: 100% 100%;
    /* padding-top: 0.8rem; */
}

#final-bonus-section .inner {
    margin-top: 1.7rem;
}

#popup-wrapper .popup-content {
    position: absolute;
    transform: translate(8%, 150%);
    text-align: center;
    overflow: visible;
    display: none;
    width: 6.72rem;
    height: 3.32rem;
}

#popup-wrapper .popup-content .alert-close {
    position: relative;
    background: url("../../images/lotteryGame2401/alert_close.png") no-repeat;
    background-size: 100% 100%;
    z-index: 999;
    width: .41rem;
    height: .46rem;
    left: 88%;
    top: 11%;
}

#popup-wrapper #score-section,
#popup-wrapper #exchange-section {
    background: url("../../images/pointLevel2402/score-section.png") center no-repeat;
    background-size: 100% 100%;
    transform: translate(0%, 28%);
    height: 8.55rem;
    color: #ffffff;
}

#popup-wrapper .popup-content.max-height {
    max-height: 88%;
}

#popup-wrapper .popup-content#game {
    transform: none;
}

#getExchange-section,
#getIntegral-section {
    padding: 0rem;
}

#popup-wrapper .inner.no-border {
    border: none;
}

#popup-wrapper .title {
    margin: 0 auto 0.62rem;
}

#game-over .inner .title {
    margin: 0 auto 0.27rem;
    font-size: 0.55rem;
    color: #fefc7a;
    font-weight: 600;
}

#popup-wrapper .description {
    margin-bottom: 0.5rem;
    line-height: 0.55rem;
    font-weight: 900;
    font-size: 0.4rem;
    color: #ffffff;
}

#game-over .description .obj {
    position: initial;
    margin: 0 auto;
    padding-top: 2px;
}

#game-over .description .obj img {
    width: 1rem;
    height: 1rem;
}

#popup-wrapper .btn {
    margin: 0.5rem auto 0;
}

.popup-content .inner .title {
    width: 4.51rem;
    height: 0.49rem;
    font-size: 0.44rem;
    font-weight: 900;
}

#score-section #getIntegral-section,
#exchange-section #getExchange-section {
    padding: 0.2rem 0;
    margin: 0.2rem 0.2rem;
    height: 4rem;
}

#score-section #getIntegral-section .recodeNone,
#exchange-section #getExchange-section .recodeNone {
    font-weight: 900;
    margin-top: 1.5rem;
    padding-bottom: 1.2rem;
}

#score-section .inner,
#exchange-section .inner {
    padding: 0.8rem 0;
    margin: 0.2rem 0.5rem;
}

/* #score-section #accumulation,
#exchange-section #accumulation,
#bonus-section .levelMoney {
    color: #fff;
    -webkit-text-stroke: 1.5px #ff8806;
    font-size: 0.6rem;
    font-weight: 900;
} */

#bonus-section .levelMoney {
    font-size: 0.3rem;
    letter-spacing: 4px;
    /* margin-top: -2rem; */
    font-weight: lighter;
    /* padding-bottom: .8rem; */
}

#exchange-section #accumulation {
    font-size: 0.5rem;
}

#score-section #getIntegral-section #listIntegral,
#exchange-section #getExchange-section #listExchange {
    border-radius: 0.3rem;
    box-shadow: 0 0 10px 5px inset #690000;
    background-color: #7f0000;
    height: 4rem;
    overflow-y: auto;
    text-align: justify;
    line-height: 0.53rem;
    padding-left: .3rem;
    padding-right: .3rem;
    font-size: 0.34rem;
}

#exchange-section #getExchange-section #listExchange .listContent {
    display: flex;
}

.listContent .leftDiv,
.listContent .rightDiv {
    flex: 1;
}

.listContent .leftDiv {
    text-align: left;
}

.listContent .rightDiv {
    text-align: right;
}

#no-demo-section .btn {
    margin-top: 2.6rem;
}

#getIntegral-section .btn,
#exchange-section .btn {
    margin-top: 0.2rem;
}

.txt-fw9 {
    font-weight: 900;
}

.txt-20 {
    font-size: 0.2rem;
}

.txt-30 {
    font-size: 0.3rem;
    font-weight: 600;
}

.txt-40 {
    font-size: 0.4rem;
}

.txt-50 {
    font-size: 0.5rem;
}

.no-border {
    border: none;
}

@media screen and (max-width: 1024px) and (min-width: 750px) {
    #popup-wrapper .popup-content {
        transform: translate(0%, 95%);
    }

    #popup-wrapper .description {
        font-size: 0.3rem;
    }

    #popup-wrapper #score-section {
        transform: translate(0%, 7%);
    }

    #popup-wrapper #exchange-section {
        transform: translate(0%, 18%);
    }
}

.popup-content .btn {
    background: url(../../images/oldCampaign2511/alert_btn.png) center no-repeat;
    background-size: 100% 100%;
    font-size: .35rem;
    letter-spacing: 2px;
    font-weight: normal;
    width: 3.74rem;
    height: 0.85rem;
    text-align: center;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    font-family: Microsoft YaHei;
    justify-content: center;
    align-items: center;
}

/*# sourceMappingURL=all.css.map */


/* reward */
.rewards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

.rewards >div{
    width: 3.27rem;
    height: 4.59rem;
    margin: -0.3rem 0;
}
  
.level.lv1 {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2405/reward1.png") center no-repeat;
    background-size: 100% 100%;
}

.levels.lv1p {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2405/reward1_ed.png") center no-repeat;
    background-size: 100% 100%;
}

.level.lv2 {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2405/reward2.png") center no-repeat;
    background-size: 100% 100%;
}

.levels.lv2p {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2405/reward2_ed.png") center no-repeat;
    background-size: 100% 100%;
}

.level.lv3 {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2405/reward3.png") center no-repeat;
    background-size: 100% 100%;
}

.levels.lv3p {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2405/reward3_ed.png") center no-repeat;
    background-size: 100% 100%;
}

.level.lv4 {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2405/reward4.png") center no-repeat;
    background-size: 100% 100%;
}

.levels.lv4p {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2405/reward4_ed.png") center no-repeat;
    background-size: 100% 100%;
}

.level.lv5 {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2405/reward5.png") center no-repeat;
    background-size: 100% 100%;
}

.levels.lv5p {
    background: url("https://m.cfd139.com/cn/zt/images/oldCampaign2405/reward5_ed.png") center no-repeat;
    background-size: 100% 100%;
}

#bonus-section .levelMoney {
    color: #ffffff;
    font-weight: lighter;
    letter-spacing: 2px;
  }
  
  #bonus-section .levelMoney .award {
    color: #fffc00;
    font-weight: normal;
  }

.notice{
    color:#ffff00;
    font-family: Microsoft JhengHei;
}