@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*****************************
 ** 自定义新增库
 ** 2016.9.7
 ** z.ejw.cn
 ****************************/

@-webkit-keyframes twisterInUp {
	0% {
		opacity:0;
		-webkit-transform-origin:100% 0;
		-webkit-transform:scale(0, 0) rotate(360deg) translateY(100%)
	}
	30% {
		-webkit-transform-origin:100% 0;
		-webkit-transform:scale(0, 0) rotate(360deg) translateY(100%)
	}
	100% {
		opacity:1;
		-webkit-transform-origin:0 0;
		-webkit-transform:scale(1, 1) rotate(0) translateY(0)
	}
}

@keyframes twisterInUp {
	0% {
		opacity:0;
		-webkit-transform-origin:100% 0;
		        transform-origin:100% 0;
		-webkit-transform:scale(0, 0) rotate(360deg) translateY(100%);
		        transform:scale(0, 0) rotate(360deg) translateY(100%)
	}
	30% {
		-webkit-transform-origin:100% 0;
		        transform-origin:100% 0;
		-webkit-transform:scale(0, 0) rotate(360deg) translateY(100%);
		        transform:scale(0, 0) rotate(360deg) translateY(100%)
	}
	100% {
		opacity:1;
		-webkit-transform-origin:0 0;
		        transform-origin:0 0;
		-webkit-transform:scale(1, 1) rotate(0) translateY(0);
		        transform:scale(1, 1) rotate(0) translateY(0)
	}
}

@-webkit-keyframes scaleDown {
	0% {
		-webkit-transform:scale(1.5)
	}
	100% {
		-webkit-transform:scale(1)
	}
}

@keyframes scaleDown {
	0% {
		-webkit-transform:scale(1.5);
		        transform:scale(1.5)
	}
	100% {
		-webkit-transform:scale(1);
		        transform:scale(1)
	}
}

@-webkit-keyframes nudgeInUp{
	0%{
		opacity:.5;
		-webkit-transform:translate(0,30px)
	}
	100%{
		opacity:1;
		-webkit-transform:translate(0,0)
	}
}

@keyframes nudgeInUp{
	0%{
		opacity:.8;
		-webkit-transform:translate(0,30px);
		        transform:translate(0,30px)
	}
	100%{
		opacity:1;
		-webkit-transform:translate(0,0);
		        transform:translate(0,0)
	}
}

/*****************************
 ** animate 配合使用全局动画载入效果
 ** 2016.9.23
 ** building by liqingyun
 ****************************/

[animated] { visibility:hidden; +visibility:visible; visibility:visible\0; }
/*********************************
 * 系统初始化
 *******************************/
.ml8 {
  margin-left: 8px;
}
.mr8 {
  margin-right: 8px;
}
.mt8 {
  margin-top: 8px;
}
.mb8 {
  margin-bottom: 8px;
}
.ml16 {
  margin-left: 16px;
}
.mr16 {
  margin-right: 16px;
}
.mt16 {
  margin-top: 16px;
}
.mb16 {
  margin-bottom: 16px;
}
.ml24 {
  margin-left: 24px;
}
.mr24 {
  margin-right: 24px;
}
.mt24 {
  margin-top: 24px;
}
.mb24 {
  margin-bottom: 24px;
}
.ml32 {
  margin-left: 32px;
}
.mr32 {
  margin-right: 32px;
}
.mt32 {
  margin-top: 32px;
}
.mb32 {
  margin-bottom: 32px;
}
.w50 {
  width: 50px;
}
.w100 {
  width: 100px;
}
.w150 {
  width: 150px;
}
.w200 {
  width: 200px;
}
.w250 {
  width: 250px;
}
.w300 {
  width: 300px;
}
.w350 {
  width: 350px;
}
.w400 {
  width: 400px;
}
.w450 {
  width: 450px;
}
.w500 {
  width: 500px;
}
.w550 {
  width: 550px;
}
.w600 {
  width: 600px;
}
.w650 {
  width: 650px;
}
.w700 {
  width: 700px;
}
.w750 {
  width: 750px;
}
.w800 {
  width: 800px;
}
.w850 {
  width: 850px;
}
.w900 {
  width: 900px;
}
* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  height: 100%;
  min-width: 1200px;
  font: 14px/2 'Microsoft Yahei', Arial;
  color: #666;
  background: #fff;
}
img {
  border: 0px;
}
ul,
ol,
li {
  list-style-type: none;
  vertical-align: bottom;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
textarea,
select {
  font-family: 'Microsoft Yahei', Arial;
  color: #666;
  outline: 0;
}
input[type='checkbox'],
input[type='radio'] {
  vertical-align: -2px;
}
textarea {
  resize: none;
  overflow: auto;
}
h1,
h2,
h3,
h4,
h5,
h6,
font {
  font-size: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}
::-webkit-scrollbar {
  width: 2px;
  height: 1px;
  background-color: #ffffff;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #dddddd;
}
#app {
  height: 100%;
}
#menuer {
  height: 50px !important;
  padding: 0 10px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
#operation {
  padding: 10px;
}
#sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: #444;
  z-index: 20;
}
#wrapper {
  margin: 0 0 0 90px;
  padding: 0;
  background: #f2f2f2;
}
#crevice {
  padding: 0;
  margin: 0;
}
/*********************************
 * 全局公共区域
 *******************************/
.copyright {
  padding: 10px 0;
  text-align: center;
}
.copyright p {
  color: #999;
}
/*********************************
 * 全局公共区域
 *******************************/
.el-input__qs {
  position: absolute;
  right: 10px;
  top: 50%;
  margin: -9px 0 0 0;
  width: 20px;
  height: 20px;
  line-height: 18px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #409eff !important;
}
/******************************
 * 整体框架
 *****************************/
