/* 遮罩层 */
.save-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    touch-action: none; /* 阻止微信双指缩放干扰 */
}

/* 内容区 */
.save-modal-content {
    max-width: 90%;
    width: 100%;
}

.save-tip {
    color: white;
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
    padding: 0 15px;
    line-height: 1.5;
}

.save-img-container {
    max-height: 70vh;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    background: white;
}

.save-target-img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 按钮 */
.save-close-btn {
    margin-top: 25px;
    padding: 12px 45px;
    background: linear-gradient(135deg, #07C160, #06AE56);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: bold;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
}
