/* 通用遮罩层 */
.dialog {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
    z-index: 1000;
}
/* 通用弹窗容器 */
.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-close:hover {
    transform: rotate(90deg);
}

.dialog_pre_content {
    width: 5.21rem;
    height: 7.26rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/pop/pop_box.webp') center center no-repeat;
    background-size: 100% 100%;
    padding-top: 2.8rem;
    font-size: 0.21rem;
}
.dialog_pre_close {
    top: 0;
    right: -0.41rem;
}
.dialog_preForm {
    width: 100%;
    height: 100%;
}
.dialog_preForm_inputBox {
    width: 4.26rem;
    height: 0.51rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/pop/pop_input.png') center center no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.35rem;
}
.dialog_preForm_inputPrefix {
    flex-shrink: 0;
    color: #C8B17D;
    font-size: 0.19rem;
    padding-left: 0.26rem;
    padding-right: 0.22rem;
    user-select: none;
}
.dialog_preForm_inputSeparator {
    flex-shrink: 0;
    color: #C8B17D;
    font-size: 0.2rem;
    line-height: 0.4rem;
    user-select: none;
}
.dialog_preForm_input {
    flex: 1;
    align-self: stretch;
    width: 100%;
    height: 100%;
    padding: 0.18rem 0.2rem 0.14rem;
    background: transparent;
    border: none;
    outline: none;
    color: #C8B17D;
    font-size: 0.19rem;
    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.18rem 0.3rem 0.14rem;
}
.dialog_preForm_captchaBtn {
    width: 0.78rem;
    height: 0.4rem;
    margin-right: 0.2rem;
    /* background: #A7976C; */
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/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.19rem;
    color: #0F0F17;
    line-height: 0.4rem;
}
.dialog_preForm_captchaBtn.disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.3;
    filter: grayscale(100%);
}
.dialog_preForm_agreement {
    width: 4.3rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto 0.5rem;
}
/* 用 transform 晃动，避免与 margin: auto 水平居中冲突 */
@keyframes dialogAgreementShake {
    0%, 100% { transform: translateX(0); }
    6.5% { transform: translateX(-0.09rem); }
    18.5% { transform: translateX(0.08rem); }
    31.5% { transform: translateX(-0.07rem); }
    43.5% { transform: translateX(0.06rem); }
    50% { transform: translateX(0); }
}
.dialog_preForm_agreement.is-shaking {
    animation: dialogAgreementShake 1s ease-in-out;
}
.dialog_preForm_agreement_checkbox_Box {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.2rem;
    margin: -0.1rem;
}
.dialog_preForm_agreement_checkbox {
    width: 0.24rem;
    height: 0.24rem;
    object-fit: contain;
}
.dialog_preForm_agreement_text {
    font-size: 0.18rem;
    color: #8E7E63;
    line-height: 0.34rem;
    padding-left: 0.1rem;
}
.dialog_preForm_agreement_text a {
    color: #BDAA76;
}
.dialog_preForm_submitBtn {
    width: 2.99rem;
    height: 1.15rem;
    cursor: pointer;
    margin: 0 auto;
}
.dialog_preForm_submitBtn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 视频弹窗 */
.dialog_video {
    z-index: 1500;
    animation: none;
}
.dialog-content.dialog_video_content {
    width: 10rem;
    max-width: 90vw;
    animation: none;
}
.dialog-content.dialog_video_content.is-enter {
    /* animation: dialogVideoFadeInDown 0.6s ease both; */
}
@keyframes dialogVideoFadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        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/pc/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_close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.88rem;
    height: 0.88rem;
    transform: translate(-50%, -50%);
}
.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: 10.04rem;
    height: 5.8rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/cb_box.png');
}
.dialog_feedback_close {
    top: 0;
    right: -0.4rem;
}
.dialog_feedback_content_inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-top: 2.1rem;
}
.dialog_feedback_inputBox {
    width: 8.7rem;
    height: 1.94rem;
    padding: 0.24rem 0.28rem;
    margin: 0 auto;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/cb-input-box.png') center center no-repeat;
    background-size: 100% 100%;
    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;
    box-sizing: border-box;
    overflow-y: auto;
    font-family: inherit;
}
.dialog_feedback_input::placeholder {
    color: #8d8478;
}
.dialog_feedback_submitBtn {
    width: 2.89rem;
    height: 0.71rem;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/cb_submit.png') center center no-repeat;
    background-size: 100%;
    margin: 0 auto;
    margin-top: 0.3rem;
    transition: transform 0.3s;
    cursor: pointer;
}
.dialog_feedback_submitBtn:hover {
    transform: scale(1.05);
}
.dialog_feedback_submitBtn:active {
    transform: scale(0.98);
}
/* 建议征集提交成功弹窗 */
.dialog_feedback_success_close {
    top: 0;
    right: -0.4rem;
}
.dialog_feedback_success_content_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dialog_feedback_success_img {
    width: 5.21rem;
    height: auto;
    cursor: pointer;
}

