/* 通用遮罩层 */
.dialog {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    animation: fadeIn 0.3s;
    z-index: 1000;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}
/* 通用弹窗容器 */
.dialog-content {
    position: relative;
    animation: slideIn 0.3s;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
/* 通用关闭按钮 - 使用背景图 */
.dialog-close {
    position: absolute;
    width: 0.37rem;
    height: 0.37rem;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/pop_close.png') center center no-repeat;
    background-size: contain;
    transition: transform 0.3s;
    z-index: 1000;
    cursor: pointer;
}

.dialog_pre_content {
    width: 6.51rem;
    height: 9.11rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/pop/pop_box.webp') center center no-repeat;
    background-size: 100% 100%;
    padding-top: 3.5rem;
    font-size: 0.21rem;
}
.dialog_pre_close {
    top: 0;
    right: -0.41rem;
}
.dialog_preForm {
    width: 100%;
    height: 100%;
}
.dialog_preForm_inputBox {
    width: 5.34rem;
    height: 0.63rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/pop/pop_input.png') center center no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}
.dialog_preForm_inputPrefix {
    flex-shrink: 0;
    color: #C8B17D;
    font-size: 0.25rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    user-select: none;
}
.dialog_preForm_inputSeparator {
    flex-shrink: 0;
    color: #C8B17D;
    font-size: 0.25rem;
    line-height: 0.51rem;
    user-select: none;
}
.dialog_preForm_input {
    flex: 1;
    align-self: stretch;
    width: 100%;
    height: 100%;
    padding: 0.21rem 0.4rem 0.17rem;
    background: transparent;
    border: none;
    outline: none;
    color: #C8B17D;
    font-size: 0.25rem;
    line-height: 1;
    box-sizing: border-box;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.dialog_preForm_input::placeholder {
    line-height: 1;
}
.dialog_preForm_captcha {
    padding: 0.21rem 0.5rem 0.17rem;
}
.dialog_preForm_captchaBtn {
    width: 0.99rem;
    height: 0.51rem;
    margin-right: 0.2rem;
    /* background: #A7976C; */
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/pop/pop_code.png') center center no-repeat;
    background-size: 100% 100%;
    /* border-radius: 0.2rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    font-size: 0.25rem;
    color: #0F0F17;
    line-height: 0.51rem;
}
.dialog_preForm_captchaBtn.disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.3;
    filter: grayscale(100%);
}
.dialog_preForm_agreement {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
/* 用 margin 替代 transform 晃动，避免 flex 子元素在动画结束时子像素回弹 */
@keyframes dialogAgreementShake {
    0%, 100% { margin-left: 0; }
    6.5% { margin-left: -0.1rem; }
    18.5% { margin-left: 0.09rem; }
    31.5% { margin-left: -0.07rem; }
    43.5% { margin-left: 0.06rem; }
    50% { margin-left: 0; }
}
.dialog_preForm_agreement.is-shaking {
    animation: dialogAgreementShake 1s ease-in-out;
}
.dialog_preForm_agreement_checkbox_Box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    padding: 0.3rem;
    margin: -0.3rem;
}
.dialog_preForm_agreement_checkbox {
    width: 0.24rem;
    height: 0.24rem;
    object-fit: contain;
}
.dialog_preForm_agreement_text {
    font-size: 0.25rem;
    color: #8E7E63;
    line-height: 0.34rem;
    padding-left: 0.1rem;
}
.dialog_preForm_agreement_text a {
    color: #BDAA76;
}
.dialog_preForm_submitBtn {
    width: 3.7rem;
    height: 1.37rem;
    cursor: pointer;
    margin: 0 auto;
}

/* 视频弹窗 */
.dialog_video {
    z-index: 1500;
    animation: none;
}
.dialog-content.dialog_video_content {
    width: 6.5rem;
    max-width: 92vw;
    animation: none;
}
.dialog-content.dialog_video_content.is-enter {
    /* -webkit-animation: dialogVideoFadeInDown 0.6s ease both;
    animation: dialogVideoFadeInDown 0.6s ease both; */
}
@-webkit-keyframes dialogVideoFadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes dialogVideoFadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.dialog_video_close {
    top: 0;
    right: -0.5rem;
}
.dialog_video_content_inner {
    width: 100%;
    background: #000;
    overflow: hidden;
}
.dialog_video_player {
    display: block;
    width: 100%;
    height: auto;
}

/* 提示弹窗 */
.dialog_tip {
    z-index: 1999;
}
.dialog_tip_content {
    width: 5.21rem;
    height: 4.45rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/pop/pop_box0.png') center center no-repeat;
    background-size: 100% 100%;
}
.dialog_tip_close {
    bottom: -0.2rem;
    left: 50%;
    margin-left: -0.185rem;
}
.dialog_tip_content_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.6rem;
}
.dialog_tip_content_inner_message {
    color: #b4a27c;
    font-size: 0.24rem;
    line-height: 1.8;
    text-align: center;
    text-shadow: 0 0.02rem 0.04rem rgba(0, 0, 0, 0.5);
    word-break: break-all;
    max-width: 100%;
}
.dialog_tip_content_inner_message img {
    width: 3.02rem;
    height: 0.35rem;
}
/* 建议征集弹窗 */
.dialog_feedback_content {
    width: 6.31rem;
    height: 10.92rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/mo/pop/cb_box.png');
    background-size: 100%;
}
.dialog_feedback_close {
    top: 0;
    right: -0.4rem;
}
.dialog_feedback_content_inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-top: 2.9rem;
}
.dialog_feedback_inputBox {
    width: 6.31rem;
    height: 5.03rem;
    padding: 0.24rem 0.9rem;
    margin: 0 auto;
    background: url('https://res.zulong.com/cms/lom/assets/img/mo/pop/cb-input-box.png') center center no-repeat;
    background-size: 100% 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.dialog_feedback_input {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    color: #6f6352;
    font-size: 0.16rem;
    line-height: 1.8;
    border: none;
    outline: none;
    background: transparent;
    resize: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    font-family: inherit;
}
.dialog_feedback_input::placeholder {
    color: #8d8478;
}
.dialog_feedback_submitBtn {
    width: 2.2rem;
    height: 0.9rem;
    margin: 0 auto;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    background: url('https://res.zulong.com/cms/lom/assets/img/mo/pop/cb_submit.png') center center no-repeat;
    background-size: 100%;
    margin-top: 0.5rem;
}
.dialog_feedback_submitBtn img {
    display: none;
}
/* 建议征集提交成功弹窗 */
.dialog_feedback_success_content {
    position: relative;
}
.dialog_feedback_success_close {
    top: 0;
    right: -0.4rem;
}
.dialog_feedback_success_img {
    display: block;
    width: 5.21rem;
    height: auto;
}

.fullScreen-modal-overlay,
.fullScreen-modal-inner-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgb(101 101 101);
    z-index: 1000;
    overscroll-behavior: contain;
}
.fullScreen-modal-overlay {
    overflow-y: auto;
}
.fullScreen-modal-inner-overlay {
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.fullScreen-modal-content {
    position: relative;
    width: 10.8rem;
    height: 19.2rem;
}
.fullScreen-modal-close {
    position: absolute;
    width: 0.54rem;
    height: 0.54rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/pop/pop_close.png') center center no-repeat;
    background-size: 100%;
    top: 0.5rem;
    right: 0.7rem;
    z-index: 10006;
}
.fullScreen-modal-back {
    position: absolute;
    width: 0.49rem;
    height: 0.42rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/pop/back.png') center center no-repeat;
    background-size: 100%;
    top: 0.6rem;
    left: 0.8rem;
    z-index: 10006;
}

.fullScreen-modal-inner-close {
    position: absolute;
    width: 0.54rem;
    height: 0.54rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/pop/pop_close.png') center center no-repeat;
    background-size: 100%;
    top: 0rem;
    right: -0.66rem;
    z-index: 10007;
}

.horizontal_modal-overlay {
    z-index: 10010;
}
.horizontal_modal {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/landscape/bg.jpg') center center no-repeat;
    background-size: 100%;
}
.horizontal_modal .fullScreen-modal-back {
    z-index: 2;
    top: 0.26rem;
    left: 0.5rem;
    width: 1.1rem;
    height: 1.1rem;
    background-size: 0.49rem 0.42rem;
}
.horizontal-modal-body {
    position: relative;
    width: 100%;
    height: 100%;
}
.horizontal-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
}
.sj-box {
    width: 3.3rem;
    height: 2.8rem;
    position: absolute;
    top: 8.3rem;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sj-box-arrow {
    position: absolute;
    top: 0.3rem;
    left: 0.6rem;
    width: 0.85rem;
    height: 0.73rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/landscape/arrow.png') center center no-repeat;
    background-size: 100%;
}
.sj-box-item {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.54rem;
    height: 1.49rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/landscape/sj.png') center center no-repeat;
    background-color: #343434;
    background-size: 100%;
    z-index: 2;
}
.sj-box-item1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 1.5rem;
    height: 2.55rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/landscape/sj1.png') center center no-repeat;
    background-size: 100%;
    z-index: 1;
    transform-origin: bottom center;
    animation: rotate_sj1 1.5s linear infinite;
}
/* 旋转后上移，与 .sj-box-item 区域对齐 */
@keyframes rotate_sj1 {
    from {
        transform: rotate(0deg) translateY(0);
    }
    to {
        transform: rotate(-90deg) translateX(0.5rem) translateY(0rem);
    }
}
.title-box {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 10.8rem;
    height: 3.19rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/landscape/titlebg.png') center center no-repeat;
    background-size: 100%;
}
.title-box-text {
    width: 10.8rem;
    height: 3.19rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/landscape/title.png') center center no-repeat;
    background-size: 100%;
    animation: scale_title 1s ease-in-out infinite alternate;
}
@keyframes scale_title {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1.05);
    }
}

