/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

#app {
    width: 100%;
    height: 100%;
    position: relative;
}
body,
.form-input {
  cursor: url('https://res.zulong.com/cms/lom/assets/img/pc/loading_mouse.png'), auto;
}
/* ==================== 自定义鼠标光标 ==================== */
/* .custom-cursor {
    position: fixed;
    width: 0.69rem;
    height: 0.68rem;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/loading_mouse.png') center center no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 99999;
} */

/* ==================== 点击发光效果 ==================== */
/* 隐藏的光效盒子 - 跟随鼠标但不可见 */
.click-glow-item {
    position: fixed;
    width: 1rem;
    height: 1rem;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/loading_mouse1.png') center center no-repeat;
    background-size: 150%;
    pointer-events: none;
    z-index: 99999;  /* 最高层级，确保在所有元素之上 */
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.15s ease-out;
}
.slogan1{
    display: none;
    position: absolute;
    top: 0.9rem;
    left: 50%;
    width: 4.8rem;
    height: 2rem;
    margin-left: -2.4rem;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/slogan1.png') center top no-repeat;
    background-size: 100%;
}
.slogan2{
    position: absolute;
    top: 2rem;
    left: 50%;
    width: 6rem;
    height: 3.95rem;
    margin-left: -3rem;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/slogan2.png') center center no-repeat;
    background-size: 100%;
}
.bg-box{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}
.bg-box-lt{
    position: absolute;
    left: 0;
    top: 0rem;
    width: 3.31rem;
    height: 5.12rem;
}
.bg-box-rt{
    position: absolute;
    right: 0;
    top: 0;
    width: 3.41rem;
    height: 5.13rem;

}
.bg-box-lb{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 8.64rem;
    height: 5.17rem;

}
.bg-box-rb{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 8.78rem;
    height: 5.18rem;
}
.bg-box-t{
    position: absolute;
    left: 50%;
    top: 0.1rem;
    width: 10rem;
    height:auto;
    margin-left: -5rem;

}
/* 点击时激活动画 */
.click-glow-item.active {
    opacity: 1;
    transform: scale(1.1);
}

/* ==================== Loading页面 ==================== */
.loading-page {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/bg.jpg') center center no-repeat;
    background-size: cover;
}
.loading-bg span {
    width: 19.2rem;
    height: 19.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/bg/1.png') center center no-repeat;
    background-size: 100% 100%;
    animation: rotate360 25s linear infinite;
    margin-left: -9.6rem;
    margin-top: -9.6rem;
}
.loading-bg span.loading-bg2{
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/bg/2.png') center center no-repeat;
    background-size: 100% 100%;
    animation: rotate360Rev 25s linear infinite;
}
.loading-bg span.loading-bg3{
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/bg/3.png') center center no-repeat;
    background-size: 100% 100%;
    animation: rotate360 25s linear infinite;
    animation-delay: 2s;
}
.loading-bg span.loading-bg4{
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/bg/4.png') center center no-repeat;
    background-size: 100% 100%;
    animation: rotate360Rev 25s linear infinite;
    animation-delay: 2s;
}
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes rotate360Rev {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}
/* Loading发光效果 - 跟随进度 */
.loading-glow {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/loading_bg.png') center center no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Loading百分比 */
.loading-percent {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translateX(-50%);
    font-size: 0.36rem;
    font-family: cursive;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 0.1rem rgba(255, 255, 255, 0.8);
    z-index: 2;
}

/* Loading标题文字 - 放在下方 */
.loading-txt {
    position: absolute;
    width: 1.42rem;
    left: 50%;
    bottom: 0.74rem;
    transform: translateX(-50%);
}

/* 三点加载动画 */
.loading-dots {
    position: absolute;
    left: 50%;
    bottom: 0.8rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.08rem;
}

.loading-dots span {
    width: 0.05rem;
    height: 0.05rem;
    background: #ffffff;
    animation: dotPulse 1.4s ease-in-out infinite;
    border-radius: 0.01rem;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8) rotate(45deg);
    }
    40% {
        opacity: 1;
        transform: scale(1.2) rotate(45deg);
    }
}

