/* 定义自定义字体 */
@font-face {
    font-family: 'roleInfoFont';  /* 自定义字体名称，后续调用用这个 */
    src: url('../fonts/Kanit-Italic.ttf') format('truetype');  /* 字体文件路径 + 格式（ttf对应truetype） */
    font-weight: normal;  /* 字体粗细 */
    font-style: normal;   /* 字体样式（正常/斜体等） */
}

body{
    /* background-color: rgb(247, 247, 255) !important; */
}

/* 禁止页面滚动的样式类 */
.body-fixed {
    overflow: hidden;  /* 核心：阻断页面滚动行为，保留滚动高度 */
    width: 100%;       /* 关键：防止滚动条消失后页面宽度跳动 */
    height: 100%;      /* 可选：限制body高度为视口高度，增强固定效果 */
  }

  /* 核心：限制轮播容器宽度，防止克隆元素撑大页面 */
.role_swiper {
    width: 100%;
    overflow: hidden; /* 隐藏溢出内容，关键！ */
    position: relative; /* 配合overflow生效 */
  }
  
  /* 修复iOS Safari视口问题 */
  html, body {
    width: 100%;
    overflow-x: hidden; /* 禁止横向滚动，彻底解决左移 */
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch; /* 优化iOS滚动体验 */
  }
  
  /* 确保轮播项宽度适配 */
  .role_swiper .swiper-slide {
    width: 100%; /* 强制轮播项占满容器 */
    box-sizing: border-box; /* 防止内边距撑大宽度 */
  }

.warp {
    max-width: 7.5rem;
    margin: 0 auto;
    min-height: 100%;
    background: url(../img/con_bg.jpg) center center no-repeat;
    background-size: 100% 100%;
    padding-bottom: 0.5rem;
}

.warp img {
    display: block;
    width: 100%;
}

.con4{
    position: relative;
    padding-bottom: 0.28rem;
    /* padding: 0 0.35rem 0.4rem 0.35rem; */
}

.home {
    position: relative;
}

.game_name {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1
}

.game_name h2 {
    font-size: .25rem;
    font-weight: 700;
}

.logo {
    overflow: hidden;
    text-indent: -999em;
    background: url(../img/logo.png) center center no-repeat;
    background-size: cover;
    width: 0.8rem;
    position: relative;
    z-index: 1;
    height: 0.8rem;
    border-radius: .15rem;
    margin: 0rem 0rem 0 .24rem;
    display: block
}

.top_btnList{
    display: flex;
    margin-right: 0.3rem;
    gap: 0.1rem;
}

.top_btn {
    display: block;
    width: 1.7rem;
    overflow: hidden;
    text-align: center; /* 文字水平居中 ✔️ 你原有 */
    aspect-ratio: 295 / 94; /* 固定宽高比 ✔️ 你原有 */
    line-height: 100%;      /* 核心1：解决行高继承导致的偏移 */
    display: flex;          /* 核心2：开启弹性布局 */
    align-items: center;    /* 核心3：子元素（文字）垂直居中 */
    justify-content: center;/* 等价于text-align:center，水平居中，双重保障 */
    font-size: 0.16rem;
    text-shadow: 0.02rem 0.02rem 0 #6e6237;
}

.top_btn1 {
    background: url(../img/top_btn1.jpg) center center no-repeat;
    background-size: 100% 100%;
}

.top_btn2 {
    background: url(../img/top_btn2.jpg) center center no-repeat;
    background-size: 100% 100%;
}

.topbar {
    width: 100%;
    background: url(../img/topbar.jpg) no-repeat 0 0 / 7.5rem auto;
    aspect-ratio: 160 / 19;
    /* 弹性布局：子元素居中（原有样式，保留并简化标准写法） */
    display: -webkit-box;
    display: -moz-box;
    display: flex; /* 新增标准flex写法，替代老旧box，兼容性更好 */
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    flex-direction: row; /* 标准写法，与上面横向布局对应 */
    -webkit-box-align: center;
    -moz-box-align: center;
    align-items: center; /* 标准写法，子元素垂直居中 */
    color: #fff;
    /* 固定定位：屏幕居中核心（删除重复的position/top/left/z-index） */
    position: fixed; /* 优先fixed（屏幕固定），如需相对父容器则改absolute */
    top: 0;
    left: 50%;
    transform: translate(-50%, 0); /* 水平+垂直居中核心 */
    z-index: 99; /* 保留高层级，覆盖其他元素 */
    max-width: 7.5rem;
    /* 新增：防止transform缩放导致超出，可选 */
    box-sizing: border-box;
}

.banner_vid_btn{
    position: absolute;
    bottom: 5.2rem;
    left: 50%;
    margin-left: -69px;
}

