.Modal{
    position: fixed;
    top:50%;
    transform: translateY(-50%);
    width:70%;
    margin-left:15%;
    background:#fff;
    z-index: 9;
}
.Modal-Mask{
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.3);
    z-index:8
}
.Modal>h5{
    width:100%;
    font-size:.38rem;
    padding-top:.2rem;
    text-align: center;
}
.Modal>p{
    padding:.3rem;
    border-bottom:1px solid #ccc;
}
.Modal-grounp-btn{
    display: flex;
}
.Modal-grounp-btn>button{
    flex:1;
    color:blue;
    border:0px;
    padding:.2rem 0rem;
    outline: none;
    background:#fff;
}
.Modal-grounp-btn>button:first-child{
    border-right:1px solid #ccc;
    color:#ccc;
}
.Modal>p>input{
    border: 1px solid #7b7b7b;
    width: 100%;
    outline: none;
    height:.5rem;
    text-indent:.3rem;
}
.Modal>p>input:first-child{
    margin-bottom:.2rem;
}
.display-block{
    display: block;
}
.display-none{
    display:none;
}