.sidebar-logo {
  width: 100%;
}
.sidebar-logo a {
  display: block;
  padding: 10px 25px;
}
.sidebar-logo img {
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 5px solid #fff;
}
.sidebar-nav {
  position: relative;
}
.sidebar-nav .list {
  position: relative;
}
.sidebar-nav .item {
  height: 40px;
  line-height: 40px;
  color: #ccc;
}
.sidebar-nav .item.gap {
  margin-bottom: 20px;
}
.sidebar-nav .item > a {
  display: block;
  padding: 0 0 0 40px;
  position: relative;
}
.sidebar-nav li:hover {
  background: #666;
  color: #fff;
}
.sidebar-nav li:hover .sidebar-icon-renovation {
  background-position: -40px 0;
}
.sidebar-nav li:hover .sidebar-icon-goods {
  background-position: -40px -20px;
}
.sidebar-nav li:hover .sidebar-icon-order {
  background-position: -40px -40px;
}
.sidebar-nav li:hover .sidebar-icon-user {
  background-position: -40px -60px;
}
.sidebar-nav li:hover .sidebar-icon-market {
  background-position: -40px -120px;
}
.sidebar-nav li:hover .sidebar-icon-setting {
  background-position: -40px -140px;
}
.sidebar-nav li:hover .sidebar-icon-statistics {
  background-position: -40px -80px;
}
.sidebar-nav li:hover .sidebar-icon-article {
  background-position: -40px -180px;
}
.sidebar-nav li:hover .sidebar-icon-message {
  background-position: -40px -200px;
}
.sidebar-nav li:hover .sidebar-icon-seo {
  background-position: -40px -220px;
}
.sidebar-nav li:hover .sidebar-icon-resources {
  background-position: -40px -240px;
}
.sidebar-nav li:hover .sidebar-icon-car-merchant {
  background-position: -40px -260px;
}
.sidebar-nav li:hover .sidebar-icon-car-new {
  background-position: -40px -280px;
}
.sidebar-nav li:hover .sidebar-icon-car-order {
  background-position: -40px -300px;
}
.sidebar-nav li:hover .sidebar-icon-car-stock {
  background-position: -40px -320px;
}
.sidebar-nav li:hover .sidebar-icon-car-card {
  background-position: -40px -340px;
}
.sidebar-nav li:hover .sidebar-icon-activity {
  background-position: -40px -360px;
}
.sidebar-nav li:hover .sidebar-icon-car-coupon {
  background-position: -40px -380px;
}
.sidebar-nav li > a.active {
  background: #fff;
  color: #333;
}
.sidebar-nav li > a.active .sidebar-icon-renovation {
  background-position: -60px 0;
}
.sidebar-nav li > a.active .sidebar-icon-goods {
  background-position: -60px -20px;
}
.sidebar-nav li > a.active .sidebar-icon-order {
  background-position: -60px -40px;
}
.sidebar-nav li > a.active .sidebar-icon-user {
  background-position: -60px -60px;
}
.sidebar-nav li > a.active .sidebar-icon-market {
  background-position: -60px -120px;
}
.sidebar-nav li > a.active .sidebar-icon-setting {
  background-position: -60px -140px;
}
.sidebar-nav li > a.active .sidebar-icon-statistics {
  background-position: -60px -80px;
}
.sidebar-nav li > a.active .sidebar-icon-article {
  background-position: -60px -180px;
}
.sidebar-nav li > a.active .sidebar-icon-message {
  background-position: -60px -200px;
}
.sidebar-nav li > a.active .sidebar-icon-seo {
  background-position: -60px -220px;
}
.sidebar-nav li > a.active .sidebar-icon-resources {
  background-position: -60px -240px;
}
.sidebar-nav li > a.active .sidebar-icon-car-merchant {
  background-position: -60px -260px;
}
.sidebar-nav li > a.active .sidebar-icon-car-new {
  background-position: -60px -280px;
}
.sidebar-nav li > a.active .sidebar-icon-car-order {
  background-position: -60px -300px;
}
.sidebar-nav li > a.active .sidebar-icon-car-stock {
  background-position: -60px -320px;
}
.sidebar-nav li > a.active .sidebar-icon-car-card {
  background-position: -60px -340px;
}
.sidebar-nav li > a.active .sidebar-icon-activity {
  background-position: -60px -360px;
}
.sidebar-nav li > a.active .sidebar-icon-car-coupon {
  background-position: -60px -380px;
}
.sidebar-nav li > a.active + .sidebar-child {
  display: block;
}
.sidebar-child {
  position: fixed;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 112px;
  background: #fff;
  border-right: 1px solid #eee;
  z-index: 1;
  display: none;
}
.sidebar-child h2 {
  height: 50px;
  line-height: 50px;
  padding: 0 0 0 20px;
  font-weight: normal;
  border-bottom: 1px solid #f2f2f2;
  color: #333;
}
.sidebar-child .list2 {
  padding: 10px;
}
.sidebar-child .item2 {
  background: #fff;
  border-radius: 5px;
  margin: 0 0 14px;
}
.sidebar-child .item2 > a {
  display: block;
  line-height: 36px;
  padding: 0 10px;
  color: #666;
}
.sidebar-child .item2 > a.active {
  background: #f8f8f8;
  color: #666;
}
.sidebar-child .item2 > a:hover {
  color: #0077dd;
}
.sidebar-child .list3 {
  position: relative;
}
.sidebar-child .list3:empty {
  display: none;
}
.sidebar-child .item3 {
  padding: 0 0 0 10px;
  white-space: nowrap;
}
.sidebar-child .item3 > a {
  color: #999;
}
.sidebar-child .item3 > a.active {
  color: #666;
}
.sidebar-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  margin: -10px 0 0 0;
  width: 20px;
  height: 20px;
  background: url(../../static/img/sidebar-icon.png?hash=c4962048) 0 1000px no-repeat;
}
.sidebar-icon-renovation {
  background-position: 0 0;
}
.sidebar-icon-goods {
  background-position: 0 -20px;
}
.sidebar-icon-order {
  background-position: 0 -40px;
}
.sidebar-icon-user {
  background-position: 0 -60px;
}
.sidebar-icon-market {
  background-position: 0 -120px;
}
.sidebar-icon-setting {
  background-position: 0 -140px;
}
.sidebar-icon-statistics {
  background-position: 0 -80px;
}
.sidebar-icon-article {
  background-position: 0 -180px;
}
.sidebar-icon-message {
  background-position: 0 -200px;
}
.sidebar-icon-seo {
  background-position: 0 -220px;
}
.sidebar-icon-resources {
  background-position: 0 -240px;
}
.sidebar-icon-car-merchant {
  background-position: 0 -260px;
}
.sidebar-icon-car-new {
  background-position: 0 -280px;
}
.sidebar-icon-car-order {
  background-position: 0 -300px;
}
.sidebar-icon-car-stock {
  background-position: 0 -320px;
}
.sidebar-icon-car-card {
  background-position: 0 -340px;
}
.sidebar-icon-activity {
  background-position: 0 -360px;
}
.sidebar-icon-car-coupon {
  background-position: 0 -380px;
}
.sidebar-user {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 90px;
  z-index: 10;
  padding: 10px;
  background: #535353;
}
.sidebar-user h2 {
  line-height: 30px;
  font-weight: normal;
  color: #fff;
  font-size: smaller;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/********************************
 * 帮助中心
 * 侧栏帮助面板，暂时不需要使用到
 * @/components/Helper.vue
 *******************************/
#helper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 0;
  background: #fff;
  width: 200px;
  height: auto !important;
  border-left: 1px solid #eee;
}
#helper .head {
  position: relative;
  padding: 0 0 0 8px;
  margin: 0 0 15px;
  height: 12px;
  line-height: 12px;
  border-left: 2px solid #0077dd;
}
#helper .head h2 {
  font-weight: normal;
}
#helper .head a {
  position: absolute;
  right: 0;
  top: 0;
  color: #0077dd;
}
#helper .head a:hover {
  opacity: 0.8;
}
.helper-topclass {
  border-bottom: 1px solid #eee;
}
.helper-topclass h2 {
  height: 50px;
  line-height: 50px;
  font-weight: normal;
  padding: 0 0 0 20px;
}
.helper-topclass h2:before {
  margin-right: 5px;
}
.helper-des {
  padding: 10px;
  font-size: smaller;
}
.helper-des .info {
  line-height: 1.5;
}
.helper-des .info h3 {
  font-weight: normal;
  color: #333;
  margin: 0 0 3px;
}
.helper-des .info p {
  text-align: justify;
  color: #999;
}
.helper-list {
  padding: 10px;
  font-size: smaller;
}
.helper-list a {
  color: #0077dd;
}
.helper-list a:hover {
  opacity: 0.8;
}
.helper-kf {
  padding: 10px;
  font-size: smaller;
}
.helper-kf .inner {
  background: #f6f6f6;
  padding: 15px 10px;
}
.helper-kf .inner:hover {
  background: #f2f2f2;
}
.helper-kf button {
  width: 100%;
  margin: 0 0 5px;
}
.helper-kf .t {
  text-align: center;
}
.helper-kf .t li {
  line-height: 20px;
}
.helper-line {
  margin: 0 10px;
  border-bottom: 1px solid #eee;
}
/********************************
 * 筛选 + 三级栏目 + 面包屑 + 底部操作
 *******************************/
