@charset "UTF-8";

body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0
}

.fytx_alert_background {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999
}

.fytx_alert_background .fytx_alert_box {
    width: 452px;
    height: auto;
    padding: 0 15px 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 4px;
    position: relative;
    top: 50%;
    left: 50%;
    margin: -167px 0 0 -226px
}

.fytx_alert_background .fytx_alert_title {
    width: 100%;
    height: 45px;
    border-bottom: 1px solid #99bafa;
    font-size: 16px;
    color: #333;
    line-height: 45px;
    text-align: center
}

.fytx_alert_background .fytx_alert_message {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 25px 40px 35px;
    text-align: center;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    line-height: 28px
}

.fytx_alert_background .fytx_alert_btn {
    display: inline-block;
    width: 100px;
    height: 35px;
    line-height: 35px;
    background-color: #3475f5;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
    border: 1px solid transparent;
    margin: 0 auto;
    text-align: center
}

.fytx_confirm_background {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999
}

.fytx_confirm_background .fytx_confirm_box {
    width: 452px;
    height: auto;
    padding: 0 15px 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 4px;
    position: relative;
    top: 50%;
    left: 50%;
    margin: -167px 0 0 -226px
}

.fytx_confirm_background .fytx_confirm_title {
    width: 100%;
    height: 45px;
    border-bottom: 1px solid #99bafa;
    font-size: 16px;
    color: #333;
    line-height: 45px;
    text-align: center
}

.fytx_confirm_background .fytx_confirm_message {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 25px 40px 35px;
    text-align: center;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    line-height: 28px
}

.fytx_confirm_background .fytx_confirm_okbtn {
    display: inline-block;
    width: 100px;
    height: 35px;
    line-height: 35px;
    background-color: #3475f5;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
    border: 1px solid transparent;
    text-align: center;
    margin-left: 84px;
    margin-right: 47px
}

.fytx_confirm_background .fytx_confirm_cancelbtn {
    display: inline-block;
    width: 100px;
    height: 35px;
    line-height: 35px;
    background: fff;
    cursor: pointer;
    font-size: 14px;
    color: #3475f5;
    border-radius: 4px;
    border: 1px solid transparent;
    text-align: center;
    border: 1px solid #ebebeb
}

.fytx_toast_background {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999
}

.fytx_toast_background .fytx_toast_box {
    width: 30%;
    height: auto;
    cursor: pointer;
    padding: 30px 20px;
    text-align: center;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 28px;
    border-radius: 5px;
    line-height: 30px;
    position: relative;
    top: 50%;
    left: 50%;
    margin: 0 0 0 -226px;
    display: ruby-text;
    flex-wrap: nowrap;
}

.spinner {
    padding-left: 10px;
}

.spinner>div {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}