body{
    background:#f2f5f7;
    margin: 0;
}

.load_red {
    background-color: #0456EF
}

.load_yellow {
    background-color: #EB0D58
}

.load_green {
    background-color: #FF9900
}

.load_blue {
    background-color: #63AF57
}

.load_wrap {
    margin: 0 auto;
    line-height: 6rem;
    text-align: center;
}

.load_color {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    animation: loading-bar 4s infinite backwards ease-out;
    transform: scaleX(1);
}

.load_bar {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto 3rem auto;
    overflow: hidden;
    width: 100%;
    height: 0.1rem;

}

.load_color:nth-child(1) {
    animation-delay: -3s;
}

.load_color:nth-child(2) {
    animation-delay: -2s;
}

.load_color:nth-child(3) {
    animation-delay: -1s;
}

.load_color:nth-child(4) {
    animation-delay: 0s;
}

@keyframes loading-bar {
    0% {
        transform: scaleX(0);
        z-index: 15;
    }

    22% {
        transform: scaleX(0);
        z-index: 15;
    }

    50% {
        transform: scaleX(1);
        z-index: 15;
    }

    90% {
        transform: scaleX(1);
        z-index: 1;
    }

    100% {
        transform: scaleX(1);
        z-index: 0;
    }
}

.load_pg_loading:after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.load_wrap_loading {
    position: absolute;
    top: 35%;
    bottom: 45%;
    left: 25%;
    right: 25%;
}

.load_wrap_bokeh {
    position: relative;
    margin: 0 auto;
    padding: 0;
    font-size: 50px;
    width: 1em;
    height: 1em;
    list-style: none;
    border-radius: 50%;
}

.load_wrap_bokeh li {
    position: absolute;
    width: .2em;
    height: .2em;
    border-radius: 50%;
}

.load_wrap_bokeh li:nth-child(1) {
    left: 50%;
    top: 0;
    margin: 0 0 0 -.1em;
    background: #0456EF;
    transform-origin: 50% 250%;
    animation:
            cssload-rota 1.3s linear infinite,
            cssload-opa 4.22s ease-in-out infinite alternate;
}

.load_wrap_bokeh li:nth-child(2) {
    top: 50%;
    right: 0;
    margin: -.1em 0 0 0;
    background: #EB0D58;
    transform-origin: -150% 50%;
    animation:
            cssload-rota 2.14s linear infinite,
            cssload-opa 4.93s ease-in-out infinite alternate;
}

.load_wrap_bokeh li:nth-child(3) {
    left: 50%;
    bottom: 0;
    margin: 0 0 0 -.1em;
    background: #FF9900;
    transform-origin: 50% -150%;
    animation:
            cssload-rota 1.67s linear infinite,
            cssload-opa 5.89s ease-in-out infinite alternate;
}

.load_wrap_bokeh li:nth-child(4) {
    top: 50%;
    left: 0;
    margin: -.1em 0 0 0;
    background: #63AF57;
    transform-origin: 250% 50%;
    animation:
            cssload-rota 1.98s linear infinite,
            cssload-opa 6.04s ease-in-out infinite alternate;
}

@keyframes cssload-rota {
    from {}

    to {
        transform: rotate(360deg);
    }
}



@keyframes cssload-opa {
    0% {}

    12.0% {
        opacity: 0.80;
    }

    19.5% {
        opacity: 0.88;
    }

    37.2% {
        opacity: 0.64;
    }

    40.5% {
        opacity: 0.52;
    }

    52.7% {
        opacity: 0.69;
    }

    60.2% {
        opacity: 0.60;
    }

    66.6% {
        opacity: 0.52;
    }

    70.0% {
        opacity: 0.63;
    }

    79.9% {
        opacity: 0.60;
    }

    84.2% {
        opacity: 0.75;
    }

    91.0% {
        opacity: 0.87;
    }
}

.bs_error_container {
    display: none;
    position: relative;
    text-align: center;
    padding-top: 100px;
    height: 100%;
}
.bs_error_browser {
    position: absolute;
    left: 50%;
    top: 50%;
    padding-left: 340px;
    margin-top: -161px;
    margin-left: -464px;
    width: 640px;
    height: 451px;
    text-align: left;
}
.bs_error_browser_img{
    position: absolute;
    left: 0;
    top:0;
}
.bs_error_tit {
    font-size: 22px;
    font-weight: normal;
    color: #5b5f87;
}
.bs_error_sub_tit {
    color: #a9aabd;
    line-height: 26px;
    margin-bottom: 25px;
    margin-top: 20px;
}

.bs_error_list li{
    display: inline-block;
    position: relative;
    padding-top: 50px;
    margin-right: 10px;
    width: 60px;
    vertical-align: top;
    font-size: 12px;
    color: #a9aabd;
    text-align: center;
}
.bs_browser_com_img{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 60px;
    height: 40px;
    overflow: hidden;
}
.bs_browser_com_img img{
    position: absolute;
    left:0;
}
.bs_browser_chrome_img{
    top: 0;
}
.bs_browser_Firefox_img{
    top: -40px;
}
.bs_browser_Safari_img{
    top: -80px;
}
.bs_browser_IE_img{
    top: -120px;
}