.menuer-tabed {
  position: relative;
}
.menuer-tabed li {
  float: left;
  width: auto;
}
.menuer-tabed a {
  display: block;
  padding: 0 20px;
}
.menuer-tabed a.active span {
  border-bottom: 2px solid #0077dd;
}
.menuer-tabed span {
  display: block;
  height: 50px;
  line-height: 50px;
}
.menuer-breadcrumb {
  line-height: 50px;
  padding: 0 0 0 16px;
}
.menuer-breadcrumb .is-link {
  font-weight: normal;
  color: #0077dd;
}
.menuer-head {
  position: relative;
  padding: 0 0 0 16px;
}
.menuer-head h2 {
  line-height: 50px;
  white-space: nowrap;
  font-weight: normal;
  color: #333;
}
.content-inner {
  padding: 15px;
  background: #fff;
  border: 1px solid #eee;
}
.content-opend {
  margin: 0 0 20px;
  position: relative;
}
.content-opend.fox {
  margin-bottom: 0;
  position: relative;
}
.content-opend.fox .url {
  position: absolute;
  right: 10px;
  top: -5px;
  z-index: 10;
}
.content-opend .url + .filter {
  position: absolute;
  right: 0;
  top: 0;
}
.content-opend .filter .el-form-item {
  margin-bottom: 0;
}
.content-opend .filter .select {
  width: 120px;
}
.content-opend .filter .txt input {
  width: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.content-opend .filter .txt input:focus {
  width: 150px;
}
.common-filter {
  background: #f6f6f6;
  padding: 15px;
  margin: 0 0 20px;
}
.common-filter .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
}
.common-filter .flex-box .flex-box-label {
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 10px;
}
.common-filter .flex-box .flex-box-input {
  width: 180px;
}
.commom-oper-btn {
  margin-bottom: 10px;
}
.content-filter {
  background: #f6f6f6;
  padding: 15px;
  margin: 0 0 20px;
}
.content-filter:hover {
  background: #f2f2f2;
}
.content-filter .cell {
  float: left;
  margin: 0 40px 0 0;
}
.content-filter .rows {
  clear: both;
  padding: 5px 0 0 100px;
}
.content-filter .el-form-item {
  margin-bottom: 5px !important;
}
.content-filter .el-form-item__label {
  width: 100px;
  text-align: right;
}
.content-filter .el-form-item__content {
  margin: 0 0 0 100px;
}
.content-filter .el-input__inner {
  width: 220px;
}
.content-filter .el-input-number {
  width: auto !important;
}
.content-filter .el-form-item {
  margin-bottom: 0;
}
.content-filter .sts .el-input__inner {
  width: 93px;
}
.content-filter .sts .el-date-editor {
  width: 110px;
}
.content-filter .sts .el-date-editor .el-input__inner {
  width: 110px;
  padding-right: 10px;
}
.content-filter .sts .to {
  text-align: center;
}
.content-filter .sts-date {
  width: 240px;
}
.content-actions {
  height: 60px;
  position: relative;
}
.content-actions .inner {
  position: fixed;
  left: 90px;
  right: 0px;
  bottom: 0;
  background: #f5f8fb;
  border-top: 1px solid #e9ecf3;
  padding: 15px 0;
  text-align: center;
  z-index: 1000;
}
.content-actions .inner .el-button {
  padding: 9px 30px;
  background: #02A7F0;
  border-color: #02A7F0;
  color: #ffffff;
}
.content-actions .inner .el-button:hover {
  opacity: 0.8;
}
.content-head {
  position: relative;
  padding: 20px;
}
.content-head .inner {
  position: relative;
}
.content-head .title {
  line-height: 30px;
  font-size: 18px;
  margin: 0 0 10px;
}
.content-head .switch {
  position: relative;
}
.content-head .switch .label {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0;
}
.content-head .switch .contro {
  display: inline-block;
  vertical-align: middle;
}
.content-head .opra {
  position: absolute;
  top: 0;
  right: 0;
}
.content-head .opra .buy {
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
  line-height: 36px;
  border: 1px solid #409eff;
  color: #409eff;
  border-radius: 3px;
}
.content-head .opra .buy:hover {
  background: #409eff;
  color: #fff;
}
/********************************
 * 列表组件包装
 *******************************/
