/**
 * 进站弹窗样式
 */
.zb-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s ease;
    padding: 16px;
}
.zb-popup-overlay.is-show {
    opacity: 1;
}
.zb-popup-dialog {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 880px;
    max-height: 92vh;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transform: translateY(20px) scale(.97);
    transition: transform .35s ease;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}
.zb-popup-overlay.is-show .zb-popup-dialog {
    transform: translateY(0) scale(1);
}
.zb-popup-left {
    flex: 1 1 50%;
    background-size: cover;
    background-position: center;
    background-color: #f3f0ec;
    min-height: 460px;
}
.zb-popup-right {
    flex: 1 1 50%;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #fff;
}
.zb-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: #1f2937;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, background-color .2s;
}
.zb-popup-close:hover {
    color: #000;
    background: #fff;
}
.zb-popup-title {
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #1f2937;
    margin: 0 0 18px;
    line-height: 1.2;
}
.zb-popup-subtitle {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0 0 30px;
    letter-spacing: .03em;
}
.zb-popup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.zb-popup-input {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    background: transparent;
    font-size: 13px;
    color: #1f2937;
    width: 100%;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.zb-popup-input:focus {
    border-color: #000;
}
.zb-popup-submit {
    padding: 14px 32px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 11px;
    transition: background-color .2s, opacity .2s;
}
.zb-popup-submit:hover {
    background: #1a120a;
}
.zb-popup-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}
.zb-popup-success {
    text-align: center;
}
.zb-popup-success-msg {
    font-size: 13px;
    color: #1f2937;
    line-height: 1.7;
    margin: 0 0 16px;
}
.zb-popup-coupon {
    display: inline-block;
    border: 2px dashed #000;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .25em;
    margin: 0 0 18px;
    background: #fafafa;
    color: #1f2937;
    -webkit-user-select: all;
    user-select: all;
}
.zb-popup-copy {
    padding: 9px 26px;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    cursor: pointer;
    transition: background-color .2s, color .2s;
}
.zb-popup-copy:hover,
.zb-popup-copy.is-copied {
    background: #000;
    color: #fff;
}

@media (max-width: 768px) {
    .zb-popup-overlay { padding: 8px; }
    .zb-popup-dialog {
        flex-direction: column;
        max-width: 100%;
    }
    .zb-popup-left {
        min-height: 200px;
        flex: 0 0 200px;
    }
    .zb-popup-right {
        padding: 32px 24px;
    }
    .zb-popup-title { font-size: 22px; }
}
