/* 商务冷酷风弹窗 - 适配白色网站 */
.modal-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.modal-wrap {
    width: 380px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 30px;
    animation: modalShow 0.3s ease;
}
@keyframes modalShow {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-title {
    font-size: 20px;
    color: #222;
    font-weight: 600;
    margin-bottom: 15px;
    border-left: 3px solid #165DFF;
    padding-left: 10px;
}
/* 文字加粗+红色 */
.modal-text {
    font-size: 14px;
    color: #e53e3e;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 25px;
}
.modal-btn {
    width: 100%;
    height: 42px;
    background: #165DFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}
.modal-btn:hover {
    background: #0E42D2;
}