* {
    padding: 0px;
    margin: 0px;
}

.full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-bg {
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    transition: opacity 300ms;
    will-change: opacity;
    padding: 16px;
}

.dialog {
    background: white;
    background-color: white;
    border-radius: 8px;
    padding: 16px 24px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    transition: transform 300ms;
    will-change: transform;
}

.dialog img{
    max-width: 100%;
}

.dialog p{
    padding: 10px;
}

.dialog-top {
    height: 40px;
    width: 100%;
    border-bottom: 1px #E5E5E5 solid;
    color: #333;
}

.dialog-top h3 {
    float: left;
    display: black
}

.dialog-top span {
    float: right;
    cursor: pointer;
    font-weight: bold;
    display: black
}

.dialog-foot {
    height: 50px;
    line-height: 50px;
    width: 100%;
    border-top: 1px #E5E5E5 solid;
    text-align: right;
}

.dialog-cancel,
.dialog-ok,
.dialog-red {
    padding: 8px 15px;
    margin: 15px 5px;
    border: none;
    border-radius: 5px;
    background-color: #337AB7;
    color: #fff;
    cursor: pointer;
}

.dialog-cancel {
    background-color: #FFF;
    border: 1px #CECECE solid;
    color: #000;
}

.dialog-red {
    background-color: #FFF;
    border: 1px #CECECE solid;
    color: red;
}