/* ==========================================
   SweetAlert2 弹窗尺寸美化（精准适配版）
   ========================================== */

/* --- 第一部分：针对大屏幕电脑（宽度大于 1400px） --- */
@media screen and (min-width: 1400px) { 
    
    /* 1. 放大“密码输入框” (只对带有输入框的弹窗生效) */
    .swal2-popup.swal2-has-input { 
        width: 500px !important;
        font-size: 14px !important;
        padding: 1rem 1rem !important;
    }
    
    .swal2-input { 
        font-size: 15px !important;
        height: 50px !important;       /* 调整输入框高度 */
        padding: 0 14px !important;    /* 调整输入框内边距 */
    }
    
    /* 2. 保持“报错/成功提示框”为正常大小 (不对它们做放大处理) */
    .swal2-popup:not(.swal2-has-input) {
        width: 400px !important;       /* 提示框固定 400px */
        font-size: 14px !important;
    }
}