﻿/*加载中的蒙版样式*/
.waitting {
    z-index: 19891024;
    background-color: #000;
    opacity: .3;
    filter: alpha(opacity=30);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}
.spinner {
    width: 250px;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    position: fixed;
    opacity: 1;
    filter: alpha(opacity=100);
    top: 40%;
    left: 40%;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05)
}
.spinner > div {
    width: 30px;
    height: 30px;
    background-color: #67cf22;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.spinner .bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s
}
.spinner .bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s
}