.god_path_modal {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/sequence/sequence_bg.jpg') center top no-repeat;
    background-size: 100%;
}
.god_path-modal-body {
    position: relative;
    width: 100%;
    height: 100%;
}
.sequence_icon {
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}
.sequence_icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}
.sequence_icon1_1 {
    width: 0.79rem;
    height: 0.77rem;
    top: 1.82rem;
    left: 3.68rem;
}
.sequence_icon1_2 {
    width: 0.79rem;
    height: 0.77rem;
    top: 1.69rem;
    right: 2.45rem;
}
.sequence_icon1_3 {
    width: 0.89rem;
    height: 0.89rem;
    top: 4.5rem;
    right: 0.52rem;
}
.sequence_icon2_1 {
    width: 0.79rem;
    height: 0.77rem;
    top: 1.73rem;
    left: 1.17rem;
}
.sequence_icon2_2 {
    width: 1.59rem;
    height: 1.58rem;
    top: 3.05rem;
    left: 0.52rem;
}
.sequence_icon2_3 {
    width: 1.61rem;
    height: 1.56rem;
    top: 3.85rem;
    left: 3.44rem;
}
.sequence_icon2_4 {
    width: 0.79rem;
    height: 0.78rem;
    top: 7.37rem;
    left: 4.47rem;
}
.sequence_icon2_5 {
    width: 1.61em;
    height: 1.57rem;
    top: 2.29rem;
    right: 0.27rem;
}
.sequence_icon3_1 {
    width: 0.79rem;
    height: 0.79rem;
    top: 5.12rem;
    left: 1.97rem;
}
.sequence_icon3_2 {
    width: 1.87rem;
    height: 1.87rem;
    top: 5.73rem;
    left: 2.45rem;
}
.sequence_icon3_3 {
    width: 1.66rem;
    height: 1.65rem;
    top: 2.24rem;
    left: 4.77rem;
}
.sequence_icon3_4 {
    width: 1.86rem;
    height: 1.87rem;
    top: 3.94rem;
    right: 2.19rem;
}
.sequence_icon3_5 {
    width: 0.8rem;
    height: 0.79rem;
    top: 9.42rem;
    right: 0.8rem;
}
.sequence_icon4_1 {
    width: 0.8rem;
    height: 0.76rem;
    top: 3.3rem;
    left: 2.93rem;
}
.sequence_icon4_2 {
    width: 0.93rem;
    height: 0.91rem;
    top: 1.26rem;
    left: 5.43rem;
}
.sequence_icon4_3 {
    width: 1.61rem;
    height: 1.59rem;
    top: 6.18rem;
    left: 0.19rem;
}
.sequence_icon4_4 {
    width: 1.86rem;
    height: 1.78rem;
    top: 8.52rem;
    left: 0.81rem;
}
.sequence_icon4_5 {
    width: 1.84rem;
    height: 1.69rem;
    top: 7.72rem;
    left: 5.92rem;
}
.sequence_icon4_6 {
    width: 0.89rem;
    height: 0.91rem;
    top: 6.58rem;
    right: 2.62rem;
}
.sequence_icon4_7 {
    width: 1.86rem;
    height: 1.85rem;
    top: 5.77rem;
    right: 0.29rem;
}
.sequence_icon4_8 {
    width: 1.6rem;
    height: 1.59rem;
    top: 5.54rem;
    right: 4.05rem;
}
.sequence_icon4_9 {
    width: 1.1rem;
    height: 1.09rem;
    top: 7.93rem;
    right: 0.27rem;
}

