/* 商品详情底部关闭按钮显示修复：只修复立即咨询左边的关闭按钮，不添加右上角X */
#detailMask .modal-actions{
    display:grid !important;
    grid-template-columns:minmax(118px, .62fr) minmax(170px, 1fr) !important;
    gap:12px !important;
    align-items:center !important;
    padding:12px 18px calc(16px + env(safe-area-inset-bottom)) !important;
    background:linear-gradient(180deg, rgba(255,255,255,.98), #fff) !important;
    border-top:1px solid rgba(0,0,0,.08) !important;
    position:relative !important;
    z-index:2147483000 !important;
    box-sizing:border-box !important;
}

#detailMask .modal-actions .close-btn{
    display:inline-flex !important;
    visibility:visible !important;
    opacity:1 !important;

    width:auto !important;
    min-width:118px !important;
    height:52px !important;
    min-height:52px !important;

    margin:0 !important;
    padding:0 22px !important;
    box-sizing:border-box !important;

    align-items:center !important;
    justify-content:center !important;

    border-radius:999px !important;
    border:1px solid rgba(177,132,255,.65) !important;
    background:linear-gradient(135deg,#2b2338,#15121c) !important;

    color:#ffffff !important;
    -webkit-text-fill-color:#ffffff !important;
    text-shadow:none !important;

    font-size:16px !important;
    line-height:1 !important;
    font-weight:900 !important;
    letter-spacing:0 !important;

    box-shadow:0 0 18px rgba(168,85,247,.28), 0 8px 20px rgba(0,0,0,.22) !important;
    pointer-events:auto !important;
    transform:none !important;
    overflow:visible !important;
}

#detailMask .modal-actions .order-btn{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    height:52px !important;
    min-height:52px !important;
    margin:0 !important;

    border-radius:999px !important;
    font-size:17px !important;
    font-weight:900 !important;

    background:linear-gradient(135deg,#7c3aed,#c35cff) !important;
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;

    box-shadow:0 0 26px rgba(168,85,247,.45), 0 10px 24px rgba(0,0,0,.24) !important;
}

@media (max-width: 480px){
    #detailMask .modal-actions{
        grid-template-columns:0.72fr 1.28fr !important;
        gap:10px !important;
        padding-left:16px !important;
        padding-right:16px !important;
    }

    #detailMask .modal-actions .close-btn{
        min-width:105px !important;
        height:50px !important;
        min-height:50px !important;
        font-size:15px !important;
        padding:0 16px !important;
    }

    #detailMask .modal-actions .order-btn{
        height:50px !important;
        min-height:50px !important;
        font-size:16px !important;
    }
}
