#baidu-modal {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
}

.baidu-modal-body {
    position: relative;
    background: url(../images/modal.jpg) center no-repeat;
    background-size: cover;
    margin: 2em 1em 1em;
    border-radius: 0.5em;
    padding: 0.5em 1em;
    color: white;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
}

.baidu-modal-footer {
    display: flex;
    justify-content: space-around;
}

.baidu-modal-footer button {
    background-image: linear-gradient(to bottom, #ff7130, #ff424b);
    margin: 0.5em;
    border: 0;
    border-radius: 5em;
    padding: 0.5em;
    width: 130px;
    color: white;
    font-size: 16px;
}

.baidu-modal-footer button:focus {
    outline: 0;
}

.baidu-modal-body .toast {
    display: none;
    opacity: 0;
    position: absolute;
    left: 0;
    background-color: #333;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 0.5em;
    width: 100%;
    color: white;
    text-align: center;
    transition: 0.5s;
}

.baidu-modal-body .toast.show {
    display: block;
    opacity: 1;
}