html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

input[disabled], input:disabled {
    background-color: transparent;
}

a, input {
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}

input, textarea {
    -webkit-user-select: auto; /*webkit浏览器*/
    margin: 0px;
    padding: 0px;
    outline: none;
}

a,
input,
button {
    outline: none;
}

ul, ol, li {
    list-style: none;
}

a:hover, a:active, a:focus {
    text-decoration: none !important;
}


img {
    max-width: 100%;
    border: 0px;
}

select,
input,
img,
select {
    vertical-align: middle;
}

i {
    font-style: normal;
}

body {
    position: relative;
    background-color: #fafafa;
    overflow: hidden;
    height: 100%;
}

body:not(.app-mounted):before {
    content: '';
    display: block;
    position: absolute;
    border-radius: 50%;
    background-color: rgba(200, 200, 200, 0.5);
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin:auto;
    animation: bounce1 2.0s infinite ease-in-out;
    z-index: 0;
}

body:not(.app-mounted):after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 50%;
    background-color: rgba(200, 200, 200, 0.5);
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin:auto;
    animation: bounce2 2.0s infinite ease-in-out;
    z-index: 0;
}

@keyframes bounce1 {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(0.3);
    }
    100% {
        transform: scale(1.0);
    }
}

@keyframes bounce2 {
    0% {
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(0.3);
    }
}