/* Loading镜子 - 299x379 */
.loading-mirror {
    position: absolute;
    width: 2.99rem;
    height: 3.79rem;
    background: url(https://res.zulong.com/cms/lom/assets/img/pc/loading_mirror.png) 0 0 no-repeat;
    background-size: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
}

.loading-mirror img {
    width: 100%;
    height: auto;
}

/* Loading装饰图案 - 101x110 - 跟随进度 */
.loading-icon-container {
    position: absolute;
    width: 1.01rem;
    height: 1.1rem;
    left: 50%;
    top: 0.8rem;
    transform: translateX(-50%);
    user-select: none;
}

.loading-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loading-icon-bg img {
    width: 100%;
    height: 100%;
}

/* 亮色图案 - 跟随进度从下到上显示 */
.loading-icon-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.3s ease;
}

.loading-icon-fill img {
    width: 1.01rem;
    height: 1.1rem;
    display: block;
}

/* ==================== 第二段视频内容块 ==================== */
.second-video-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* 背景视频 - 循环播放 */
.second-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* 文字视频 - 居中显示 */
.second-video-txt {
    width: 6.6rem;
    height: 2.64rem;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;    
    height: 2.4rem;
    max-width: 100%;
    mix-blend-mode: screen;
    position: relative;
    width: 6rem;
}

