body {
    /* max-width: 1920px; */
    margin: 0 auto;
    overflow-x: hidden;
    font-size: 0.24rem;
}
input[type="checkbox"] {
    -webkit-appearance: none; /* 移除默认样式 */
    -moz-appearance: none;
    appearance: none; /* 移除默认样式 */
    background-color: transparent; /* 设置背景为透明 */
    margin: 0;
}
input[type="text"] {
    border-radius: 0;
}
[v-cloak] {
    display: none;
}
@font-face {
    font-family: "KoreanGWS-bold";
    src: url('../fonts/KoreanGWS-bold.otf') format('opentype');
    font-style: normal;
}
@font-face {
    font-family: "KoreanGWS-normal";
    src: url('../fonts/KoreanGWS-normal.otf') format('opentype');
    font-style: normal;
}
.pageMain {
    background: #171727;
}
.page {
    position: relative;
    width: 100%;
}
/* 第一页 */
.page1 {
    position: relative;
    width: 19.2rem;
    height: 12.17rem;
    background: url('../img/page1/page1_bg.png') no-repeat center center;
    background-size: 100% 100%;
}
.page1_bg {
    width: 19.2rem;
    height: 12.17rem;
    background: url('../img/page1/page1_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.page1_bg_img {
    width: 19.2rem;
    height: 12.17rem;
}
#video-bg-player {
    width: 19.2rem;
    height: 12.17rem;
    object-fit: cover;
}
.page1_content {
    width: 7.43rem;
    position: absolute;
    top: 6.1rem;
    left: 50%;
    transform: translateX(-50%);
}
.page1_content_slogan {
    display: block;
    width: 7rem;
    height: 1.85rem;
    margin: 0 auto;
}
.page1_content_playBtn {
    width: 0.96rem;
    height: 0.96rem;
    position: absolute;
    cursor: pointer;
    top: 0.11rem;
    right: 0.2rem;
}
.page1_content_playBtn img {
    display: block;
    width: 100%;
    height: 100%;
}
.page1_content_playBtn_outer {
    animation: outer_rotate 10s infinite linear
}
.page1_content_playBtn_inner {
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes outer_rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.page1_content_reservation {
    width: 3.09rem;
    height: 0.86rem;
    background: url('../img/page1/page1_btn.png') no-repeat center center;
    background-size: 100% 100%;
    margin: 1rem auto 0;
    cursor: pointer;
}
.page1_content_diamond {
    width: 1.43rem;
    height: 1.36rem;
    background: url('../img/page1/page1_arrow.png') no-repeat center center;
    background-size: 100% 100%;
    margin: 0 auto;
    animation: diamond_updown 1.2s infinite linear;
}
@keyframes diamond_updown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(0.15rem);
    }
    100% {
        transform: translateY(0);
    }
}
/* 新闻 */
.page_news_small {
    width: 4.8rem;
    /* height: 4.21rem; */
    height: 1.2rem;
    background: url('../img/page1/page1_news1.png') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: 1.4rem;
    right: 0;
}
.page_news_more {
    width: 0.54rem;
    height: 0.2rem;
    background: url('../img/page1/page1_news_more.png') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: 0.43rem;
    right: 0.33rem;
    cursor: pointer;
}
.page_news_more:hover {
    background: url('../img/page1/page1_news_more1.png') no-repeat center center;
    background-size: 100% 100%;
}
/* 右侧向左侧滑入动画 */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}
/* 向右侧滑出动画（用于关闭） */
@keyframes slideOutToRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}
.page_news {
    width: 4.8rem;
    height: 8.09rem;
    background: url('../img/page1/page1_news2.png') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
}
.page_news_slideInFromRight {
    animation: slideInFromRight 0.5s ease-out;
    transform: translateX(0);
}
.page_news_slideOutToRight {
    animation: slideOutToRight 0.5s ease-out;
}
.page_news_close {
    width: 0.45rem;
    height: 0.34rem;
    background: url('../img/page1/page1_close.png') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: 0.43rem;
    right: 0.33rem;
    cursor: pointer;
    z-index: 101;
}
.page_news_title {
    text-align: center;
    margin: 0.21rem auto 0;
    display: flex;
    flex-direction: column;
    padding: 0 0.13rem;
}
.page_news_title span {
    display: block;
    margin: 0 0.17rem;
}