.home_con{
    position: absolute;
    width: 100%;
    bottom: -0.8rem;
    left: 0;
    display: flex
;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

.home_con .yy_bottom{
    margin-top: -0.5rem;
}

.vid_btn{
    width: 0.8rem;
    height: 0.8rem;
}

.top_vid_btn{
    width: 138px;
    height: 142px;
    background: url(../img/top_vid_btn.png) center center no-repeat;
    background-size: 100% 100%;
}

.vid_btn img{
    width: 44%;
    margin-left: 0.1rem;
}

.yuyue_box{
    margin-top: 0.2rem;
}

.yy_txt{
    width: 92% !important;
    margin: 0 auto;
}

.yy_titel{
    position: relative;
}

.yy_titel .yyt_time{
    position: absolute;
    top: 0.85rem;
    left: 2.84rem;
    display: flex
;
    flex-direction: row;
    width: 1rem;
}

.yy_titel .yyt_time img:nth-child(1){
    margin-right: -0.05rem;
}

.yy_titel .yyt_time img:nth-child(2){
    margin-left: -0.05rem;
}

.yy_time_box{
    display: flex
;
    flex-direction: row;
    justify-content: center;
    gap: 0.05rem;
    font-size: 0.4rem;
    align-items: center;
    font-weight: bold;
    width: 90%;
    background: url(../img/tip_bg.png) center center no-repeat;
    background-size: 100% 100%;
    box-sizing: border-box;
    padding-bottom: 0.03rem;
    margin: 0 auto;
    font-size: 0.35rem;
}

.yy_time_txt1{
    background: linear-gradient(#e9cdff 45%, #f5f8fe 69%, #e9cdff 45%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-right: 0.07rem;
}

.yy_time_txt2{
    background: linear-gradient(#e9cdff 45%, #f5f8fe 69%, #e9cdff 45%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0 0.08rem;
}

/* 倒计时容器样式 */
.yy_djs_tsfm .countdown{
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* 数字位容器 */
.digit {
    width: 0.3rem;
    overflow: hidden;
    font-size: 0.44rem;
    margin-top: -0.05rem;
    background: linear-gradient(#e9cdff 45%, #f5f8fe 69%, #e9cdff 45%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* 数字图片样式 */
.digit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 分隔符样式 */
.separator {
    color: white;
}


.form-group {
    height: 1.05rem;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #e0e0e0;
}
.form-input {
    width: 100%;
    height: 0.72rem;
    padding: 0 15px;
    background: rgb(35 42 71);
    border: 1px solid rgb(142 158 251);
    color: #fff;
    font-size: 20px;
    outline: none;
    transition: all 0.3s;
    box-sizing: border-box;
    font-weight: bold;
}
.form-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}
/* 区号选择样式 */
.phone-with-code {
    display: flex;
    gap: 0;
    align-items: center;
    border: 1px solid rgb(142 158 251);
    box-sizing: border-box;
}
.area-code {
    width: 1.8rem;
    height: 0.72rem;
    background: rgb(35 40 69);
    /* border: 1px solid rgb(142 158 251); */
    /* border-radius: 8px; */
    color: #ffdc6b;
    font-size: 20px;
    padding: 0 10px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23fff'%3E%3Cpath d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
    transition: all 0.3s;
    border-right: 0.02rem solid #000;
    box-sizing: border-box;
}
.area-code:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
    outline: none;
}
.area-code option {
    background: #1a103f;
    color: #fff;
    border: none;
}
.phone-input {
    flex: 1;
}
.verify-code {
    display: flex;
    gap: 0.05rem;
}
.verify-input {
    flex: 1;
}
.get-code-btn {
    height: 0.72rem;
    aspect-ratio: 417 / 120;
    color: #bfe1f5;
    font-size: 0.28rem;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/get_code_btn.png) center center no-repeat;
    background-size: 100% 100%;
    font-style: italic;
    margin-right: -0.08rem;
}

/* ✅ 禁用样式：倒计时中按钮样式 */
.get-code-btn.disabled {
    /* 核心属性：100%完全变灰，0就是原色，0.5就是半灰 */
    filter: grayscale(100%); 
    /* 兼容写法，应对极少数浏览器 */
    -webkit-filter: grayscale(100%);
    /* 之前的防点击保险 保留 */
    cursor: not-allowed;
    pointer-events: none;
    /* 可选：降低一点透明度，灰色更柔和 */
    opacity: 0.7;
}

/* .get-code-btn:hover {
    background: rgba(255, 215, 0, 0.3);
}
.get-code-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #999;
    cursor: not-allowed;
} */
.submit-btn {
    height: 1.1rem;
    aspect-ratio: 417 / 120;
    border: none;
    border-radius: 8px;
    color: #fcfdfe;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.2rem;
    background: url(../img/ljyy_btn.png) center center no-repeat;
    background-size: 100% 100%;
    padding-bottom: 0.16rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.14rem auto 0 auto;
}
/* .submit-btn:hover {
    background: #ffed4b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}
.submit-btn:active {
    transform: translateY(0);
} */
.submit-btn img{
    width: 78%;
}
.agreement {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 12px;
    color: #b0b0b0;
}
.agreement input {
    margin-right: 8px;
    accent-color: #ffd700;
}
.agreement a {
    color: #ffd700;
    text-decoration: none;
}
.tip {
    text-align: center;
    margin-bottom: 0.25rem;
    font-size: 13px;
    color: #b0b0b0;
    width: 112%;
    aspect-ratio: 1149 / 81;
    background: url(../img/yy_num_bg.png) center center no-repeat;
    background-size: 100% 100%;
    padding: 0 2rem 0 2.23rem;
    /* margin: 0 auto; */
    margin-left: -6%;
    padding-top: 0.rem;
    /* margin-top: 0.01rem; */
    position: relative;
    display: flex
;
    justify-content: center;
}
.tip span{
    display: block;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1;
    font-size: 0.32rem;
    color: #d1ca87;
    padding-bottom: 0.05rem;
}
.success-modal, .tip-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.awardsRecord-modal .success-content .lbm_type {
    /* display: none; */
}
.success-content, .tip-content {
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    text-align: left;
    font-size: 21px;
    color: #fff;
    background: linear-gradient(#3c5775, #37586e, #2d415f);
}
.success-icon {
    font-size: 48px;
    color: #4cd964;
    margin-bottom: 20px;
    text-align: center;
}

.tip-icon {
    font-size: 48px;
    color: #ff6b75;
    margin-bottom: 20px;
    text-align: center;
}

.success-title, .tip-title {
    font-size: 38px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}
.success-desc, .tip-desc {
    font-size: 22px;
    color: #fff;
    /* margin-bottom: 25px; */
}
.tipModal .success-desc, .tip-desc{
    font-size: 24px;
    color: #fff;
    text-align: center;
}
.close-btn {
    border: none;
    border-radius: 8px;
    color: #fbf1c7;
    font-size: 33px;
    font-weight: bold;
    font-style: italic;
    text-shadow: 0.02rem 0.02rem 4px #0000009c;
    cursor: pointer;
    margin-top: 0.3rem;
    width: 2.8rem;
    height: 1rem;
    line-height: 1rem;
    background: url(../img/choujian/btn_notComplete.png) center center no-repeat;
    background-size: 100% 100%;
    display: block;
    margin: 0.3rem auto 0 auto;
}
.error-message {
    color: #ff4d4f;
    font-size: 18px;
    margin-top: 3px;
    display: none;
}

.hero-vid-modal{
    background-color: rgb(0 0 0 / 0.5);
}

.hero-vid-modal-close{
    padding: 0.25rem !important;
    top: -1rem !important;
}

.hero-vid-modal-close svg{
    width: 0.3rem;
    height: 0.3rem;
}

.pre-book{
    padding: 0.28rem 0;
    box-sizing: border-box;
    margin-top: -0.3rem;
}

.container-yy{
    width: 80% !important;
    margin: 0 auto;
}

.daoju_show{
    display: flex;
    flex-direction: column;
}

.daoju_show ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.daoju_show ul li{
    position: relative;
}

.daoju_show ul li .dj_box{
    width: 2rem;
    aspect-ratio: 346 / 389;
    background: url(../img/baoxiang_bg.png) center center no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.daoju_show ul li .dj_box img{
    width: 1.16rem;
    aspect-ratio: 1 / 1;
    margin-top: -0.3rem;
}

.daoju_show ul li:nth-child(1)::after,.daoju_show ul li:nth-child(2)::after{
    content: "";
    width: 0.286rem;
    aspect-ratio: 44 / 389;
    background: url(../img/fgx01.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0rem;
    right: -0.25rem;
}

.daoju_show ul li .dj_explain{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #8fd1f5;
    font-size: 0.18rem;
    margin-top: -0.25rem;
    text-shadow: 0.02rem 0.02rem 0 #0000009c;
}

.xzjl_txt{
    width: 100%;
}

.equip_show .es_tit{
    margin-bottom: -0.3rem;
}
.equip_show .title{
    width: 6.4rem;
    margin: 0 auto;
}

.equip_show .es_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #bff5ff;
    margin-bottom: 0.08rem;
    text-shadow: 0.02rem 0.02rem 0 #0000009c;
}

.equip_show .es1 .es_box > div > div{
    width: 3.2rem;
    aspect-ratio: 559 / 522;
    background: url(../img/zcjl_zb1.png) center center no-repeat;
    background-size: 100% 100%;
}

.equip_show .es2 .es_box > div > div{
    width: 3.2rem;
    aspect-ratio: 281 / 251;
    background: url(../img/zcjl_zb2.png) center center no-repeat;
    background-size: 100% 100%;
}

.equip_show .es_box span{
    margin-top: -0.3rem;
}

.equip_show .es_box > div{
    width: 3.32rem;
    aspect-ratio: 562 / 522;
    background: url(../img/zcjl_icon1.png) center center no-repeat;
    background-size: 100% 100%;
}

.equip_show .es_box > div img{
    width: 3.2rem;
}

.equip_show .es1 .es_box > div img{
    margin-top: -0.04rem;
    margin-left: 0.08rem;
}

.equip_show .es2 .es_box > div img{
    margin-top: 0.08rem;
    margin-left: 0.05rem;
}

.equip_show .btn_list{
    display: flex;
    justify-content: center;
    gap: 0.1rem;
}

.equip_show .btn_list a{
    width: 2.2rem;
}

.equip_show .btn_list .dianzan_jlBtn{
    width: 3rem;
    aspect-ratio: 220 / 73;
    background: url(../img/zcjl_btn.png) center center no-repeat;
    background-size: 100% 100%;
}

.equip_show .btn_list .dianzan_jlBtn img{
    margin-top: 0.18rem;
}

.yuyue_data{
    width: 81%;
    aspect-ratio: 974 / 49;
    background: url(../img/lcbjl_txt.png) center center no-repeat;
    background-size: 100% 100%;
    text-align: center;
    padding: 0 2.85rem 0 3.2rem;
    display: flex
;
    justify-content: center;
    align-items: flex-end;
    font-size: 0.26rem;
    color: #dcd895;
    font-weight: bold;
    margin: 0 auto;
    margin-top: 0.05rem;
    margin-bottom: 0.3rem;
    position: relative;
}

.progress-section {
    position: relative;
    margin: 0 0.35rem;
}
.progress-line {
    position: absolute;
    left: -0.1rem;
    top: -0.17rem;
    bottom: 0;
    width: 0.72rem;
    height: 9.5rem;
    background: url(../img/fgx_03.png) center center no-repeat;
    background-size: 100% 100%;
}
.progress-item {
    display: flex
;
    margin-bottom: 0.02rem;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.progress-item:last-child .progress-content .rewards .reward-item::after{
    display: none !important;
}
.progress-point {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #38bdf8;
    z-index: 1;
    border: 3px solid #0f172a;
}
.progress-point.active {
    background: #818cf8;
    box-shadow: 0 0 10px #818cf8;
}
.progress-content {
    display: flex;
    align-items: center;
}
.progress-target {
    width: 2rem;
}
.rewards {
    display: flex
    ;
        width: 4.2rem;
        height: 1.8rem;
        background: url(../img/kuang_01.png) center center no-repeat;
        background-size: 100% 100%;
        justify-content: center;
        flex-direction: row;
        padding: 0 0.25rem;
        box-sizing: border-box;
        align-items: center;
}
.progress-item:last-child .rewards {
    background: url(../img/kuang_02.png) center center no-repeat;
        background-size: 100% 100%;
}
.rewards.disabled {
    /* 基础灰度属性：用 1 代替 100% 提升 Safari 兼容性 */
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    
    /* Safari 关键：触发硬件加速，解决 filter 不生效问题 */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    
    /* 确保渲染上下文正常 */
    position: relative;
    
    /* 保留你原有的样式 */
    cursor: not-allowed;
    pointer-events: none;
    /* opacity: 0.7; */
}

/* 针对 Safari 10+ 版本的特性检测增强 */
@supports (-webkit-backdrop-filter: none) {
    .rewards.disabled {
        -webkit-filter: grayscale(1) !important;
        filter: grayscale(1) !important;
    }
}
.rewards.disabled::after{
    content: "";
    text-align: center;
    position: absolute;
    width: 102%;
    height: 103%;
    
}
.progress-section .progress-item:nth-child(2) .rewards.disabled::after{
    background: url(../img/rewards_dc_bg1.png) center center no-repeat;
    background-size: 100% 100%;
}

.progress-section .progress-item:nth-child(3) .rewards.disabled::after{
    background: url(../img/rewards_dc_bg2.png) center center no-repeat;
    background-size: 100% 100%;
}

.progress-section .progress-item:nth-child(4) .rewards.disabled::after{
    background: url(../img/rewards_dc_bg3.png) center center no-repeat;
    background-size: 100% 100%;
}

.progress-section .progress-item:nth-child(5) .rewards.disabled::after{
    background: url(../img/rewards_dc_bg4.png) center center no-repeat;
    background-size: 100% 100%;
}

.progress-section .progress-item:nth-child(6) .rewards.disabled::after{
    background: url(../img/rewards_dc_bg5.png) center center no-repeat;
    background-size: 100% 100%;
    left: -0.07rem;
}

.reward-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.reward-item .ri_txt{
    margin-top: -0.15rem;
}
.reward-item:first-child::after{
    content: "";
    text-align: center;
    position: absolute;
    top: 0;
    right: -0.1rem;
    width: .2rem;
    height: 100%;
    background: url(../img/fgx_04.png) center center no-repeat;
    background-size: 100% 100%;
    font-size: 80px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #000000;
}
.reward-item:last-child::after{
    content: "";
    text-align: center;
    position: absolute;
    top: 0;
    left: -0.1rem;
    width: .2rem;
    height: 100%;
    background: url(../img/fgx_04.png) center center no-repeat;
    background-size: 100% 100%;
    font-size: 80px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #000000;
}
.reward-icon {
    height: 1.12rem;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.reward-icon img{
    width: auto;
    height: 100%;
}
.reward-name {
    font-size: 17px;
    color: #e0f2fe;
}
.reward-count {
    font-size: 12px;
    color: #e0f2fe;
}

.getGfit_btn{
    width: 3.2rem;
    height: 1.1rem;
        background: url(../img/zcjl_btn.png) center center no-repeat;
        background-size: 100% 100%;
    margin: 0 auto;
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
}

.getGfit_btn span{
    font-size: 0.3rem;
    font-weight: bold;
    background: linear-gradient(#ffffff 45%, #dcf2f4 69%, #b5e3e7 45%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 0.1rem;
    font-family: 'roleInfoFont';
}

.getGfit_btn img{
    width: 1.5rem;
    margin-bottom: 0.1rem;
}

.con5 {
    padding-bottom: 0.5rem;
}

.con5 .choujiang_box{
    width: 5.3rem;
    font-weight: bold;
    margin: 0 auto;
    position: relative;
    margin-top: 0.2rem;
}
.con5 .choujiang_box ul{
    width: 100%;
    height: 100%;
    display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.con5 .choujiang_box ul li{
    width: 1.7rem;
    height: 1.7rem;
    position: relative;
}
.con5 .choujiang_box ul .lottery-unit{background: url(../img/rect_01.png) center center no-repeat;background-size: 100% 100%;}
.con5 .choujiang_box ul .lottery-unit.lottery-unit-3{background: url(../img/choujian/rect_01_plus.png) center center no-repeat;background-size: 100% 100%;}
.con5 .choujiang_box ul .lottery-unit.lottery-unit-4{background: url(../img/choujian/rect_01_pro.png) center center no-repeat;background-size: 100% 100%;}
/* .con5 .choujiang_box ul li.li1{top: 1.44rem;left: 2.47rem;}
.con5 .choujiang_box ul li.li2{top: 1.62rem;left: 3.3rem;}
.con5 .choujiang_box ul li.li3{top: 2.26rem;left: 4.05rem;}
.con5 .choujiang_box ul li.li4{top: 3.05rem;left: 4.37rem;}
.con5 .choujiang_box ul li.li5{top: 3.84rem;left: 4.37rem;}
.con5 .choujiang_box ul li.li6{top: 4.64rem;left: 4.03rem;}
.con5 .choujiang_box ul li.li7{top: 5.17rem;left: 3.3rem;}
.con5 .choujiang_box ul li.li8{top: 5.28rem;left: 2.47rem;}
.con5 .choujiang_box ul li.li9{top: 5.17rem;left: 1.69rem;}
.con5 .choujiang_box ul li.li10{top: 4.64rem;left: .93rem;}
.con5 .choujiang_box ul li.li11{top: 3.84rem;left: .57rem;}
.con5 .choujiang_box ul li.li12{top: 3.05rem;left: .57rem;}
.con5 .choujiang_box ul li.li13{top: 2.26rem;left: .9rem;}
.con5 .choujiang_box ul li.li14{top: 1.62rem;left: 1.69rem;}
.con5 .choujiang_box ul li.li15{width: 1.37rem;height: 1.38rem;top: 3.16rem;left: 1.81rem;}
.con5 .choujiang_box ul li.li16{width: 1.37rem;height: 1.38rem;top: 3.16rem;left: 2.79rem;} */
.con5 .choujiang_box ul li.active{background: url(../img/rect_01_on.png) center center no-repeat;background-size: 100% 100%;z-index: 9;}
.con5 .choujiang_box ul .lottery-unit.lottery-unit-4.active{background: url(../img/choujian/rect_01_pro_on.png) center center no-repeat;background-size: 100% 100%;z-index: 999;}
.con5 .choujiang_box ul .lottery-unit.lottery-unit-3.active{background: url(../img/choujian/rect_01_plus_on.png) center center no-repeat;background-size: 100% 100%;z-index: 999;}
.con5 .choujiang_box ul li.active::after{
    content: "";
    width: 1.86rem;
    height: 1.86rem;
    background: url(../img/rect_01_on_on.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: -0.08rem;
    left: -0.08rem;
}
.con5 .choujiang_box ul li.active > div{
    color: #21e0fa;
}
/* .con5 .choujiang_box ul li.li15.active{transform: scale(1.3);}
.con5 .choujiang_box ul li.li15.active img{transform: scale(0.65);}
.con5 .choujiang_box ul li.li16.active{transform: scale(1.3);}
.con5 .choujiang_box ul li.li16.active img{transform: scale(0.65);} */
/* .con5 .choujiang #lottery ul li.li1 {
    background: url(../img/lwbg_01.jpg) no-repeat;
} */

.con5 .choujiang_box ul li > img{
    margin-top: -0.2rem;
}

.con5 .choujiang_box ul li > div{
    margin-top: -0.5rem;
    display: flex
;
    flex-direction: column;
    align-items: center;
    font-size: 0.18rem;
    line-height: 1;
    color: #fce68f;
    font-weight: 100;
}

.con5 .choujiang_box ul li .con3_btn{
    display: block;
    margin-top: 0;
}

.con5 .rule2{
    width: .86rem;
    position: absolute;
    top: 1.24rem;
    right: .22rem;
    z-index: 999;
}
.con5 .jilu{
    width: .86rem;
    position: absolute;
    top: 2.36rem;
    right: .22rem;
    z-index: 999;
}
.con5_btn{display: flex;flex-direction: row;justify-content: center;margin-top: .08rem;}
.con5_btn a{width: 2.96rem;margin: 0 .13rem;cursor: pointer;}

.con5 .icon_jlxx{
    display: block;
    width: 1.35rem;
    height: 1.46rem;
    position: absolute;
    bottom: .1rem;
    right: .5rem;
    cursor: pointer;
}

.con5 .raffle_tip{
    text-align: center;
    font-size: 0.24rem;
    color: #fff;
    line-height: 3;
    background: linear-gradient(#a4c8eb, #42618e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold;
    font-style: italic;
}

.con5 .raffle_tip .rt_num{
    color: #fff;
}


.con5 .task_box ul{
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
}

.con5 .task_box ul li{
    width: 98%;
    height: 1.6rem;
    display: flex
;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 0.15rem;
}

.con5 .task_box ul li:nth-child(1){
    background: url(../img/choujian/rw_bg01.png) center center no-repeat;
    background-size: 100% 100%;
}

.con5 .task_box ul li:nth-child(2){
    background: url(../img/choujian/rw_bg02.png) center center no-repeat;
    background-size: 100% 100%;
}

.con5 .task_box ul li:nth-child(3){
    background: url(../img/choujian/rw_bg03.png) center center no-repeat;
    background-size: 100% 100%;
}

.con5 .task_box ul li:nth-child(4){
    background: url(../img/choujian/rw_bg04.png) center center no-repeat;
    background-size: 100% 100%;
}

.con5 .task_box ul li:nth-child(5){
    background: url(../img/choujian/rw_bg05.png) center center no-repeat;
    background-size: 100% 100%;
}

.con5 .task_box ul li .item_txt{
    color: #fff;
    width: 63%;
    display: flex
;
    flex-direction: column;
}

.con5 .task_box ul li .item_txt img{
    margin-top: -0.08rem;
}

.con5 .task_box ul li .item_txt span{
    display: block;
    width: 100%;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
    margin-left: 0.12rem;
    margin-top: -0.02rem;
    font-weight: bold;
    font-style: italic;
    color: #a1bbd1;
}

.con5 .task_box ul li .item_btn{
    width: 2.3rem;
    height: 0.7rem;
    background: url(../img/choujian/btn_notComplete.png) center center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fbf1c7;
    font-weight: bold;
    font-style: italic;
    text-shadow: 0.02rem 0.02rem 4px #0000009c;
}

/* ✅ 禁用样式：倒计时中按钮样式 */
.con5 .task_box ul li .item_btn.disabled {
    background: url(../img/choujian/btn_complete.png) center center no-repeat;
    background-size: 100% 100%;
    /* 核心属性：100%完全变灰，0就是原色，0.5就是半灰 */
    /* filter: grayscale(100%);  */
    /* 兼容写法，应对极少数浏览器 */
    /* -webkit-filter: grayscale(100%); */
    /* 之前的防点击保险 保留 */
    cursor: not-allowed;
    pointer-events: none;
    /* 可选：降低一点透明度，灰色更柔和 */
    /* opacity: 0.7; */
}

.con5 .rb_list{
    display: flex;
    justify-content: space-around;
    padding: 0.15rem 0;
}

.con5 .rb_list > div{
    width: 3rem;
    height: 0.8rem;
    background: url(../img/choujian/btn_01.png) center center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    color: #fcf1d5;
    text-align: center;
    line-height: 0.8rem;
    font-weight: bold;
}

.con5 .rb_list > div:nth-child(1){
    font-size: 0.23rem;
}

.con5 .rb_list > div:nth-child(1){
    font-size: 0.19rem;
}

.con6{
    margin-bottom: 0.15rem;
}

.con6 .invite_reward{
    padding: 0 0.25rem;
}

.con6 .invite_reward ul{
    display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: center;
}

.con6 .invite_reward ul li{
    width: 2.66rem;
    height: 4.3rem;
    background: url(../img/invite/kuang_01.png) center center no-repeat;
    background-size: 100% 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0.52rem;
}

.con6 .invite_reward ul li > span{
    background: linear-gradient(#fdeb8e, #feca54);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold;
    font-style: italic;
    font-size: 0.22rem;
}

.con6 .invite_reward ul li > div{
    display: flex
;
    flex-direction: column;
    align-items: center;
    color: #bff5ff;
    font-size: 0.16rem;
    line-height: 1;
    margin-top: 0.25rem;
}
.con6 .invite_reward ul li > div:nth-child(3){
    margin-top: -0.05rem;
}

.con6 .invite_reward ul li > div > img{
    width: 1.37rem;
    color: #2687be;
}

.con6 .invite_reward ul li > div > span:nth-child(2){
    margin-top: -0.1rem;
}

.con6 .copy_btn{
    width: 3.06rem;
    height: 0.9rem;
    background: url(../img/invite/yq_btn.png) center center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    margin: 0.14rem auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.con6 .invite_num{
    text-align: center;
    color: #fff;
    font-size: 0.3rem;
    line-height: 1.8;
    background: linear-gradient(#7bb6f2, #45617f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold;
    font-style: italic;
    font-size: 0.24rem;
}

.con7 .con_box{
    position: relative;
    height: 7.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.con7 .con_box .con_bg{
    position: absolute;
    top: 1rem;
    left: 0;
    height: 5rem;
}

.con7 .con_box .jump_btn{
    width: 3rem;
    height: 1rem;
    background: url(../img/live/live_btn.png) center center no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    cursor: pointer;
    padding-top: 0.07rem;
}

/* 角色 */
.role_box{ position:relative; height:850px;margin-top: -0.4rem;}
.role_wrap{ position:absolute; width:750px; height:920px; left:0%;top:0;opacity:1;}
.role_swiper{ width:750px; height:920px;}
.role_swiper .swiper-slide{ position:relative; width:750px; height:920px;}
.role_img{ position:absolute; z-index:6}
.role_daosha .role_img{    
    width: 3.5rem;
    right: 28px;
    top: 16px;
}
.role_wuxia .role_img{ right:-6px; top:32px;}
.role_fashi .role_img{ right:-1px; top:50px;}
.role_yaoshou .role_img{ right:0; top:-12px;}
.role_yaojing .role_img{
    right: -1px;
    top: 15px;
    width: 4.1rem;
}
.role_yuling .role_img{ right:-85px; top:20px;}
.role_yumang .role_img{width: 4rem;right: -3px;top: 20px;}
.role_yaoren .role_img{ right:0px; top:34px;}
.role_yulan .role_img{width: 7.5rem;right: -102px;top: -8px;}
.role_jianling .role_img{ width: 6rem;right: -1px;top: 24px;}
.role_yuling .role_img{ width: 5rem;right: -1px;top: 24px;}
.role_yuexian .role_img{width: 8rem;right: -1px;top: 0px;}

.role_info{
    position: absolute;
    left: 0;
    top: 95px;
    z-index: 6;
    /* height: 100%; */
    width: 100%;
    /* height: 600px; */
    aspect-ratio: 1280 / 973;
}
.role_info_cont{
        position: absolute;
        bottom: 0.5rem;
        left: 0.25rem;
}
/* .role_wuxia .role_info_cont{
    left: 0.3rem;
}
.role_yaoshou .role_info_cont{
    left: 0.25rem;
    bottom: -0.7rem;
}
.role_yaojing .role_info_cont{
        bottom: -0.3rem;
        left: 0rem;
} */
.role_info_cont_left{
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'roleInfoFont';
    color: #cecec8;
    gap: 0.1rem;
    justify-content: flex-end;
}
.role_info_cont_left span:first-child{
    font-size: 0.38rem;
    color: #d6d5cf;
    width: 4rem;
    line-height: 1;
    margin-bottom: 0.1rem;
}
.role_info_cont_left span:last-child{
    width: 5rem;
}
.role_info_cont_right{ padding: 5px;}
.role_info_cont_r1{ padding: 5px 0 14px;}
.role_info_cont_r2{ width: 131px; margin-bottom: 6px; line-height: 32px; padding-left: 3px; background:url(../img/role_info_bg_2.png) center center no-repeat;}
.role_info_cont_r3{ width: 131px; line-height: 32px; padding-left: 3px; background:url(../img/role_info_bg_2.png) center center no-repeat;}
.role_info_text{ padding: 28px 0;}
.role_info_bottom{ padding-top: 30px; text-align: center;}
.role_info .role_info_top{
    height: 1.1rem;
    aspect-ratio: 553 / 203;
    position: absolute;
    left: 0;
    top: 0.6rem;
}
.role_wuxia .role_info_top{
    left: 0.3rem;
}
.role_yaoshou .role_info_top{
    height: 0.7rem;
    left: 0.25rem;
    top: 0.55rem;
}
.role_video_box{ position:relative; width:750px; height:600px; left:0; top:96px; overflow:hidden;}
.role_video_box .role_gai{ 
    position: absolute;
    width: 100%;
    /* height: 600px; */
    aspect-ratio: 1280 / 973;
    left: 0;
    top: 0;
    background: url(../img/occupation/role-bg.png) center center no-repeat;
    background-size: 100% 100%;
    z-index: 5;
}
.role_video_box .play-btn{
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -0.8rem;
    margin-left: -0.8rem;
    z-index: 8;
    display: flex
;
    align-items: center;
    justify-content: center;
}
#role_tab{ 
    position:absolute; 
    width:100%; height:100px; 
    left:0;  bottom:144px; 
    z-index:10; display: flex; 
    box-sizing: border-box;
    justify-content: center;
}
#role_tab li{width:116px; height:116px; cursor:pointer;background-size: 100% 100%;position: absolute;display: flex;align-items: center;justify-content: center;}
#role_tab li img{display: block;width: 100%;height: 100%;}
#role_tab li div{width: 66%;height: 66%;transform: rotate(45deg);position: relative;z-index: 9;}
.tab_role_yulan{ background:url(../img/occupation/tab_role_yulan.png) center center no-repeat;left: 30px;}
.tab_role_yulan.on{ background:url(../img/occupation/tab_role_yulan2.png) center center no-repeat;}
.tab_role_wuxia{ background:url(../img/occupation/tab_role_wuxia.png) center center no-repeat;left: 86px;top: 64px;}
.tab_role_wuxia.on{ background:url(../img/occupation/tab_role_wuxia2.png) center center no-repeat;}
.tab_role_yaojing{ background:url(../img/occupation/tab_role_yaojing.png) center center no-repeat;    left: 142px;}
.tab_role_yaojing.on{ background:url(../img/occupation/tab_role_yaojing2.png) center center no-repeat;}
.tab_role_fashi{ background:url(../img/occupation/tab_role_fashi.png) center center no-repeat;    left: 200px;top: 64px;}
.tab_role_fashi.on{ background:url(../img/occupation/tab_role_fashi2.png) center center no-repeat;}
.tab_role_yaoren{ background:url(../img/occupation/tab_role_yaoren.png) center center no-repeat;left: 258px;}
.tab_role_yaoren.on{ background:url(../img/occupation/tab_role_yaoren2.png) center center no-repeat;}
.tab_role_jianling{ background:url(../img/occupation/tab_role_jianling.png) center center no-repeat;left: 316px;top: 64px;}
.tab_role_jianling.on{ background:url(../img/occupation/tab_role_jianling2.png) center center no-repeat;width: 124px !important;height: 116px !important;left: 313px;top: 64px;}
.tab_role_yaoshou{ background:url(../img/occupation/tab_role_yaoshou.png) center center no-repeat;left: 372px;}
.tab_role_yaoshou.on{ background:url(../img/occupation/tab_role_yaoshou2.png) center center no-repeat;}
.tab_role_daosha{ background:url(../img/occupation/tab_role_daosha.png) center center no-repeat;left: 430px;top: 64px;}
.tab_role_daosha.on{ background:url(../img/occupation/tab_role_daosha2.png) center center no-repeat;}
.tab_role_yuling{ background:url(../img/occupation/tab_role_yuling.png) center center no-repeat;    left: 488px;}
.tab_role_yuling.on{ background:url(../img/occupation/tab_role_yuling2.png) center center no-repeat;}
.tab_role_yuexian{ background:url(../img/occupation/tab_role_yuexian.png) center center no-repeat;    left: 544px;top: 64px;}
.tab_role_yuexian.on{ background:url(../img/occupation/tab_role_yuexian2.png) center center no-repeat;}
.tab_role_yumang{ background:url(../img/occupation/tab_role_yumang.png) center center no-repeat;left: 602px;}
.tab_role_yumang.on{ background:url(../img/occupation/tab_role_yumang2.png) center center no-repeat;}



/* 图片展示 */
.con_box{
    position: relative;
    padding-bottom: 0.5rem;
    box-sizing: border-box;
}
.left-icon,
.right-icon {
width: 0.8rem;
  height: 0.53rem;
  position: absolute;
  top: 2.85rem;
  z-index: 2;
}

.left-icon {
  left: 0.2rem;
}

.right-icon {
  right: 0.2rem;
}

.role_left-icon,
.role_right-icon {
    width: 0.8rem;
  height: 0.53rem;
  position: absolute;
  top: 3.2rem;
  z-index: 2;
}

.role_left-icon {
  left: 0.2rem;
}

.role_right-icon {
  right: 0.2rem;
}

.top_left-icon,
.top_right-icon {
    width: 0.8rem;
  height: 0.53rem;
  position: absolute;
  top: 5.1rem;
  z-index: 2;
}

.top_left-icon {
  left: 0.2rem;
}

.top_right-icon {
  right: 0.2rem;
}


.swiper_gameShow .swiper-slide img {
  display: block;
  /* width: 6rem; */
  /* height: 4.1rem; */
  object-fit: cover;
}

.swiper_gameShow {
  overflow: hidden;
  margin-top: 0.15rem !important;
}

.swiper_gameShow .swiper-slide {
  background-size: cover;
  background-position: center;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drop-wrap {
    gap: 0.15rem;
    display: flex;
    align-items: center;
    width: 100%;
    height: 0.5rem;
    justify-content: center;
    margin-top: 0.2rem;
}

.drop-img.swiper-pagination-bullet {
 width: 0.5rem;
 height: 0.5rem;
  border-radius: 0;
  opacity: 1;
  background: transparent url(../img/no-check.png) no-repeat center center;
  background-size: 100% 100%;
  outline: none;
}
.drop-img.swiper-pagination-bullet-active {
    width: 0.5rem;
 height: 0.5rem;
  background: transparent url(../img/checked.png) no-repeat center center;
  background-size: 100% 100%;
}

.pop_fixed {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

/* pop_video */
.pop_v_cont{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex
;
    align-items: center;
    justify-content: center;
    z-index: 999;
    /* opacity: 0; */
    /* visibility: hidden; */
    transition: all 0.3s;
}
.pop_v_cont video{ width:100%;max-width: 7.5rem;height: auto;}


/* 数字展示容器 */
.reservation_num {
        display: flex !important
;
    align-items: center;
    gap: 0;
    padding: 0;
    /* background-color: #f5f5f5; */
    /* border-radius: 0; */
    width: fit-content;
    /* margin: 20px; */
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    /* bottom: -0.06rem; */
    /* bottom: -0.05rem; */
    margin-left: -0.09rem;
}

.con4 .reservation_num{
    display: flex !important
    ;
        align-items: center;
        gap: 0;
        padding: 0;
        /* background-color: #f5f5f5; */
        /* border-radius: 0; */
        width: fit-content;
        /* margin: 20px; */
        margin: 0 auto;
        position: absolute;
        bottom: 0;
        /* bottom: -0.2rem; */
        /* bottom: -0.05rem; */
        margin-left: -0.09rem;
}

/* 数字图片样式 */
.num-img, .comma-img {
    width: 26px !important;
    object-fit: contain;
    vertical-align: middle;
}

.con4 .num-img, .comma-img{
    width: 15px !important;
}

/* 逗号样式（如果不用图片，用CSS模拟） */
.comma {
    font-size: 30px;
    color: #333;
    font-weight: bold;
    line-height: 60px;
    margin: 0 2px;
}

.con4 .comma {
    font-weight: bold;
    line-height: 0;
    font-size: 26px;
    color: #c4ba7d;
    padding-bottom: 0.06rem;
    margin: 0;
}

.code_val.codeCz{
    color: #88faff;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 1px;
    background-image: linear-gradient(rgb(3 255 246), rgb(3 255 246));
    background-position: 0 100%;
    background-size: 100% 2px;
    background-repeat: no-repeat;
}

.imgNoClick{
    pointer-events: none;
  }