.toast {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.toast-mask {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color:#000000;
    opacity: 0.5;
}

.toast-container {
    position: fixed;
    z-index: 1000;
    display: block;
    top: 10%;
    left: 5%;
    width: 90%;
    background-color: #ffffff;
    border: 0.05rem solid #ffffff;
    border-radius: 0.6rem;
}

.toast-head {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.toast-content {
    display: table;
    max-width: 90%;
    margin: 0 auto;
    /*padding-bottom: 1rem;*/
    font-weight: bold;
}

.toast-btn-group {
    width: 100%;
    color: #2073ed;
    text-align: center;
    line-height: 2.5rem;
    display: flex;
    justify-content: center;
}

.toast-btn-left {
    width: 50%;
    border-top: 0.05rem solid #e0e0e0;
    border-right: 0.05rem solid #e0e0e0;
}
.toast-btn-right {
    width: 50%;
    border-top: 0.05rem solid #e0e0e0;
    border-right: 0.05rem solid #e0e0e0;
}

.shimingcheck {
    display: none;
}
.shimingcheck input {
    display: block;
    width: 50vw;
    margin: 3vw auto;

    outline-style: none ;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 1vw 1vw;
    font-family: "Microsoft soft";
}

input:focus{
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}