/* 主视频 - 全屏播放 */
.second-video-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* 跳过按钮 - 右下角 */
.jump-btn {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    z-index: 100;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(https://res.zulong.com/cms/lom/assets/img/pc/jump.png) 100% / auto 0.14rem no-repeat;
    color: #eaeff1;
    font-size: 0.16rem;
    line-height: 0.24rem;
    padding: 0 0.32rem 0 0;
    -webkit-text-decoration: underline;
    text-decoration: underline;
    cursor: pointer;
}

.jump-btn:hover {
    opacity: 1;
}

/* ==================== 主页面 ==================== */
.main-page {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* 主页面 Swiper 容器 */
.main-swiper {
    width: 100%;
    height: 100vh;
}

/* 所有slide默认全屏高度 */
.main-swiper .swiper-slide {
    height: 100vh;
}

/* 第一个slide：主页面内容，relative定位供内部绝对定位元素使用 */
.main-swiper-slide {
    position: relative;
}

/* 其他内容slide */
.main-swiper-slide1,
.main-swiper-slide2 {
    position: relative;
}

/* footer slide：内容居中显示 */
.swiper-slide-footer {
    height: 2.8rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 1);
}

/* 背景视频 - 1920x1080 */
.page-background {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background: url(https://res.zulong.com/cms/lom/assets/img/pc/page1_bg.jpg) center center no-repeat;
    background-size: cover;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* 主要内容 */
.main-content {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



/* Logo - 213x139 */
.page-logo {
    position: absolute;
    left: 0.8rem;
    top: 0;
}

.page-logo img {
    width: 1.24rem;
    height: auto;
}

/* 预约按钮 - 348x95 和 68x105 */
.reserve-btn {
    position: absolute;
    bottom: 0.7rem;
    width: 100%;
    /* height: 0.95rem; */
    margin: 0 auto;
    text-align: center;
}

/* 标题 - 394x17 */
.page-txt {
    position: relative;
    bottom: 0.04rem;
    width: 100%;
    text-align: center;
}

.page-txt .page-txt1,
.page-txt .page-txt2 {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 0.16rem;
    color: #6e6043;
    display: none;
    letter-spacing: 0.06rem;
}
.page-txt .page-txt1 {
    display: block;
}
.page-txt .page-txt2 {
    top:-0.2rem;
    line-height: 1.8;
    display: none;
}
.page-txt p.page-txt2-1{
    color: #c3a357;
}
.page-txt p.page-txt2-1 span{
    font-weight: bold;
}
.reserve-btn-order {
    display: block;
    width: 3.48rem;
    height: 0.95rem;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.3s;
    background: url(https://res.zulong.com/cms/lom/assets/img/pc/page1_btn.png) 0 0 no-repeat;
    background-size: 100%;
}
.reserve-btn-order.active{
    background: url(https://res.zulong.com/cms/lom/assets/img/pc/page1_btn_active.png) 0 0 no-repeat;
    background-size: 100%;
    cursor: url('https://res.zulong.com/cms/lom/assets/img/pc/loading_mouse.png'), auto;
}
.reserve-btn-crystal{
   display: block;
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 auto;
    background: url(https://res.zulong.com/cms/lom/assets/img/pc/pendant.png) 0 0 no-repeat;
    background-size: 100%;
    cursor: pointer;
}
.reserve-btn-crystal.active_L{
    background: url(https://res.zulong.com/cms/lom/assets/img/pc/pendant_L.gif) 0 0 no-repeat;
    background-size: 100%;
}
.reserve-btn-crystal.active_R{
    background: url(https://res.zulong.com/cms/lom/assets/img/pc/pendant_R.gif) 0 0 no-repeat;
    background-size: 100%;
}
.reserve-btn img {
    width: 3.48rem;
    height: auto;
}

/* ==================== 弹窗通用样式 ==================== */

/* 通用遮罩层 */
.modal-overlay,
.success-modal-overlay,
.alert-modal-overlay,
.cb-modal-overlay,
.cb-success-overlay {
    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;
}

/* 遮罩层层级 */
.modal-overlay {
    z-index: 10000;
}

.success-modal-overlay {
    z-index: 10001;
}

.alert-modal-overlay {
    z-index: 90002;
}

.cb-modal-overlay {
    z-index: 10003;
}

.cb-success-overlay {
    z-index: 10004;
}

/* 通用弹窗容器 */
.common-modal {
    position: relative;
    animation: slideIn 0.3s;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

/* 通用关闭按钮 - 使用背景图 */
.common-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: 10;
    cursor: pointer;
}

.common-close:hover {
    transform: rotate(90deg);
}

/* 动画定义 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-0.5rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==================== 预约弹窗 ==================== */
.reserve-modal {
    width: 5.21rem;
    height: 7.26rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/pop_box.png');
}

/* 预约弹窗关闭按钮位置 */
.modal-close {
    top: 0;
    right: -0.4rem;
}

/* 弹窗内容 */
.modal-body {
    position: relative;
    z-index: 2;
    /* padding: 0.8rem 0.6rem; */
    height: 100%;
    padding-top: 1.2rem;
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
}

/* 提示文字 */
.modal-tip {
    text-align: center;
    margin-bottom: 0.4rem;
    /* line-height: 1.8; */
}

.modal-tip p {
    color: #c5aa68;
    font-size: 0.18rem;
    margin: 0;
    text-shadow: 0 0.02rem 0.04rem rgba(0, 0, 0, 0.3);
}

/* 表单 */
.reserve-form {
    width: 100%;
}

.form-group {
    margin-bottom: 0.4rem;
    text-align: center;
}

/* 输入框容器 - 426x51 */
.input-wrapper {
    position: relative;
    width: 4.26rem;
    height: 0.51rem;
    margin: 0 auto;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/pop_input.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: baseline;
}

.input-bg {
    display: none;
}

.form-input {
    flex: 1;
    width: 100%;
    padding: 0 0.2rem;
    background: transparent;
    border: none;
    outline: none;
    color: #b4a27c;
    font-size: 0.16rem;
    line-height: 0.51rem;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* cursor: auto; */
}

.form-input::placeholder {
    color: #6c6a5d;
}

.form-input::-webkit-input-placeholder {
    color: #6c6a5d;
}

.form-input::-moz-placeholder {
    color: #6c6a5d;
}

.form-input:-ms-input-placeholder {
    color: #6c6a5d;
}

/* 禁用自动填充样式 */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 10rem transparent inset !important;
    -webkit-text-fill-color: #fff !important;
    background-color: transparent !important;
    background-image: none !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* 禁用focus时的outline */
.form-input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

/* 手机号输入框 - 添加+86前缀 */
.phone-wrapper {
    position: relative;
}

.phone-prefix {
    color: #b4a27c;
    font-size: 0.16rem;
    line-height: 0.51rem;
    padding-left: 0.2rem;
    padding-right: 0.08rem;
    flex-shrink: 0;
    user-select: none;
}

.phone-input {
    flex: 1;
    padding-left: 0 !important;
    padding-right: 0.2rem !important;
}

/* 验证码输入框 */
.code-wrapper {
    display: flex;
    align-items: center;
}

.code-input {
    flex: 1;
    padding-left: 0.28rem !important;
}

/* 验证码按钮 - 78x40 */
.btn-code-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 0.78rem;
    height: 0.4rem;
    margin-right: 0.2rem;
    cursor: pointer;
    transition: all 0.3s;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/pop_code.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-code-wrapper .code-bg {
    display: none;
}

.btn-code-wrapper .code-text {
    color: #000;
    font-size: 0.16rem;
    white-space: nowrap;
    transition: color 0.3s;
}

/* 禁用状态 - 灰色 */
.btn-code-wrapper.disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.3;
    filter: grayscale(100%);
}

/* .btn-code-wrapper.disabled .code-text {
    color: rgba(180, 162, 124, 0.4);
} */

/* 可用状态 - 悬停效果 */
.btn-code-wrapper:not(.disabled):hover {
    opacity: 0.9;
    filter: brightness(1.2);
}

.btn-code-wrapper:not(.disabled):active {
    transform: scale(0.95);
}

/* 提交按钮 - 299x115 */
.btn-submit-wrapper {
    margin-top: 0.4rem;
    cursor: pointer;
    transition: transform 0.3s;
    text-align: center;
}

.page-feedback:hover,
.page-join:hover,
.reserve-btn-order:not(.active):hover,
.btn-submit-wrapper:hover {
    transform: scale(1.05);
}

.btn-submit-wrapper:active {
    transform: scale(0.98);
}

.btn-submit-wrapper img {
    width: 2.99rem;
    height: auto;
}
.page-feedback,.page-join{
    width: 1.3rem;
    height: 1.3rem;
    display: none;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    transition: .5s;
    cursor: pointer;
    /* animation: arodesFloat 3s ease-in-out infinite; */
}
.page-feedback img{
    width: 100%;
    height: auto;
}
.page-join{
    display: block;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/join.png');
    background-size: 100% 100%;
    top: 0.5rem;
}
/* ==================== 右侧侧边栏 ==================== */

.page-sidebar {
    position: absolute;
    right: 0.2rem;
    top: 0.2rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-bar img {
    display: block;
    width: auto;
    height: auto;
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
}

/* 微信图标 */
.sidebar-wx {
    position: absolute;
    right: 0.1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.sidebar-wx > img {
    display: block;
    width: 0.36rem;
    height: auto;
}

/* 二维码：默认隐藏，hover 时向左展开 */
.sidebar-ewm {
    position: absolute;
    right: calc(100% + 0.12rem);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-wx:hover .sidebar-ewm {
    opacity: 1;
    pointer-events: auto;
}

.sidebar-ewm img {
    display: block;
    width: 1.6rem;
    height: auto;
}

/* ==================== 阿罗德斯弹窗 ==================== */
.cb-modal-content {
    width: 10.04rem;
    height: 5.8rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/cb_box.png');
}

.cb-modal-close {
    top: 0;
    right: -0.4rem;
}

.cb-modal-body {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-top: 2.1rem;
}

.cb-input-box{
    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;
}

.cb-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;
}

.cb-input::placeholder {
    color: #8d8478;
}

.cb-submit-btn {
    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;
}

.cb-submit-btn:hover {
    transform: scale(1.05);
}

.cb-submit-btn:active {
    transform: scale(0.98);
}

/* ==================== 阿罗德斯成功弹窗 ==================== */
.cb-success-content {
    position: relative;
}

.cb-success-close {
    top: 0;
    right: -0.4rem;
}

.cb-success-img {
    display: block;
    width: 5.21rem;
    height: auto;
    cursor: pointer;
}

/* ==================== 预约成功弹窗 ==================== */
.success-modal {
    width: 5.21rem;
    height: 7.26rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/pop_box.png');
}

/* 成功弹窗关闭按钮位置 */
.success-modal-close {
    top: 0;
    right: -0.4rem;
}

/* 弹窗内容 */
.success-modal-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.6rem;
}

/* 成功提示图片 */
.success-message {
    margin-bottom: 0.6rem;
    text-align: center;
}

.success-message img {
    max-width: 100%;
    height: auto;
}

/* 确定按钮 */
.success-btn-wrapper {
    transition: transform 0.2s;
}

.success-btn-wrapper:hover {
    transform: scale(1.05);
}

.success-btn-wrapper:active {
    transform: scale(0.98);
}

.success-btn-wrapper img {
    width: 2.99rem;
    height: auto;
}

/* ==================== 通用提示弹窗 ==================== */
.alert-modal {
    width: 5.21rem;
    height: 4.45rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/pop_box0.png');
}

/* 提示弹窗关闭按钮位置 */
.alert-modal-close {
    bottom: -0.2rem;
    left: 50%;
    margin-left: -0.18rem;
}

/* 弹窗内容 */
.alert-modal-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.6rem;
}

/* 提示文字 */
.alert-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%;
}

/* ==================== 响应式适配 ==================== */
@media screen and (max-width: 768px) {
    .reserve-modal,
    .success-modal {
        width: 90%;
        height: auto;
        aspect-ratio: 521 / 726;
    }

    .alert-modal {
        width: 90%;
        height: auto;
        aspect-ratio: 521 / 445;
    }

    .alert-message {
        font-size: 0.16rem;
    }
}

/* ==================== 招聘弹窗 ==================== */
.job-overlay,
.job-detail-overlay {
    position: fixed;
    inset: 0;
    z-index: 10005;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 招聘分类弹窗 - 全屏 */
.job-modal {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/pop_job/bg.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-modal-close {
    position: absolute;
    top: 0.22rem;
    left: 0.22rem;
    width: 1.17rem;
    height: 0.31rem;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/pop_job/pop_return.png') center / contain no-repeat;
    cursor: pointer;
    z-index: 10;
}

.job-modal-box {
    position: relative;
    width: 17.71rem;
    height: 7.45rem;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/pop_job/box.png') center / 100% 100% no-repeat;
}

/* 四个分类图标（定位在 box 四角） */
.job-icon {
    position: absolute;
    width: 2.6rem;
    height: 2.6rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.job-icon:hover {
    transform: scale(1.1);
}

.job-icon-planning {
    top: 0rem;
    left: 1.4rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop_job/planning_icon.png');
}

.job-icon-program {
    top: 0rem;
    right: 1.4rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop_job/program_icon.png');
}

.job-icon-arts {
    bottom: 0rem;
    left: 1.4rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop_job/arts_icon.png');
}

.job-icon-issue {
    bottom: 0rem;
    right: 1.4rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop_job/issue_icon.png');
}

/* ==================== 招聘详情弹窗 ==================== */
.job-detail-modal {
    position: relative;
    width: 12.64rem;
    height: 7.77rem;
    /* overflow: hidden; */
}

.job-detail-close {
    position: absolute;
    top: -0.4rem;
    right: -0.4rem;
    width: 0.42rem;
    height: 0.42rem;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/pop/pop_close.png') center / contain no-repeat;
    cursor: pointer;
    z-index: 20;
    transition: transform 0.3s;
}

.job-detail-close:hover {
    transform: rotate(90deg);
}

/* 分类轮播：填满 modal */
.job-category-swiper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

/* 每个分类 slide：显示对应背景图 */
.job-detail-slide {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

/* 右侧卡片区域：2列网格，超出垂直滚动 */
.job-detail-cards {
    position: absolute;
    top: 10%;
    right: 8%;
    width: 4.6rem;
    height: 6rem;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #8a7040 #0d0b08;
}

/* Chrome / Edge / Safari */
.job-detail-cards::-webkit-scrollbar {
    width: 6px;
}

.job-detail-cards::-webkit-scrollbar-track {
    background: #0d0b08;
    border-radius: 3px;
}

.job-detail-cards::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #b09050 0%, #7a6030 50%, #b09050 100%);
    border-radius: 3px;
}

.job-detail-cards::-webkit-scrollbar-thumb:hover {
    background: #c8a860;
}

.job-card-item {
    display: block;
    width: 2rem;
    height: 2.8rem;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s;
    overflow: hidden;
    margin-bottom: 0.2rem;
    margin-right: 0.2rem;
}
.job-card-item:nth-child(even){
    margin-right: 0.1rem;
}
.job-card-item:hover {
    filter:brightness(1.2)
}

.job-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
}

/* 左右切换分类箭头（在 swiper 之上） */
.job-swiper-prev,
.job-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.72rem;
    height: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 20;
    transition: opacity 0.3s;
}

.job-swiper-prev {
    left: 0.02rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop_job/pop_left.png');
}

.job-swiper-next {
    right: 0.02rem;
    background-image: url('https://res.zulong.com/cms/lom/assets/img/pc/pop_job/pop_right.png');
}

.job-swiper-prev:hover,
.job-swiper-next:hover {
    opacity: 0.75;
}

.job-swiper-prev.disabled,
.job-swiper-next.disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

/* 返回按钮 */
.job-detail-return {
    position: absolute;
    bottom: 0.22rem;
    left: 2.6rem;
    width: 2.8rem;
    height: 0.58rem;
    background: url('https://res.zulong.com/cms/lom/assets/img/pc/pop_job/pop_returnbox.png') center / contain no-repeat;
    cursor: pointer;
    z-index: 20;
    transition: transform 0.3s;
}

.job-detail-return:hover {
    transform: scale(1.06);
}

