* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 终极禁止滚动：手机 Safari / Chrome 全锁死 */
body.jp-blocked {
    overflow: hidden !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overscroll-behavior: none !important;
    -webkit-overflow-scrolling: none !important;
    touch-action: none !important;
}

html.jp-blocked {
    overflow: hidden !important;
    height: 100% !important;
}

/* 全屏白色遮罩 */
#blockOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff !important;
    z-index: 9999999 !important;
}

/* 维护弹窗 */
.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 280px;
}

.t1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.t2 {
    font-size: 14px;
	color: #666;
    margin-bottom: 30px;
}

.closeipBtn {
    padding: 12px 60px;
    font-size: 16px;
    background: #E3C2A3;
    color: #fff;
    border: 0;
    border-radius: 100px;
    cursor: pointer;
}