.lister-table {
  margin: 0 0 20px;
  font-size: 13px;
}
.lister-table .has-gutter th {
  background: #f5f5f5;
  color: #666;
}
.lister-table .img {
  display: block;
  width: 60px;
  height: 60px;
  background: #eee;
}
.lister-table .pintuan .pt {
  color: #409eff;
}
.lister-table .lise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px;
}
.lister-table .lise:last-child {
  margin-bottom: 0;
}
.lister-table .lise .txt {
  margin-left: 12px;
}
.lister-table .lise .tit {
  display: block;
  font-size: 16px;
}
.lister-table .lise .money {
  display: block;
  color: #bbb;
}
.lister-footer {
  position: relative;
}
.lister-batch {
  float: left;
  margin: 0 0 0 15px;
}
.lister-batch > * {
  margin: 0 10px 0 0;
}
.lister-pager {
  float: right;
}
.ql-snow .ql-picker-label {
  line-height: 1;
}
.avatar-uploader {
  height: 52px;
}
.avatar-uploader .el-upload-list__item {
  width: 98px;
  height: 98px;
}
.avatar-uploader .el-upload--picture-card {
  width: 98px;
  height: 98px;
  line-height: 98px;
}
.avatar-uploader .el-upload {
  padding: 5px;
  border: 1px dashed #bbb;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}
.avatar-uploader .el-upload:hover {
  border-color: #409eff;
}
.avatar-uploader .el-upload .avatar {
  width: 40px;
  height: 40px;
  display: block;
}
.avatar-uploader .el-upload .edit {
  position: absolute;
  left: -1px;
  bottom: -1px;
  right: -1px;
  line-height: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: small;
  border-radius: 0 0 6px 6px;
}
.avatar-uploader .avatar-uploader-icon {
  font-size: 20px;
  color: #bbb;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.avatar-dialog .inner {
  position: relative;
}
.avatar-dialog .img {
  display: block;
  width: 100%;
}
.images-lister {
  position: relative;
}
.images-lister .img {
  display: block;
  width: 100%;
}
.rcode-cospan {
  position: relative;
}
.rcode-cospan::after {
  content: '';
  display: block;
}
.rcode-cospan li {
  float: left;
  width: 140px;
  padding: 10px;
  margin: 0 20px 0 0;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.rcode-cospan img {
  display: block;
  width: 120px;
  margin: 0 0 10px;
}
.rcode-cospan h3 {
  line-height: 20px;
  text-align: center;
  font-weight: normal;
  color: #999;
}
.dialog-bindmobile {
  position: relative;
}
.dialog-bindmobile .el-dialog__body {
  padding-top: 0;
}
.dialog-bindmobile .p {
  line-height: 1.5;
}
.dialog-bindmobile .fm {
  display: block;
  padding: 20px 20px 0;
}
.dialog-bindmobile .el-form-item {
  margin-bottom: 20px;
}
.dialog-bindmobile .scode {
  width: 200px;
  padding: 0 100px 0 0;
  position: relative;
}
.dialog-bindmobile .scode input {
  width: 100%;
  height: 32px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px 0 0 3px;
  position: relative;
  z-index: 1;
}
.dialog-bindmobile .scode button {
  position: absolute;
  right: 0;
  top: 1px;
  width: 101px;
  height: 32px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}
.dialog-bindmobile .scode button:hover {
  -webkit-box-shadow: 0 0 100px rgba(0, 0, 0, 0.02) inset;
          box-shadow: 0 0 100px rgba(0, 0, 0, 0.02) inset;
  color: #666;
}
.dialog-bindmobile .foot {
  text-align: right;
}
.el-row-inline {
  display: inline-block;
  vertical-align: middle;
}
/* 适用于2个区间值 */
.el-form-group {
  position: relative;
}
.el-form-group .el-form-item {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
}
.el-form-group .el-form-item.d {
  width: 20px;
  text-align: center;
}
.el-form-group .el-form-item.f {
  width: 100px;
}
.el-form-group .el-input__inner {
  width: 100px;
}
.el-form-group .el-form-item.d .el-form-item__content,
.el-form-group .el-form-item.f .el-form-item__content {
  margin: 0 0 0 0;
}
.el-form-blank {
  padding: 16px 20px;
  margin: 0 0 20px;
  background: #f8f8f8;
  position: relative;
}
.el-form-blank .inner {
  position: relative;
}
.el-form-blank h2 {
  color: #333;
  line-height: 14px;
}
.el-form-blank h2::before {
  content: '';
  width: 3px;
  height: 14px;
  background: #f60;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px 0 0;
}
.el-form-tips {
  position: relative;
  padding: 5px 0;
  line-height: 20px;
}
.el-form-tips span {
  color: #999;
}
.el-form-tips em {
  color: #f60;
  font-style: normal;
}
.el-form-tips a {
  color: #409eff;
}
.el-form-line {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px;
}
.el-form-line li {
  display: inline;
}
.el-form-line li span {
  color: #bbb;
}
.el-form-line li a {
  color: #409eff;
}
.el-form-warning {
  position: relative;
  display: inline-block;
  background: #fdf6ec;
  padding: 5px 10px;
  border-radius: 5px;
}
.el-form-warning span {
  color: #e6a23c;
}
.el-form-warning a {
  color: #f56c6c;
}
.el-form-error {
  position: relative;
  display: inline-block;
  background: #fef0f0;
  padding: 5px 10px;
  border-radius: 5px;
}
.el-form-error span {
  color: #f56c6c;
}
.el-form-success {
  position: relative;
  display: inline-block;
  background: #f0f9eb;
  padding: 5px 10px;
  border-radius: 5px;
}
.el-form-success span {
  color: #67c23a;
}
/* 优惠券类型添加列表 */
.el-form-coupon {
  position: relative;
  margin: 0 0 20px;
}
.el-form-coupon .item {
  position: relative;
}
.el-form-coupon .inner {
  background: #f0f7ff;
  padding: 15px;
  text-align: center;
}
.el-form-coupon .title {
  line-height: 30px;
  font-size: 18px;
  font-weight: normal;
  color: #333;
  margin: 0 0 10px;
}
.el-form-coupon .intro {
  height: 60px;
  line-height: 20px;
}
.el-form-coupon .foot {
  position: relative;
}
.el-radio-group.cell {
  position: relative;
  padding: 6px 0 0;
}
.el-radio-group.cell > label {
  display: block;
  margin: 0 0 10px 0;
}
.el-radio-group.cbox .el-radio__inner {
  border-radius: 0;
}
.el-radio-group.cbox .el-radio__input.is-checked .el-radio__inner::after {
  width: 3px;
  height: 7px;
  background: none;
  border: 1px solid #fff;
  border-top: 0;
  border-left: 0;
  border-radius: 0;
  -webkit-transform: rotate(45deg) scaleY(1);
          transform: rotate(45deg) scaleY(1);
  position: absolute;
  top: 1px;
  left: 4px;
}
.do-tabs {
  position: relative;
  height: 40px;
  border-bottom: 1px solid #e4e7ed;
  margin: 0 0 15px;
}
.do-tabs .inner {
  position: relative;
  overflow: hidden;
}
.do-tabs .list {
  float: left;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  white-space: nowrap;
  border: 1px solid #e4e7ed;
  border-radius: 3px 3px 0 0;
  cursor: pointer;
}
.do-tabs .item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  border-left: 1px solid #e4e7ed;
  border-bottom: 2px solid transparent;
  padding: 0 20px;
  height: 40px;
  line-height: 38px;
}
.do-tabs .item:first-child {
  border-left: 0;
}
.do-tabs .item.active {
  color: #409eff;
  border-bottom-color: #fff;
}
.do-tabs .item:hover {
  color: #409eff;
}
.do-tabs-url {
  position: relative;
  margin: 0 0 15px;
}
.do-tabs-url .search {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}
.li-tabs {
  position: relative;
  height: 40px;
  border-bottom: 1px solid #e4e7ed;
  margin: 0 0 15px;
}
.li-tabs .opp {
  position: absolute;
  right: 0;
  top: 0;
}
.li-tabs .opp .lister-batch .el-button {
  margin-right: 0;
}
.li-tabs .inner {
  position: relative;
  overflow: hidden;
}
.li-tabs .list {
  float: left;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  white-space: nowrap;
  border: 1px solid #e4e7ed;
  border-radius: 3px 3px 0 0;
  cursor: pointer;
}
.li-tabs .item {
  width: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  border-left: 1px solid #e4e7ed;
  border-bottom: 0;
  height: 40px;
  line-height: 38px;
  background: #fff;
}
.li-tabs .item:first-child {
  border-left: 0;
}
.li-tabs .item a {
  display: block;
  padding: 0 20px;
  border-bottom: 2px solid #e4e7ed;
}
.li-tabs .item:hover {
  color: #409eff;
}
.li-tabs .url {
  float: right;
  margin: 5px 0 0 0;
}
.li-tabs .url li {
  float: left;
  margin: 0 0 0 15px;
}
.li-tabs .url a {
  color: #409eff;
}
.li-tabs .item.active a,
.li-tabs .item a.active {
  border-bottom-color: #fff;
  background: #fff;
  color: #409eff;
}
.li-tag {
  position: relative;
  margin: 0 0 20px;
  display: none;
}
.li-tag .inner {
  position: relative;
  background: #fff7cc;
  border: 1px solid #ffeebb;
  padding: 10px 15px;
  line-height: 20px;
}
.li-tag span {
  color: #333;
}
.li-tag a {
  color: #409eff;
  margin: 0 0 0 10px;
}
/*  */
.edui-default {
  max-width: 1200px;
}
/********************************
  * 图片仓库
  *******************************/
.pictureWare {
  zoom: 1;
}
.pictureWare .el-dialog__body {
  padding-top: 0;
}
.pictureWare .tabed {
  padding: 10px 10px 0 0;
  position: relative;
}
.pictureWare .tabed ul {
  background: #eceaea;
  height: 360px;
  overflow: hidden;
  overflow: auto;
}
.pictureWare .tabed li {
  height: 35px;
  line-height: 35px;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 10px;
  cursor: pointer;
}
.pictureWare .tabed li.active {
  background: #fff;
}
.pictureWare .tabed li .pull-left {
  float: left;
}
.pictureWare .tabed li .pull-right {
  float: right;
  color: #b2b2b2;
  font-size: 13px;
  text-align: right;
}
.pictureWare .search {
  position: relative;
  height: 40px;
  overflow: hidden;
}
.pictureWare .filter {
  text-align: right;
  position: relative;
}
.pictureWare .list {
  position: relative;
}
.pictureWare .list ul {
  position: relative;
  height: 300px;
  overflow: hidden;
  overflow-y: auto;
  padding-top: 10px;
}
.pictureWare .item {
  position: relative;
  float: left;
  width: 14.6%;
  margin: 0 1% 2%;
}
.pictureWare .item .img {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUAQMAAAC3R49OAAAABlBMVEX////u7u5x8T/JAAAAE0lEQVQI12P4f4CBKMxg/4EYDAAFkR1NiYvv7QAAAABJRU5ErkJggg==) center center repeat #eee;
  position: relative;
  text-align: center;
  height: 110px;
  line-height: 110px;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.pictureWare .item .img img {
  display: inline-block;
  width: auto;
  height: auto;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.pictureWare .item .img.hover {
  border: 1px solid #0077dd;
}
.pictureWare .item .num {
  width: 20px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  color: #fff;
  background-color: #0077dd;
  font-size: 12px;
}
.pictureWare .item .tit {
  position: relative;
  text-align: center;
}
.pictureWare .item .tit input {
  padding: 0;
  border-color: #fff;
  height: 30px;
  text-align: center;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.pictureWare .item .tit span {
  display: block;
  padding: 0;
  border-color: #fff;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.pictureWare .item .control {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 0;
  height: 24px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 5;
  white-space: nowrap;
  visibility: hidden;
}
.pictureWare .item .control span {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  padding: 5px;
  margin: 0 3px;
  overflow: hidden;
  -webkit-box-sizing: content-box !important;
          box-sizing: content-box !important;
}
.pictureWare .item .control span svg {
  width: 14px;
  height: 14px;
}
.pictureWare .item .control span:hover {
  opacity: 0.8;
}
.pictureWare .item:hover .img {
  border-color: #0077dd;
}
.pictureWare .item:hover .control {
  visibility: visible;
}
.pictureWare .page {
  float: none;
  text-align: right;
  padding-top: 10px;
}
.pictureWare .footer {
  text-align: center;
  position: relative;
  margin: -20px -20px 0;
  padding: 20px 0 0;
  border-top: 1px solid #eeeeee;
}
.uploadButton {
  margin: 10px 0;
  text-align: right;
}
.uploadButton div.slop {
  line-height: 40px;
}
/********************************
  * 图片剪裁
  *******************************/
.cropper-wrapper {
  position: relative;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  margin: -20px -20px -20px;
  padding: 15px;
}
.cropper-sider {
  float: right;
  width: 215px;
}
.cropper-scale {
  position: relative;
  padding: 20px;
  border: 1px solid #ddd;
}
.cropper-scale .el-radio {
  display: block;
  height: 40px;
  line-height: 40px;
  margin: 0 0 0 0 !important;
}
.cropper-content {
  margin: 0 230px 0 0;
}
.cropper-area {
  position: relative;
}
.cropper-img {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cropper-img .loading {
  visibility: hidden;
}
.cropper-img .loaded {
  visibility: visible;
}
.cropper-actions {
  position: relative;
  overflow: hidden;
  padding: 10px 0 0;
  margin: 0 -10px -10px 0;
}
.cropper-actions .rows {
  float: left;
  margin: 0 10px 10px 0;
  border-radius: 3px;
  overflow: hidden;
}
.cropper-actions .rows li {
  float: left;
  position: relative;
  padding: 2px;
  background: #409eff;
}
.cropper-actions .rows li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.cropper-actions .rows li:first-child::before {
  content: none;
}
.cropper-actions .rows li:hover {
  -webkit-box-shadow: 0 0 100px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 0 100px rgba(0, 0, 0, 0.1) inset;
}
.cropper-actions a {
  display: block;
  width: 30px;
  height: 30px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAAY1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+aRQ2gAAAAIHRSTlMA8uDBdy38661U0viqk3RrZUtFPufFo42DDtjKt7IuJTwNBN8AAAH1SURBVGje7ZfbcqMwDIYl29icAyGHJj3p/Z9ykw1b74Wwt6yBdqrvBiff2P/IwgyAIAg/CqOUMrA6hXV5k6MtYF0Kax5lV7Aut9xNMA42IcPyrx+wIvbwMbxaWBy2SuUy2ATc6jazsCrZn3NMa290YQ91U6P919zv/6wWBEEQBEH4ipyDloJW50Gd69Bc0rODNUIY1IG5hKFkiufGk/m55C0DxXPjyfxcYm08+EwfMNbLM9v9cekcgjZ5xb6m8H6k7rEPjt0Bc5P/474l1KnPsQ+OnPKloMhzTRAEQRAE4WsxlH3A9uWw0ItRV1nzNmnfjK262bkUSm6tRddcWHdpHFrbzs4NJ9fqvateLlzuS9W9qxoWCoY9wOAMI4wb7naBHntOjvnTncIF+ev84I4N7sIb6QefDj4V42CHjMXdOChObAM9nw4+6nHwemXs9XUc6GPqivf0KKqlPWvbx3Z4m6zHT1Tv+janpwmbt/2u9jbhceqf8YDHYcIOx5t97hOc41VZP9f3WBAEQRAEgSHTqiyiNj0lOeVIxWz6XJvd60IXsanJ6LayvV+LKQveJkTj+Cqo1JQFb1PgV6zoBjQqYhNTOl8xb33FqXv8CLYm0GNv06Gq32sjRmx6HKlaWSQTsekplFIGDJmIXQpDQStfX4IgbMwvRz8dZuaqtsEAAAAASUVORK5CYII=) 0 0 no-repeat;
  color: #ffffff;
  overflow: hidden;
  text-indent: -99em;
}
.cropper-actions a.move-left {
  background-position: 0 -30px;
}
.cropper-actions a.move-right {
  background-position: -30px -30px;
}
.cropper-actions a.move-up {
  background-position: -60px -30px;
}
.cropper-actions a.move-down {
  background-position: -90px -30px;
}
.cropper-actions a.rotate-left {
  background-position: 0 -60px;
}
.cropper-actions a.rotate-right {
  background-position: -30px -60px;
}
.cropper-actions a.flip-x {
  background-position: -60px -60px;
}
.cropper-actions a.flip-y {
  background-position: -90px -60px;
}
.cropper-actions a.zoom-out {
  background-position: 0 -90px;
}
.cropper-actions a.zoom-in {
  background-position: -30px -90px;
}
.cropper-actions a.reset {
  background-position: -30px 0;
}
.cropper-preview {
  position: relative;
  overflow: hidden;
}
.cropper-preview .preview {
  overflow: hidden;
  width: 100%;
  height: 200px;
}
.cropper-preview .cropped {
  overflow: hidden;
  width: 100%;
  height: 200px;
}
/********************************
 * 重设elment-ui组件
 *******************************/
.el-form-item__error {
  z-index: 10;
  line-height: 20px;
}
.el-dialog__title {
  font-size: 16px;
}
.el-message {
  min-width: 100px;
}
.ql-tooltip-content {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}
.ql-tooltip-content.is-light {
  border-color: #dddddd;
}
.ql-tooltip-content.is-light[x-placement^=top] .popper__arrow {
  border-top-color: #cccccc;
}
.my-dropdown .el-button {
  width: 100%;
}
.my-dropdown span {
  width: 100%;
}
.pd-20 {
  padding: 10px;
  height: calc(100% - 60px);
}
.pd-20 .white-bg {
  padding: 10px;
  background-color: #fff;
  height: 100%;
}
/**
 * weui-dialog
 **/
.weui-dialog .el-dialog__body {
  border-top: 1px solid #eeeeee;
  padding-bottom: 10px;
}
.weui-number {
  vertical-align: middle;
}
.weui-number .el-input__inner {
  text-align: left;
}
.weui-number + .weui-number__append {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  background: #f5f7fa;
  border: 1px solid #dcdfe6;
  color: #909399;
  height: 32px;
  margin: 0 0 0 -50px;
  width: 50px;
  border-radius: 0 5px 5px 0;
  text-align: center;
}
.weui-tip {
  padding: 5px 0 0 0;
}
.weui-tip span {
  font-size: small;
  color: #999999;
}
.weui-switch {
  position: relative;
}
.weui-switch.is-active .weui-switch__inner {
  text-align: right;
  background-color: #02a7f0;
}
.weui-switch .weui-switch__inner {
  display: block;
  margin: 0 auto;
  max-width: 35px;
  padding: 2px;
  background: #eeeeee;
  border-radius: 20px;
  line-height: 0;
  text-align: left;
  cursor: pointer;
}
.weui-switch .weui-switch__point {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
}
.weui-datepicker .item,
.weui-datepicker .to {
  display: inline-block;
  vertical-align: middle;
}
.weui-datepicker .item {
  width: 140px;
}
.weui-datepicker .item .el-input__inner {
  width: 140px;
}
.weui-datepicker .to {
  padding: 0 10px;
}
.weui-checkbox {
  position: relative;
}
.weui-checkbox .weui-checkbox__list {
  position: relative;
}
.weui-checkbox .weui-checkbox__item {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 0 0;
  cursor: pointer;
}
.weui-checkbox .weui-checkbox__item .ck {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  border: 1px solid #dcdfe6;
  border-radius: 3px;
  background: #ffffff;
}
.weui-checkbox .weui-checkbox__item .ck:hover {
  border-color: #409EFF;
}
.weui-checkbox .weui-checkbox__item .ck.is-checked {
  border-color: transparent;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOBAMAAADtZjDiAAAAJ1BMVEVAnv9Qpv9ksP+Iwv/z+f9Wqf/o8//0+f/+///d7v/d7f+ezf+Xyv8uyelbAAAAN0lEQVQI12NIZQABKQYBMM3KgA0wJUJoFQOwEiZnEEfcAMgFSVY7Q2Q1DjBgmgE1l5FhIpgWAwDqTQSWShmtOgAAAABJRU5ErkJggg==) center center no-repeat;
}
.weui-checkbox .weui-checkbox__item span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px;
}
.el-message-box.alert-dialog {
  width: 360px;
}
.el-message-box.alert-dialog .el-message-box__btns {
  border-top: 1px solid #c3c3c3;
  margin-top: 20px;
}
.popover-tbox {
  background: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  width: 270px;
}
.popover-tbox .popover-tbox__inner {
  background: #ffffff;
  border: 1px solid #ebeef5;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  padding: 5px 12px 12px;
  border-radius: 5px;
  font-size: 12px;
}
.weui-car-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.weui-car-info .img-area img {
  display: block;
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.weui-car-info .text-area .sku {
  white-space: break-spaces;
  line-height: 1.2;
}
.weui-car-info .text-area .price {
  position: relative;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.el-input-number.plain .el-input-number__decrease,
.el-input-number.plain .el-input-number__increase {
  display: none;
}
.el-input-number.plain .el-input input {
  padding-left: 15px;
  padding-right: 15px;
}
.font-grey {
  color: #d7d7d7;
}
.h100p {
  height: 100%;
}
.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.weui-tabed {
  position: relative;
  margin: 0 0 20px;
}
.weui-tabed .weui-tabed__inner {
  position: relative;
}
.weui-tabed .weui-tabed__search {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.weui-tabed .weui-tabed__list {
  position: relative;
  border-bottom: 1px solid #e4e7ed;
  height: 41px;
}
.weui-tabed .weui-tabed__list .item {
  float: left;
  border: 1px solid #e4e7ed;
  border-bottom: 0;
  margin-right: -1px;
  margin-bottom: -1px;
  background: transparent;
  position: relative;
  z-index: 1;
}
.weui-tabed .weui-tabed__list .item:first-child {
  border-radius: 5px 0 0 0;
}
.weui-tabed .weui-tabed__list .item:last-child {
  border-radius: 0 5px 0 0;
}
.weui-tabed .weui-tabed__list .item.is-active {
  background: #ffffff;
}
.weui-tabed .weui-tabed__list .item.is-active span {
  color: #409EFF;
}
.weui-tabed .weui-tabed__list .item:hover span {
  color: #409EFF;
}
.weui-tabed .weui-tabed__list .item span {
  display: block;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  color: #666666;
}
.weui-pop__content {
  font-size: 12px;
  color: #999999;
}
.card-radio-selector {
  margin: 8px 0;
  white-space: nowrap;
}
.card-radio-selector .el-radio.is-bordered {
  padding: 18px 32px 18px 26px;
  height: auto;
}
.card-radio-selector .el-radio.is-bordered .el-radio__input {
  display: none;
}
.card-radio-selector .el-radio.is-bordered.is-checked .el-radio__label::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 24px;
  height: 18px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAASCAYAAABB7B6eAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Qzg1RTcyNDE1RjVBMTFFQUFDODNGQjNCMDcxRjVCQjkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Qzg1RTcyNDI1RjVBMTFFQUFDODNGQjNCMDcxRjVCQjkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDODVFNzIzRjVGNUExMUVBQUM4M0ZCM0IwNzFGNUJCOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDODVFNzI0MDVGNUExMUVBQUM4M0ZCM0IwNzFGNUJCOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqOet4AAAADnSURBVHjaYvz//z8DuSCy9CYPkHIEYksg1gFiFSCWAGJBIP4HxB9YyDCUEUh5AXEyEHsCMQcOpUxALMRCosEhQFwNxPrE6mMh0nCQ12dBg4MkwESE4dFA6jw5huP1ATRImqFBQjZgwmP4dFIMX96tTlIQtQFxOqmGY7OECUeYV5DjcqBe/BYAFSgDqZnEBgMhw7H5ABTu3MQEAzGGgwAjrKgAKgoCUmtJjUh8hsN9AFQEohuJyBMkGY4cRK7QwoqBWEuIMRzZghQSCzyi1TLf/BoJitQ5xJZL5ORkezxFLtUsoBkACDAAhZJG9BUUm5UAAAAASUVORK5CYII=);
}
.card-radio-selector .el-radio.is-bordered .el-radio__label {
  font-size: 15px;
}
.el-popper.el-select-dropdown {
  max-width: 270px;
}
.weui-filter__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.weui-filter__row .weui-filter__cell {
  width: 33.33%;
}
.weui-leaflet {
  position: relative;
  padding: 50px;
}
.weui-leaflet .weui-leaflet__thead {
  position: relative;
  text-align: center;
  padding: 0 0 30px;
  border-bottom: 1px solid #eeeeee;
}
.weui-leaflet .weui-leaflet__thead h2 {
  line-height: 50px;
  font-size: 30px;
  font-weight: normal;
  color: #333333;
}
.weui-leaflet .weui-leaflet__thead p {
  line-height: 1.2;
  font-size: 16px;
  color: #999999;
}
.weui-leaflet .weui-leaflet__thead .btn {
  margin: 20px 0 0;
}
.weui-leaflet .weui-leaflet__thead .btn span {
  display: inline-block;
  vertical-align: middle;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  background: #155bd4;
  color: #ffffff;
  border-radius: 3px;
  cursor: pointer;
}
.weui-leaflet .weui-leaflet__desc {
  position: relative;
  padding: 10px 0;
  text-align: center;
}
.weui-leaflet .weui-leaflet__desc .flex {
  margin: 0 auto;
}
.weui-leaflet .weui-leaflet__desc .flex dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 20px;
}
.weui-leaflet .weui-leaflet__desc .flex dd img {
  width: 32px;
}
.weui-leaflet .weui-leaflet__desc .flex dd span {
  display: block;
  line-height: 40px;
  color: #666666;
}
.weui-leaflet .weui-leaflet__photo {
  position: relative;
  background: #f5f5f5;
  padding: 50px;
}
.weui-leaflet .weui-leaflet__photo .thead {
  margin: 0 0 40px;
  text-align: center;
}
.weui-leaflet .weui-leaflet__photo .thead h3 {
  line-height: 30px;
  font-size: 20px;
  font-weight: normal;
  color: #333333;
}
.weui-leaflet .weui-leaflet__photo .flex {
  margin: 0 auto;
}
.weui-leaflet .weui-leaflet__photo .flex dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 20px;
  text-align: center;
}
.weui-leaflet .weui-leaflet__photo .flex dd img {
  max-width: 375px;
  width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.weui-leaflet .weui-leaflet__photo .flex dd span {
  display: block;
  margin: 0 0 20px;
  line-height: 30px;
  color: #666666;
}
.weui-filter {
  background: #f6f6f6;
  padding: 30px 15px 15px;
  margin: 20px 0 20px;
}
.weui-filter .weui-filter__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.weui-filter .weui-filter__cell {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 30%;
}
.weui-filter .weui-filter__item {
  white-space: nowrap;
}
.weui-filter .weui-filter__item .mui-input,
.weui-filter .weui-filter__item .mui-select {
  width: 200px;
}
.weui-filter .weui-filter__item .mui-date {
  width: 140px;
}
.weui-filter .weui-filter__item .mui-date + .mui-date__to {
  margin: 0 8px;
}

.fade-enter-active,.fade-leave-active {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease
}

.fade-enter-from,.fade-leave-to {
  opacity: 0
}


.jw-guide-fixed-popover {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2001;
}
.jw-guide-fixed-popover-inner {
  position: relative;
  top: 15vh;
  background: #fff;
  margin: 0 auto;
}

#jw-guideModalOverlayContainer {
  filter: alpha(opacity=50);
  height: 100vh;
  left: 0;
  opacity: 0.5;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 100vw;
  z-index: 1997;
}
.jw-guide-active.jw-guide-modal-is-visible :not(.jw-guide-target) {
  pointer-events: none;
}
.jw-guide-popover .jw-guide-popper__arrow {
  width: 120px;
  height: 120px;
  position: absolute;
  display: block;
}
.jw-guide-popover .jw-guide-content .jw-guide-content-bottom {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.jw-guide-popover .jw-guide-content .jw-guide-indicators {
  text-align: center;
}
.jw-guide-popover .jw-guide-content .jw-guide-indicators ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jw-guide-popover .jw-guide-content .jw-guide-indicator {
  list-style: none;
  float: left;
  margin: 0 2px;
  background: #fff;
  width: 8px;
  height: 8px;
  border: 1px solid #DCDFE6;
  border-radius: 50%;
  cursor: pointer;
}
.jw-guide-popover .jw-guide-content .jw-guide-indicator:hover,
.jw-guide-popover .jw-guide-content .jw-guide-indicator.jw-guide-indicator-active {
  border: 1px solid #409EFF;
}
.jw-guide-with-line-arrow[x-placement^=bottom] .jw-guide-popper__arrow {
  top: -122px;
  left: 50%;
}
.jw-guide-with-line-arrow[x-placement^=bottom] {
  margin-top: 70px;
  margin-left: 130px;
}
.jw-guide-with-line-arrow[x-placement^=top] {
  margin-bottom: 70px;
  margin-right: 130px;
}

.split-line[data-v-35b40d34] {
  border-bottom: 1px solid #ccc;
  margin-bottom: 14px;
}
.sidebar-space[data-v-35b40d34] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 109px;
}
.sidebar-space .inner[data-v-35b40d34] {
  position: relative;
  color: #333333;
  font-size: 10px;
  padding: 5px;
}
.sidebar-space .inner .label[data-v-35b40d34],
.sidebar-space .inner .result[data-v-35b40d34] {
  position: relative;
  line-height: 20px;
  white-space: nowrap;
}
.sidebar-space .inner .press[data-v-35b40d34] {
  width: 100px;
  background: #f2f2f2;
  margin: 5px 0;
  border-radius: 6px;
  overflow: hidden;
}
.sidebar-space .inner .press span[data-v-35b40d34] {
  display: block;
  height: 12px;
  background: #409eff;
}
.menuer-tabed[data-v-35b40d34] {
  position: relative;
}
.menuer-tabed .list[data-v-35b40d34] {
  overflow: hidden;
}
.menuer-tabed .list .item[data-v-35b40d34] {
  float: left;
}
.menuer-tabed .list .item .link span[data-v-35b40d34] {
  display: block;
}

.main-container[data-v-12c14b90] {
  margin-left: 200px !important;
}
.main-container .content[data-v-12c14b90] {
  margin: 15px;
  background: #fff;
}
.main-container .content.no-background[data-v-12c14b90] {
  background: none;
}


#wrapper[data-v-3f3bd0f9] {
  padding: 0 0 0 0px;
}


#wrapper[data-v-eb92d81c] {
  padding: 0 0 0 110px;
}


#wrapper[data-v-12a98d21] {
  padding: 0 0 0 0px;
}


