.dialog {
    position: fixed;
    
    background-color: #fff;
    width: 358px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 999;
    border-radius: 0.31rem;
    -moz-box-shadow: 2px 2px 5px #333333;
    -webkit-box-shadow: 2px 2px 5px #333333;
    box-shadow: 2px 2px 5px #333333;
}

.cens {
    position: fixed;
    display: block;
    bottom: -153px;
    right: -177px;
    transform: translate(-50%, -50%);

}

.dialog .head {
    border-bottom: 1px solid #ddd;
    padding: 8px;
    background: #2f7dcd;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
}

.dialog .contents {
    font-size: 13px;
    padding: 15px 20px;
}

.dialog .fl {
    float: left;
}

.dialog .fr {
    float: right;
}

.width1{
    width: 40px;
}

.width2{
    width: calc(100% - 40px);
}

.dialog .title{
    float:left;
}

.dialog .items{
    float: left;
    margin-top: 15px;
    line-height: 20px;
    color: #333333;
}

.blue{
color: #2f7dcd;
margin-left: 8px;
cursor: pointer;
}

.dialog  .time{
   color: #888888;
   width: 100%;
    margin-top: 16px;
}

.btns{
    text-align: center;
    float: left;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 20px;
}
.button {
    background-color: #3e74b3;
    border: none;
    color: white;
    padding: 6px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    outline: none;
}

.button1{
    background-color: #e4e4e4;
    color: #9f9f9f;
}

.btns button + button{
margin-left: 22px;
}