.page_news_title_big {
    font-family: "KoreanGWS-normal";
    font-weight: normal;
    font-size: 0.4rem;
    color: #F8F7F7;
    padding-top: 0.15rem;
}

.page_news_title_small {
    font-family: Myriad Pro;
    font-weight: 400;
    font-size: 0.1rem;
    color: #6E6E6E;
    padding-bottom: 0.15rem;
    /* border-bottom: 0.01rem solid rgba(179, 179, 179, 0.73); */
    word-spacing: 0.05rem;
}
/* 轮播图样式 */
.page_news_swiper {
    width: 4.2rem;
    overflow: hidden;
    margin: 0.2rem auto 0.15rem;
    position: relative;
}
.page_news_swiper_item {
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.page_news_swiper_item_img {
    width: 100%;
    height: 100%;
    margin-bottom: 0.15rem;
}
.page_news_swiper_item_img img {
    width: 4.2rem;
    height: 2.18rem;
    object-fit: cover;
}
.page_news_swiper_item_message {
    font-family: "KoreanGWS-normal";
    font-weight: normal;
    font-size: 0.18rem;
    color: #E3E3E3;
    line-height: 0.22rem;
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
/* Swiper分页器样式 */
.page_news_swiper .swiper-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 0;
    margin-top: 0.2rem;
}

.page_news_swiper .swiper-pagination-bullet {
    width: 0.19rem;
    height: 0.2rem;
    background: url('../img/page1/page1_select1.png') no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
}
.page_news_swiper .swiper-pagination-bullet-active {
    background: url('../img/page1/page1_select3.png') no-repeat center center;
    background-size: 100% 100%;
}
.page_news_content {
    width: 4.8rem;
    margin: 0 auto;
}
.page_news_content_tabs {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: center;
    padding: 0 0.6rem 0.1rem;
    border-bottom: 0.01rem solid rgba(179, 179, 179, 0.73);
    margin: 0 0.3rem;
}
.page_news_content_tabs_item {
    font-family: "KoreanGWS-normal";
    font-weight: normal;
    font-size: 0.22rem;
    color: #AEAEAE;
    cursor: pointer;
}
.page_news_content_tabs_item:hover {
    color: #D2C399;
}
.page_news_content_tabs_item_active {
    color: #D2C399;
    position: relative;
}
.page_news_content_tabs_item_active::before {
    content: "";
    position: absolute;
    width: 0.06rem;
    height: 0.06rem;
    background: #D2C399;
    transform: rotate(45deg);
    top: 0.08rem;
    left: -0.1rem;
}
.page_news_content_tabs_item_active::after {
    content: "";
    position: absolute;
    width: 0.06rem;
    height: 0.06rem;
    background: #D2C399;
    transform: rotate(45deg);
    top: 0.08rem;
    right: -0.1rem;
}
.page_news_content_newsList {
    width: 100%;
    margin: 0 auto;
}
.page_news_content_newsList_item {
    height: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.01rem solid rgba(232, 232, 232, 0.4);
    margin: 0 0.3rem;
    position: relative;
}
.page_news_content_newsList_item_active_bg {
    width: 4.6rem;
    height: 0.65rem;
    background: url('../img/page1/page1_new_bg.png') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: -0.3rem;
    z-index: -1;
}
.page_news_content_newsList_item_type {
    width: 0.5rem;
    font-family: "KoreanGWS-normal";
    font-weight: normal;
    font-size: 0.14rem;
    color: #D2C399;
    margin-right: 0.1rem;
}
.page_news_content_newsList_item_text {
    width: 2.9rem;
    font-family: "KoreanGWS-normal";
    font-weight: normal;
    font-size: 0.14rem;
    color: #DDDDDD;
    margin-right: 0.1rem;
    text-decoration: none;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.page_news_content_newsList_item_date {
    font-family: "MicrosoftYaHei";
    font-weight: normal;
    font-size: 0.1rem;
    color: #999999;
}



/* 第二页 */
.page2_bg {
    width: 19.2rem;
    height: 12.93rem;
    background: url('../img/page2/page2_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
}
.page2_content {
    width: 13.74rem;
    position: absolute;
    top: 2.9rem;
    left: 50%;
    transform: translateX(-50%);
}
.page2_content_top {
    display: flex;
    justify-content: space-between;
}
/* 第二页左边 */
.page2_content_top_left {
    width: 6.87rem;
    height: 4.52rem;
    background: url('../img/page2/page2_box.png') no-repeat center center;
    background-size: 100% 100%;
    padding: 0.2rem 0.46rem 0;
    box-sizing: border-box;
}
.page2_content_top_left_line {
    width: 5.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.22rem;
}
.page2_content_top_left_line_label {
    width: 1.25rem;
    font-family: "KoreanGWS-normal";
    font-weight: normal;
    font-size: 0.3rem;
    color: #A29174;
    text-align: left;
    margin-right: 0.1rem;
}
.page2_content_top_left_line_inputBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 4.4rem;
}
.page2_content_top_left_line_select {
    width: 0.8rem;
    height: 0.54rem;
    border: 0.01rem solid #D2C39A;
    background-color: transparent;
    color: #A29174;
    font-size: 0.2rem;
    padding: 0.1rem 0 0.1rem 0.1rem;
    box-sizing: border-box;
    border-right: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.page2_content_top_left_line_select:focus {
    outline: none;
}
.page2_content_top_left_line_input {
    /* width: 3.6rem; */
    width: 4.4rem;
    height: 0.54rem;
    border: 0.01rem solid #D2C39A;
    background-color: transparent;
    color: #A29174;
    font-size: 0.2rem;
    padding: 0.17rem 0 0.17rem 0.19rem;
    box-sizing: border-box;
}
.page2_content_top_left_line_input::placeholder {
    color: rgba(210, 195, 154, 0.42);
}
.page2_content_top_left_line_input:focus {
    outline: none;
}
.page2_content_top_left_line_captchaInput {
    width: 2.76rem;
    height: 0.54rem;
}
.page2_content_top_left_line_captchaBtn {
    width: 1.46rem;
    height: 0.54rem;
    background: #C0A987;
    cursor: pointer;
    margin-left: 0.2rem;
}
.page2_content_top_left_line_captchaBtn span {
    display: block;
    text-align: center;
    line-height: 0.54rem;
    font-family: "KoreanGWS-bold";
    font-weight: normal;
    font-size: 0.18rem;
    color: #000000;
}
.page2_content_top_left_preBtn {
    width: 2.54rem;
    height: 0.74rem;
    background: url('../img/page2/page2_btn.png') no-repeat center center;
    background-size: 100% 100%;
    margin: 0.18rem auto 0;
    cursor: pointer;
}
.page2_content_top_left_agreeLine {
    display: flex;
    width: 5.75rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.12rem;
}
.page2_content_top_left_line_btnBox {
    width: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page2_content_top_left_line_btnBox_android {
    width: 1.41rem;
    height: 0.52rem;
    background: url('../img/page2/page2_android.png') no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
}
.page2_content_top_left_line_btnBox_android_active {
    background: url('../img/page2/page2_android_active.png') no-repeat center center;
    background-size: 100% 100%;
}
.page2_content_top_left_line_btnBox_ios {
    width: 1.41rem;
    height: 0.52rem;
    background: url('../img/page2/page2_ios.png') no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
}
.page2_content_top_left_line_btnBox_ios_active {
    background: url('../img/page2/page2_ios_active.png') no-repeat center center;
    background-size: 100% 100%;
}
.page2_content_top_left_line_btnBox_pc {
    width: 1.41rem;
    height: 0.52rem;
    background: url('../img/page2/page2_pc.png') no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
}
.page2_content_top_left_line_btnBox_pc_active {
    background: url('../img/page2/page2_pc_active.png') no-repeat center center;
    background-size: 100% 100%;
}
.page2_content_top_left_agreeLine_checkbox {
    width: 0.21rem;
    height: 0.21rem;
    border: 0.01rem solid #D2C39A;
    margin-right: 0.1rem !important;
    cursor: pointer;
}
.page2_content_top_left_agreeLine_checkbox:checked {
    background-color: #A29174;
    position: relative;
}
.page2_content_top_left_agreeLine_checkbox:checked::after {
    content: '';
    position: absolute;
    left: 0.06rem;
    top: 0.01rem;
    width: 0.06rem;
    height: 0.11rem;
    border: 0.02rem solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(40deg);
}
.page2_content_top_left_agreeLine_text {
    font-family: "KoreanGWS-bold";
    font-weight: normal;
    font-size: 0.18rem;
    color: rgba(255, 255, 255, 0.6);
}
.page2_content_top_left_agreeLine_extension {
    width: 1.51rem;
    height: 0.01rem;
    border-bottom: 0.01rem solid #FFFFFF;
    border-style: dashed;
    margin: 0 0.15rem;
}          
.extensionLong {
    width: 1.65rem;
} 
.page2_content_top_left_agreeLine_details {
    width: 0.9rem;
    height: 0.25rem;
    background: url('../img/page2/page2_btn1.png') no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
}
/* 第二页右边 */
.page2_content_top_right {
    width: 6.87rem;
    height: 4.52rem;
    background: url('../img/page2/page2_box1.png') no-repeat center center;
    background-size: 100% 100%;
    padding: 0.43rem 0 0 0.55rem;
    box-sizing: border-box;
}
.page2_content_top_right_title {
    font-family: "KoreanGWS-bold";
    font-weight: normal;
    font-size: 0.36rem;
    color: #D2C39A;
    line-height: 0.36rem;
}
.page2_content_top_right_desc {
    font-family: "KoreanGWS-normal";
    font-weight: normal;
    font-size: 0.24rem;
    color: #D2C39A;
    margin: 0.2rem auto 0;
    line-height: 0.24rem;
}
.page2_content_top_right_desc span {
    font-family: "KoreanGWS-normal";
    font-weight: normal;
    font-size: 0.24rem;
    color: #FEFEFD;
    margin: 0 0.08rem;
}
.page2_content_top_right_btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.2rem;
}
.page2_content_top_right_btn_googleplay {
    width: 3.34rem;
    height: 1.09rem;
    background: url('../img/page2/page2_gp.png') no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
    margin-bottom: 0.18rem;
}
.page2_content_top_right_btn_appstore {
    width: 3.34rem;
    height: 1.09rem;
    background: url('../img/page2/page2_ios_1.png') no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
}
/* 第二页底部 */
.page2_content_bottom {
    width: 13.74rem;
    height: 4.52rem;
    background: url('../img/page2/page2_box2.png') no-repeat center center;
    background-size: 100% 100%;
    padding: 0.28rem 0.2rem;
    box-sizing: border-box;
    position: relative;
} 
/* .page2_content_bottom_rewardNumImg {
    width: 12.95rem;
    height: 0.39rem;
    background: url('../img/page2/page2_line.png') no-repeat center center;
    background-size: 100% 100%;
    margin: 0.28rem auto 0;
} */
.page2_content_bottom_content {
    width: 12.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.3rem auto 0;
    position: relative;
}
.page2_content_bottom_content_line {
    width: 12.77rem;
    height: 0.01rem;
    background-color: #D6CFDF;
    position: absolute;
    top: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
}
.page2_content_bottom_content_line::after {
    content: '';
    position: absolute;
    width: 0.1rem;
    height: 0.1rem;
    background: #FFFFFF;
    transform: rotate(45deg);
    top: -0.05rem;
    left: -0.1rem;
}
.page2_content_bottom_content_line::before {
    content: '';
    position: absolute;
    width: 0.1rem;
    height: 0.1rem;
    background: #FFFFFF;
    transform: rotate(-45deg);
    top: -0.05rem;
    right: -0.1rem;
}
.page2_content_bottom_content_item {
    position: relative;
}
.page2_content_bottom_content_item_num {
    display: block;
    font-family: "KoreanGWS-normal";
    font-size: 0.25rem;
    color: #FFFFFF;
    text-align: center;
    line-height: 0.4rem;
}
.page2_content_bottom_content_item_img {
    width: 2.13rem;
    height: 2.72rem;
}
.page2_content_bottom_content_item_achieve {
    width: 1.23rem;
    height: 0.9rem;
    background: url('../img/page2/page2_achieve.png') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: 1.4rem;
    left: 0.1rem;
}
.page2_content_bottom_text {
    font-family: "KoreanGWS-normal";
    font-weight: normal;
    font-size: 0.19rem;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
}
/* 第三页 */
.page3_bg {
    width: 19.2rem;
    height: 9.88rem;
    background: url('../img/page3/page3_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
}
.page3_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
}
.page3_content_bg {
    width: 7.68rem;
    height: 3.21rem;
    background: url('../img/page3/page3_reward1.png') no-repeat center center;
    background-size: 100% 100%;
    margin-bottom: 0.86rem;
}
.page3_content_text {
    font-family: "KoreanGWS-normal";
    font-size: 0.21rem;
    color: rgba(201, 182, 151, 0.5);
    line-height: 0.21rem;
    margin-bottom: 0.1rem;
}
.page3_content_inviteBtn {
    width: 2.06rem;
    height: 0.52rem;
    background: url('../img/page3/page3_btn.png') no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
    margin-bottom: 0.1rem;
}
/* 第四页 */
.page4_bg {
    width: 19.2rem;
    height: 12.58rem;
    background: url('../img/page4/page4_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
}
.page4_content {
    position: absolute;
    top: 1.3rem;
    left: 50%;
    transform: translateX(-50%);
}
.page4_content_imgBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.1rem;
    width: 14.4rem; /* 3张图片的宽度加上间距 */
    height: 8.6rem;
    overflow: hidden;
}
.page4_swiper {
    width: 100%;
    height: 100%;
}
.page4_swiper_slide {
    display: flex;
    align-items: center;
    gap: 0.18rem;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.page4_swiper_slide.swiper-slide-active {
    opacity: 1;
}
.page4_swiper_slide_img {
    width: 4.8rem;
    height: 8.6rem;
    object-fit: cover;
}
.page4_content_btnBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page4_content_btnBox_btn {
    position: relative;
    margin-right: 0.32rem;
    cursor: pointer;
}
.page4_content_btnBox_btn:first-child {
    margin-left: 0.38rem;
}
.page4_content_btnBox_btn:last-child {
    margin-right: 0;
}
.page4_content_btnBox_btn_img {
    width: 3.16rem;
    height: 1.03rem;
}
.page4_content_btnBox_btn_checkbox {
    width: 0.7rem;
    height: 0.7rem;
    background: url('../img/page4/page4_select1.png') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    bottom: -0.35rem;
    left: 50%;
    transform: translateX(-50%);
}
.page4_content_btnBox_btn_checkbox_active {
    background: url('../img/page4/page4_select.png') no-repeat center center;
    background-size: 100% 100%;
}

/* 第五页 */
.page5_bg {
    width: 19.2rem;
    height: 10.84rem;
    background: url('../img/page5/page5_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
}
.page5_content {
    display: flex;
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}
.page5_content_box {
    width: 12.68rem;
    height: 7.38rem;
    background: url('../img/page5/page5_box.png') no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page5_swiper {
    width: 100%;
    height: 100%;
}
.page5_swiper_slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.page5_swiper_slide.swiper-slide-active {
    opacity: 1;
}
.page5_content_box_img {
    width: 11.7rem;
    height: 6.58rem;
    object-fit: cover;
}
.page5_content_paginationBox {
    width: 0.92rem;
    display: flex;
    flex-direction: column;
    margin-left: 0.2rem;
}

/* 第五页Swiper分页器样式 */
.page5-pagination {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.page5-pagination-bullet {
    width: 0.92rem;
    height: 1.26rem;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    margin-bottom: 0.08rem;
}

.page5-pagination-bullet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 激活状态样式 */
.page5-pagination-bullet-active img {
    width: 2.72rem;
    height: 1.59rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

/* Hover效果 - 图片变大但不影响布局 */
.page5-pagination-bullet:hover img {
    width: 2.72rem;
    height: 1.59rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.page5-pagination-bullet:nth-child(1):hover img {
    content: url('../img/page5/page5_pag1_active.png');
}
.page5-pagination-bullet:nth-child(2):hover img {
    content: url('../img/page5/page5_pag2_active.png');
}
.page5-pagination-bullet:nth-child(3):hover img {
    content: url('../img/page5/page5_pag3_active.png');
}
.page5-pagination-bullet:nth-child(4):hover img {
    content: url('../img/page5/page5_pag4_active.png');
}
.page5-pagination-bullet:nth-child(5):hover img {
    content: url('../img/page5/page5_pag5_active.png');
}

/* 第六页 */
.page6_bg {
    width: 19.2rem;
    height: 9.33rem;
    background: url('../img/page6/page6_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
}
.page6_content {
    width: 13.8rem;
    position: absolute;
    top: 2.6rem;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}
/* 第六页Swiper样式 */
.page6_swiper {
    width: 100%;
    height: 100%;
}
.page6_swiper_slide {
    width: 9.32rem !important;
    height: 5.5rem;
    background: url('../img/page6/page6_box.png') no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.page6_swiper_slide img {
    width: 8.56rem;
    height: 4.82rem;
}
.page6_swiper_slide::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.5;
}
.page6_swiper_slide.swiper-slide-active::after {
    width: 0;
    opacity: 1;
}
/* 第六页导航按钮样式 */
.page6-pagination {
    width: 100%;
}
.page6_content_pagiation_left,
.page6_content_pagiation_right {
    width: 0.92rem;
    height: 0.92rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}
.page6_content_pagiation_left {
    left: 0.5rem;
}
.page6_content_pagiation_right {
    right: 0.5rem;
}
/* 第七页 */
.page7_bg {
    width: 19.2rem;
    height: 7.01rem;
    background: url('../img/page7/page7_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
}
.page7_content {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}
.page7_back {
    width: 2.31rem;
    height: 0.91rem;
    background: url('../img/page7/rewards_return.png') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: 1.3rem;
    left: 2.63rem;
    cursor: pointer;
}
.page7_content_box {
    width: 4.6rem;
    height: 3.35rem;
    background: url('../img/page7/rewards_box.png') no-repeat center center;
    background-size: 100% 100%;
    box-sizing: border-box;
}
.page7_content_box_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.page7_content_box_item_img {
    width: 4.2rem;
    height: 2.33rem;
    object-fit: cover;
    margin: 0.17rem 0.2rem 0;
}
.page7_content_box_item_text {
    width: 4.6rem;
    height: 0.65rem;
    background: url('../img/page7/rewards_new_bg.png') no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.6rem 0 0.47rem;
    box-sizing: border-box;
}
.page7_content_box_item_text span {
    display: block;
    font-family: "KoreanGWS-normal";
    font-weight: normal;
    font-size: 0.19rem;
    color: #DDDDDD;
}

/* 视频播放相关样式 */
.video-container {
    position: relative;
    width: 100%;
    max-width: 13rem;
    height: 7.2rem;
    background: #000;
    border-radius: 0.1rem;
}
.video-close-btn {
    position: absolute;
    top: -0.4rem;
    right: -0.4rem;
    width: 0.6rem;
    height: 0.6rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    color: #fff;
    font-size: 0.4rem;
    line-height: 0.6rem;
    text-align: center;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.3s ease;
}
.video-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* 登录弹窗 */
.pop_login_box {
    width: 6.4rem;
    height: 5.01rem;
    background: url('../img/pop/pop_login.png') no-repeat center center;
    background-size: 100% 100%;
}