.fullScreen-modal-overlay,
.fullScreen-modal-inner-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
    z-index: 1001;
    overflow: hidden;
    overscroll-behavior: contain;
}
/* 探索世界过场衔接：弹窗立即全不透明，避免 fadeIn 期间透出底层 banner */
body.world-modal-opening .fullScreen-modal-overlay {
    animation: none;
    background: #000;
}
.fullScreen-modal-content {
    position: relative;
    width: 19.2rem;
    height: 10.8rem;
}
.fullScreen-modal-close {
    position: absolute;
    width: 0.37rem;
    height: 0.37rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/pop/pop_close.png') center center no-repeat;
    background-size: 100%;
    top: 0.3rem;
    right: 0.8rem;
    cursor: pointer;
    z-index: 1001;
}
.fullScreen-modal-back {
    position: absolute;
    width: 0.49rem;
    height: 0.42rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/pop/back.png') center center no-repeat;
    background-size: 100%;
    top: 0.3rem;
    left: 0.8rem;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s;
}
.fullScreen-modal-back:hover {
    transform: translateX(-0.1rem);
}

.fullScreen-modal-inner-close {
    position: absolute;
    width: 0.37rem;
    height: 0.37rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/pop/pop_close.png') center center no-repeat;
    background-size: 100%;
    top: 0rem;
    right: -0.5rem;
    cursor: pointer;
    z-index: 10007;
    transition: transform 0.3s;
}
.fullScreen-modal-inner-close:hover {
    transform: rotate(90deg);
}
.god_path_modal-overlay {
    opacity: 0;
    animation: god_path_overlay_in 0.38s ease forwards;
}
.god_path_modal-overlay .god_path_modal {
    opacity: 0;
    transform: scale(0.98);
    animation: god_path_content_in 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes god_path_overlay_in {
    to { opacity: 1; }
}
@keyframes god_path_content_in {
    to { opacity: 1; transform: scale(1); }
}
/* 全屏弹窗-神之路径 */
.god_path_modal {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/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:hover {
    filter: saturate(2.1) brightness(2.8);
}
.sequence_icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}
.sequence_icon1_1 {
    width: 0.56rem;
    height: 0.54rem;
    top: 0.88rem;
    left: 7.45rem;
}
.sequence_icon1_2 {
    width: 0.55rem;
    height: 0.54rem;
    top: 0.75rem;
    left: 9.45rem;
}
.sequence_icon1_3 {
    width: 0.62rem;
    height: 0.63rem;
    top: 1.06rem;
    right: 7.93rem;
}
.sequence_icon2_1 {
    width: 0.56rem;
    height: 0.54rem;
    top: 2.22rem;
    left: 5.25rem;
}
.sequence_icon2_2 {
    width: 1.11rem;
    height: 1.11rem;
    top: 1.79rem;
    left: 6.29rem;
}
.sequence_icon2_3 {
    width: 1.13rem;
    height: 1.1rem;
    top: 1.81rem;
    left: 8.64rem;
}
.sequence_icon2_4 {
    width: 0.56rem;
    height: 0.55rem;
    top: 2.02rem;
    left: 10.09rem;
}
.sequence_icon2_5 {
    width: 1.13rem;
    height: 1.11rem;
    top: 2.02rem;
    right: 5.51rem;
}
.sequence_icon3_1 {
    width: 0.56rem;
    height: 0.55rem;
    top: 3.24rem;
    left: 5.99rem;
}
.sequence_icon3_2 {
    width: 1.39rem;
    height: 1.31rem;
    top: 2.82rem;
    left: 7rem;
}
.sequence_icon3_3 {
    width: 1.16rem;
    height: 1.16rem;
    top: 3.04rem;
    left: 8.39rem;
}
.sequence_icon3_4 {
    width: 1.31rem;
    height: 1.31rem;
    top: 2.55rem;
    right: 6.9rem;
}
.sequence_icon3_5 {
    width: 0.56rem;
    height: 0.55rem;
    top: 2.97rem;
    right: 4.57rem;
}
.sequence_icon4_1 {
    width: 0.56rem;
    height: 0.54rem;
    top: 3.63rem;
    left: 3.82rem;
}
.sequence_icon4_2 {
    width: 0.65rem;
    height: 0.64rem;
    top: 5.1rem;
    left: 4.56rem;
}
.sequence_icon4_3 {
    width: 1.16rem;
    height: 1.14rem;
    top: 3.84rem;
    left: 4.89rem;
}
.sequence_icon4_4 {
    width: 1.31rem;
    height: 1.25rem;
    top: 4.83rem;
    left: 5.88rem;
}
.sequence_icon4_5 {
    width: 1.29rem;
    height: 1.18rem;
    top: 3.62rem;
    left: 9.65rem;
}
.sequence_icon4_6 {
    width: 0.63rem;
    height: 0.64rem;
    top: 3.99rem;
    right: 7.2rem;
}
.sequence_icon4_7 {
    width: 1.4rem;
    height: 1.39rem;
    top: 4.12rem;
    right: 5.69rem;
}
.sequence_icon4_8 {
    width: 1.12rem;
    height: 1.12rem;
    top: 3.87rem;
    right: 4.24rem;
}
.sequence_icon4_9 {
    width: 0.77rem;
    height: 0.77rem;
    top: 5.41rem;
    right: 4.98rem;
}
/* 神之路径-弹窗内容 */
.god_path_inner_modal {
    width: 9.31rem;
    height: 5.72rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/sequence/sequence_box.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}
.god_path-inner-modal-body {
    position: relative;
    width: 100%;
    height: 100%;
}
.god_path-swiper {
    width: calc(100% - 1.8rem);
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.god_path-detail-slide {
    width: 100%;
    height: 100%;
    position: relative;
}
.god_path-detail-icon {
    display: block;
    width: 2.01rem;
    height: 1.62rem;
    margin: 0.47rem auto 0;
}
.god_path-detail-title {
    position: absolute;
    top: 1.69rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6.51rem;
    height: 0.35rem;
    line-height: 0.35rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/sequence/sequence_titlebg.png') center center no-repeat;
    background-size: 100%;
    text-align: center;
    color: #F0BF53;
    font-size: 0.2rem;
    font-weight: bold;
}
.god_path-swiper-prev {
    width: 0.59rem;
    height: 0.59rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/sequence/left.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 0.1rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.god_path-swiper-next {
    width: 0.59rem;
    height: 0.59rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/sequence/right.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 0.1rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.god_path-detail-content {
    width: 6.6rem;
    margin: 0.3rem auto 0;
    color: #C1C1C1;
    font-size: 0.14rem;
    font-family: Source Han Serif CN;
}
.god_path-detail-content-introduction {
    margin-bottom: 0.25rem;
}
.god_path-detail-content-title {
    color: #CEA343;
    font-size: 0.14rem;
    line-height: 0.25rem;
    margin-bottom: 0.1rem;
}
.god_path-detail-content-title-icon {
    display: inline-block;
    width: 0.14rem;
    height: 0.15rem;
    vertical-align: middle;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/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.1rem;
}
/* 全屏弹窗-场景展示 */
.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%;
    top: 0.3rem;
    right: 0.4rem;
}
.scenario_display-modal-body {
    position: relative;
    width: 100%;
    height: 100%;
}
.scenario_display-borderBox {
    position: relative;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
}
.scenario_display-borderBox-item {
    width: 9.6rem;
    height: 5.4rem;
    position: absolute;
}
.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.6rem;
    left: 0.7rem;
    z-index: 10;
    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-content {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}
.scenario_display-swiper {
    width: 100%;
    height: 100%;
}
.scenario_display-detail-slide-img {
    width: 100%;
}
.scenario_display-detailBox {
    width: 19.2rem;
    height: 10.8rem;
    position: absolute;
    bottom: 0;
    left: 0;
    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%;
}
.scenario_display-detailBox-title {
    width: 2.36rem;
    height: 0.48rem;
    position: absolute;
    bottom: 1.24rem;
    left: 50%;
    transform: translateX(-50%);
}
.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: 1.33rem;
    right: 2.83rem;
    cursor: pointer;
    z-index: 1;
}
.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: 1.33rem;
    right: 2rem;
    cursor: pointer;
    z-index: 1;
}
/* 全屏弹窗-势力组织 */
.power_organization-modal-back {
    top: 1.1rem;
    left: 1.2rem;
}
.power_organization_modal {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/force/force_bg.jpg') top center no-repeat;
    background-size: 100%;
}
.power_organization-modal-body {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    padding: 0.46rem 1.4rem 1.8rem 1.3rem;
}
.power_organization-catalog-box {
    width: 2.5rem;
    flex-shrink: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 0.2rem;
    margin-top: 1.5rem;
    font-family: 'Source Han Serif CN';
}
.power_organization-catalog-group {
    margin-bottom: 0.2rem;
}
.power_organization-catalog-head {
    font-size: 0.24rem;
    color: #DEDEDE;
    margin-bottom: 0.15rem;
    letter-spacing: 0.02rem;
}
.power_organization-catalog-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.08rem 0 0.08rem 0.37rem;
    font-size: 0.18rem;
    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.1rem;
    height: 0.1rem;
    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:hover {
    color: #F4C632;
}
.power_organization-catalog-item.active {
    color: #F4C632;
    /* text-shadow: 0 0 0.12rem rgba(240, 200, 100, 0.35); */
}
.power_organization-catalog-item.active::before {
    opacity: 1;
}

.power_organization-catalog-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    min-height: 0;
    margin-left: 0.9rem;
    margin-top: 0.95rem;
    padding-right: 0.2rem;
    color: #FFFFFF;
    font-size: 0.14rem;
    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: absolute;
    top: 0.5rem;
    left: 4.15rem;
    width: calc(100% - 6.1rem);
    height: 2.65rem;
}
.power_organization-detail-sectionBox {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    margin-top: 2.1rem;
    padding-right: 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.34rem;
    height: 2.48rem;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.power_organization-detail-title {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.28rem;
    color: #EABF3D;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}
.power_organization-detail-title-icon-left {
    width: 2.77rem;
    height: 0.26rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/force/force_title01.png') center center no-repeat;
    background-size: 100%;
    margin-right: 0.24rem;
    flex-shrink: 0;
}
.power_organization-detail-title-text {
    flex-shrink: 0;
    font-size: 0.28rem;
    color: #EABF3D;
    font-weight: 400;
}
.power_organization-detail-title-icon-right {
    width: 2.77rem;
    height: 0.26rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/force/force_title02.png') center center no-repeat;
    background-size: 100%;
    margin-left: 0.24rem;
    flex-shrink: 0;
}
.power_organization-detail-section {
    margin-bottom: 0.25rem;
}
.power_organization-detail-label {
    display: block;
    color: #EABF3D;
    margin-bottom: 0.06rem;
    font-size: 0.14rem;
}
.power_organization-detail-label-icon {
    display: inline-block;
    width: 0.14rem;
    height: 0.15rem;
    vertical-align: middle;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/force/force_lx.png') center center no-repeat;
    background-size: 100%;
    margin-right: 0.05rem;
}
/* 全屏弹窗-世界地图 */
.world_map_modal {
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/world_map.jpg') center top no-repeat;
    background-size: 100%;
}
.world_map-modal-back {
    top: 0.8rem;
}
/* 全屏弹窗-魔幻物品 */
.magical_items-modal-back {
    z-index: 2;
    top: -0.04rem;
    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/pc/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 1.6rem at var(--spotlight-x) var(--spotlight-y),
            rgba(255, 236, 200, 0.38) 0%,
            rgba(255, 220, 160, 0.12) 38%,
            transparent 62%
        ),
        radial-gradient(
            circle 4.8rem at var(--spotlight-x) var(--spotlight-y),
            transparent 0%,
            transparent 28%,
            rgba(6, 8, 22, 0.52) 62%,
            rgba(2, 3, 12, 0.88) 100%
        ); */
        radial-gradient(
            circle 2.3rem 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/pc/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;
    transition: transform 0.2s;
    cursor: pointer;
}
.magical_items-catalog-item:hover {
    transform: scale(1.05);
}
.magical_items-catalog-item1 {
    width: 2.97rem;
    height: 3.62rem;
    top: 3.33rem;
    left: 3.4rem;
}
.magical_items-catalog-item2 {
    width: 2.08rem;
    height: 2.56rem;
    top: 1.98rem;
    left: 7.01rem;
}
.magical_items-catalog-item3 {
    width: 3.87rem;
    height: 4.25rem;
    top: 4.9rem;
    left: 8.72rem;
}
.magical_items-catalog-item4 {
    width: 2.7rem;
    height: 3.11rem;
    top: 2.05rem;
    right: 3.88rem;
}
/* 全屏弹窗-魔幻物品-弹窗内容 */
.magical_items_inner_modal {
    width: 11.17rem;
    height: 6.44rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.magical_items-inner-modal-close {
    width: 0.68rem;
    height: 0.68rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/items/item_close.png') center center no-repeat;
    background-size: 100%;
    top: -0.16rem;
    right: -0.62rem;
}
.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.59rem;
    height: 0.59rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/items/left.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 0.3rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.magical_items-swiper-next {
    width: 0.59rem;
    height: 0.59rem;
    background: url('https://res.zulong.com/cms/lom_ver2/assets/img/pc/explore_world/items/right.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 0.3rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}