#wrapper[data-v-2c3efbaf] { padding: 0 0 0 110px;
}


#wrapper[data-v-7e215c51] { padding: 0 0 0 110px;
}


#wrapper[data-v-eba4c226] { padding: 0 0 0 110px;
}

#wrapper[data-v-1495be60] {
  padding: 0 0 0 110px;
}
#wrapper #tdk[data-v-1495be60] {
  padding: 10px;
}


#wrapper[data-v-081dfb38] {
  padding: 0 0 0 110px;
}


#wrapper[data-v-14690bd2] { padding: 0 0 0 110px;
}


#wrapper[data-v-41699073] { padding: 0 0 0 110px;
}


#wrapper[data-v-15781740] { padding: 0 0 0 110px;
}


#wrapper[data-v-338678cf] { padding: 0 0 0 0px;
}

#wrapper[data-v-0d06ad29] {
  padding: 0 0 0 110px;
}

.ellsip {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
}
.el-table,
.el-button--small {
  font-size: 13px !important;
}
.diff-msg .el-message-box__content {
  padding: 10px 90px;
}
.diff-msg .el-message-box__content .el-message-box__input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 80px;
  position: relative;
  padding-top: 0;
}
.diff-msg .el-message-box__content .el-message-box__input::before {
  content: '补充发放 :';
  position: absolute;
  left: -6px;
  width: 80px;
  text-align: right;
}

.pictureWare .list .item .tit[data-v-34bd75e6] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0.5em;
}

