@charset "UTF-8";
.no-border {
    border: none;
    outline: transparent none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.btn {
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 1.1em;
    width: 100%;
    display: block;
}
.btn.simple {
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-top: 15px;
    background-color: #157dfb;
    color: #ffffff;
    font-family: "微软雅黑", serif;
    border-radius: 5px;
    border: 0;
    width: 100%;
    font-size: 1.1em;
}
.btn.simple:hover {
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-top: 15px;
    background-color: #0363d7;
    color: #ffffff;
    font-family: "微软雅黑", serif;
    border-radius: 5px;
    border: 0;
    width: 100%;
    font-size: 1.1em;
}
.pg-load {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgba(53, 47, 47, 0.52);
}

.pg-load .load-msg {
    width: 120px;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 16px;
    margin: auto;
    line-height: 100px;
    border: none;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    background-color: rgba(49, 31, 31, 0.66);
}

.pg-error {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgba(245, 234, 234, 1);
}

.pg-error .errro-msg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    color: #686161;
    font-size: 1.2em;
    font-weight: 600;
}
.toast {
    display: none;
    position: absolute;
    bottom: 100px;
    text-align: center;
    width: 170px;
    white-space: nowrap;
    font-size: 16px;
    padding: 0.7em 1em 0.9em 1em;
    color: #fff;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.67);
    border: none;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    height: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 0;
    left: 0;
    right: 0;
}
.show {
    display: block;
    animation: toast-alert 0.2s;
    -webkit-animation: toast-alert 0.2s;
    -webkit-animation-timing-function: ease;
}
@-webkit-keyframes toast-alert-hide {
    from {
        background-color: rgba(0, 0, 0, 0.67);
    }
    to {
        background-color: rgba(0, 0, 0, 0.0);
    }
}
@-webkit-keyframes toast-alert {
    0% {
        bottom: 0;
        background-color: rgba(0, 0, 0, 0);
    }
    100% {
        bottom: 100px;
        background-color: rgba(0, 0, 0, 0.67);
    }
}