.god_path_inner_modal {
    width: 8.38rem;
    height: 13.68rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/sequence/sequence_box.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.god_path-inner-modal-body {
    position: relative;
    width: 100%;
    height: 100%;
}
.god_path-swiper {
    width: calc(100% - 1.3rem);
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.god_path-detail-slide {
    width: 100%;
    height: 100%;
    position: relative;
}
.god_path-detail-icon {
    display: block;
    width: 3.29rem;
    height: 2.66rem;
    margin: 1.19rem auto 0;
}
.god_path-detail-title {
    position: absolute;
    top: 3.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6.97rem;
    height: 0.57rem;
    line-height: 0.57rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/sequence/sequence_titlebg.png') center center no-repeat;
    background-size: 100%;
    text-align: center;
    color: #F0BF53;
    font-size: 0.33rem;
    font-weight: bold;
}
.god_path-swiper-prev {
    width: 0.7rem;
    height: 0.7rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/sequence/sequence_left.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 0.05rem;
    transform: translateY(-50%);
    z-index: 1;
}
.god_path-swiper-next {
    width: 0.71rem;
    height: 0.7rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/sequence/sequence_right.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 0.05rem;
    transform: translateY(-50%);
    z-index: 1;
}
.god_path-detail-content {
    width: 6rem;
    margin: 0.52rem auto 0;
    color: #C1C1C1;
    font-size: 0.23rem;
    line-height: 0.41rem;
    font-family: Source Han Serif CN;
}
.god_path-detail-content-introduction {
    margin-bottom: 0.85rem;
}
.god_path-detail-content-title {
    color: #CEA343;
    margin-bottom: 0.1rem;
}
.god_path-detail-content-title-icon {
    display: inline-block;
    width: 0.23rem;
    height: 0.23rem;
    vertical-align: middle;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/sequence/lx.png') center center no-repeat;
    background-size: 100%;
    margin-right: 0.1rem;
}
.god_path-detail-content-levels {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.85rem;
}

.scenario_display-modal-close {
    width: 1.42rem;
    height: 1.25rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/scene/scene_close1.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0.2rem;
    right: 0.1rem;
    z-index: 4;
}
.scenario_display-modal-body {
    position: relative;
    width: 100%;
    height: 100%;
}
.scenario_display-content {
    position: relative;
    width: 100%;
    height: 100%;
}
.scenario_display-ui-layer {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}
.scenario_display-media-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}
.scenario_display-ui-layer .scenario_display-switchBox,
.scenario_display-ui-layer .scenario_display-swiper-prev,
.scenario_display-ui-layer .scenario_display-swiper-next,
.scenario_display-ui-layer .scenario_display-modal-close {
    pointer-events: auto;
}
.scenario_display-borderBox {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}
.scenario_display-borderBox-item {
    width: 50%;
    height: 50%;
    position: absolute;
    object-fit: fill;
}
.borderBox-lt {
    top: 0;
    left: 0;
}
.borderBox-rt {
    top: 0;
    right: 0;
}
.borderBox-lb {
    bottom: 0;
    left: 0;
}
.borderBox-rb {
    bottom: 0;
    right: 0;
}
.scenario_display-switchBox {
    position: absolute;
    top: 0.45rem;
    left: 0.5rem;
    z-index: 4;
    display: none;
    align-items: center;
    gap: 0.1rem;
}
.scenario_display-switchBox.is-night-visible {
    display: flex;
}
.scenario_display-switchBox-item {
    width: 0.64rem;
    height: 0.67rem;
    cursor: pointer;
}
.switchBox-day {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/scene/scene_day.png') center center no-repeat;
    background-size: 100%;
}
.switchBox-day:hover,
.switchBox-day.active {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/scene/scene_day1.png') center center no-repeat;
    background-size: 100%;
}
.switchBox-night {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/scene/scene_night.png') center center no-repeat;
    background-size: 100%;
}
.switchBox-night:hover,
.switchBox-night.active {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/scene/scene_night1.png') center center no-repeat;
    background-size: 100%;
}

.scenario_display-swiper {
    width: 100%;
    height: 100%;
}
.scenario_display-detail-slide {
    height: 100%;
}
.scenario_display-detail-slide-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.scenario_display-detailBox {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/scene/scene_box.png') center center no-repeat;
    background-size: 100% 100%;
}
.scenario_display-detailBox-title {
    width: 2.36rem;
    height: 0.48rem;
    position: absolute;
    bottom: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
}
.scenario_display-swiper-prev {
    width: 0.48rem;
    height: 0.49rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/scene/scene_left.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: 0.5rem;
    right: 1.83rem;
    cursor: pointer;
    z-index: 4;
}
.scenario_display-swiper-next {
    width: 0.48rem;
    height: 0.49rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/scene/scene_right.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    cursor: pointer;
    z-index: 4;
}
.scenario_display-swiper.swiper-fade .swiper-slide {
    pointer-events: none;
}
.scenario_display-swiper.swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

.power_organization-modal-back {
    top: 1.2rem;
    left: 0.9rem;
    z-index: 1;
}
.power_organization-modal-catalogBtn {
    width: 2.35rem;
    height: 0.73rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/force/force_nav.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 1.1rem;
    right: 0.8rem;
    z-index: 1;
}
.power_organization_modal {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/force/force_bg.jpg') top center no-repeat;
    background-size: 100%;
}
.power_organization-modal-body {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1rem 0.6rem 0;
    overflow: hidden;
}
.power_organization-catalog {
    width: 10.8rem;
    height: 19.2rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/force/force_bg1.jpg') center center no-repeat;
    background-size: 100% 100%;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 3rem 0 1.6rem 1.16rem;
    position: absolute;
    top: 0rem;
    left: 0rem;
    z-index: 5;
}
.power_organization-catalog.animate__animated {
    --animate-duration: 0.3s;
}
.power_organization-catalog-close {
    width: 0.54rem;
    height: 0.54rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/pop/pop_close.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0.58rem;
    right: 0.61rem;
}
.power_organization-catalog-box {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    font-family: 'Source Han Serif CN';
}
.power_organization-catalog-group {
    margin-bottom: 0.2rem;
}
.power_organization-catalog-head {
    font-size: 0.4rem;
    color: #DEDEDE;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02rem;
}
.power_organization-catalog-item {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0.3rem 0;
    padding: 0.08rem 0 0.08rem 0.55rem;
    font-size: 0.3rem;
    font-weight: 200;
    color: #DEDEDE;
    cursor: pointer;
    transition: color 0.2s;
}
.power_organization-catalog-item::before {
    content: '';
    position: absolute;
    left: 0.15rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    opacity: 0;
    background: #F4C632;
    box-shadow: 0 0 0.08rem #F4C632;
    pointer-events: none;
    transition: opacity 0.2s;
}
.power_organization-catalog-item.active {
    color: #F4C632;
}
.power_organization-catalog-item.active::before {
    opacity: 1;
}

.power_organization-catalog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 0.1rem 1.5rem;
    color: #FFFFFF;
    font-size: 0.26rem;
    line-height: 1.85;
}
.power_organization-detail {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    min-width: 0;
}
.power_organization-detail-header {
    position: relative;
    flex-shrink: 0;
    height: 3.2rem;
}
.power_organization-detail-sectionBox {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    margin-top: 0.2rem;
    padding: 0 0.2rem;
    -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 1.5rem), transparent 100%);
    mask-image: linear-gradient(to bottom, #000 calc(100% - 1.5rem), transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.power_organization-detail-icon {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.power_organization-detail-title {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.4rem;
    color: #EABF3D;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}
.power_organization-detail-title-icon-left {
    width: 2.89rem;
    height: 0.34rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/force/force_title01.png') center center no-repeat;
    background-size: 100%;
    margin-right: 0.3rem;
    flex-shrink: 0;
}
.power_organization-detail-title-text {
    flex-shrink: 0;
    color: #EABF3D;
    font-weight: 400;
}
.power_organization-detail-title-icon-right {
    width: 2.89rem;
    height: 0.34rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/force/force_title02.png') center center no-repeat;
    background-size: 100%;
    margin-left: 0.3rem;
    flex-shrink: 0;
}
.power_organization-detail-section {
    margin-bottom: 0.25rem;
}
.power_organization-detail-label {
    display: block;
    color: #EABF3D;
    margin-bottom: 0.06rem;
}
.power_organization-detail-label-icon {
    display: inline-block;
    width: 0.23rem;
    height: 0.23rem;
    vertical-align: middle;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/force/force_lx.png') center center no-repeat;
    background-size: 100%;
    margin-right: 0.05rem;
}

/* 全屏弹窗-场景展示 / 世界地图（需横屏体验，层级低于横屏提示层） */
.scenario_display_modal-overlay,
.world_map_modal-overlay {
    z-index: 10009;
}
.world_map_modal-overlay {
    background: rgba(0, 0, 0);
}
.world_map_modal {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/world_map.jpg') center top no-repeat;
    background-size: 100%;
}

/* 横屏：铺满遮罩，contain 在「整张可见」前提下尽量放大；避免按竖屏比例 min 宽度导致地图过窄过小 */
@media screen and (orientation: landscape) {
    .world_map_modal-overlay,
    .scenario_display_modal-overlay {
        overflow: hidden;
    }
    .scenario_display_modal-overlay .fullScreen-modal-content.scenario_display_modal {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: auto;
        height: auto;
        margin: 0;
        max-width: none;
        max-height: none;
    }
    .world_map-modal-close {
        width: 0.3rem;
        height: 0.3rem;
        top: 0.4rem;
        right: 0.6rem;
    }
    .world_map_modal-overlay .fullScreen-modal-content.world_map_modal {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: auto;
        height: auto;
        margin: 0;
        max-width: none;
        max-height: none;
        background-size: contain;
        background-position: center center;
    }
}

.magical_items-modal-back {
    z-index: 2;
    top: 0.26rem;
    left: 0.5rem;
    width: 1.1rem;
    height: 1.1rem;
    background-size: 0.49rem 0.42rem;
}
.magical_items_modal {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/items/item_bg.jpg') center top no-repeat;
    background-size: 100%;
    cursor: none;
}
.magical_items-modal-body {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    --spotlight-x: 50%;
    --spotlight-y: 50%;
}
.magical_items-catalog-box {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.magical_items-modal-spotlight {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(
            circle 2.4rem at var(--spotlight-x) var(--spotlight-y),
            transparent 0%,
            transparent 80%,
            rgba(0, 0, 0, 0) 10%,
            rgba(0, 0, 0, 0.64) 100%
        );
}
.magical_items-catalog-lineBox {
    width: 100%;
    height: 100%;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/items/item_redline.png') center top no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}
.magical_items-catalog-item {
    position: absolute;
    cursor: pointer;
}
.magical_items-catalog-item img {
    width: 100%;
    height: 100%;
}
.magical_items-catalog-item1 {
    width: 3.42rem;
    height: 4.17rem;
    top: 5.6rem;
    left: 0.94rem;
}
.magical_items-catalog-item2 {
    width: 2.66rem;
    height: 3.27rem;
    top: 3.15rem;
    left: 5.24rem;
}
.magical_items-catalog-item3 {
    width: 3.8rem;
    height: 4.67rem;
    top: 12.05rem;
    left: 3.4rem;
}
.magical_items-catalog-item4 {
    width: 3.19rem;
    height: 3.86rem;
    top: 8.42rem;
    right: 0.94rem;
}

.magical_items_inner_modal {
    width: 8.1rem;
    height: 14.04rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.magical_items-inner-modal-close {
    width: 1.45rem;
    height: 1.45rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/items/item_close.png') center center no-repeat;
    background-size: 100%;
    top: -0.4rem;
    right: -1.2rem;
}
.magical_items-inner-modal-body {
    position: relative;
    width: 100%;
    height: 100%;
}
.magical_items-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.magical_items-banner-slide {
    width: 100%;
    height: 100%;
}
.magical_items-banner-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.magical_items-swiper-prev {
    width: 0.7rem;
    height: 0.7rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/items/left.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 0.2rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.magical_items-swiper-next {
    width: 0.7rem;
    height: 0.7rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/mo/explore_world/items/right.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 0.2rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
