html,
body {
  width: 100vw;
  height: 100%;
  overflow: hidden;
  font-size: 0.24rem;
  color: #fff;
}
.show-toast {
  font-size: 0.28rem !important;
  padding: 0.2rem 0.3rem !important;
  letter-spacing: 0.04rem;
}
.loading-wrap {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
}
.loading-wrap.hide {
  display: none;
}
.loading-wrap.no-bg .bg {
  background: rgba(0, 0, 0, 0);
}
.loading-wrap.no-bg .loading-content .loading-text-img {
  display: none;
}
.loading-wrap .bg {
  width: 100%;
  height: 100%;
  background: #fff;
}
.loading-wrap .loading-content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.loading-wrap .loading-content .loading-img {
  width: 200px;
  height: 200px;
  -webkit-animation: circle 1.5s linear infinite;
          animation: circle 1.5s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.loading-wrap .loading-content .loading-img svg {
  fill: #FEC323;
}
.loading-wrap .loading-content .loading-text-img {
  margin-top: 0.5rem;
  width: 2.62rem;
}
@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.toasted-container .toasted {
  padding: 0.1rem 0.2rem;
  min-width: 3rem;
  min-height: 0.6rem;
  font-size: 0.28rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
          flex-direction: row;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  -webkit-flex-wrap: wrap-reverse;
          flex-wrap: wrap-reverse;
}
.free-top {
  margin-top: auto;
}
.free-left {
  margin-left: auto;
}
.free-right {
  margin-right: auto;
}
.free-bottom {
  margin-bottom: auto;
}
.order-before {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  -webkit-order: -1;
          order: -1;
}
.order-after {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  -webkit-order: 1;
          order: 1;
}
.items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.items-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
          align-items: baseline;
}
.items-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
          align-items: stretch;
}
.self-center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
          align-self: center;
}
.self-baseline {
  -ms-flex-item-align: baseline;
  -webkit-align-self: baseline;
          align-self: baseline;
}
.self-stretch {
  -ms-flex-item-align: stretch;
  -webkit-align-self: stretch;
          align-self: stretch;
}
.self-start {
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
          align-self: flex-start;
}
.self-end {
  -ms-flex-item-align: end;
  -webkit-align-self: flex-end;
          align-self: flex-end;
}
.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.justify-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
          justify-content: space-around;
}
.content-start {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
          align-content: flex-start;
}
.content-end {
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
          align-content: flex-end;
}
.content-center {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
          align-content: center;
}
.content-between {
  -ms-flex-line-pack: justify;
  -webkit-align-content: space-between;
          align-content: space-between;
}
.content-around {
  -ms-flex-line-pack: distribute;
  -webkit-align-content: space-around;
          align-content: space-around;
}
.content-stretch {
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
          align-content: stretch;
}
.flex-min {
  min-height: 0;
  min-width: 0;
}
.flex-max {
  max-height: 100%;
  max-width: 100%;
}
.flex-golden {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 61.80339887%;
  -webkit-flex: 0 1 61.80339887%;
          flex: 0 1 61.80339887%;
}
.flex-initial {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
}
.flex-auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}
.flex-none {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}
.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
          flex: 1;
}
.flex-2 {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  -webkit-flex: 2;
          flex: 2;
}
.flex-3 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  -webkit-flex: 3;
          flex: 3;
}
.flex-4 {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  -webkit-flex: 4;
          flex: 4;
}
.flex-5 {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  -webkit-flex: 5;
          flex: 5;
}
.flex-6 {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  -webkit-flex: 6;
          flex: 6;
}
.flex-7 {
  -webkit-box-flex: 7;
  -ms-flex: 7;
  -webkit-flex: 7;
          flex: 7;
}
.flex-8 {
  -webkit-box-flex: 8;
  -ms-flex: 8;
  -webkit-flex: 8;
          flex: 8;
}
.flex-9 {
  -webkit-box-flex: 9;
  -ms-flex: 9;
  -webkit-flex: 9;
          flex: 9;
}
.flex-10 {
  -webkit-box-flex: 10;
  -ms-flex: 10;
  -webkit-flex: 10;
          flex: 10;
}
.flex-11 {
  -webkit-box-flex: 11;
  -ms-flex: 11;
  -webkit-flex: 11;
          flex: 11;
}
.flex-12 {
  -webkit-box-flex: 12;
  -ms-flex: 12;
  -webkit-flex: 12;
          flex: 12;
}
.grow-0 {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  -webkit-flex-grow: 0;
          flex-grow: 0;
}
.grow-1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}
.grow-2 {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  -webkit-flex-grow: 2;
          flex-grow: 2;
}
.grow-3 {
  -webkit-box-flex: 3;
  -ms-flex-positive: 3;
  -webkit-flex-grow: 3;
          flex-grow: 3;
}
.grow-4 {
  -webkit-box-flex: 4;
  -ms-flex-positive: 4;
  -webkit-flex-grow: 4;
          flex-grow: 4;
}
.grow-5 {
  -webkit-box-flex: 5;
  -ms-flex-positive: 5;
  -webkit-flex-grow: 5;
          flex-grow: 5;
}
.grow-6 {
  -webkit-box-flex: 6;
  -ms-flex-positive: 6;
  -webkit-flex-grow: 6;
          flex-grow: 6;
}
.grow-7 {
  -webkit-box-flex: 7;
  -ms-flex-positive: 7;
  -webkit-flex-grow: 7;
          flex-grow: 7;
}
.grow-8 {
  -webkit-box-flex: 8;
  -ms-flex-positive: 8;
  -webkit-flex-grow: 8;
          flex-grow: 8;
}
.grow-9 {
  -webkit-box-flex: 9;
  -ms-flex-positive: 9;
  -webkit-flex-grow: 9;
          flex-grow: 9;
}
.grow-10 {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  -webkit-flex-grow: 10;
          flex-grow: 10;
}
.grow-11 {
  -webkit-box-flex: 11;
  -ms-flex-positive: 11;
  -webkit-flex-grow: 11;
          flex-grow: 11;
}
.grow-12 {
  -webkit-box-flex: 12;
  -ms-flex-positive: 12;
  -webkit-flex-grow: 12;
          flex-grow: 12;
}
.shrink-0 {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.shrink-1 {
  -ms-flex-negative: 1;
  -webkit-flex-shrink: 1;
          flex-shrink: 1;
}
.shrink-2 {
  -ms-flex-negative: 2;
  -webkit-flex-shrink: 2;
          flex-shrink: 2;
}
.shrink-3 {
  -ms-flex-negative: 3;
  -webkit-flex-shrink: 3;
          flex-shrink: 3;
}
.shrink-4 {
  -ms-flex-negative: 4;
  -webkit-flex-shrink: 4;
          flex-shrink: 4;
}
.shrink-5 {
  -ms-flex-negative: 5;
  -webkit-flex-shrink: 5;
          flex-shrink: 5;
}
.shrink-6 {
  -ms-flex-negative: 6;
  -webkit-flex-shrink: 6;
          flex-shrink: 6;
}
.shrink-7 {
  -ms-flex-negative: 7;
  -webkit-flex-shrink: 7;
          flex-shrink: 7;
}
.shrink-8 {
  -ms-flex-negative: 8;
  -webkit-flex-shrink: 8;
          flex-shrink: 8;
}
.shrink-9 {
  -ms-flex-negative: 9;
  -webkit-flex-shrink: 9;
          flex-shrink: 9;
}
.shrink-10 {
  -ms-flex-negative: 10;
  -webkit-flex-shrink: 10;
          flex-shrink: 10;
}
.shrink-11 {
  -ms-flex-negative: 11;
  -webkit-flex-shrink: 11;
          flex-shrink: 11;
}
.shrink-12 {
  -ms-flex-negative: 12;
  -webkit-flex-shrink: 12;
          flex-shrink: 12;
}
.basis-0 {
  -ms-flex-preferred-size: 0%;
  -webkit-flex-basis: 0%;
          flex-basis: 0%;
}
.basis-1 {
  -ms-flex-preferred-size: 8.33333333%;
  -webkit-flex-basis: 8.33333333%;
          flex-basis: 8.33333333%;
}
.basis-2 {
  -ms-flex-preferred-size: 16.66666667%;
  -webkit-flex-basis: 16.66666667%;
          flex-basis: 16.66666667%;
}
.basis-3 {
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
          flex-basis: 25%;
}
.basis-4 {
  -ms-flex-preferred-size: 33.33333333%;
  -webkit-flex-basis: 33.33333333%;
          flex-basis: 33.33333333%;
}
.basis-5 {
  -ms-flex-preferred-size: 41.66666667%;
  -webkit-flex-basis: 41.66666667%;
          flex-basis: 41.66666667%;
}
.basis-6 {
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
          flex-basis: 50%;
}
.basis-7 {
  -ms-flex-preferred-size: 58.33333333%;
  -webkit-flex-basis: 58.33333333%;
          flex-basis: 58.33333333%;
}
.basis-8 {
  -ms-flex-preferred-size: 66.66666667%;
  -webkit-flex-basis: 66.66666667%;
          flex-basis: 66.66666667%;
}
.basis-9 {
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
          flex-basis: 75%;
}
.basis-10 {
  -ms-flex-preferred-size: 83.33333333%;
  -webkit-flex-basis: 83.33333333%;
          flex-basis: 83.33333333%;
}
.basis-11 {
  -ms-flex-preferred-size: 91.66666667%;
  -webkit-flex-basis: 91.66666667%;
          flex-basis: 91.66666667%;
}
.basis-12 {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
.basis-100vw {
  -ms-flex-preferred-size: 100vw;
  -webkit-flex-basis: 100vw;
          flex-basis: 100vw;
}
.basis-100vh {
  -ms-flex-preferred-size: 100vh;
  -webkit-flex-basis: 100vh;
          flex-basis: 100vh;
}
.basis-100vmax {
  -ms-flex-preferred-size: 100vmax;
  -webkit-flex-basis: 100vmax;
          flex-basis: 100vmax;
}
.basis-100vmin {
  -ms-flex-preferred-size: 100vmin;
  -webkit-flex-basis: 100vmin;
          flex-basis: 100vmin;
}
.basis-golden {
  -ms-flex-preferred-size: 61.80339887%;
  -webkit-flex-basis: 61.80339887%;
          flex-basis: 61.80339887%;
}
.basis-content {
  -ms-flex-preferred-size: content;
  -webkit-flex-basis: content;
          flex-basis: content;
}
.basis-auto {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
          flex-basis: auto;
}
@media (orientation: portrait) {
  .flex\@portrait {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .inline-flex\@portrait {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
  }
  .flex-wrap\@portrait {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .flex-nowrap\@portrait {
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .flex-wrap-reverse\@portrait {
    -ms-flex-wrap: wrap-reverse;
    -webkit-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
}
@media (orientation: landscape) {
  .flex\@landscape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .inline-flex\@landscape {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
  }
  .flex-wrap\@landscape {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .flex-nowrap\@landscape {
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .flex-wrap-reverse\@landscape {
    -ms-flex-wrap: wrap-reverse;
    -webkit-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
}
img {
  max-width: 100%;
}
body {
  background-color: #9a2814;
}
.bg {
  background: url(../images/bg.png?v=1579251501542) center center no-repeat;
  background-size: cover;
}
.hide {
  display: none;
}
.hide-0 {
  opacity: 0;
}
.page {
  min-height: 100vh;
}
.content {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
}
.img-wrap {
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 5.5rem;
  height: 9.7rem;
}
.img-wrap .img-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-shadow: 0 0 0.4rem rgba(255, 255, 255, 0.6);
          box-shadow: 0 0 0.4rem rgba(255, 255, 255, 0.6);
}
.img-wrap .face {
  width: 0.92rem;
  height: 0.92rem;
  position: absolute;
  left: 50%;
  top: 2.7rem;
  -webkit-transform: translate(-50%, -50%);
  border-radius: 50%;
}
.img-wrap .nickname {
  position: absolute;
  top: 3.2rem;
  left: 1.48rem;
  color: #721318;
  font-size: 0.25rem;
}
.img-wrap .tym {
  position: absolute;
  bottom: 0.32rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  border-radius: 50%;
  width: 1.1rem;
  height: 1.1rem;
}
.tip {
  margin-top: 4%;
}
.tip p {
  font-size: 0.26rem;
  color: #ffffff;
  line-height: 0.3rem;
  text-align: center;
}
.tip .money {
  color: #ffd252;
}
.ft .save {
  width: 4.43rem;
  height: 1.06rem;
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
}
.poster-wrap {
  display: none;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.poster-wrap .poster-content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5.5rem;
  height: 9.7rem;
  -webkit-box-shadow: 0 0 0.4rem rgba(255, 255, 255, 0.6);
          box-shadow: 0 0 0.4rem rgba(255, 255, 255, 0.6);
}
.poster-wrap .poster-content .icon-del {
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  right: -0.2rem;
  top: -0.2rem;
}
.poster-wrap .poster-content .poster-img {
  width: 100%;
  height: 100%;
}
#ajax-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#ajax-loading.first {
  opacity: 1;
  background: rgba(230, 0, 69, 0.1);
}
.spinner {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 48%;
  -webkit-transform: translate(-50%, -50%) scale(4);
}
.container1 > div,
.container2 > div,
.container3 > div {
  width: 6px;
  height: 6px;
  background-color: #d43d3d;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.spinner .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.circle1 {
  top: 0;
  left: 0;
}
.circle2 {
  top: 0;
  right: 0;
}
.circle3 {
  right: 0;
  bottom: 0;
}
.circle4 {
  left: 0;
  bottom: 0;
}
.container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.container3 .circle1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/*# sourceMappingURL=index.min.css.map?v=1579251501551*/