.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: 0.75s;
          animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  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 {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}
@-webkit-keyframes pulse2 {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.5, 1.5, 1.5);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse2 {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.5, 1.5, 1.5);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse2 {
  -webkit-animation-name: pulse2;
          animation-name: pulse2;
}
@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    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% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    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 {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
          animation-name: jello;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 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.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    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.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    opacity: 1;
    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.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    opacity: 1;
    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.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
          animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
          animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
          animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 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;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
          animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    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;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
          animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
          animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
          animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
          animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    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 {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    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 {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    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 {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    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 {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    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 {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
          animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
          animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
          animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
          animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
          animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    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;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    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;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
          animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
          animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
          animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
          animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
          animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
          animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
          animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
          animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
          animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    opacity: 1;
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    opacity: 1;
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    opacity: 1;
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 1;
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
          animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
          animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
          animation-name: slideOutUp;
}
/* 扩展动画 */
/* 添加自转 */
@-webkit-keyframes rollOneCount {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rollOneCount {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rollOneCount {
  -webkit-animation-name: rollOneCount;
  animation-name: rollOneCount;
}
/* 循环自转 */
@-webkit-keyframes rollInfinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rollInfinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rollInfinite {
  -webkit-animation-name: rollInfinite;
  animation-name: rollInfinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
/* 循环自转-逆向 */
@-webkit-keyframes rollInfinite2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rollInfinite2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.rollInfinite2 {
  -webkit-animation-name: rollInfinite2;
  animation-name: rollInfinite2;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
/* 放大消失 */
@-webkit-keyframes toBigFade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes toBigFade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.toBigFade {
  -webkit-animation-name: toBigFade;
  animation-name: toBigFade;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
/* 放大消失 */
@-webkit-keyframes fastShow {
  0% {
    opacity: 0;
  }
  0.0001% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fastShow {
  0% {
    opacity: 0;
  }
  0.0001% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fastShow {
  -webkit-animation-name: fastShow;
  animation-name: fastShow;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
/* 缩小进入 */
@-webkit-keyframes smallIn {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes smallIn {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.smallIn {
  -webkit-animation-name: smallIn;
  animation-name: smallIn;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

/* animation sets */
/* move from / to  */
.pt-page-moveToLeft {
  -webkit-animation: moveToLeft 0.6s ease both;
  animation: moveToLeft 0.6s ease both;
}
.pt-page-moveFromLeft {
  -webkit-animation: moveFromLeft 0.6s ease both;
  animation: moveFromLeft 0.6s ease both;
}
.pt-page-moveToRight {
  -webkit-animation: moveToRight 0.6s ease both;
  animation: moveToRight 0.6s ease both;
}
.pt-page-moveFromRight {
  -webkit-animation: moveFromRight 0.6s ease both;
  animation: moveFromRight 0.6s ease both;
}
.pt-page-moveToTop {
  -webkit-animation: moveToTop 0.6s ease both;
  animation: moveToTop 0.6s ease both;
}
.pt-page-moveFromTop {
  -webkit-animation: moveFromTop 0.6s ease both;
  animation: moveFromTop 0.6s ease both;
}
.pt-page-moveToBottom {
  -webkit-animation: moveToBottom 0.6s ease both;
  animation: moveToBottom 0.6s ease both;
}
.pt-page-moveFromBottom {
  -webkit-animation: moveFromBottom 0.6s ease both;
  animation: moveFromBottom 0.6s ease both;
}
/* fade */
.pt-page-fade {
  -webkit-animation: fade 0.7s ease both;
  animation: fade 0.7s ease both;
}
/* move from / to and fade */
.pt-page-moveToLeftFade {
  -webkit-animation: moveToLeftFade 0.7s ease both;
  animation: moveToLeftFade 0.7s ease both;
}
.pt-page-moveFromLeftFade {
  -webkit-animation: moveFromLeftFade 0.7s ease both;
  animation: moveFromLeftFade 0.7s ease both;
}
.pt-page-moveToRightFade {
  -webkit-animation: moveToRightFade 0.7s ease both;
  animation: moveToRightFade 0.7s ease both;
}
.pt-page-moveFromRightFade {
  -webkit-animation: moveFromRightFade 0.7s ease both;
  animation: moveFromRightFade 0.7s ease both;
}
.pt-page-moveToTopFade {
  -webkit-animation: moveToTopFade 0.7s ease both;
  animation: moveToTopFade 0.7s ease both;
}
.pt-page-moveFromTopFade {
  -webkit-animation: moveFromTopFade 0.7s ease both;
  animation: moveFromTopFade 0.7s ease both;
}
.pt-page-moveToBottomFade {
  -webkit-animation: moveToBottomFade 0.7s ease both;
  animation: moveToBottomFade 0.7s ease both;
}
.pt-page-moveFromBottomFade {
  -webkit-animation: moveFromBottomFade 0.7s ease both;
  animation: moveFromBottomFade 0.7s ease both;
}
/* move to with different easing */
.pt-page-moveToLeftEasing {
  -webkit-animation: moveToLeft 0.7s ease-in-out both;
  animation: moveToLeft 0.7s ease-in-out both;
}
.pt-page-moveToRightEasing {
  -webkit-animation: moveToRight 0.7s ease-in-out both;
  animation: moveToRight 0.7s ease-in-out both;
}
.pt-page-moveToTopEasing {
  -webkit-animation: moveToTop 0.7s ease-in-out both;
  animation: moveToTop 0.7s ease-in-out both;
}
.pt-page-moveToBottomEasing {
  -webkit-animation: moveToBottom 0.7s ease-in-out both;
  animation: moveToBottom 0.7s ease-in-out both;
}
/********************************* keyframes **************************************/
/* move from / to  */
@-webkit-keyframes moveToLeft {
  to {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes moveToLeft {
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveFromLeft {
  from {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes moveFromLeft {
  from {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveToRight {
  to {
    -webkit-transform: translateX(100%);
  }
}
@keyframes moveToRight {
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes moveFromRight {
  from {
    -webkit-transform: translateX(100%);
  }
}
@keyframes moveFromRight {
  from {
    transform: translateX(100%);
  }
}
@-webkit-keyframes moveToTop {
  to {
    -webkit-transform: translateY(-100%);
  }
}
@keyframes moveToTop {
  to {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveFromTop {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@keyframes moveFromTop {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveToBottom {
  to {
    -webkit-transform: translateY(100%);
  }
}
@keyframes moveToBottom {
  to {
    transform: translateY(100%);
  }
}
@-webkit-keyframes moveFromBottom {
  from {
    -webkit-transform: translateY(100%);
  }
}
@keyframes moveFromBottom {
  from {
    transform: translateY(100%);
  }
}
/* fade */
@-webkit-keyframes fade {
  to {
    opacity: 0.3;
  }
}
@keyframes fade {
  to {
    opacity: 0.3;
  }
}
/* move from / to and fade */
@-webkit-keyframes moveToLeftFade {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(-100%);
  }
}
@keyframes moveToLeftFade {
  to {
    opacity: 0.3;
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveFromLeftFade {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(-100%);
  }
}
@keyframes moveFromLeftFade {
  from {
    opacity: 0.3;
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveToRightFade {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(100%);
  }
}
@keyframes moveToRightFade {
  to {
    opacity: 0.3;
    transform: translateX(100%);
  }
}
@-webkit-keyframes moveFromRightFade {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(100%);
  }
}
@keyframes moveFromRightFade {
  from {
    opacity: 0.3;
    transform: translateX(100%);
  }
}
@-webkit-keyframes moveToTopFade {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(-100%);
  }
}
@keyframes moveToTopFade {
  to {
    opacity: 0.3;
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveFromTopFade {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(-100%);
  }
}
@keyframes moveFromTopFade {
  from {
    opacity: 0.3;
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveToBottomFade {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(100%);
  }
}
@keyframes moveToBottomFade {
  to {
    opacity: 0.3;
    transform: translateY(100%);
  }
}
@-webkit-keyframes moveFromBottomFade {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(100%);
  }
}
@keyframes moveFromBottomFade {
  from {
    opacity: 0.3;
    transform: translateY(100%);
  }
}
/* scale and fade */
.pt-page-scaleDown {
  -webkit-animation: scaleDown 0.7s ease both;
  animation: scaleDown 0.7s ease both;
}
.pt-page-scaleUp {
  -webkit-animation: scaleUp 0.7s ease both;
  animation: scaleUp 0.7s ease both;
}
.pt-page-scaleUpDown {
  -webkit-animation: scaleUpDown 0.5s ease both;
  animation: scaleUpDown 0.5s ease both;
}
.pt-page-scaleDownUp {
  -webkit-animation: scaleDownUp 0.5s ease both;
  animation: scaleDownUp 0.5s ease both;
}
.pt-page-scaleDownCenter {
  -webkit-animation: scaleDownCenter 0.4s ease-in both;
  animation: scaleDownCenter 0.4s ease-in both;
}
.pt-page-scaleUpCenter {
  -webkit-animation: scaleUpCenter 0.4s ease-out both;
  animation: scaleUpCenter 0.4s ease-out both;
}
/********************************* keyframes **************************************/
/* scale and fade */
@-webkit-keyframes scaleDown {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@keyframes scaleDown {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes scaleUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes scaleUpDown {
  from {
    opacity: 0;
    -webkit-transform: scale(1.2);
  }
}
@keyframes scaleUpDown {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes scaleDownUp {
  to {
    opacity: 0;
    -webkit-transform: scale(1.2);
  }
}
@keyframes scaleDownUp {
  to {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes scaleDownCenter {
  to {
    opacity: 0;
    -webkit-transform: scale(0.7);
  }
}
@keyframes scaleDownCenter {
  to {
    opacity: 0;
    transform: scale(0.7);
  }
}
@-webkit-keyframes scaleUpCenter {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
  }
}
@keyframes scaleUpCenter {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
}
/* rotate sides first and scale */
.pt-page-rotateRightSideFirst {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateRightSideFirst 0.8s both ease-in;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateRightSideFirst 0.8s both ease-in;
  transform-origin: 0% 50%;
  animation: rotateRightSideFirst 0.8s both ease-in;
}
.pt-page-rotateLeftSideFirst {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateLeftSideFirst 0.8s both ease-in;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateLeftSideFirst 0.8s both ease-in;
  transform-origin: 100% 50%;
  animation: rotateLeftSideFirst 0.8s both ease-in;
}
.pt-page-rotateTopSideFirst {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateTopSideFirst 0.8s both ease-in;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateTopSideFirst 0.8s both ease-in;
  transform-origin: 50% 100%;
  animation: rotateTopSideFirst 0.8s both ease-in;
}
.pt-page-rotateBottomSideFirst {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateBottomSideFirst 0.8s both ease-in;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateBottomSideFirst 0.8s both ease-in;
  transform-origin: 50% 0%;
  animation: rotateBottomSideFirst 0.8s both ease-in;
}
/* flip */
.pt-page-flipOutRight {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipOutRight 0.5s both ease-in;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipOutRight 0.5s both ease-in;
  transform-origin: 50% 50%;
  animation: flipOutRight 0.5s both ease-in;
}
.pt-page-flipInLeft {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipInLeft 0.5s both ease-out;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipInLeft 0.5s both ease-out;
  transform-origin: 50% 50%;
  animation: flipInLeft 0.5s both ease-out;
}
.pt-page-flipOutLeft {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipOutLeft 0.5s both ease-in;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipOutLeft 0.5s both ease-in;
  transform-origin: 50% 50%;
  animation: flipOutLeft 0.5s both ease-in;
}
.pt-page-flipInRight {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipInRight 0.5s both ease-out;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipInRight 0.5s both ease-out;
  transform-origin: 50% 50%;
  animation: flipInRight 0.5s both ease-out;
}
.pt-page-flipOutTop {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipOutTop 0.5s both ease-in;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipOutTop 0.5s both ease-in;
  transform-origin: 50% 50%;
  animation: flipOutTop 0.5s both ease-in;
}
.pt-page-flipInBottom {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipInBottom 0.5s both ease-out;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipInBottom 0.5s both ease-out;
  transform-origin: 50% 50%;
  animation: flipInBottom 0.5s both ease-out;
}
.pt-page-flipOutBottom {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipOutBottom 0.5s both ease-in;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipOutBottom 0.5s both ease-in;
  transform-origin: 50% 50%;
  animation: flipOutBottom 0.5s both ease-in;
}
.pt-page-flipInTop {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipInTop 0.5s both ease-out;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipInTop 0.5s both ease-out;
  transform-origin: 50% 50%;
  animation: flipInTop 0.5s both ease-out;
}
/* rotate fall */
.pt-page-rotateFall {
  -webkit-transform-origin: 0% 0%;
  -webkit-animation: rotateFall 1s both ease-in;
  -moz-transform-origin: 0% 0%;
  -moz-animation: rotateFall 1s both ease-in;
  transform-origin: 0% 0%;
  animation: rotateFall 1s both ease-in;
}
/* rotate newspaper */
.pt-page-rotateOutNewspaper {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: rotateOutNewspaper 0.5s both ease-in;
  -moz-transform-origin: 50% 50%;
  -moz-animation: rotateOutNewspaper 0.5s both ease-in;
  transform-origin: 50% 50%;
  animation: rotateOutNewspaper 0.5s both ease-in;
}
.pt-page-rotateInNewspaper {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: rotateInNewspaper 0.5s both ease-out;
  -moz-transform-origin: 50% 50%;
  -moz-animation: rotateInNewspaper 0.5s both ease-out;
  transform-origin: 50% 50%;
  animation: rotateInNewspaper 0.5s both ease-out;
}
/* push */
.pt-page-rotatePushLeft {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotatePushLeft 0.8s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotatePushLeft 0.8s both ease;
  transform-origin: 0% 50%;
  animation: rotatePushLeft 0.8s both ease;
}
.pt-page-rotatePushRight {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotatePushRight 0.8s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotatePushRight 0.8s both ease;
  transform-origin: 100% 50%;
  animation: rotatePushRight 0.8s both ease;
}
.pt-page-rotatePushTop {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotatePushTop 0.8s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotatePushTop 0.8s both ease;
  transform-origin: 50% 0%;
  animation: rotatePushTop 0.8s both ease;
}
.pt-page-rotatePushBottom {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotatePushBottom 0.8s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotatePushBottom 0.8s both ease;
  transform-origin: 50% 100%;
  animation: rotatePushBottom 0.8s both ease;
}
/* pull */
.pt-page-rotatePullRight {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotatePullRight 0.5s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotatePullRight 0.5s both ease;
  transform-origin: 100% 50%;
  animation: rotatePullRight 0.5s both ease;
}
.pt-page-rotatePullLeft {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotatePullLeft 0.5s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotatePullLeft 0.5s both ease;
  transform-origin: 0% 50%;
  animation: rotatePullLeft 0.5s both ease;
}
.pt-page-rotatePullTop {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotatePullTop 0.5s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotatePullTop 0.5s both ease;
  transform-origin: 50% 0%;
  animation: rotatePullTop 0.5s both ease;
}
.pt-page-rotatePullBottom {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotatePullBottom 0.5s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotatePullBottom 0.5s both ease;
  transform-origin: 50% 100%;
  animation: rotatePullBottom 0.5s both ease;
}
/* fold */
.pt-page-rotateFoldRight {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateFoldRight 0.7s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateFoldRight 0.7s both ease;
  transform-origin: 0% 50%;
  animation: rotateFoldRight 0.7s both ease;
}
.pt-page-rotateFoldLeft {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateFoldLeft 0.7s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateFoldLeft 0.7s both ease;
  transform-origin: 100% 50%;
  animation: rotateFoldLeft 0.7s both ease;
}
.pt-page-rotateFoldTop {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateFoldTop 0.7s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateFoldTop 0.7s both ease;
  transform-origin: 50% 100%;
  animation: rotateFoldTop 0.7s both ease;
}
.pt-page-rotateFoldBottom {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateFoldBottom 0.7s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateFoldBottom 0.7s both ease;
  transform-origin: 50% 0%;
  animation: rotateFoldBottom 0.7s both ease;
}
/* unfold */
.pt-page-rotateUnfoldLeft {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateUnfoldLeft 0.7s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateUnfoldLeft 0.7s both ease;
  transform-origin: 100% 50%;
  animation: rotateUnfoldLeft 0.7s both ease;
}
.pt-page-rotateUnfoldRight {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateUnfoldRight 0.7s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateUnfoldRight 0.7s both ease;
  transform-origin: 0% 50%;
  animation: rotateUnfoldRight 0.7s both ease;
}
.pt-page-rotateUnfoldTop {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateUnfoldTop 0.7s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateUnfoldTop 0.7s both ease;
  transform-origin: 50% 100%;
  animation: rotateUnfoldTop 0.7s both ease;
}
.pt-page-rotateUnfoldBottom {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateUnfoldBottom 0.7s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateUnfoldBottom 0.7s both ease;
  transform-origin: 50% 0%;
  animation: rotateUnfoldBottom 0.7s both ease;
}
/* room walls */
.pt-page-rotateRoomLeftOut {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateRoomLeftOut 0.8s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateRoomLeftOut 0.8s both ease;
  transform-origin: 100% 50%;
  animation: rotateRoomLeftOut 0.8s both ease;
}
.pt-page-rotateRoomLeftIn {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateRoomLeftIn 0.8s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateRoomLeftIn 0.8s both ease;
  transform-origin: 0% 50%;
  animation: rotateRoomLeftIn 0.8s both ease;
}
.pt-page-rotateRoomRightOut {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateRoomRightOut 0.8s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateRoomRightOut 0.8s both ease;
  transform-origin: 0% 50%;
  animation: rotateRoomRightOut 0.8s both ease;
}
.pt-page-rotateRoomRightIn {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateRoomRightIn 0.8s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateRoomRightIn 0.8s both ease;
  transform-origin: 100% 50%;
  animation: rotateRoomRightIn 0.8s both ease;
}
.pt-page-rotateRoomTopOut {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateRoomTopOut 0.8s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateRoomTopOut 0.8s both ease;
  transform-origin: 50% 100%;
  animation: rotateRoomTopOut 0.8s both ease;
}
.pt-page-rotateRoomTopIn {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateRoomTopIn 0.8s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateRoomTopIn 0.8s both ease;
  transform-origin: 50% 0%;
  animation: rotateRoomTopIn 0.8s both ease;
}
.pt-page-rotateRoomBottomOut {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateRoomBottomOut 0.8s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateRoomBottomOut 0.8s both ease;
  transform-origin: 50% 0%;
  animation: rotateRoomBottomOut 0.8s both ease;
}
.pt-page-rotateRoomBottomIn {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateRoomBottomIn 0.8s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateRoomBottomIn 0.8s both ease;
  transform-origin: 50% 100%;
  animation: rotateRoomBottomIn 0.8s both ease;
}
/* cube */
.pt-page-rotateCubeLeftOut {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCubeLeftOut 0.6s both ease-in;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateCubeLeftOut 0.6s both ease-in;
  transform-origin: 100% 50%;
  animation: rotateCubeLeftOut 0.6s both ease-in;
}
.pt-page-rotateCubeLeftIn {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCubeLeftIn 0.6s both ease-in;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateCubeLeftIn 0.6s both ease-in;
  transform-origin: 0% 50%;
  animation: rotateCubeLeftIn 0.6s both ease-in;
}
.pt-page-rotateCubeRightOut {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCubeRightOut 0.6s both ease-in;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateCubeRightOut 0.6s both ease-in;
  transform-origin: 0% 50%;
  animation: rotateCubeRightOut 0.6s both ease-in;
}
.pt-page-rotateCubeRightIn {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCubeRightIn 0.6s both ease-in;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateCubeRightIn 0.6s both ease-in;
  transform-origin: 100% 50%;
  animation: rotateCubeRightIn 0.6s both ease-in;
}
.pt-page-rotateCubeTopOut {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCubeTopOut 0.6s both ease-in;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateCubeTopOut 0.6s both ease-in;
  transform-origin: 50% 100%;
  animation: rotateCubeTopOut 0.6s both ease-in;
}
.pt-page-rotateCubeTopIn {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCubeTopIn 0.6s both ease-in;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateCubeTopIn 0.6s both ease-in;
  transform-origin: 50% 0%;
  animation: rotateCubeTopIn 0.6s both ease-in;
}
.pt-page-rotateCubeBottomOut {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCubeBottomOut 0.6s both ease-in;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateCubeBottomOut 0.6s both ease-in;
  transform-origin: 50% 0%;
  animation: rotateCubeBottomOut 0.6s both ease-in;
}
.pt-page-rotateCubeBottomIn {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCubeBottomIn 0.6s both ease-in;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateCubeBottomIn 0.6s both ease-in;
  transform-origin: 50% 100%;
  animation: rotateCubeBottomIn 0.6s both ease-in;
}
/* carousel */
.pt-page-rotateCarouselLeftOut {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCarouselLeftOut 0.8s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateCarouselLeftOut 0.8s both ease;
  transform-origin: 100% 50%;
  animation: rotateCarouselLeftOut 0.8s both ease;
}
.pt-page-rotateCarouselLeftIn {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCarouselLeftIn 0.8s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateCarouselLeftIn 0.8s both ease;
  transform-origin: 0% 50%;
  animation: rotateCarouselLeftIn 0.8s both ease;
}
.pt-page-rotateCarouselRightOut {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCarouselRightOut 0.8s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateCarouselRightOut 0.8s both ease;
  transform-origin: 0% 50%;
  animation: rotateCarouselRightOut 0.8s both ease;
}
.pt-page-rotateCarouselRightIn {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCarouselRightIn 0.8s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateCarouselRightIn 0.8s both ease;
  transform-origin: 100% 50%;
  animation: rotateCarouselRightIn 0.8s both ease;
}
.pt-page-rotateCarouselTopOut {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCarouselTopOut 0.8s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateCarouselTopOut 0.8s both ease;
  transform-origin: 50% 100%;
  animation: rotateCarouselTopOut 0.8s both ease;
}
.pt-page-rotateCarouselTopIn {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCarouselTopIn 0.8s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateCarouselTopIn 0.8s both ease;
  transform-origin: 50% 0%;
  animation: rotateCarouselTopIn 0.8s both ease;
}
.pt-page-rotateCarouselBottomOut {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCarouselBottomOut 0.8s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateCarouselBottomOut 0.8s both ease;
  transform-origin: 50% 0%;
  animation: rotateCarouselBottomOut 0.8s both ease;
}
.pt-page-rotateCarouselBottomIn {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCarouselBottomIn 0.8s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateCarouselBottomIn 0.8s both ease;
  transform-origin: 50% 100%;
  animation: rotateCarouselBottomIn 0.8s both ease;
}
/* sides */
.pt-page-rotateSidesOut {
  -webkit-transform-origin: -50% 50%;
  -webkit-animation: rotateSidesOut 0.5s both ease-in;
  -moz-transform-origin: -50% 50%;
  -moz-animation: rotateSidesOut 0.5s both ease-in;
  transform-origin: -50% 50%;
  animation: rotateSidesOut 0.5s both ease-in;
}
.pt-page-rotateSidesIn {
  -webkit-transform-origin: 150% 50%;
  -webkit-animation: rotateSidesIn 0.5s both ease-out;
  -moz-transform-origin: 150% 50%;
  -moz-animation: rotateSidesIn 0.5s both ease-out;
  transform-origin: 150% 50%;
  animation: rotateSidesIn 0.5s both ease-out;
}
/* slide */
.pt-page-rotateSlideOut {
  -webkit-animation: rotateSlideOut 1s both ease;
  animation: rotateSlideOut 1s both ease;
}
.pt-page-rotateSlideIn {
  -webkit-animation: rotateSlideIn 1s both ease;
  animation: rotateSlideIn 1s both ease;
}
/********************************* keyframes **************************************/
/* rotate sides first and scale */
@-webkit-keyframes rotateRightSideFirst {
  40% {
    -webkit-transform: rotateY(15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@keyframes rotateRightSideFirst {
  40% {
    transform: rotateY(15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@-webkit-keyframes rotateLeftSideFirst {
  40% {
    -webkit-transform: rotateY(-15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@keyframes rotateLeftSideFirst {
  40% {
    transform: rotateY(-15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@-webkit-keyframes rotateTopSideFirst {
  40% {
    -webkit-transform: rotateX(15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@keyframes rotateTopSideFirst {
  40% {
    transform: rotateX(15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@-webkit-keyframes rotateBottomSideFirst {
  40% {
    -webkit-transform: rotateX(-15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@keyframes rotateBottomSideFirst {
  40% {
    transform: rotateX(-15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
/* flip */
@-webkit-keyframes flipOutRight {
  to {
    -webkit-transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2;
  }
}
@keyframes flipOutRight {
  to {
    transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipInLeft {
  from {
    -webkit-transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2;
  }
}
@keyframes flipInLeft {
  from {
    transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipOutLeft {
  to {
    -webkit-transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2;
  }
}
@keyframes flipOutLeft {
  to {
    transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipInRight {
  from {
    -webkit-transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2;
  }
}
@keyframes flipInRight {
  from {
    transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipOutTop {
  to {
    -webkit-transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2;
  }
}
@keyframes flipOutTop {
  to {
    transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipInBottom {
  from {
    -webkit-transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2;
  }
}
@keyframes flipInBottom {
  from {
    transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipOutBottom {
  to {
    -webkit-transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2;
  }
}
@keyframes flipOutBottom {
  to {
    transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipInTop {
  from {
    -webkit-transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2;
  }
}
@keyframes flipInTop {
  from {
    transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2;
  }
}
/* fall */
@-webkit-keyframes rotateFall {
  0% {
    -webkit-transform: rotateZ(0deg);
  }
  20% {
    -webkit-transform: rotateZ(10deg);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: rotateZ(17deg);
  }
  60% {
    -webkit-transform: rotateZ(16deg);
  }
  100% {
    -webkit-transform: translateY(100%) rotateZ(17deg);
  }
}
@keyframes rotateFall {
  0% {
    transform: rotateZ(0deg);
  }
  20% {
    transform: rotateZ(10deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    transform: rotateZ(17deg);
  }
  60% {
    transform: rotateZ(16deg);
  }
  100% {
    transform: translateY(100%) rotateZ(17deg);
  }
}
/* newspaper */
@-webkit-keyframes rotateOutNewspaper {
  to {
    -webkit-transform: translateZ(-3000px) rotateZ(360deg);
    opacity: 0;
  }
}
@keyframes rotateOutNewspaper {
  to {
    transform: translateZ(-3000px) rotateZ(360deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateInNewspaper {
  from {
    -webkit-transform: translateZ(-3000px) rotateZ(-360deg);
    opacity: 0;
  }
}
@keyframes rotateInNewspaper {
  from {
    transform: translateZ(-3000px) rotateZ(-360deg);
    opacity: 0;
  }
}
/* push */
@-webkit-keyframes rotatePushLeft {
  to {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
  }
}
@keyframes rotatePushLeft {
  to {
    opacity: 0;
    transform: rotateY(90deg);
  }
}
@-webkit-keyframes rotatePushRight {
  to {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
  }
}
@keyframes rotatePushRight {
  to {
    opacity: 0;
    transform: rotateY(-90deg);
  }
}
@-webkit-keyframes rotatePushTop {
  to {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
  }
}
@keyframes rotatePushTop {
  to {
    opacity: 0;
    transform: rotateX(-90deg);
  }
}
@-webkit-keyframes rotatePushBottom {
  to {
    opacity: 0;
    -webkit-transform: rotateX(90deg);
  }
}
@keyframes rotatePushBottom {
  to {
    opacity: 0;
    transform: rotateX(90deg);
  }
}
/* pull */
@-webkit-keyframes rotatePullRight {
  from {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
  }
}
@keyframes rotatePullRight {
  from {
    opacity: 0;
    transform: rotateY(-90deg);
  }
}
@-webkit-keyframes rotatePullLeft {
  from {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
  }
}
@keyframes rotatePullLeft {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }
}
@-webkit-keyframes rotatePullTop {
  from {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
  }
}
@keyframes rotatePullTop {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
  }
}
@-webkit-keyframes rotatePullBottom {
  from {
    opacity: 0;
    -webkit-transform: rotateX(90deg);
  }
}
@keyframes rotatePullBottom {
  from {
    opacity: 0;
    transform: rotateX(90deg);
  }
}
/* fold */
@-webkit-keyframes rotateFoldRight {
  to {
    opacity: 0;
    -webkit-transform: translateX(100%) rotateY(90deg);
  }
}
@keyframes rotateFoldRight {
  to {
    opacity: 0;
    transform: translateX(100%) rotateY(90deg);
  }
}
@-webkit-keyframes rotateFoldLeft {
  to {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
  }
}
@keyframes rotateFoldLeft {
  to {
    opacity: 0;
    transform: translateX(-100%) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateFoldTop {
  to {
    opacity: 0;
    -webkit-transform: translateY(-100%) rotateX(90deg);
  }
}
@keyframes rotateFoldTop {
  to {
    opacity: 0;
    transform: translateY(-100%) rotateX(90deg);
  }
}
@-webkit-keyframes rotateFoldBottom {
  to {
    opacity: 0;
    -webkit-transform: translateY(100%) rotateX(-90deg);
  }
}
@keyframes rotateFoldBottom {
  to {
    opacity: 0;
    transform: translateY(100%) rotateX(-90deg);
  }
}
/* unfold */
@-webkit-keyframes rotateUnfoldLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
  }
}
@keyframes rotateUnfoldLeft {
  from {
    opacity: 0;
    transform: translateX(-100%) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateUnfoldRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%) rotateY(90deg);
  }
}
@keyframes rotateUnfoldRight {
  from {
    opacity: 0;
    transform: translateX(100%) rotateY(90deg);
  }
}
@-webkit-keyframes rotateUnfoldTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%) rotateX(90deg);
  }
}
@keyframes rotateUnfoldTop {
  from {
    opacity: 0;
    transform: translateY(-100%) rotateX(90deg);
  }
}
@-webkit-keyframes rotateUnfoldBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%) rotateX(-90deg);
  }
}
@keyframes rotateUnfoldBottom {
  from {
    opacity: 0;
    transform: translateY(100%) rotateX(-90deg);
  }
}
/* room walls */
@-webkit-keyframes rotateRoomLeftOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(-100%) rotateY(90deg);
  }
}
@keyframes rotateRoomLeftOut {
  to {
    opacity: 0.3;
    transform: translateX(-100%) rotateY(90deg);
  }
}
@-webkit-keyframes rotateRoomLeftIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(100%) rotateY(-90deg);
  }
}
@keyframes rotateRoomLeftIn {
  from {
    opacity: 0.3;
    transform: translateX(100%) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateRoomRightOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(100%) rotateY(-90deg);
  }
}
@keyframes rotateRoomRightOut {
  to {
    opacity: 0.3;
    transform: translateX(100%) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateRoomRightIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(-100%) rotateY(90deg);
  }
}
@keyframes rotateRoomRightIn {
  from {
    opacity: 0.3;
    transform: translateX(-100%) rotateY(90deg);
  }
}
@-webkit-keyframes rotateRoomTopOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(-100%) rotateX(-90deg);
  }
}
@keyframes rotateRoomTopOut {
  to {
    opacity: 0.3;
    transform: translateY(-100%) rotateX(-90deg);
  }
}
@-webkit-keyframes rotateRoomTopIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(100%) rotateX(90deg);
  }
}
@keyframes rotateRoomTopIn {
  from {
    opacity: 0.3;
    transform: translateY(100%) rotateX(90deg);
  }
}
@-webkit-keyframes rotateRoomBottomOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(100%) rotateX(90deg);
  }
}
@keyframes rotateRoomBottomOut {
  to {
    opacity: 0.3;
    transform: translateY(100%) rotateX(90deg);
  }
}
@-webkit-keyframes rotateRoomBottomIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(-100%) rotateX(-90deg);
  }
}
@keyframes rotateRoomBottomIn {
  from {
    opacity: 0.3;
    transform: translateY(-100%) rotateX(-90deg);
  }
}
/* cube */
@-webkit-keyframes rotateCubeLeftOut {
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
  }
}
@keyframes rotateCubeLeftOut {
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);
  }
  100% {
    opacity: 0.3;
    transform: translateX(-100%) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateCubeLeftIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translateX(100%) rotateY(90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(50%) translateZ(-200px) rotateY(45deg);
  }
}
@keyframes rotateCubeLeftIn {
  0% {
    opacity: 0.3;
    transform: translateX(100%) rotateY(90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateX(50%) translateZ(-200px) rotateY(45deg);
  }
}
@-webkit-keyframes rotateCubeRightOut {
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(50%) translateZ(-200px) rotateY(45deg);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateX(100%) rotateY(90deg);
  }
}
@keyframes rotateCubeRightOut {
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateX(50%) translateZ(-200px) rotateY(45deg);
  }
  100% {
    opacity: 0.3;
    transform: translateX(100%) rotateY(90deg);
  }
}
@-webkit-keyframes rotateCubeRightIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);
  }
}
@keyframes rotateCubeRightIn {
  0% {
    opacity: 0.3;
    transform: translateX(-100%) rotateY(-90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);
  }
}
@-webkit-keyframes rotateCubeTopOut {
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateY(-100%) rotateX(90deg);
  }
}
@keyframes rotateCubeTopOut {
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
  }
  100% {
    opacity: 0.3;
    transform: translateY(-100%) rotateX(90deg);
  }
}
@-webkit-keyframes rotateCubeTopIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translateY(100%) rotateX(-90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
  }
}
@keyframes rotateCubeTopIn {
  0% {
    opacity: 0.3;
    transform: translateY(100%) rotateX(-90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
  }
}
@-webkit-keyframes rotateCubeBottomOut {
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateY(100%) rotateX(-90deg);
  }
}
@keyframes rotateCubeBottomOut {
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
  }
  100% {
    opacity: 0.3;
    transform: translateY(100%) rotateX(-90deg);
  }
}
@-webkit-keyframes rotateCubeBottomIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translateY(-100%) rotateX(90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
  }
}
@keyframes rotateCubeBottomIn {
  0% {
    opacity: 0.3;
    transform: translateY(-100%) rotateX(90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
  }
}
/* carousel */
@-webkit-keyframes rotateCarouselLeftOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(-150%) scale(0.4) rotateY(-65deg);
  }
}
@keyframes rotateCarouselLeftOut {
  to {
    opacity: 0.3;
    transform: translateX(-150%) scale(0.4) rotateY(-65deg);
  }
}
@-webkit-keyframes rotateCarouselLeftIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(200%) scale(0.4) rotateY(65deg);
  }
}
@keyframes rotateCarouselLeftIn {
  from {
    opacity: 0.3;
    transform: translateX(200%) scale(0.4) rotateY(65deg);
  }
}
@-webkit-keyframes rotateCarouselRightOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(200%) scale(0.4) rotateY(65deg);
  }
}
@keyframes rotateCarouselRightOut {
  to {
    opacity: 0.3;
    transform: translateX(200%) scale(0.4) rotateY(65deg);
  }
}
@-webkit-keyframes rotateCarouselRightIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(-200%) scale(0.4) rotateY(-65deg);
  }
}
@keyframes rotateCarouselRightIn {
  from {
    opacity: 0.3;
    transform: translateX(-200%) scale(0.4) rotateY(-65deg);
  }
}
@-webkit-keyframes rotateCarouselTopOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(-200%) scale(0.4) rotateX(65deg);
  }
}
@keyframes rotateCarouselTopOut {
  to {
    opacity: 0.3;
    transform: translateY(-200%) scale(0.4) rotateX(65deg);
  }
}
@-webkit-keyframes rotateCarouselTopIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(200%) scale(0.4) rotateX(-65deg);
  }
}
@keyframes rotateCarouselTopIn {
  from {
    opacity: 0.3;
    transform: translateY(200%) scale(0.4) rotateX(-65deg);
  }
}
@-webkit-keyframes rotateCarouselBottomOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(200%) scale(0.4) rotateX(-65deg);
  }
}
@keyframes rotateCarouselBottomOut {
  to {
    opacity: 0.3;
    transform: translateY(200%) scale(0.4) rotateX(-65deg);
  }
}
@-webkit-keyframes rotateCarouselBottomIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(-200%) scale(0.4) rotateX(65deg);
  }
}
@keyframes rotateCarouselBottomIn {
  from {
    opacity: 0.3;
    transform: translateY(-200%) scale(0.4) rotateX(65deg);
  }
}
/* sides */
@-webkit-keyframes rotateSidesOut {
  to {
    opacity: 0;
    -webkit-transform: translateZ(-500px) rotateY(90deg);
  }
}
@keyframes rotateSidesOut {
  to {
    opacity: 0;
    transform: translateZ(-500px) rotateY(90deg);
  }
}
@-webkit-keyframes rotateSidesIn {
  from {
    opacity: 0;
    -webkit-transform: translateZ(-500px) rotateY(-90deg);
  }
}
@keyframes rotateSidesIn {
  from {
    opacity: 0;
    transform: translateZ(-500px) rotateY(-90deg);
  }
}
/* slide */
@-webkit-keyframes rotateSlideOut {
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes rotateSlideOut {
  25% {
    opacity: 0.5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes rotateSlideIn {
  0%,
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@keyframes rotateSlideIn {
  0%,
  25% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: 0.5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
/* animation delay classes */
.pt-page-delay100 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.pt-page-delay180 {
  -webkit-animation-delay: 0.18s;
  animation-delay: 0.18s;
}
.pt-page-delay200 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.pt-page-delay300 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.pt-page-delay400 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.pt-page-delay500 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.pt-page-delay700 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.pt-page-delay1000 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
/* 扩展 */
/* 3D2 cube */
.pt-page-rotateCubeLeftOut2 {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCubeLeftOut2 0.5s both;
  transform-origin: 100% 50%;
  animation: rotateCubeLeftOut2 0.5s both;
}
.pt-page-rotateCubeLeftIn2 {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCubeLeftIn2 0.5s both;
  transform-origin: 0% 50%;
  animation: rotateCubeLeftIn2 0.5s both;
}
.pt-page-rotateCubeRightOut2 {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCubeRightOut2 0.5s both;
  transform-origin: 0% 50%;
  animation: rotateCubeRightOut2 0.5s both;
}
.pt-page-rotateCubeRightIn2 {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCubeRightIn2 0.5s both;
  transform-origin: 100% 50%;
  animation: rotateCubeRightIn2 0.5s both;
}
/* 3D2 cube */
@-webkit-keyframes rotateCubeLeftOut2 {
  0% {
    transform: translateX(0) translateZ(-50px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%) translateZ(0px) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateCubeLeftIn2 {
  0% {
    transform: translateX(100%) translateZ(-50px) rotateY(90deg);
  }
  100% {
    transform: translateX(0) translateZ(0px) rotateY(0deg);
  }
}
@-webkit-keyframes rotateCubeRightOut2 {
  0% {
    transform: translateX(0) translateZ(-50px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) translateZ(0px) rotateY(90deg);
  }
}
@-webkit-keyframes rotateCubeRightIn2 {
  0% {
    transform: translateX(-100%) translateZ(-50px) rotateY(-90deg);
  }
  100% {
    transform: translateX(0) translateZ(0px) rotateY(0deg);
  }
}
/* 3D3 cube */
.pt-page-rotateCubeTopOut3 {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCubeTopOut3 0.5s both;
  transform-origin: 50% 100%;
  animation: rotateCubeTopOut3 0.5s both;
}
.pt-page-rotateCubeTopIn3 {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCubeTopIn3 0.5s both;
  transform-origin: 50% 0%;
  animation: rotateCubeTopIn3 0.5s both;
}
.pt-page-rotateCubeDownOut3 {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCubeDownOut3 0.5s both;
  transform-origin: 50% 0%;
  animation: rotateCubeDownOut3 0.5s both;
}
.pt-page-rotateCubeDownIn3 {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCubeDownIn3 0.5s both;
  transform-origin: 50% 100%;
  animation: rotateCubeDownIn3 0.5s both;
}
/* 3D3 cube */
@-webkit-keyframes rotateCubeTopOut3 {
  0% {
    transform: translateY(0) translateZ(-50px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%) translateZ(0px) rotateX(90deg);
  }
}
@-webkit-keyframes rotateCubeTopIn3 {
  0% {
    transform: translateY(100%) translateZ(-50px) rotateX(-90deg);
  }
  100% {
    transform: translateY(0) translateZ(0px) rotateX(0deg);
  }
}
@-webkit-keyframes rotateCubeDownOut3 {
  0% {
    transform: translateY(0) translateZ(-50px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100%) translateZ(0px) rotateX(-90deg);
  }
}
@-webkit-keyframes rotateCubeDownIn3 {
  0% {
    transform: translateY(-100%) translateZ(-50px) rotateX(90deg);
  }
  100% {
    transform: translateY(0) translateZ(0px) rotateX(0deg);
  }
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-theme-simple {
  /*滚动条*/
}
.h5ds-theme-simple #App .ant-input,
.h5ds-theme-simple #App .ant-input-number-input,
.h5ds-theme-simple #App .ant-input-number {
  background: #e7e7e7;
  color: #333;
  border-radius: 0;
}
.h5ds-theme-simple #App .ant-input-number-handler-wrap {
  border-radius: 0;
  background: #e7e7e7;
  border-color: #999;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-addbtn {
  background: #fff;
  border-color: #999;
  color: #999;
}
.h5ds-theme-simple #App .ant-radio-button-wrapper {
  background: #fff;
  color: #999;
}
.h5ds-theme-simple #App .ant-radio-button-wrapper-checked {
  background: #40a9ff;
  color: #fff;
}
.h5ds-theme-simple #App .ant-select-selection {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple #App .ant-select-selection .ant-select-arrow {
  color: #666;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-item {
  background: #e7e7e7;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-item .h5ds-layout-setitem-name {
  color: #999;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-item.h5ds-basic-animateset-active {
  background: #40a9ff;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-item.h5ds-basic-animateset-active .h5ds-layout-setitem-name {
  color: #fff;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-item .h5ds-layout-setitem-content {
  color: #000;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-btndel,
.h5ds-theme-simple #App .h5ds-basic-animateset-btnset {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-layout-setitem-name {
  color: #666;
}
.h5ds-theme-simple .h5ds-modal-source {
  background: #fff;
}
.h5ds-theme-simple .h5ds-modal.h5ds-modal-hastitle .h5ds-modal-title .h5ds-modal-title-icon {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-source .h5ds-source-content .h5ds-source-item {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar-track {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 100px;
}
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar-thumb:window-inactive {
  background: #999;
}
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar-button:vertical:decrement,
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #999;
}
.h5ds-theme-simple div::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-theme-simple div::-webkit-scrollbar-track {
  background: #e7e7e7;
}
.h5ds-theme-simple div::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 100px;
}
.h5ds-theme-simple div::-webkit-scrollbar-thumb:window-inactive {
  background: #999;
}
.h5ds-theme-simple div::-webkit-scrollbar-button:vertical:decrement,
.h5ds-theme-simple div::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #999;
}
.h5ds-theme-simple .h5ds-layout-frame {
  background: #fff;
}
.h5ds-theme-simple .h5ds-header {
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
.h5ds-theme-simple .h5ds-header .h5ds-publish-box .h5ds-ico {
  color: #666;
}
.h5ds-theme-simple .h5ds-header .h5ds-publish-box a {
  color: #666;
}
.h5ds-theme-simple .h5ds-header .h5ds-h5set .h5ds-btn-yellow {
  color: #fff;
}
.h5ds-theme-simple .h5ds-header .h5ds-h5type {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-header .h5ds-h5type a {
  color: #666;
}
.h5ds-theme-simple .h5ds-header .h5ds-h5type a.active {
  color: #fff;
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-header .h5ds-logo a {
  color: #000;
}
.h5ds-theme-simple .h5ds-header .h5ds-logo span {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-layermenu a {
  color: #666;
}
.h5ds-theme-simple .h5ds-pagelist {
  background: #e7e7e7;
  box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.2);
}
.h5ds-theme-simple .h5ds-pagelist .h5ds-pagelist-pages .h5ds-pagelist-page-item {
  background: #fff;
}
.h5ds-theme-simple .h5ds-pagelist .h5ds-pagelist-pages .h5ds-pagelist-page-info a {
  background: #40a9ff;
  color: #fff;
}
.h5ds-theme-simple .h5ds-pagelist .h5ds-pagelist-pages .h5ds-pagelist-active:after {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-pagelist .h5ds-pagelist-btn li {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5ds-pagelist .h5ds-pagelist-btn li.h5ds-active {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-center {
  background: #fff;
}
.h5ds-theme-simple .h5ds-center .h5ds-ruler-line canvas {
  background: #f8f8f8;
}
.h5ds-theme-simple .h5ds-center .h5ds-canvas-border {
  border: 10000px solid rgba(217, 217, 217, 0.4);
}
.h5ds-theme-simple .h5ds-timeline-box {
  background: #fff;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider::-webkit-scrollbar-track {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider::-webkit-scrollbar-thumb {
  background: #999;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider::-webkit-scrollbar-thumb:window-inactive {
  background: #999;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider::-webkit-scrollbar-button:vertical:decrement,
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider::-webkit-scrollbar-button:vertical:increment {
  background: #999;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline {
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-header .h5ds-timeline-bar {
  border-color: #666;
  background: rgba(255, 255, 255, 0.3);
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-header .h5ds-timeline-bar::before {
  background: #666;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-footer .h5ds-timeline-right {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-scale li span {
  color: #999;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-scale li::before {
  background: #999;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-scale li .h5ds-timeline-dot {
  background: #000;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-ico {
  color: #333;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-btn {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-left {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left li {
  background: #fff;
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left .h5ds-timeline-active {
  background: #40a9ff;
  border-color: #fff;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-footer .h5ds-timeline-left {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-item1 {
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right li {
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-canvas {
  background: #fff;
}
.h5ds-theme-simple .h5ds-layerlist {
  background: #fff;
}
.h5ds-theme-simple .h5ds-layerlist h1 span {
  color: #333;
}
.h5ds-theme-simple .h5ds-layerlist .h5ds-ico {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-layerlist ul {
  border-top: 1px solid #999;
}
.h5ds-theme-simple .h5ds-layerlist ul .h5ds-layerlist-active {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-layerlist ul .h5ds-layerlist-active span {
  color: #fff;
}
.h5ds-theme-simple .h5ds-layerlist ul .h5ds-layerlist-active .h5ds-layerlist-locklayer .h5ds-ico {
  color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-layerlist ul li {
  background: #fff;
  color: #333;
  border-color: #999;
}
.h5ds-theme-simple .h5ds-layerlist ul li span.name {
  border-color: #999;
}
.h5ds-theme-simple .h5ds-util-cropimage-btns,
.h5ds-theme-simple .h5ds-util-cropimage {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-util-cropimage-btns a,
.h5ds-theme-simple .h5ds-util-cropimage a {
  color: #333;
}
.h5ds-theme-simple .h5ds-shortcut {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.h5ds-theme-simple .h5ds-shortcut a,
.h5ds-theme-simple .h5ds-shortcut span {
  color: #666;
}
.h5ds-theme-simple .h5ds-shortcut a:hover,
.h5ds-theme-simple .h5ds-shortcut span:hover {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-shortcut .h5ds-ico-caidan {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-shortcut h5 {
  background: #fff;
  color: #666;
}
.h5ds-theme-simple .h5ds-shortcut h5 a {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-editarea {
  background: #fff;
}
.h5ds-theme-simple .h5ds-editarea input {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-basic-tabs .ant-tabs-bar {
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-animatelist {
  background: #fff;
}
.h5ds-theme-simple .h5ds-animatelist ul.h5ds-basic-animatelist-ul li {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5ds-animatelist .ant-tabs-tab {
  color: #666;
}
.h5ds-theme-simple .h5ds-basic-animatelist-close {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-layerset-tabsbox > .ant-tabs > .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab {
  color: #666;
}
.h5ds-theme-simple .h5ds-layerset-tabsbox > .ant-tabs > .ant-tabs-bar {
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-eventlist li.h5ds-event-item {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5ds-event-list li.h5ds-event {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5ds-event-set .h5ds-close-event {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-event-set .h5ds-clear-event {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5ds-event-set {
  background: #fff;
}
.h5ds-theme-simple .h5ds-event-set textarea,
.h5ds-theme-simple .h5ds-event-set input {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-event-set .h5ds-eventbox-content,
.h5ds-theme-simple .h5ds-event-set .h5ds-event-title {
  color: #999;
}
.h5ds-theme-simple .h5ds-util-cropimage-nullimg {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-ex-h5ds_text-btn {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-ex-h5ds_text-btn.h5ds-active {
  background: #999;
  color: #fff;
}
body {
  margin: 0;
  padding: 0;
}
body.h5ds-edit {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}
a,
img {
  -webkit-touch-callout: none;
}
a,
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: 0;
}
body * {
  margin: 0;
  padding: 0;
  outline: 0;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
/**
*	h5ds平台5.0版本
*	z-index 10为单位递增

css命名规范 v1.0
h5ds-theme-* theme主题
h5ds-basic-* basic基本样式
h5ds-global-* global全局
h5ds-color-* color颜色
h5ds-js-* js钩子
h5ds-layout-* layout布局
h5ds-state-* state状态
h5ds-util-* util工具
h5ds-ico-* 图标

// 插件
h5ds-plus-*

less变量
h5dsvar-* less变量名称
*/
body {
  -webkit-text-size-adjust: none;
}
body dl,
body dt,
body dd,
body ul,
body ol,
body li,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body pre,
body form,
body fieldset,
body input,
body textarea,
body p,
body blockquote,
body th,
body td {
  padding: 0;
  margin: 0;
  color: inherit;
}
body a {
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
}
body table {
  border-spacing: 0;
}
body fieldset,
body img {
  border: 0;
}
body address,
body caption,
body cite,
body code,
body dfn,
body em,
body strong,
body th,
body var {
  font-weight: normal;
  font-style: normal;
}
body strong {
  font-weight: bold;
}
body ol,
body ul,
body li {
  list-style: none;
}
body caption,
body th {
  text-align: left;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}
body q:before,
body q:after {
  content: '';
}
body abbr,
body acronym {
  border: 0;
}
body textarea,
body input {
  outline: none;
}
body button {
  border: none;
  outline: none;
}
body hr {
  border-color: #0e1113;
  border-width: 1px;
  border-top: none;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-edit .ant-tabs-nav .ant-tabs-tab-active,
.h5ds-modal .ant-tabs-nav .ant-tabs-tab-active,
.h5ds-layout-frame .ant-tabs-nav .ant-tabs-tab-active,
.h5ds-edit .ant-tabs-nav .ant-tabs-tab:hover,
.h5ds-modal .ant-tabs-nav .ant-tabs-tab:hover,
.h5ds-layout-frame .ant-tabs-nav .ant-tabs-tab:hover {
  color: #ff5402;
}
.h5ds-edit .ant-radio-button-wrapper-checked,
.h5ds-modal .ant-radio-button-wrapper-checked,
.h5ds-layout-frame .ant-radio-button-wrapper-checked {
  color: #ff5402;
  border-color: #ff5402;
  box-shadow: -1px 0 0 0 #ff5402;
}
.h5ds-edit .ant-radio-button-wrapper-checked::before,
.h5ds-modal .ant-radio-button-wrapper-checked::before,
.h5ds-layout-frame .ant-radio-button-wrapper-checked::before {
  background-color: #ff5402 !important;
}
.h5ds-edit .ant-radio-button-wrapper-checked:first-child,
.h5ds-modal .ant-radio-button-wrapper-checked:first-child,
.h5ds-layout-frame .ant-radio-button-wrapper-checked:first-child {
  border-color: #ff5402;
}
.h5ds-edit .ant-radio-button-wrapper-checked:hover,
.h5ds-modal .ant-radio-button-wrapper-checked:hover,
.h5ds-layout-frame .ant-radio-button-wrapper-checked:hover {
  box-shadow: -1px 0 0 0 #ff5402;
}
.h5ds-edit .ant-btn,
.h5ds-modal .ant-btn,
.h5ds-layout-frame .ant-btn {
  border-radius: 0;
}
.h5ds-edit .ant-btn:hover,
.h5ds-modal .ant-btn:hover,
.h5ds-layout-frame .ant-btn:hover,
.h5ds-edit .ant-btn:active,
.h5ds-modal .ant-btn:active,
.h5ds-layout-frame .ant-btn:active,
.h5ds-edit .ant-btn:focus,
.h5ds-modal .ant-btn:focus,
.h5ds-layout-frame .ant-btn:focus {
  color: #fff;
  background-color: #ff5402;
  border-color: #ff5402;
}
.h5ds-edit .ant-tabs-ink-bar,
.h5ds-modal .ant-tabs-ink-bar,
.h5ds-layout-frame .ant-tabs-ink-bar {
  background-color: #ff5402;
}
.h5ds-edit .ant-switch-checked,
.h5ds-modal .ant-switch-checked,
.h5ds-layout-frame .ant-switch-checked {
  background: #ff5402;
}
.h5ds-edit .ant-btn-primary,
.h5ds-modal .ant-btn-primary,
.h5ds-layout-frame .ant-btn-primary {
  background-color: #ff5402;
  border-color: #ff5402;
}
.h5ds-edit .ant-divider,
.h5ds-modal .ant-divider,
.h5ds-layout-frame .ant-divider {
  background: #535f6b;
}
.h5ds-edit .ant-popover-inner-content,
.h5ds-modal .ant-popover-inner-content,
.h5ds-layout-frame .ant-popover-inner-content {
  color: #a5b6c8;
}
.h5ds-edit .ant-popover-title,
.h5ds-modal .ant-popover-title,
.h5ds-layout-frame .ant-popover-title {
  color: #a5b6c8;
  border-bottom-color: #252a2e;
}
.h5ds-edit .ant-popover-inner,
.h5ds-modal .ant-popover-inner,
.h5ds-layout-frame .ant-popover-inner {
  background: #30373f;
}
.h5ds-edit .ant-popover-message-title,
.h5ds-modal .ant-popover-message-title,
.h5ds-layout-frame .ant-popover-message-title {
  color: #a5b6c8;
}
.h5ds-edit .ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow {
  border-top-color: #30373f;
  border-left-color: #30373f;
  border-right-color: #30373f;
  border-bottom-color: #30373f;
}
.h5ds-edit .mt-select-min .ant-select-selection,
.h5ds-modal .mt-select-min .ant-select-selection,
.h5ds-layout-frame .mt-select-min .ant-select-selection {
  color: #a5b6c8;
  background: #252a2e;
  border: 1px solid #30373f;
}
.h5ds-edit .mt-select-min .ant-select-arrow,
.h5ds-modal .mt-select-min .ant-select-arrow,
.h5ds-layout-frame .mt-select-min .ant-select-arrow {
  color: #a5b6c8;
}
.h5ds-edit .ant-btn-default,
.h5ds-modal .ant-btn-default,
.h5ds-layout-frame .ant-btn-default {
  background-color: #535f6b;
  color: #fff;
}
.h5ds-edit .ant-slider,
.h5ds-modal .ant-slider,
.h5ds-layout-frame .ant-slider {
  width: 160px;
  display: inline-block;
  margin: 0 5px;
  height: 10px;
  box-sizing: border-box;
}
.h5ds-edit .ant-slider-rail,
.h5ds-modal .ant-slider-rail,
.h5ds-layout-frame .ant-slider-rail {
  height: 3px;
  background: #252a2e;
}
.h5ds-edit .ant-slider-track,
.h5ds-modal .ant-slider-track,
.h5ds-layout-frame .ant-slider-track {
  height: 3px;
  background: #ff5402;
}
.h5ds-edit .ant-slider-step,
.h5ds-modal .ant-slider-step,
.h5ds-layout-frame .ant-slider-step {
  height: 3px;
}
.h5ds-edit .ant-slider-handle,
.h5ds-modal .ant-slider-handle,
.h5ds-layout-frame .ant-slider-handle {
  width: 9px;
  height: 9px;
  margin-top: -3px;
  border-radius: 100px;
  background: #ff5402;
  border: none;
}
.h5ds-edit .ant-slider-handle:hover,
.h5ds-modal .ant-slider-handle:hover,
.h5ds-layout-frame .ant-slider-handle:hover {
  transform: scale(1.2);
}
.h5ds-edit .ant-slider:hover .ant-slider-track,
.h5ds-modal .ant-slider:hover .ant-slider-track,
.h5ds-layout-frame .ant-slider:hover .ant-slider-track {
  background-color: #ff5402;
}
.h5ds-edit .ant-slider:hover .ant-slider-rail,
.h5ds-modal .ant-slider:hover .ant-slider-rail,
.h5ds-layout-frame .ant-slider:hover .ant-slider-rail {
  background-color: #181b1e;
}
.h5ds-edit .ant-switch:before,
.h5ds-modal .ant-switch:before,
.h5ds-layout-frame .ant-switch:before,
.h5ds-edit .ant-switch:after,
.h5ds-modal .ant-switch:after,
.h5ds-layout-frame .ant-switch:after {
  background: #535f6b;
}
.h5ds-edit .ant-switch-checked:before,
.h5ds-modal .ant-switch-checked:before,
.h5ds-layout-frame .ant-switch-checked:before,
.h5ds-edit .ant-switch-checked:after,
.h5ds-modal .ant-switch-checked:after,
.h5ds-layout-frame .ant-switch-checked:after {
  background: #fff;
}
.h5ds-edit .ant-radio-inner::before,
.h5ds-modal .ant-radio-inner::before,
.h5ds-layout-frame .ant-radio-inner::before,
.h5ds-edit .ant-radio-inner::after,
.h5ds-modal .ant-radio-inner::after,
.h5ds-layout-frame .ant-radio-inner::after {
  border-radius: 50%;
}
.h5ds-edit .ant-tabs-bar,
.h5ds-modal .ant-tabs-bar,
.h5ds-layout-frame .ant-tabs-bar {
  border-bottom: 1px solid #30373f;
  color: #a5b6c8;
}
.h5ds-edit .ant-pagination .ant-pagination-item-link,
.h5ds-modal .ant-pagination .ant-pagination-item-link,
.h5ds-layout-frame .ant-pagination .ant-pagination-item-link,
.h5ds-edit .ant-pagination .ant-pagination-item,
.h5ds-modal .ant-pagination .ant-pagination-item,
.h5ds-layout-frame .ant-pagination .ant-pagination-item {
  background: #535f6b;
  border-color: #30373f;
  color: #a5b6c8;
}
.h5ds-edit .ant-pagination a,
.h5ds-modal .ant-pagination a,
.h5ds-layout-frame .ant-pagination a {
  color: #a5b6c8;
}
.h5ds-edit .ant-pagination .ant-pagination-item-active,
.h5ds-modal .ant-pagination .ant-pagination-item-active,
.h5ds-layout-frame .ant-pagination .ant-pagination-item-active {
  background: #ff5402;
}
.h5ds-edit .ant-pagination .ant-pagination-item-active a,
.h5ds-modal .ant-pagination .ant-pagination-item-active a,
.h5ds-layout-frame .ant-pagination .ant-pagination-item-active a {
  color: #fff;
}
.h5ds-edit .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link:after,
.h5ds-modal .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link:after,
.h5ds-layout-frame .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link:after,
.h5ds-edit .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link:after,
.h5ds-modal .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link:after,
.h5ds-layout-frame .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link:after,
.h5ds-edit .ant-pagination-jump-prev:after,
.h5ds-modal .ant-pagination-jump-prev:after,
.h5ds-layout-frame .ant-pagination-jump-prev:after,
.h5ds-edit .ant-pagination-jump-next:after,
.h5ds-modal .ant-pagination-jump-next:after,
.h5ds-layout-frame .ant-pagination-jump-next:after,
.h5ds-edit .ant-pagination-item a,
.h5ds-modal .ant-pagination-item a,
.h5ds-layout-frame .ant-pagination-item a {
  color: #999;
}
.h5ds-edit .ant-pagination-item-active,
.h5ds-modal .ant-pagination-item-active,
.h5ds-layout-frame .ant-pagination-item-active {
  background: #ff5402;
}
.h5ds-edit .ant-pagination-item-active a,
.h5ds-modal .ant-pagination-item-active a,
.h5ds-layout-frame .ant-pagination-item-active a {
  color: #fff;
}
.h5ds-edit .ant-radio-button-wrapper:last-child,
.h5ds-modal .ant-radio-button-wrapper:last-child,
.h5ds-layout-frame .ant-radio-button-wrapper:last-child,
.h5ds-edit .ant-radio-button-wrapper:first-child,
.h5ds-modal .ant-radio-button-wrapper:first-child,
.h5ds-layout-frame .ant-radio-button-wrapper:first-child {
  border-radius: 0;
}
.h5ds-edit .ant-radio-button-wrapper:not(:first-child)::before,
.h5ds-modal .ant-radio-button-wrapper:not(:first-child)::before,
.h5ds-layout-frame .ant-radio-button-wrapper:not(:first-child)::before {
  background: #252a2e;
}
.h5ds-edit .ant-radio-button-wrapper,
.h5ds-modal .ant-radio-button-wrapper,
.h5ds-layout-frame .ant-radio-button-wrapper {
  border-color: #ff5402;
  background: #252a2e;
  color: #a5b6c8;
}
.h5ds-edit .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled),
.h5ds-modal .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled),
.h5ds-layout-frame .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  background: #ff5402;
  color: #fff;
  border-color: #ff5402;
}
.h5ds-edit .ant-radio-button-wrapper-checked,
.h5ds-modal .ant-radio-button-wrapper-checked,
.h5ds-layout-frame .ant-radio-button-wrapper-checked {
  background: #ff5402;
  color: #fff;
}
.h5ds-edit .ant-input,
.h5ds-modal .ant-input,
.h5ds-layout-frame .ant-input {
  background: #252a2e;
  color: #a5b6c8;
  border: none;
}
.h5ds-edit .ant-input::-webkit-input-placeholder,
.h5ds-modal .ant-input::-webkit-input-placeholder,
.h5ds-layout-frame .ant-input::-webkit-input-placeholder {
  color: #535f6b;
  text-indent: 5px;
}
.h5ds-edit .ant-select-selection,
.h5ds-modal .ant-select-selection,
.h5ds-layout-frame .ant-select-selection {
  background: #252a2e;
  color: #a5b6c8;
  border: none;
}
.h5ds-edit .ant-select-arrow,
.h5ds-modal .ant-select-arrow,
.h5ds-layout-frame .ant-select-arrow {
  color: #a5b6c8;
}
.h5ds-edit .ant-input-number,
.h5ds-modal .ant-input-number,
.h5ds-layout-frame .ant-input-number {
  background: #252a2e;
  border: none;
  width: 70px !important;
  border-radius: 2px;
  color: #a5b6c8;
}
.h5ds-edit .ant-input-number-handler-wrap,
.h5ds-modal .ant-input-number-handler-wrap,
.h5ds-layout-frame .ant-input-number-handler-wrap {
  background: #535f6b;
  border-color: #0e1113 !important;
}
.h5ds-edit .ant-input-number-handler-down,
.h5ds-modal .ant-input-number-handler-down,
.h5ds-layout-frame .ant-input-number-handler-down {
  border-color: #0e1113 !important;
}
.h5ds-edit .ant-modal-content,
.h5ds-modal .ant-modal-content,
.h5ds-layout-frame .ant-modal-content {
  border-radius: 0;
}
.h5ds-edit .ant-modal-close-x,
.h5ds-modal .ant-modal-close-x,
.h5ds-layout-frame .ant-modal-close-x {
  font-size: 24px;
}
.h5ds-edit .ant-modal-body,
.h5ds-modal .ant-modal-body,
.h5ds-layout-frame .ant-modal-body {
  padding: 0;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-win-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4001;
  background: rgba(0, 0, 0, 0.4);
}
.h5ds-win-loading .h5ds-win-loading-inner {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 18px;
  color: #fff;
}
/*清除浮动*/
.h5ds-global-clear {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  width: 100%;
}
.h5ds-global-clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.h5ds-global-textjustify {
  float: left;
  text-align: justify;
  text-justify: inter-word;
  text-justify: inter-ideograph;
  width: 100%;
  min-height: 12px;
}
.h5ds-global-textjustify::before {
  content: '';
  display: inline-block;
  width: 100%;
}
.h5ds-global-textjustify::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.h5ds-global-show {
  display: block !important;
}
.h5ds-global-hide {
  display: none !important;
}
.h5ds-layout-frame {
  width: 100%;
  height: 100%;
  background: #0e1113;
  overflow: hidden;
  position: absolute;
  z-index: 1000;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  font-family: '微软雅黑';
  /*滚动条*/
  /*滚动条*/
}
.h5ds-layout-frame ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-layout-frame ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-layout-frame ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-layout-frame ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-layout-frame ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-layout-frame ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-layout-finner {
  width: 100%;
  height: 100%;
}
.h5ds-basic-btn-min {
  font-size: 14px;
  color: #fff;
  margin: 0 5px;
}
.h5ds-basic-btn-min .h5ds-ico {
  color: #ff5402;
  font-size: 20px;
  vertical-align: middle;
}
.h5ds-tabs {
  height: 100%;
}
.h5ds-tabs .ant-tabs-nav .ant-tabs-tab {
  padding: 12px 16px 12px 16px;
  color: #a5b6c8;
}
.h5ds-tabs .ant-tabs-bar {
  border-bottom: 4px solid #252a2e;
}
.h5ds-basic-tabs {
  height: 100%;
}
.h5ds-basic-tabs .ant-tabs-bar {
  border-bottom: 4px solid #252a2e;
}
.h5ds-basic-tabs .ant-tabs-nav .ant-tabs-tab {
  padding: 12px 16px 12px 16px;
  color: #a5b6c8;
}
.h5ds-basic-tabs .ant-tabs-content {
  position: absolute;
  top: 50px;
  bottom: 0;
  width: 100%;
}
.h5ds-basic-tabs .ant-tabs-tabpane {
  height: 100%;
  overflow: auto;
  padding: 10px;
  position: relative;
  width: 100%;
}
/* 帮助信息 */
.h5ds-helps {
  position: absolute;
  border: 3000px solid rgba(0, 0, 0, 0.7);
  z-index: 9999;
  transform: translate(-3000px, -3000px);
  transition: 0.3s;
  box-sizing: content-box;
}
.h5ds-helps:after {
  content: '';
  display: inline-block;
  height: 100%;
  width: 100%;
  border: 2px solid #ff5402;
  box-sizing: border-box;
}
.h5ds-helps .h5ds-helps-content {
  padding: 20px;
  padding-top: 30px;
  width: 300px;
  min-height: 160px;
  position: absolute;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.h5ds-helps .h5ds-helps-content .h5ds-helps-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.h5ds-helps .h5ds-helps-content:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  border: 10px solid transparent;
}
.h5ds-helps .h5ds-helps-content .h5ds-helps-prev,
.h5ds-helps .h5ds-helps-content .h5ds-helps-end,
.h5ds-helps .h5ds-helps-content .h5ds-helps-next {
  display: inline-block;
  padding: 4px 16px;
  background: #ff5402;
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-left: 10px;
}
.h5ds-helps .h5ds-helps-content .h5ds-helps-prev {
  background: #a5b6c8;
  color: #252a2e;
}
.h5ds-helps .h5ds-helps-info {
  height: 140px;
  overflow: auto;
  margin-bottom: 10px;
}
.h5ds-helps .h5ds-helps-btns {
  text-align: right;
}
.h5ds-helps .h5ds-helps-bottom {
  left: 50%;
  top: 100%;
  margin-top: 10px;
  transform: translateX(-50%);
}
.h5ds-helps .h5ds-helps-bottom:before {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 10px solid #fff;
}
.h5ds-helps .h5ds-helps-right {
  left: 100%;
  top: 50%;
  margin-left: 10px;
  transform: translateY(-50%);
}
.h5ds-helps .h5ds-helps-right:before {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 10px solid #fff;
}
.h5ds-helps .h5ds-helps-left {
  right: 100%;
  top: 50%;
  margin-right: 10px;
  transform: translateY(-50%);
}
.h5ds-helps .h5ds-helps-left:before {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 10px solid #fff;
}
/* loading */
.h5ds-loading {
  color: #a5b6c8;
  font-size: 12px;
}
.h5ds-loading-window {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.3);
}
.h5ds-loading-center {
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.h5ds-loading-center:before {
  content: '';
  display: inline-block;
  width: 31px;
  height: 31px;
  background: url(http://cdn.h5ds.cn/lib/images/loading.gif) no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}
/* 黄色按钮 */
.h5ds-btn-yellow {
  padding: 3px 10px 5px 10px;
  display: inline-block;
  color: #fff;
  background: #ff5402;
  border-radius: 2px;
  font-size: 16px;
}
.h5ds-btn-yellow:hover {
  color: #fff;
  background: #f04e00;
}
/* 图标 */
#h5dsBeforeIcon {
  font-family: "h5ds" !important;
  display: inline-block;
  width: 12px;
  height: 12px;
  color: #a5b6c8;
  font-size: 14px;
  position: absolute;
  right: 8px;
  top: 50%;
  line-height: 12px;
  text-align: center;
  margin-top: -6px;
}
/* 可拖动框 */
.h5ds-drag {
  position: absolute;
  z-index: 1000;
}
/* 拖动排序 */
.h5ds-uniqlist {
  position: relative;
}
.h5ds-uniqlist .h5ds-active {
  background: #ff5402;
  border: 1px solid #ff5402;
}
.h5ds-uniqlist li {
  position: relative;
  background: #252a2e;
  margin-bottom: 10px;
}
.h5ds-uniqlist li a {
  display: inline-block;
  cursor: move;
  color: #fff;
}
.h5ds-uniqlist .h5ds-uniq-start {
  z-index: 1000;
  opacity: 0.3;
}
.h5ds-uniqlist .h5ds-uniq-clone {
  z-index: 1000;
}
/* 控制杆 */
.h5ds-control {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  cursor: move;
  margin: -1px 0 0 -1px;
  top: 0;
  left: 0;
  box-sizing: content-box;
  box-sizing: initial;
  transform: translate3d(0, 0, 0);
}
.h5ds-control::after,
.h5ds-control::before {
  display: inline-block;
  content: '';
  position: absolute;
  pointer-events: none;
  top: 1px;
  left: 1px;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  transform: translate3d(0, 0, 0);
}
.h5ds-control::after {
  z-index: 1;
  border: 1px dashed #000;
}
.h5ds-control span {
  display: inline-block;
  position: absolute;
  z-index: 100;
  background: #fff;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  cursor: pointer;
}
.h5ds-control .h5ds-control-center {
  top: 50%;
  left: 50%;
  border: none;
  width: 0px;
  height: 0px;
}
.h5ds-control .h5ds-control-top {
  top: -4px;
  left: 50%;
  margin-left: -4px;
  cursor: n-resize;
}
.h5ds-control .h5ds-control-bottom {
  bottom: -4px;
  left: 50%;
  margin-left: -4px;
  cursor: n-resize;
}
.h5ds-control .h5ds-control-left {
  top: 50%;
  left: -4px;
  margin-top: -4px;
  cursor: e-resize;
}
.h5ds-control .h5ds-control-right {
  top: 50%;
  right: -4px;
  margin-top: -4px;
  cursor: e-resize;
}
.h5ds-control .h5ds-control-topleft {
  top: -4px;
  left: -4px;
  cursor: se-resize;
}
.h5ds-control .h5ds-control-topright {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}
.h5ds-control .h5ds-control-bottomleft {
  bottom: -4px;
  left: -4px;
  cursor: ne-resize;
}
.h5ds-control .h5ds-control-bottomright {
  bottom: -4px;
  right: -4px;
  cursor: nw-resize;
}
.h5ds-control .h5ds-control-rotate {
  border-radius: 100px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translate3d(0, 0, 0);
  width: 12px;
  height: 12px;
  border: 2px solid #000;
  background: url('http://cdn.h5ds.cn/lib/images/rotate.png') no-repeat #000;
  background-size: cover;
  cursor: -webkit-grabbing;
}
/* 裁剪 */
.h5ds-crop-control {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  cursor: move;
  margin: -1px 0 0 -1px;
  top: 0;
  left: 0;
  box-sizing: content-box;
  box-sizing: initial;
  transform: translate3d(0, 0, 0);
}
.h5ds-crop-control::after,
.h5ds-crop-control::before {
  display: inline-block;
  content: '';
  position: absolute;
  pointer-events: none;
  top: 1px;
  left: 1px;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  transform: translate3d(0, 0, 0);
}
.h5ds-crop-control::after {
  z-index: 1;
  border: 1px dashed #000;
}
.h5ds-crop-control span {
  display: inline-block;
  position: absolute;
  z-index: 100;
  background: #fff;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  cursor: pointer;
}
.h5ds-crop-control .h5ds-control-center {
  top: 50%;
  left: 50%;
  border: none;
  width: 0px;
  height: 0px;
}
.h5ds-crop-control .h5ds-control-top {
  top: -4px;
  left: 50%;
  margin-left: -4px;
  cursor: n-resize;
}
.h5ds-crop-control .h5ds-control-bottom {
  bottom: -4px;
  left: 50%;
  margin-left: -4px;
  cursor: n-resize;
}
.h5ds-crop-control .h5ds-control-left {
  top: 50%;
  left: -4px;
  margin-top: -4px;
  cursor: e-resize;
}
.h5ds-crop-control .h5ds-control-right {
  top: 50%;
  right: -4px;
  margin-top: -4px;
  cursor: e-resize;
}
.h5ds-crop-control .h5ds-control-topleft {
  top: -4px;
  left: -4px;
  cursor: se-resize;
}
.h5ds-crop-control .h5ds-control-topright {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}
.h5ds-crop-control .h5ds-control-bottomleft {
  bottom: -4px;
  left: -4px;
  cursor: ne-resize;
}
.h5ds-crop-control .h5ds-control-bottomright {
  bottom: -4px;
  right: -4px;
  cursor: nw-resize;
}
.h5ds-crop-control .h5ds-control-rotate {
  border-radius: 100px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translate3d(0, 0, 0);
  width: 12px;
  height: 12px;
  border: 2px solid #000;
  background: url('http://cdn.h5ds.cn/lib/images/rotate.png') no-repeat #000;
  background-size: cover;
  cursor: -webkit-grabbing;
}
.h5ds-crop-controlbox {
  box-sizing: content-box;
  /* 图片剪切使用 */
  display: none;
  width: 100px;
  height: 60px;
  position: absolute;
  margin: 1px 0 0 1px;
  top: -400px;
  left: -400px;
  border: 500px solid rgba(0, 0, 0, 0.5);
}
.h5ds-crop {
  width: 323px;
  height: 248px;
  font-size: 12px;
  position: relative;
  margin-bottom: 30px;
}
.h5ds-crop .h5ds-crop-bg {
  background: #0e1113;
  text-align: center;
  height: 218px;
  width: 100%;
}
.h5ds-crop .h5ds-crop-fun {
  background: #252a2e;
}
.h5ds-crop .h5ds-crop-fun a {
  display: inline-block;
  width: 20%;
  text-align: center;
}
.h5ds-crop .h5ds-crop-fun a:hover {
  background: #0e1113;
}
.h5ds-crop .h5ds-crop-box {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.h5ds-crop .h5ds-crop-box img {
  max-height: 100%;
  max-width: 100%;
  display: inline-block;
  position: relative;
}
.h5ds-crop .h5ds-crop-box .h5ds-crop-controlbox {
  z-index: 100;
}
.h5ds-crop .h5ds-crop-fun {
  height: 30px;
  line-height: 30px;
}
.h5ds-crop .h5ds-crop-btns {
  height: 30px;
  line-height: 30px;
}
.h5ds-crop .h5ds-crop-btns a {
  display: inline-block;
  text-align: center;
  width: 25%;
  font-size: 14px;
  color: #a5b6c8;
}
.h5ds-crop .h5ds-crop-btns a:hover {
  background: #252a2e;
}
/* 上传按钮 */
.h5ds-upload-btn {
  position: relative;
}
.h5ds-contextmenu {
  position: absolute;
  z-index: 3000;
  background: #252a2e;
  color: #a5b6c8;
  padding: 10px;
  font-size: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.h5ds-contextmenu .h5ds-ico {
  font-size: 14px;
}
.h5ds-contextmenu li {
  width: 100px;
  padding: 4px;
  cursor: pointer;
}
.h5ds-contextmenu li:hover {
  background: #ff5402;
  color: #fff;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-ex-h5ds_combin-set .h5ds-ex-h5ds_combin-titles {
  color: #a5b6c8;
  border-left: 4px solid #ff5402;
  text-indent: 10px;
  font-size: 14px;
  margin: 20px 0;
}
.h5ds-ex-h5ds_combin-set .ant-collapse {
  background: none;
  border: none;
}
.h5ds-ex-h5ds_combin-set .ant-collapse > .ant-collapse-item {
  border: none;
}
.h5ds-ex-h5ds_combin-set .ant-collapse > .ant-collapse-item > .ant-collapse-header {
  color: #a5b6c8;
  background: #252a2e;
}
.h5ds-ex-h5ds_combin-set .ant-collapse .ant-collapse-content {
  border: none;
  overflow: visible;
  overflow: initial;
  background: none;
}
.h5ds-ex-h5ds_combin-set .ant-collapse .ant-collapse-content > .ant-collapse-content-box {
  padding: 0;
}
.h5ds-canvas-preview .layer-h5ds_combin .layer-h5ds_combin {
  pointer-events: none;
}

.layer-h5ds_combin {
  transform-origin: 0 0;
}
.h5ds-swiper-layers .layer-h5ds_combin .element {
  overflow: visible;
  overflow: initial;
}

.layer {
  transform-origin: 50% 50%;
}
.layer .element-flip {
  float: left;
  width: 100%;
  height: 100%;
}
.h5ds-last-power {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  font-size: 12px;
  transform-origin: center;
  transform: scale(0.8);
}
.h5ds-last-power a {
  color: rgba(0, 0, 0, 0.8);
}
.h5ds-canvas .layer[data-last-animate="out"]::before {
  content: "\e607";
  color: #ccc;
  font-family: "h5ds-ico" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 0;
  z-index: 100;
}
.layer-temporary-hide {
  display: none !important;
}
.layer-temporary-noevent {
  pointer-events: none;
}


.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-util-cropimage {
  position: relative;
  background: #252a2e;
}
.h5ds-recrop-control {
  position: relative;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.h5ds-util-cropimage-imgbox {
  width: 326px;
  height: 218px;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.h5ds-util-cropimage-imgbox svg {
  position: relative;
  overflow: visible;
  overflow: initial;
  z-index: 100;
  top: 0;
  left: 0;
  float: left;
}
.h5ds-util-cropimage-imgbox rect {
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.h5ds-util-cropimage-imgbox polygon {
  cursor: move;
}
.h5ds-util-cropimage-imgbox img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.h5ds-util-cropimage-btns {
  background: #0e1113;
}
.h5ds-util-cropimage-btns a {
  display: inline-block;
  padding: 5px 14px;
  color: #a5b6c8;
}
.h5ds-util-cropimage-btns .h5ds-img-down {
  top: -26px;
  right: 0;
  padding: 0;
  position: absolute;
}
.h5ds-util-cropimage-nullimg {
  height: 218px;
  cursor: pointer;
  background: #252a2e;
  color: #535f6b;
  position: relative;
  text-align: center;
  line-height: 280px;
  transition: 0.3s;
}
.h5ds-util-cropimage-nullimg:after {
  display: inline-block;
  content: "\E602";
  font-family: h5ds-ico !important;
  position: absolute;
  font-size: 60px;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -32px;
  opacity: 0.2;
  line-height: normal;
}

.layer-h5ds_img .element {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.layer-h5ds_img img {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
}
.layer-h5ds_img .layer-h5ds_img-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-origin: 0 0;
}
.layer-h5ds_img .layer-h5ds_img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-modal .h5ds-modal-upload-button,
.h5ds-modal .h5ds-modal-close-button {
  margin-left: 30px;
}
.h5ds-modal .h5ds-modal-close-button {
  background: #30373f;
  border: 1px solid #30373f;
  color: #a5b6c8;
}
.h5ds-modal .h5ds-modal-close-button:hover {
  background: #252a2e;
}
.h5ds-edit .h5ds-modal-source {
  background: rgba(0, 0, 0, 0.9);
}
.h5ds-edit .h5ds-modal-plus {
  background: rgba(0, 0, 0, 0.9);
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-modal {
  position: fixed;
  z-index: 1000;
  background: #252a2e;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
}
.h5ds-modal.h5ds-modal-show {
  transform: translateY(0);
}
.h5ds-modal.h5ds-modal-hastitle .h5ds-modal-title {
  height: 60px;
  text-align: left;
  vertical-align: middle;
}
.h5ds-modal.h5ds-modal-hastitle .h5ds-modal-title h3 {
  display: inline-block;
  font-size: 16px;
  color: #a5b6c8;
}
.h5ds-modal.h5ds-modal-hastitle .h5ds-modal-title::before {
  content: '';
  display: inline-block;
  height: 100%;
  width: 0;
  vertical-align: middle;
}
.h5ds-modal.h5ds-modal-hastitle .h5ds-modal-title .h5ds-modal-title-icon {
  display: inline-block;
  margin-right: 20px;
  height: 30px;
  background: #ff5402;
  width: 6px;
  vertical-align: middle;
}
.h5ds-modal.h5ds-modal-hastitle .h5ds-modal-content {
  height: calc(100% - 60px);
}
.h5ds-modal .h5ds-modal-close {
  font-size: 40px;
  line-height: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #a5b6c8;
  z-index: 100;
}
.h5ds-modal .h5ds-modal-content {
  height: 100%;
  width: 100%;
  overflow: auto;
  /*滚动条*/
}
.h5ds-modal .h5ds-modal-content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-modal .h5ds-modal-content::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-modal .h5ds-modal-content::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-modal .h5ds-modal-content::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-modal .h5ds-modal-content::-webkit-scrollbar-button:vertical:decrement,
.h5ds-modal .h5ds-modal-content::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}

.h5ds-noserver-modal {
  padding: 10px;
}
.h5ds-noserver-modal .h5ds-noserver-tips {
  color: #fff;
  padding: 10px 0;
}
.h5ds-noserver-modal .h5ds-noserver-imgs {
  padding: 20px 0;
}
.h5ds-noserver-modal .h5ds-noserver-item {
  display: inline-block;
  width: 200px;
  height: 100px;
  margin: 0 20px 20px 0;
  text-align: center;
  vertical-align: top;
  background: hsla(0, 0%, 100%, 0.1);
  position: relative;
}
.h5ds-noserver-modal .h5ds-noserver-item img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.h5ds-noserver-modal .h5ds-noserver-item .anticon-close {
  background: #0e1113;
  position: absolute;
  color: #fff;
  font-size: 20px;
  top: 0;
  right: 0;
  opacity: 0.8;
}
.h5ds-noserver-modal .h5ds-noserver-item-sound {
  width: 300px;
  padding-top: 10px;
}

.h5ds-shape-shapepanel {
  cursor: crosshair;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
}
.h5ds-shape-shapepanel .h5ds-shape-shapepanel-inner {
  position: absolute;
  border: 1px dashed rgba(0, 0, 0, 0.5);
}
.h5ds-shape-shapepanel .h5ds-shape-shapepanel-inner svg,
.h5ds-shape-shapepanel .h5ds-shape-shapepanel-inner polygon {
  width: 100%;
  height: 100%;
  float: left;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-layout-setitem-title {
  color: #a5b6c8;
}
.h5ds-util-color {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  border-radius: 100px;
  background: #fff;
}
.h5ds-util-color::after,
.h5ds-util-color::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  position: absolute;
}
.h5ds-util-color::after {
  top: 0;
  left: 0;
  border-top-left-radius: 100px;
}
.h5ds-util-color::before {
  top: 12px;
  left: 12px;
  border-bottom-right-radius: 100px;
}
.h5ds-util-color-inner {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 100;
}
.h5ds-util-color-btn {
  position: relative;
  z-index: 100;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 100px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.h5ds-util-color-box {
  position: absolute;
  z-index: 100;
}

.h5ds-layout-setgrid {
  vertical-align: top;
  display: inline-block;
}
.h5ds-layout-setgrid-1 {
  width: 100%;
}
.h5ds-layout-setgrid-2 {
  width: 50%;
}
.h5ds-layout-setgrid-3 {
  width: 33.3%;
}
.h5ds-layout-setgrid-4 {
  width: 25%;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-layout-setitem {
  position: relative;
  padding: 6px 0;
}
.h5ds-layout-setitem-name {
  color: #a5b6c8;
  display: inline-block;
  width: 60px;
  font-size: 12px;
  position: absolute;
  left: 0;
  vertical-align: top;
  line-height: 24px;
}
.h5ds-layout-setitem-content {
  margin-left: 70px;
}
.h5ds-layout-setitem-content .ant-input-number {
  width: 100%;
}
.h5ds-layout-setitem-content .ant-input {
  width: 100%;
}
.h5ds-layout-setitem-subsection > .h5ds-layout-setitem-name {
  display: block;
  width: auto;
  width: initial;
  position: relative;
  padding: 10px 0;
}
.h5ds-layout-setitem-subsection > .h5ds-layout-setitem-content {
  margin-left: 0;
}
.h5ds-layout-m5 {
  margin: 5px;
}
.h5ds-layout-m10 {
  margin: 10px;
}

.layer-h5ds_shape-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.layer-h5ds_shape-inner .layer-h5ds_shape-dom,
.layer-h5ds_shape-inner .layer-h5ds_shape-dom {
  float: left;
  height: 100%;
  width: 100%;
}
.layer-h5ds_shape-inner .layer-h5ds_shape-dom svg,
.layer-h5ds_shape-inner .layer-h5ds_shape-dom svg,
.layer-h5ds_shape-inner .layer-h5ds_shape-dom polygon,
.layer-h5ds_shape-inner .layer-h5ds_shape-dom polygon {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  transform: translate3d(0, 0, 0);
}
.layer-h5ds_shape .element {
  overflow: hidden;
}

.h5ds-shape-source {
  text-align: center;
}
.h5ds-shape-source .h5ds-shape-list {
  display: inline-block;
}
.h5ds-shape-source .h5ds-shape-list .h5ds-shape-item {
  width: 60px;
  height: 60px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.h5ds-shape-source .h5ds-shape-list .h5ds-shape-item img,
.h5ds-shape-source .h5ds-shape-list .h5ds-shape-item svg {
  margin: 10px;
  width: 40px;
  height: 40px;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-drawer {
  position: fixed;
  z-index: 1000;
  background: #252a2e;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  transition: 0.5s transform;
  transform: translateY(-100%);
}
.h5ds-drawer.h5ds-drawer-show {
  transform: translateY(0);
}
.h5ds-drawer.h5ds-drawer-hastitle .h5ds-drawer-title {
  height: 60px;
  text-align: left;
  vertical-align: middle;
}
.h5ds-drawer.h5ds-drawer-hastitle .h5ds-drawer-title h3 {
  display: inline-block;
  font-size: 16px;
  color: #a5b6c8;
}
.h5ds-drawer.h5ds-drawer-hastitle .h5ds-drawer-title::before {
  content: '';
  display: inline-block;
  height: 100%;
  width: 0;
  vertical-align: middle;
}
.h5ds-drawer.h5ds-drawer-hastitle .h5ds-drawer-title .h5ds-drawer-title-icon {
  display: inline-block;
  margin-right: 20px;
  height: 30px;
  background: #ff5402;
  width: 6px;
  vertical-align: middle;
}
.h5ds-drawer.h5ds-drawer-hastitle .h5ds-drawer-content {
  height: calc(100% - 60px);
}
.h5ds-drawer .h5ds-drawer-close {
  font-size: 40px;
  line-height: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #a5b6c8;
  z-index: 100;
}
.h5ds-drawer .h5ds-drawer-content {
  height: 100%;
  width: 100%;
  overflow: auto;
  /*滚动条*/
  /*滚动条*/
}
.h5ds-drawer .h5ds-drawer-content ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-drawer .h5ds-drawer-content ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-drawer .h5ds-drawer-content ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-drawer .h5ds-drawer-content ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-drawer .h5ds-drawer-content ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-drawer .h5ds-drawer-content ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-sound-controls {
  width: 250px;
  height: 40px;
  padding: 5px;
}
.h5ds-ex-h5ds_sound {
  max-height: 700px;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-name {
  color: #fff;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list {
  max-height: 400px;
  overflow: auto;
}
@-webkit-keyframes mp3play {
  from {
    height: 2px;
  }
  to {
    height: 12px;
  }
}
@keyframes mp3play {
  from {
    height: 2px;
  }
  to {
    height: 12px;
  }
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .try {
  color: #ff5402;
  padding: 2px 5px;
  margin: 0 2px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-iconing i {
  -webkit-animation-name: mp3play;
          animation-name: mp3play;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-iconing i:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-iconing i:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-iconing i:nth-child(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-iconing i:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-icon {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 20px;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-icon i {
  display: inline-block;
  width: 1px;
  background: #ff5402;
  margin-left: 3px;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-icon i:nth-child(1) {
  height: 3px;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-icon i:nth-child(2) {
  height: 6px;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-icon i:nth-child(3) {
  height: 9px;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list .mp3-play-icon i:nth-child(4) {
  height: 12px;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list li {
  padding: 5px 10px;
  color: #a5b6c8;
  background: #252a2e;
  font-size: 12px;
  border-bottom: 1px dashed #30373f;
}
.h5ds-ex-h5ds_sound .h5ds-ex-h5ds_sound-list li:hover {
  background: #535f6b;
  color: #fff;
}

.layer-h5ds_sound {
  /* MP3 图标 */
}
.layer-h5ds_sound audio {
  display: none;
}
@-webkit-keyframes mp3play {
  from {
    height: 2px;
  }
  to {
    height: 12px;
  }
}
@keyframes mp3play {
  from {
    height: 2px;
  }
  to {
    height: 12px;
  }
}
.layer-h5ds_sound .h5ds_sound-iconing i {
  -webkit-animation-name: mp3play;
          animation-name: mp3play;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.layer-h5ds_sound .h5ds_sound-iconing i:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.layer-h5ds_sound .h5ds_sound-iconing i:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.layer-h5ds_sound .h5ds_sound-iconing i:nth-child(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.layer-h5ds_sound .h5ds_sound-iconing i:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.layer-h5ds_sound .h5ds_sound-icon {
  display: inline-block;
  vertical-align: middle;
  transform-origin: 0 0;
  padding: 2px 5px;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 99999;
  cursor: pointer;
}
.layer-h5ds_sound .h5ds_sound-icon i {
  display: inline-block;
  width: 1px;
  background: #fff;
  margin-left: 3px;
}
.layer-h5ds_sound .h5ds_sound-icon i:nth-child(1) {
  height: 3px;
}
.layer-h5ds_sound .h5ds_sound-icon i:nth-child(2) {
  height: 6px;
}
.layer-h5ds_sound .h5ds_sound-icon i:nth-child(3) {
  height: 9px;
}
.layer-h5ds_sound .h5ds_sound-icon i:nth-child(4) {
  height: 12px;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-ex-h5ds_text-richtext {
  height: 120px;
  background: #fff;
  color: #000;
  margin: 10px 0;
  overflow: auto;
}
.h5ds-artword-selects {
  margin-top: 10px;
  color: #a5b6c8;
}
.h5ds-ex-h5ds_text-btn {
  display: inline-block;
  width: 43px;
  height: 43px;
  text-align: center;
  background: #252a2e;
  margin-right: 2px;
  line-height: 43px;
  color: #535f6b;
}
.h5ds-ex-h5ds_text-btn.h5ds-active {
  color: #a5b6c8;
  background: #0e1113;
}
.h5ds-ex-h5ds_text-btn i {
  font-size: 24px;
}

.h5ds-artword {
  position: relative;
  display: inline-block;
  text-decoration: inherit;
}
.h5ds-artword .h5ds-artword-up {
  text-decoration: inherit;
  position: absolute;
  top: 0;
  z-index: 200;
  width: 100%;
}
.h5ds-artword .h5ds-artword-down {
  text-decoration: inherit;
  position: relative;
  z-index: 100;
  width: 100%;
}
.h5ds-artword-border::before {
  content: attr(data-text);
}
.h5ds-artword-fire .h5ds-artword-up {
  text-shadow: 0 0 4px #FFF, 0 -5px 4px #ff3, 2px -10px 6px #fd3, -2px -15px 11px #f80, 2px -25px 18px #f20;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-util-sliderinput2,
.h5ds-util-sliderinput {
  position: relative;
  padding: 2px 0;
}
.h5ds-util-sliderinput2 .ant-slider,
.h5ds-util-sliderinput .ant-slider {
  width: 160px;
  margin: 0 6px;
  vertical-align: middle;
}
.h5ds-util-sliderinput2 .ant-slider {
  width: 130px;
}
.h5ds-util-sliderinput-name {
  vertical-align: middle;
  font-size: 12px;
  color: #a5b6c8;
  display: inline-block;
  line-height: 24px;
  width: 60px;
  margin-right: 10px;
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* stylelint-disable at-rule-no-unknown */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@-ms-viewport {
  width: device-width;
}
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
body {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-variant: tabular-nums;
  line-height: 1.5;
  background-color: #fff;
  -webkit-font-feature-settings: 'tnum', "tnum";
          font-feature-settings: 'tnum', "tnum";
}
[tabindex='-1']:focus {
  outline: none !important;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #1890ff;
  text-decoration: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #40a9ff;
}
a:active {
  color: #096dd9;
}
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
}
a[disabled] {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
  pointer-events: none;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  color: rgba(0, 0, 0, 0.45);
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
mark {
  padding: 0.2em;
  background-color: #feffe6;
}
::-moz-selection {
  color: #fff;
  background: #1890ff;
}
::selection {
  color: #fff;
  background: #1890ff;
}
.clearfix {
  zoom: 1;
}
.clearfix::before,
.clearfix::after {
  display: table;
  content: '';
}
.clearfix::after {
  clear: both;
}
.anticon {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.anticon > * {
  line-height: 1;
}
.anticon svg {
  display: inline-block;
}
.anticon::before {
  display: none;
}
.anticon .anticon-icon {
  display: block;
}
.anticon[tabindex] {
  cursor: pointer;
}
.anticon-spin::before {
  display: inline-block;
  -webkit-animation: loadingCircle 1s infinite linear;
          animation: loadingCircle 1s infinite linear;
}
.anticon-spin {
  display: inline-block;
  -webkit-animation: loadingCircle 1s infinite linear;
          animation: loadingCircle 1s infinite linear;
}
.fade-enter,
.fade-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.fade-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.fade-enter.fade-enter-active,
.fade-appear.fade-appear-active {
  -webkit-animation-name: antFadeIn;
          animation-name: antFadeIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-leave.fade-leave-active {
  -webkit-animation-name: antFadeOut;
          animation-name: antFadeOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.fade-enter,
.fade-appear {
  opacity: 0;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.fade-leave {
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@-webkit-keyframes antFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes antFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes antFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes antFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.move-up-enter,
.move-up-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.move-up-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.move-up-enter.move-up-enter-active,
.move-up-appear.move-up-appear-active {
  -webkit-animation-name: antMoveUpIn;
          animation-name: antMoveUpIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.move-up-leave.move-up-leave-active {
  -webkit-animation-name: antMoveUpOut;
          animation-name: antMoveUpOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.move-up-enter,
.move-up-appear {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.move-up-leave {
  -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
          animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.move-down-enter,
.move-down-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.move-down-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.move-down-enter.move-down-enter-active,
.move-down-appear.move-down-appear-active {
  -webkit-animation-name: antMoveDownIn;
          animation-name: antMoveDownIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.move-down-leave.move-down-leave-active {
  -webkit-animation-name: antMoveDownOut;
          animation-name: antMoveDownOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.move-down-enter,
.move-down-appear {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.move-down-leave {
  -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
          animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.move-left-enter,
.move-left-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.move-left-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.move-left-enter.move-left-enter-active,
.move-left-appear.move-left-appear-active {
  -webkit-animation-name: antMoveLeftIn;
          animation-name: antMoveLeftIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.move-left-leave.move-left-leave-active {
  -webkit-animation-name: antMoveLeftOut;
          animation-name: antMoveLeftOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.move-left-enter,
.move-left-appear {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.move-left-leave {
  -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
          animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.move-right-enter,
.move-right-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.move-right-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.move-right-enter.move-right-enter-active,
.move-right-appear.move-right-appear-active {
  -webkit-animation-name: antMoveRightIn;
          animation-name: antMoveRightIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.move-right-leave.move-right-leave-active {
  -webkit-animation-name: antMoveRightOut;
          animation-name: antMoveRightOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.move-right-enter,
.move-right-appear {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.move-right-leave {
  -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
          animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
@-webkit-keyframes antMoveDownIn {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveDownIn {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
}
@-webkit-keyframes antMoveDownOut {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveDownOut {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
}
@-webkit-keyframes antMoveLeftIn {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveLeftIn {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
}
@-webkit-keyframes antMoveLeftOut {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveLeftOut {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
}
@-webkit-keyframes antMoveRightIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveRightIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
}
@-webkit-keyframes antMoveRightOut {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveRightOut {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
}
@-webkit-keyframes antMoveUpIn {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveUpIn {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
}
@-webkit-keyframes antMoveUpOut {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveUpOut {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    opacity: 0;
  }
}
@-webkit-keyframes loadingCircle {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loadingCircle {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
[ant-click-animating='true'],
[ant-click-animating-without-extra-node='true'] {
  position: relative;
}
html {
  --antd-wave-shadow-color: #1890ff;
}
[ant-click-animating-without-extra-node='true']::after,
.ant-click-animating-node {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border-radius: inherit;
  -webkit-box-shadow: 0 0 0 0 #1890ff;
          box-shadow: 0 0 0 0 #1890ff;
  box-shadow: 0 0 0 0 #1890ff;
  -webkit-box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
          box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
  opacity: 0.2;
  -webkit-animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
          animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: '';
  pointer-events: none;
}
@-webkit-keyframes waveEffect {
  100% {
    -webkit-box-shadow: 0 0 0 #1890ff;
            box-shadow: 0 0 0 #1890ff;
    -webkit-box-shadow: 0 0 0 6px #1890ff;
            box-shadow: 0 0 0 6px #1890ff;
    -webkit-box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
            box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
  }
}
@keyframes waveEffect {
  100% {
    -webkit-box-shadow: 0 0 0 #1890ff;
            box-shadow: 0 0 0 #1890ff;
    -webkit-box-shadow: 0 0 0 6px #1890ff;
            box-shadow: 0 0 0 6px #1890ff;
    -webkit-box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
            box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
  }
}
@-webkit-keyframes fadeEffect {
  100% {
    opacity: 0;
  }
}
@keyframes fadeEffect {
  100% {
    opacity: 0;
  }
}
.slide-up-enter,
.slide-up-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.slide-up-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.slide-up-enter.slide-up-enter-active,
.slide-up-appear.slide-up-appear-active {
  -webkit-animation-name: antSlideUpIn;
          animation-name: antSlideUpIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.slide-up-leave.slide-up-leave-active {
  -webkit-animation-name: antSlideUpOut;
          animation-name: antSlideUpOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.slide-up-enter,
.slide-up-appear {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-up-leave {
  -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
          animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.slide-down-enter,
.slide-down-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.slide-down-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.slide-down-enter.slide-down-enter-active,
.slide-down-appear.slide-down-appear-active {
  -webkit-animation-name: antSlideDownIn;
          animation-name: antSlideDownIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.slide-down-leave.slide-down-leave-active {
  -webkit-animation-name: antSlideDownOut;
          animation-name: antSlideDownOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.slide-down-enter,
.slide-down-appear {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-down-leave {
  -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
          animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.slide-left-enter,
.slide-left-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.slide-left-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.slide-left-enter.slide-left-enter-active,
.slide-left-appear.slide-left-appear-active {
  -webkit-animation-name: antSlideLeftIn;
          animation-name: antSlideLeftIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.slide-left-leave.slide-left-leave-active {
  -webkit-animation-name: antSlideLeftOut;
          animation-name: antSlideLeftOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.slide-left-enter,
.slide-left-appear {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-left-leave {
  -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
          animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.slide-right-enter,
.slide-right-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.slide-right-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.slide-right-enter.slide-right-enter-active,
.slide-right-appear.slide-right-appear-active {
  -webkit-animation-name: antSlideRightIn;
          animation-name: antSlideRightIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.slide-right-leave.slide-right-leave-active {
  -webkit-animation-name: antSlideRightOut;
          animation-name: antSlideRightOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.slide-right-enter,
.slide-right-appear {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-right-leave {
  -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
          animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@-webkit-keyframes antSlideUpIn {
  0% {
    -webkit-transform: scaleY(0.8);
            transform: scaleY(0.8);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes antSlideUpIn {
  0% {
    -webkit-transform: scaleY(0.8);
            transform: scaleY(0.8);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
}
@-webkit-keyframes antSlideUpOut {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(0.8);
            transform: scaleY(0.8);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
}
@keyframes antSlideUpOut {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(0.8);
            transform: scaleY(0.8);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
}
@-webkit-keyframes antSlideDownIn {
  0% {
    -webkit-transform: scaleY(0.8);
            transform: scaleY(0.8);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes antSlideDownIn {
  0% {
    -webkit-transform: scaleY(0.8);
            transform: scaleY(0.8);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 1;
  }
}
@-webkit-keyframes antSlideDownOut {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(0.8);
            transform: scaleY(0.8);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 0;
  }
}
@keyframes antSlideDownOut {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(0.8);
            transform: scaleY(0.8);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 0;
  }
}
@-webkit-keyframes antSlideLeftIn {
  0% {
    -webkit-transform: scaleX(0.8);
            transform: scaleX(0.8);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes antSlideLeftIn {
  0% {
    -webkit-transform: scaleX(0.8);
            transform: scaleX(0.8);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
}
@-webkit-keyframes antSlideLeftOut {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(0.8);
            transform: scaleX(0.8);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
}
@keyframes antSlideLeftOut {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(0.8);
            transform: scaleX(0.8);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
}
@-webkit-keyframes antSlideRightIn {
  0% {
    -webkit-transform: scaleX(0.8);
            transform: scaleX(0.8);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    opacity: 1;
  }
}
@keyframes antSlideRightIn {
  0% {
    -webkit-transform: scaleX(0.8);
            transform: scaleX(0.8);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    opacity: 1;
  }
}
@-webkit-keyframes antSlideRightOut {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(0.8);
            transform: scaleX(0.8);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    opacity: 0;
  }
}
@keyframes antSlideRightOut {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(0.8);
            transform: scaleX(0.8);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    opacity: 0;
  }
}
.swing-enter,
.swing-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.swing-enter.swing-enter-active,
.swing-appear.swing-appear-active {
  -webkit-animation-name: antSwingIn;
          animation-name: antSwingIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes antSwingIn {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  40% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  60% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  80% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@keyframes antSwingIn {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  40% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  60% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  80% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.zoom-enter,
.zoom-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-enter.zoom-enter-active,
.zoom-appear.zoom-appear-active {
  -webkit-animation-name: antZoomIn;
          animation-name: antZoomIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.zoom-leave.zoom-leave-active {
  -webkit-animation-name: antZoomOut;
          animation-name: antZoomOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.zoom-enter,
.zoom-appear {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-leave {
  -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-big-enter,
.zoom-big-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-big-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-big-enter.zoom-big-enter-active,
.zoom-big-appear.zoom-big-appear-active {
  -webkit-animation-name: antZoomBigIn;
          animation-name: antZoomBigIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.zoom-big-leave.zoom-big-leave-active {
  -webkit-animation-name: antZoomBigOut;
          animation-name: antZoomBigOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.zoom-big-enter,
.zoom-big-appear {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-big-leave {
  -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-big-fast-enter,
.zoom-big-fast-appear {
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-big-fast-leave {
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-big-fast-enter.zoom-big-fast-enter-active,
.zoom-big-fast-appear.zoom-big-fast-appear-active {
  -webkit-animation-name: antZoomBigIn;
          animation-name: antZoomBigIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.zoom-big-fast-leave.zoom-big-fast-leave-active {
  -webkit-animation-name: antZoomBigOut;
          animation-name: antZoomBigOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.zoom-big-fast-enter,
.zoom-big-fast-appear {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-big-fast-leave {
  -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-up-enter,
.zoom-up-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-up-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-up-enter.zoom-up-enter-active,
.zoom-up-appear.zoom-up-appear-active {
  -webkit-animation-name: antZoomUpIn;
          animation-name: antZoomUpIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.zoom-up-leave.zoom-up-leave-active {
  -webkit-animation-name: antZoomUpOut;
          animation-name: antZoomUpOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.zoom-up-enter,
.zoom-up-appear {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-up-leave {
  -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-down-enter,
.zoom-down-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-down-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-down-enter.zoom-down-enter-active,
.zoom-down-appear.zoom-down-appear-active {
  -webkit-animation-name: antZoomDownIn;
          animation-name: antZoomDownIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.zoom-down-leave.zoom-down-leave-active {
  -webkit-animation-name: antZoomDownOut;
          animation-name: antZoomDownOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.zoom-down-enter,
.zoom-down-appear {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-down-leave {
  -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-left-enter,
.zoom-left-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-left-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-left-enter.zoom-left-enter-active,
.zoom-left-appear.zoom-left-appear-active {
  -webkit-animation-name: antZoomLeftIn;
          animation-name: antZoomLeftIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.zoom-left-leave.zoom-left-leave-active {
  -webkit-animation-name: antZoomLeftOut;
          animation-name: antZoomLeftOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.zoom-left-enter,
.zoom-left-appear {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-left-leave {
  -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-right-enter,
.zoom-right-appear {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-right-leave {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.zoom-right-enter.zoom-right-enter-active,
.zoom-right-appear.zoom-right-appear-active {
  -webkit-animation-name: antZoomRightIn;
          animation-name: antZoomRightIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.zoom-right-leave.zoom-right-leave-active {
  -webkit-animation-name: antZoomRightOut;
          animation-name: antZoomRightOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  pointer-events: none;
}
.zoom-right-enter,
.zoom-right-appear {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-right-leave {
  -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
@-webkit-keyframes antZoomIn {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes antZoomIn {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes antZoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
}
@keyframes antZoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
}
@-webkit-keyframes antZoomBigIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes antZoomBigIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes antZoomBigOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
}
@keyframes antZoomBigOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
}
@-webkit-keyframes antZoomUpIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
}
@keyframes antZoomUpIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
}
@-webkit-keyframes antZoomUpOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    opacity: 0;
  }
}
@keyframes antZoomUpOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
    opacity: 0;
  }
}
@-webkit-keyframes antZoomLeftIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }
}
@keyframes antZoomLeftIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }
}
@-webkit-keyframes antZoomLeftOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    opacity: 0;
  }
}
@keyframes antZoomLeftOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    opacity: 0;
  }
}
@-webkit-keyframes antZoomRightIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}
@keyframes antZoomRightIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}
@-webkit-keyframes antZoomRightOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    opacity: 0;
  }
}
@keyframes antZoomRightOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    opacity: 0;
  }
}
@-webkit-keyframes antZoomDownIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
}
@keyframes antZoomDownIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
}
@-webkit-keyframes antZoomDownOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 0;
  }
}
@keyframes antZoomDownOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 0;
  }
}
.ant-motion-collapse-legacy {
  overflow: hidden;
}
.ant-motion-collapse-legacy-active {
  -webkit-transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
  transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
.ant-motion-collapse {
  overflow: hidden;
  -webkit-transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
  transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-input-number {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-variant: tabular-nums;
  list-style: none;
  -webkit-font-feature-settings: 'tnum', "tnum";
          font-feature-settings: 'tnum', "tnum";
  position: relative;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  width: 90px;
  margin: 0;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.ant-input-number::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-input-number:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.ant-input-number:focus {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-input-number-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
.ant-input-number[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
textarea.ant-input-number {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  -webkit-transition: all 0.3s, height 0s;
  transition: all 0.3s, height 0s;
}
.ant-input-number-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-input-number-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-input-number-handler {
  position: relative;
  display: block;
  width: 100%;
  height: 50%;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  line-height: 0;
  text-align: center;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.ant-input-number-handler:active {
  background: #f4f4f4;
}
.ant-input-number-handler:hover .ant-input-number-handler-up-inner,
.ant-input-number-handler:hover .ant-input-number-handler-down-inner {
  color: #40a9ff;
}
.ant-input-number-handler-up-inner,
.ant-input-number-handler-down-inner {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 4px;
  width: 12px;
  height: 12px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 12px;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-input-number-handler-up-inner > *,
.ant-input-number-handler-down-inner > * {
  line-height: 1;
}
.ant-input-number-handler-up-inner svg,
.ant-input-number-handler-down-inner svg {
  display: inline-block;
}
.ant-input-number-handler-up-inner::before,
.ant-input-number-handler-down-inner::before {
  display: none;
}
.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon,
.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
  display: block;
}
.ant-input-number:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.ant-input-number-focused {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-input-number-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
.ant-input-number-disabled .ant-input-number-input {
  cursor: not-allowed;
}
.ant-input-number-disabled .ant-input-number-handler-wrap {
  display: none;
}
.ant-input-number-input {
  width: 100%;
  height: 30px;
  padding: 0 11px;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  outline: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -moz-appearance: textfield !important;
}
.ant-input-number-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-input-number-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number-input[type='number']::-webkit-inner-spin-button,
.ant-input-number-input[type='number']::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.ant-input-number-lg {
  padding: 0;
  font-size: 16px;
}
.ant-input-number-lg input {
  height: 38px;
}
.ant-input-number-sm {
  padding: 0;
}
.ant-input-number-sm input {
  height: 22px;
  padding: 0 7px;
}
.ant-input-number-handler-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 100%;
  background: #fff;
  border-left: 1px solid #d9d9d9;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  -webkit-transition: opacity 0.24s linear 0.1s;
  transition: opacity 0.24s linear 0.1s;
}
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {
  display: inline-block;
  font-size: 12px;
  font-size: 7px \9;
  -webkit-transform: scale(0.58333333) rotate(0deg);
      -ms-transform: scale(0.58333333) rotate(0deg);
          transform: scale(0.58333333) rotate(0deg);
  min-width: auto;
  margin-right: 0;
}
:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,
:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {
  font-size: 12px;
}
.ant-input-number-handler-wrap:hover .ant-input-number-handler {
  height: 40%;
}
.ant-input-number:hover .ant-input-number-handler-wrap {
  opacity: 1;
}
.ant-input-number-handler-up {
  cursor: pointer;
}
.ant-input-number-handler-up-inner {
  top: 50%;
  margin-top: -5px;
  text-align: center;
}
.ant-input-number-handler-up:hover {
  height: 60% !important;
}
.ant-input-number-handler-down {
  top: 0;
  border-top: 1px solid #d9d9d9;
  cursor: pointer;
}
.ant-input-number-handler-down-inner {
  top: 50%;
  margin-top: -6px;
  text-align: center;
}
.ant-input-number-handler-down:hover {
  height: 60% !important;
}
.ant-input-number-handler-up-disabled,
.ant-input-number-handler-down-disabled {
  cursor: not-allowed;
}
.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner,
.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner {
  color: rgba(0, 0, 0, 0.25);
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-slider {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum', "tnum";
          font-feature-settings: 'tnum', "tnum";
  position: relative;
  height: 12px;
  margin: 14px 6px 10px;
  padding: 4px 0;
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
}
.ant-slider-vertical {
  width: 12px;
  height: 100%;
  margin: 6px 10px;
  padding: 0 4px;
}
.ant-slider-vertical .ant-slider-rail {
  width: 4px;
  height: 100%;
}
.ant-slider-vertical .ant-slider-track {
  width: 4px;
}
.ant-slider-vertical .ant-slider-handle {
  margin-bottom: -7px;
  margin-left: -5px;
}
.ant-slider-vertical .ant-slider-mark {
  top: 0;
  left: 12px;
  width: 18px;
  height: 100%;
}
.ant-slider-vertical .ant-slider-mark-text {
  left: 4px;
  white-space: nowrap;
}
.ant-slider-vertical .ant-slider-step {
  width: 4px;
  height: 100%;
}
.ant-slider-vertical .ant-slider-dot {
  top: auto;
  left: 2px;
  margin-bottom: -4px;
}
.ant-slider-with-marks {
  margin-bottom: 28px;
}
.ant-slider-rail {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #f5f5f5;
  border-radius: 2px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.ant-slider-track {
  position: absolute;
  height: 4px;
  background-color: #91d5ff;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.ant-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  margin-left: -7px;
  background-color: #fff;
  border: solid 2px #91d5ff;
  border-radius: 50%;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  cursor: pointer;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.6s, -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: border-color 0.3s, -webkit-box-shadow 0.6s, -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), -webkit-box-shadow 0.6s, -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.ant-slider-handle:focus {
  border-color: #46a6ff;
  outline: none;
  -webkit-box-shadow: 0 0 0 5px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 5px rgba(24, 144, 255, 0.2);
}
.ant-slider-handle.ant-tooltip-open {
  border-color: #1890ff;
}
.ant-slider:hover .ant-slider-rail {
  background-color: #e1e1e1;
}
.ant-slider:hover .ant-slider-track {
  background-color: #69c0ff;
}
.ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) {
  border-color: #69c0ff;
}
.ant-slider-mark {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  font-size: 14px;
}
.ant-slider-mark-text {
  position: absolute;
  display: inline-block;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  word-break: keep-all;
  cursor: pointer;
}
.ant-slider-mark-text-active {
  color: rgba(0, 0, 0, 0.65);
}
.ant-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.ant-slider-dot {
  position: absolute;
  top: -2px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background-color: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 50%;
  cursor: pointer;
}
.ant-slider-dot:first-child {
  margin-left: -4px;
}
.ant-slider-dot:last-child {
  margin-left: -4px;
}
.ant-slider-dot-active {
  border-color: #8cc8ff;
}
.ant-slider-disabled {
  cursor: not-allowed;
}
.ant-slider-disabled .ant-slider-track {
  background-color: rgba(0, 0, 0, 0.25) !important;
}
.ant-slider-disabled .ant-slider-handle,
.ant-slider-disabled .ant-slider-dot {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.25) !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: not-allowed;
}
.ant-slider-disabled .ant-slider-mark-text,
.ant-slider-disabled .ant-slider-dot {
  cursor: not-allowed !important;
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-tooltip {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum', "tnum";
          font-feature-settings: 'tnum', "tnum";
  position: absolute;
  z-index: 1060;
  display: block;
  max-width: 250px;
  visibility: visible;
}
.ant-tooltip-hidden {
  display: none;
}
.ant-tooltip-placement-top,
.ant-tooltip-placement-topLeft,
.ant-tooltip-placement-topRight {
  padding-bottom: 8px;
}
.ant-tooltip-placement-right,
.ant-tooltip-placement-rightTop,
.ant-tooltip-placement-rightBottom {
  padding-left: 8px;
}
.ant-tooltip-placement-bottom,
.ant-tooltip-placement-bottomLeft,
.ant-tooltip-placement-bottomRight {
  padding-top: 8px;
}
.ant-tooltip-placement-left,
.ant-tooltip-placement-leftTop,
.ant-tooltip-placement-leftBottom {
  padding-right: 8px;
}
.ant-tooltip-inner {
  min-width: 30px;
  min-height: 32px;
  padding: 6px 8px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  word-wrap: break-word;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-tooltip-arrow {
  position: absolute;
  display: block;
  width: 13.07106781px;
  height: 13.07106781px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}
.ant-tooltip-arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.75);
  content: '';
  pointer-events: auto;
}
.ant-tooltip-placement-top .ant-tooltip-arrow,
.ant-tooltip-placement-topLeft .ant-tooltip-arrow,
.ant-tooltip-placement-topRight .ant-tooltip-arrow {
  bottom: -5.07106781px;
}
.ant-tooltip-placement-top .ant-tooltip-arrow::before,
.ant-tooltip-placement-topLeft .ant-tooltip-arrow::before,
.ant-tooltip-placement-topRight .ant-tooltip-arrow::before {
  -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateY(-6.53553391px) rotate(45deg);
      -ms-transform: translateY(-6.53553391px) rotate(45deg);
          transform: translateY(-6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-top .ant-tooltip-arrow {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ant-tooltip-placement-topLeft .ant-tooltip-arrow {
  left: 13px;
}
.ant-tooltip-placement-topRight .ant-tooltip-arrow {
  right: 13px;
}
.ant-tooltip-placement-right .ant-tooltip-arrow,
.ant-tooltip-placement-rightTop .ant-tooltip-arrow,
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  left: -5.07106781px;
}
.ant-tooltip-placement-right .ant-tooltip-arrow::before,
.ant-tooltip-placement-rightTop .ant-tooltip-arrow::before,
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow::before {
  -webkit-box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateX(6.53553391px) rotate(45deg);
      -ms-transform: translateX(6.53553391px) rotate(45deg);
          transform: translateX(6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-right .ant-tooltip-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ant-tooltip-placement-rightTop .ant-tooltip-arrow {
  top: 5px;
}
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  bottom: 5px;
}
.ant-tooltip-placement-left .ant-tooltip-arrow,
.ant-tooltip-placement-leftTop .ant-tooltip-arrow,
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  right: -5.07106781px;
}
.ant-tooltip-placement-left .ant-tooltip-arrow::before,
.ant-tooltip-placement-leftTop .ant-tooltip-arrow::before,
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow::before {
  -webkit-box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateX(-6.53553391px) rotate(45deg);
      -ms-transform: translateX(-6.53553391px) rotate(45deg);
          transform: translateX(-6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-left .ant-tooltip-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ant-tooltip-placement-leftTop .ant-tooltip-arrow {
  top: 5px;
}
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  bottom: 5px;
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow,
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  top: -5.07106781px;
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow::before,
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow::before,
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow::before {
  -webkit-box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateY(6.53553391px) rotate(45deg);
      -ms-transform: translateY(6.53553391px) rotate(45deg);
          transform: translateY(6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow {
  left: 13px;
}
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  right: 13px;
}

.layer-h5ds_text {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}
.layer-h5ds_text .element {
  overflow: visible!important;
  overflow: initial!important;
}
.layer-h5ds_text .layer-h5ds_text-inner {
  height: 100%;
  width: 100%;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}
.layer-h5ds_text .layer-h5ds_text-inner .layer-h5ds_text-box {
  transform-origin: 0 0;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}
.layer-h5ds_text .layer-h5ds_text-inner .layer-h5ds_text-auto {
  display: block;
  word-break: break-all;
}
.layer-h5ds_text .layer-h5ds_text-inner .layer-h5ds_text-auto div {
  background-clip: inherit;
  -webkit-background-clip: inherit;
  background: inherit;
}
.layer-h5ds_text .layer-h5ds_text-inner .layer-h5ds_text-auto span {
  display: inline-block;
  position: relative;
  color: inherit;
  background-clip: inherit;
  -webkit-background-clip: inherit;
  background-image: inherit;
  -webkit-text-fill-color: inherit;
  background: inherit;
  text-decoration: inherit;
  transform: translate3d(0, 0, 0);
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-adsorb-lines {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  pointer-events: none;
}
.h5ds-adsorb-lines .h5ds-adsorb-line {
  display: none;
  opacity: 0.7;
  position: absolute;
  background: #00feff;
  z-index: 999999;
}
.h5ds-adsorb-lines .h5ds-adsorb-line-active {
  display: block;
}
.h5ds-default-layer-item,
.h5ds-adsorb-layer-item {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 50% 50%;
  pointer-events: none;
}
.h5ds-default-layer-item::after,
.h5ds-adsorb-layer-item::after,
.h5ds-default-layer-item::before,
.h5ds-adsorb-layer-item::before {
  display: inline-block;
  content: '';
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  opacity: 0.3;
}
.h5ds-default-layer-item::after,
.h5ds-adsorb-layer-item::after {
  z-index: 1;
  border: 1px dashed #ff5402;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-animatelist {
  width: 250px;
  transform: translateX(250px);
  transition: transform 0.5s;
  position: absolute;
  z-index: 1000;
  right: 350px;
  top: 60px;
  bottom: 0;
  background: #30373f;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-right: 4px solid #252a2e;
}
.h5ds-animatelist .ant-tabs-nav {
  line-height: 29px;
}
.h5ds-animatelist .ant-tabs-nav .ant-tabs-tab {
  margin-right: 20px;
}
.h5ds-animatelist .ant-tabs-bar {
  border-bottom: 4px solid #252a2e;
}
.h5ds-animatelist .ant-tabs-tab {
  padding: 12px 10px;
  color: #a5b6c8;
}
.h5ds-animatelist ul.h5ds-basic-animatelist-ul {
  overflow: auto;
}
.h5ds-animatelist ul.h5ds-basic-animatelist-ul li {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  overflow: hidden;
  margin: 5px;
  font-size: 12px;
  background: #535f6b;
  cursor: pointer;
  vertical-align: top;
  word-break: break-word;
  color: #a5b6c8;
}
.h5ds-animatelist-show {
  transform: translateX(0);
}
.h5ds-basic-animatelist-close {
  position: absolute;
  top: 10px;
  right: 0;
  background: #ff5402;
  color: #fff;
  padding: 2px 6px;
  z-index: 100;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-center {
  position: absolute;
  left: 140px;
  top: 60px;
  bottom: 0;
  right: 350px;
  overflow: hidden;
}
.h5ds-center .h5ds-canvas-border {
  box-sizing: content-box;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform: translate(-10000px, -10000px);
  border: 10000px solid rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
.h5ds-center .h5ds-canvas-realsize {
  position: absolute;
}
.layer-group-select {
  position: absolute;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.2);
  border: 1px dotted #ff5402;
  box-sizing: border-box;
}
.layer-group-eventbox {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.h5ds-canvas {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background: #535f6b;
  z-index: 99;
}
.h5ds-canvas * {
  touch-action: none;
}
.h5ds-canvas-box {
  background: #fff;
  display: inline-block;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  position: absolute;
  transform-origin: 0 0;
  z-index: 100;
}
.h5ds-canvas-box .h5ds-canvas-lines {
  position: absolute;
  z-index: 10000;
  pointer-events: none;
  left: 0;
  top: 0;
  box-sizing: border-box;
  opacity: 0.2;
}
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphone678 {
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 0px;
  border: 1px dashed #fff;
  width: 320px;
  height: 514px;
}
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphone678::before,
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphone678::after {
  content: 'iphone6/7/8';
  display: inline-block;
  position: absolute;
  left: -75px;
  width: 75px;
  color: #fff;
  font-size: 12px;
}
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphone678::before {
  top: -1px;
  border-top: 1px dashed #fff;
}
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphone678::after {
  bottom: -1px;
  border-bottom: 1px dashed #fff;
}
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphone678plus {
  position: absolute;
  box-sizing: border-box;
  left: 0;
  border: 1px dashed #fff;
  width: 320px;
  height: 520px;
}
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphoneX {
  position: absolute;
  box-sizing: border-box;
  left: 0;
  border: 1px dashed #fff;
  width: 320px;
  height: 640px;
}
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphoneX::before,
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphoneX::after {
  content: 'iphoneX';
  display: inline-block;
  position: absolute;
  right: -75px;
  width: 75px;
  color: #fff;
  font-size: 12px;
  text-align: right;
}
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphoneX::before {
  top: -1px;
  border-top: 1px dashed #fff;
}
.h5ds-canvas-box .h5ds-canvas-lines .h5ds-canvas-lines-iphoneX::after {
  bottom: -1px;
  border-bottom: 1px dashed #fff;
}
.h5ds-canvas-box .element-show .element {
  opacity: 1 !important;
}
.h5ds-canvas-box .animation-disabled .layer .element {
  -webkit-animation: none !important;
          animation: none !important;
}
.h5ds-canvas-box .h5ds-canvas-app,
.h5ds-canvas-box .h5ds-pages-app {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 999;
}
.h5ds-canvas-box .h5ds-page-view {
  width: 100%;
  height: 100% !important;
  position: relative;
  z-index: 1000;
}
.h5ds-canvas-box .h5ds-fixed-view {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 1100;
}
.h5ds-canvas-box #h5dsPageViewFixedUp {
  height: 0 !important;
}
.h5ds-canvas-box #h5dsPageViewFixedDown {
  z-index: 900;
  width: 100%;
  height: 100%;
}
.h5ds-canvas-box #h5dsPageViewFixedLoading {
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: #fff;
}
.h5ds-canvas-box .h5ds-page-viewup-full.h5dsPageViewFixed {
  width: 100%;
  height: 100%;
  pointer-events: inherit;
}
.h5ds-canvas-box #h5dsPageViewPopup {
  display: none;
  height: 100%;
  width: 100%;
  z-index: 1200;
}
.h5ds-canvas-box .h5ds-swiper-layers {
  display: block;
  height: 100%;
}
.h5ds-swiper-page[data-langpage] > .h5ds-swiper-pageinner {
  /*滚动条*/
}
.h5ds-swiper-page[data-langpage] > .h5ds-swiper-pageinner ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-swiper-page[data-langpage] > .h5ds-swiper-pageinner ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-swiper-page[data-langpage] > .h5ds-swiper-pageinner ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-swiper-page[data-langpage] > .h5ds-swiper-pageinner ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-swiper-page[data-langpage] > .h5ds-swiper-pageinner ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-swiper-page[data-langpage] > .h5ds-swiper-pageinner ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-setpage-width {
  position: absolute;
  height: 100%;
  width: 0px;
  right: 0;
  z-index: 9999;
}
.h5ds-setpage-width a {
  cursor: move;
  position: absolute;
  top: 50%;
  left: -7px;
  margin-top: -8px;
  transform: rotate(90deg);
}
.h5ds-setpage-width .h5ds-ico {
  color: #fff;
  font-size: 20px;
  background: #ff5402;
  border-radius: 4px;
  position: relative;
  z-index: 100;
  top: 1px;
  transform: translate3d(0, 0, 0);
}
.h5ds-setpage-width:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
}
.h5ds-setpage-width .h5ds-setpage-px {
  top: 50%;
  left: 40px;
}
.h5ds-setpage-height {
  text-align: center;
  bottom: 16px;
  position: absolute;
  width: 100%;
  background: none;
  height: 0px;
  z-index: 9999;
}
.h5ds-setpage-height a {
  cursor: move;
}
.h5ds-setpage-height .h5ds-ico {
  color: #fff;
  font-size: 20px;
  background: #ff5402;
  border-radius: 4px;
  position: relative;
  z-index: 100;
  top: 1px;
  transform: translate3d(0, 0, 0);
}
.h5ds-setpage-height:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
}
.h5ds-setpage-px {
  position: absolute;
  font-size: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  line-height: normal;
  top: 40px;
  z-index: 100;
}

/*  网格 */
.h5ds-grid {
  pointer-events: none;
  position: absolute;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}
.h5ds-grid .h5ds-grid-row,
.h5ds-grid .h5ds-grid-col {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.3;
}
.h5ds-grid .h5ds-grid-row li,
.h5ds-grid .h5ds-grid-col li {
  position: absolute;
}
.h5ds-grid .h5ds-grid-row li {
  height: 1px;
  margin-top: -1px;
  background: #00ffff;
  width: 100%;
}
.h5ds-grid .h5ds-grid-col li {
  width: 1px;
  margin-left: -1px;
  background: #00ffff;
  height: 100%;
  float: left;
}
.h5ds-grid-show {
  display: block;
}

.h5ds-canvas-navigator-box {
  position: absolute;
  z-index: 1000;
  bottom: 10px;
  right: 10px;
}
.h5ds-canvas-navigator-btn {
  position: absolute;
  z-index: 200;
  width: 20px;
  height: 20px;
  bottom: -5px;
  right: -5px;
  border-radius: 100px;
  background: #000;
  color: #fff;
  transition: 0.3s;
  transform-origin: center;
  text-align: center;
  transform: rotate(-180deg);
}
.h5ds-canvas-navigator {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.h5ds-canvas-navigator .h5ds-canvas-navigator-page {
  position: absolute;
  background: #ccc;
}
.h5ds-canvas-navigator .h5ds-canvas-navigator-control {
  position: absolute;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
  cursor: move;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-ruler-span-x {
  width: 30px;
  position: absolute;
  top: 0;
  background: #ff5402;
  z-index: 4000;
  pointer-events: none;
  opacity: 0.3;
}
.h5ds-ruler-span-y {
  height: 30px;
  position: absolute;
  left: 0;
  background: #ff5402;
  z-index: 4000;
  opacity: 0.3;
  pointer-events: none;
}
.h5ds-ruler-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 1000;
}
.h5ds-ruler-line canvas {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  cursor: move;
  z-index: 100;
}
.h5ds-ruler-line .h5ds-ruler-guides {
  position: absolute;
  box-sizing: content-box;
  width: 4px;
  background: #00ffff;
  cursor: move;
}
.h5ds-ruler-line .h5ds-ruler-guides::after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.h5ds-ruler-line .h5ds-ruler-guides.h5ds-ruler-guides-row::after {
  height: 4px;
  top: -1.5px;
}
.h5ds-ruler-line .h5ds-ruler-guides.h5ds-ruler-guides-col::after {
  width: 4px;
  left: -1.5px;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-editarea {
  position: absolute;
  top: 60px;
  width: 350px;
  right: 0;
  bottom: 0;
  background: #30373f;
  z-index: 1000;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-appset {
  height: 100%;
}
.h5ds-appset .h5ds-basic-tabs .ant-tabs-nav .ant-tabs-tab {
  padding: 12px 10px;
  margin-right: 10px;
}
.h5ds-appset .ant-tabs-tab-arrow-show {
  color: #a5b6c8;
}
.h5ds-appset-item .h5ds-layout-setitem-name {
  display: block;
  position: static;
  position: initial;
  padding: 10px 0;
  font-size: 12px;
}
.h5ds-appset-item .h5ds-layout-setitem-content {
  margin-left: 0;
}
/* 设置翻页动画 */
/*  loading */
.h5ds-appset-loading .loaders:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.h5ds-appset-loading .loader {
  float: left;
  background: #252a2e;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  margin: 2px;
  vertical-align: middle;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.h5ds-appset-loading .loader > div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.h5ds-appset-loading .active {
  background: #ff5402;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-util-background .h5ds-util-background-title {
  color: #a5b6c8;
  font-size: 12px;
  margin-bottom: 10px;
}
.h5ds-util-background-img {
  width: 100%;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
/*  组合框 */
.h5ds-setlayer-group .h5ds-setlayer-group-box {
  margin: 0 10px;
}
.h5ds-setlayer-group .h5ds-setlayer-group-box li.h5ds-item {
  vertical-align: top;
  display: inline-block;
  text-align: center;
  color: #a5b6c8;
  font-size: 12px;
  width: 72px;
  height: 80px;
  padding-top: 10px;
  margin: 4px 4px 0 0;
  background: #252a2e;
  cursor: pointer;
  transition: 0.3s;
}
.h5ds-setlayer-group .h5ds-setlayer-group-box li.h5ds-item:hover {
  background: #ff5402;
  color: #fff;
}
.h5ds-setlayer-group .h5ds-setlayer-group-box li.h5ds-item .h5ds-ico {
  font-size: 24px;
}
.h5ds-setlayer-group .h5ds-setlayer-group-box li.h5ds-item span {
  padding-top: 5px;
  display: block;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-layerset {
  width: 100%;
  height: 100%;
  position: relative;
}
.h5ds-layerset-tabsbox {
  width: 100%;
  height: 100%;
  position: relative;
}
.h5ds-layerset-tabsbox > .ant-tabs {
  height: 100%;
}
.h5ds-layerset-tabsbox > .ant-tabs > .ant-tabs-bar {
  border-bottom: 4px solid #252a2e;
}
.h5ds-layerset-tabsbox > .ant-tabs > .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab {
  padding: 12px 16px 12px 16px;
  color: #a5b6c8;
}
.h5ds-layerset-tabsbox > .ant-tabs > .ant-tabs-content {
  position: absolute;
  top: 50px;
  bottom: 0;
  width: 100%;
}
.h5ds-layerset-tabsbox > .ant-tabs > .ant-tabs-content > .ant-tabs-tabpane {
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
.h5ds-layerset-tabsbox > .ant-tabs > .ant-tabs-content > .ant-tabs-tabpane .h5ds-tabs-edit-box {
  padding: 10px;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-basic-animateset-addbtn {
  width: 100%;
  height: 100px;
  background: #252a2e !important;
  border: 1px dashed #535f6b !important;
  color: #a5b6c8 !important;
}
.h5ds-basic-animateset-addbtn:focus,
.h5ds-basic-animateset-addbtn:active {
  color: #fff;
  background-color: #252a2e;
  border-color: #535f6b;
}
.h5ds-basic-animateset-addbtn:hover {
  background: #30373f;
  border: 1px dashed #a5b6c8;
}
.h5ds-basic-animateset-list {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 10px;
  overflow: hidden;
  overflow-y: scroll;
}
.h5ds-scroll-whitebg {
  background: #fff !important;
}
.h5ds-basic-animateset-item {
  padding: 0 10px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.h5ds-basic-animateset-item .h5ds-layout-setitem-content {
  color: #fff;
}
.h5ds-basic-animateset-item.h5ds-basic-animateset-active {
  background: #535f6b;
}
.h5ds-basic-animateset-btndel,
.h5ds-basic-animateset-btnset {
  position: absolute;
  right: 0;
  top: 0;
  background: #ff5402;
  color: #fff;
  font-size: 18px;
  padding: 0 5px;
  z-index: 100;
}
.h5ds-basic-animateset-btndel i,
.h5ds-basic-animateset-btnset i {
  cursor: pointer;
}
.h5ds-basic-animateset-btnset {
  top: 27px;
  background: #535f6b;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-event-list li.h5ds-event {
  background: #252a2e;
  margin: 10px 0;
  padding: 30px 10px;
  text-align: center;
  color: #a5b6c8;
  cursor: pointer;
}
.h5ds-event-list li.h5ds-event .h5ds {
  font-size: 20px;
}
.h5ds-event-list li.h5ds-event:hover {
  color: #fff;
  background: #0e1113;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-event-click .h5ds-event-click-content {
  padding: 20px 0;
}
.h5ds-event-click .h5ds-event-click-content h1 {
  color: #a5b6c8;
  padding: 10px 0;
  font-size: 16px;
}
.h5ds-event-click .h5ds-event-click-content ul > li {
  display: inline-block;
  margin: 0 10px 10px 0;
  background: #252a2e;
  color: #a5b6c8;
  width: 100px;
  height: 60px;
  vertical-align: top;
  padding: 10px;
}
.h5ds-event-click .h5ds-event-click-content ul > li.active {
  background: #ff5402;
  color: #fff;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-event .h5ds-eventbox-content {
  margin: 10px 0;
  font-size: 14px;
  color: #a5b6c8;
}
.h5ds-event .h5ds-eventbox-tips {
  color: #a5b6c8;
}
.h5ds-event-set {
  position: absolute;
  width: 100%;
  z-index: 1000;
  background: #30373f;
  top: 4px;
  bottom: 0;
  left: 0;
  transition: 0.4s;
  transform: translateX(350px);
}
.h5ds-event-set .h5ds-close-event,
.h5ds-event-set .h5ds-clear-event {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  width: 160px;
  text-align: center;
  padding: 4px 10px;
  background: #ff5402;
}
.h5ds-event-set .h5ds-close-event .h5ds,
.h5ds-event-set .h5ds-clear-event .h5ds {
  display: inline-block;
  border-radius: 100px;
  width: 20px;
  height: 20px;
  color: #fff;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  top: -1px;
}
.h5ds-event-set .h5ds-close-event {
  left: 10px;
  right: auto;
}
.h5ds-event-set .h5ds-clear-event {
  font-size: 14px;
  font-weight: normal;
  background: #a5b6c8;
  color: #0e1113;
}
.h5ds-event-set .h5ds-clear-event .h5ds {
  font-size: 14px;
  font-weight: bolder;
}
.h5ds-event-set .h5ds-event-title {
  margin: 10px 0;
  color: #a5b6c8;
  font-size: 14px;
}
.h5ds-event-set .h5ds-event-set-box {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: auto;
}
.h5ds-event-set .h5ds-event-set-box .h5ds-eventbox {
  margin: 0 10px;
}
.h5ds-event-show {
  transform: translateX(0);
}





.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-uebox-topages h4 {
  color: #a5b6c8;
  font-size: 14px;
}
.h5ds-uebox-topages li {
  cursor: pointer;
  vertical-align: top;
  display: inline-block;
  margin: 10px 10px 0 0;
  width: 90px;
  height: 55px;
  padding: 5px;
  text-align: center;
  color: #a5b6c8;
  background: #0e1113;
}
.h5ds-uebox-topages li span {
  display: block;
}
.h5ds-uebox-topages li .name {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.h5ds-uebox-topages li.active {
  background: #ff5402;
  color: #fff;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-adsorbset .h5ds-adsorbset-tips {
  color: #a5b6c8;
  font-size: 12px;
  padding: 10px 0;
}
.h5ds-adsorbset .h5ds-adsorbset-dots {
  margin: 20px 0;
  width: 60px;
  height: 40px;
  position: relative;
  border: 1px dashed #a5b6c8;
}
.h5ds-adsorbset .h5ds-adsorbset-dots a {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #30373f;
  border: 1px dashed #a5b6c8;
  position: absolute;
}
.h5ds-adsorbset .h5ds-adsorbset-dots a:hover {
  background: #0e1113;
}
.h5ds-adsorbset .h5ds-adsorbset-dots a.h5ds-adsorbset-active {
  background: #ff5402;
  border: 1px solid #ff5402;
}
.h5ds-adsorbset .h5ds-adsorbset-dots .h5ds-adsorbset-top-left {
  top: -5px;
  left: -5px;
}
.h5ds-adsorbset .h5ds-adsorbset-dots .h5ds-adsorbset-top-center {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.h5ds-adsorbset .h5ds-adsorbset-dots .h5ds-adsorbset-top-right {
  top: -5px;
  right: -5px;
}
.h5ds-adsorbset .h5ds-adsorbset-dots .h5ds-adsorbset-left-center {
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}
.h5ds-adsorbset .h5ds-adsorbset-dots .h5ds-adsorbset-right-center {
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}
.h5ds-adsorbset .h5ds-adsorbset-dots .h5ds-adsorbset-bottom-left {
  bottom: -5px;
  left: -5px;
}
.h5ds-adsorbset .h5ds-adsorbset-dots .h5ds-adsorbset-bottom-center {
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.h5ds-adsorbset .h5ds-adsorbset-dots .h5ds-adsorbset-bottom-right {
  bottom: -5px;
  right: -5px;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-baiscset .h5ds-layout-setitem-name {
  text-indent: 10px;
}
.h5ds-baiscset .ant-input-number-handler-wrap {
  opacity: 1;
}
.h5ds-baiscset .h5ds-layout-setitem {
  margin: 0;
}
.h5ds-baiscset .h5ds-layer-flip a {
  color: #a5b6c8;
}
.h5ds-baiscset .h5ds-chain-width-height {
  cursor: pointer;
  position: absolute;
  transform: rotate(-46deg);
  display: inline-block;
  color: #666;
  right: -2px;
  font-weight: normal;
}
.h5ds-baiscset .h5ds-chain-width-height-active {
  color: #fff;
}

.h5ds-layout-moreset {
  padding: 20px 0;
}
.h5ds-layout-moreset .ant-input-number-handler-wrap {
  opacity: 1;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-pageset {
  height: 100%;
}
.h5ds-pageset-null {
  text-align: center;
  padding: 40px;
  color: #a5b6c8;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-eventlist ul {
  overflow: auto;
}
.h5ds-eventlist li.h5ds-event-item {
  display: inline-block;
  height: 70px;
  width: 100px;
  background: #252a2e;
  margin: 0 10px 10px 10px;
  padding-top: 10px;
  text-align: center;
  color: #a5b6c8;
  cursor: pointer;
}
.h5ds-eventlist li.h5ds-event-item .h5ds {
  font-size: 20px;
}
.h5ds-eventlist li.h5ds-event-item span {
  display: block;
  font-size: 12px;
}
.h5ds-eventlist li.h5ds-event-item:hover {
  color: #fff;
  background: #0e1113;
}
.h5ds-eventlist li.h5ds-event-item.active,
.h5ds-eventlist li.h5ds-event-item.active:hover {
  color: #fff;
  background: #ff5402;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-header {
  background: #0e1113;
  vertical-align: middle;
  height: 60px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1001;
}
.h5ds-header .h5ds-logo {
  display: inline-block;
  height: 100%;
  line-height: 60px;
  text-align: center;
  text-indent: 20px;
  font-size: 20px;
}
.h5ds-header .h5ds-logo a {
  color: #a5b6c8;
}
.h5ds-header .h5ds-logo span {
  color: #ff5402;
}
.h5ds-header .h5ds-logo i {
  font-size: 12px;
  font-style: normal;
  color: #5C6773;
  margin-left: 10px;
}
.h5ds-header .h5ds-logo em {
  font-size: 12px;
}
.h5ds-header .h5ds-h5set {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}
.h5ds-header .h5ds-h5set .h5ds-btn-yellow {
  font-size: 14px;
}
.h5ds-header .h5ds-h5set:hover .appset-list {
  display: block;
}
.h5ds-header .h5ds-h5type {
  position: relative;
  margin-left: 30px;
  display: inline-block;
  background: #30373f;
  font-size: 12px;
  top: -3px;
  z-index: 100;
}
.h5ds-header .h5ds-h5type a {
  color: #a5b6c8;
  display: inline-block;
  width: 50px;
  line-height: 24px;
  text-align: center;
  height: 100%;
}
.h5ds-header .h5ds-h5type a.active {
  background: #ff5402;
  color: #fff;
}
.h5ds-header .h5ds-publish-box {
  vertical-align: middle;
  float: right;
  margin: 17px 20px 0 0;
  position: relative;
  z-index: 100;
}
.h5ds-header .h5ds-publish-box a {
  color: #fff;
}
.h5ds-header .h5ds-publish-box .h5ds-ico {
  color: #ff5402;
  font-size: 20px;
  vertical-align: middle;
}
.h5ds-header .h5ds-publish-box .h5ds-logout {
  padding-left: 40px;
  color: #a5b6c8;
  font-size: 14px;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-layermenu {
  position: absolute;
  top: 0;
  right: 500px;
  left: 360px;
  height: 100%;
  text-align: center;
}
.h5ds-layermenu a {
  color: #a5b6c8;
  display: inline-block;
  line-height: 30px;
  width: 100%;
}
.h5ds-layermenu a .iconfont,
.h5ds-layermenu a .h5ds-ico {
  font-size: 18px;
}
.h5ds-layermenu a.active {
  background: #30373f;
}
.h5ds-layermenu-moreuse li {
  display: inline-block;
  padding: 5px 20px;
  vertical-align: top;
  box-sizing: border-box;
  height: 100%;
}
.h5ds-layermenu-moreuse li span {
  display: block;
  line-height: normal;
  position: relative;
  top: -5px;
}
.h5ds-layermenu-moreuse .more {
  position: relative;
  top: 10px;
  width: 30px;
  background: #0e1113;
  border-radius: 100px;
}
.h5ds-plugin-item {
  margin: 10px 10px 0 0;
  display: inline-block;
  width: 200px;
  height: 80px;
  padding-bottom: 20px;
  margin-left: 0;
  position: relative;
  color: #a5b6c8;
  background: #30373f;
}
.h5ds-plugin-item .h5ds-plugin-span {
  text-align: center;
}
.h5ds-plugin-item .iconfont,
.h5ds-plugin-item .h5ds-ico {
  line-height: normal;
}
.h5ds-plugin-item .h5ds-plugin-pic {
  margin: 10px;
  height: 60px;
  width: 60px;
  text-align: center;
  position: absolute;
  overflow: hidden;
  z-index: 100;
  top: 0;
  left: 0;
  display: inline-block;
  cursor: pointer;
}
.h5ds-plugin-item .h5ds-plugin-pic > i,
.h5ds-plugin-item .h5ds-plugin-pic .iconfont,
.h5ds-plugin-item .h5ds-plugin-pic .h5ds-ico {
  line-height: normal;
  height: 72px;
  position: relative;
  font-size: 60px;
}
.h5ds-plugin-item .h5ds-plugin-info {
  position: relative;
  font-size: 12px;
  padding: 10px 0 0 80px;
  text-align: left;
}
.h5ds-plugin-item .h5ds-plugin-info p {
  width: 100%;
  height: 16px;
  overflow: hidden;
}
.h5ds-plugin-item .h5ds-plugin-info h1 {
  font-size: 16px;
  font-weight: bolder;
  width: 100%;
  height: 26px;
  overflow: hidden;
  cursor: pointer;
}
.h5ds-plugin-item .h5ds-plugin-info em {
  opacity: 0.6;
}
.h5ds-plugin-item .h5ds-plugin-info a {
  color: #ff5402;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-publish {
  display: inline-block;
  margin-right: 15px;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-phone-preview-pagebutton {
  position: absolute;
  height: 200px;
  width: 14px;
  top: 200px;
  right: -20px;
  font-size: 12px;
}
.h5ds-phone-preview-pagebutton a {
  color: #fff;
  line-height: 12px;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding: 10px 4px;
}
.h5ds-phone-preview-pagebutton a:hover {
  background: #ffffff;
  color: #000;
}
.h5ds-phone-preview-pagebutton span {
  width: 60px;
  display: block;
  color: #fff;
}
.h5ds-pc-preview {
  width: 100%;
  height: 100%;
}
.h5ds-pc-preview .h5ds-pc-preview-bodyer {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
}
.h5ds-pc-preview .h5ds-pc-preview-down {
  position: absolute;
  z-index: 1000;
  bottom: 0px;
  right: 0px;
}
.h5ds-pc-preview .h5ds-pc-preview-down .ant-btn-primary {
  background-color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.1);
}
.h5ds-pc-preview .h5ds-pc-preview-down .ant-btn-primary a {
  color: #fff;
}
.h5ds-pc-preview .h5ds-pc-preview-down .ant-btn-primary:hover a {
  color: #ff5402;
}
.h5ds-phone-preview {
  width: 100%;
  height: 100%;
  overflow: auto;
  /*滚动条*/
}
.h5ds-phone-preview::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-phone-preview::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-phone-preview::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-phone-preview::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-phone-preview::-webkit-scrollbar-button:vertical:decrement,
.h5ds-phone-preview::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-phone-preview .h5ds-phone-preview-box {
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
  min-height: 780px;
}
.h5ds-phone-preview .h5ds-phone-preview-content {
  position: relative;
}
.h5ds-phone-preview .h5ds-phone-preview-view {
  width: 320px;
  position: relative;
}
.h5ds-phone-preview .h5ds-phone-preview-view .h5ds-phone-preview-header {
  position: relative;
  text-align: center;
  padding: 10px;
}
.h5ds-phone-preview .h5ds-phone-preview-view .h5ds-phone-preview-bodyer {
  position: relative;
}
.h5ds-phone-preview .h5ds-phone-preview-info {
  width: 600px;
  float: right;
}
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-wx {
  margin-bottom: 20px;
  position: relative;
}
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-img {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 0;
  left: 0;
  background: #252a2e;
}
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-img img {
  width: 100%;
  height: 100%;
  background: #000;
}
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-title,
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-desc {
  margin-left: 180px;
  margin-bottom: 10px;
  width: 420px;
  display: inline-block;
}
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-title.h5ds-phone-preview-title,
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-desc.h5ds-phone-preview-title {
  height: 32px;
}
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-title.h5ds-phone-preview-desc,
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-desc.h5ds-phone-preview-desc {
  height: 118px;
}
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-title textarea.ant-input,
.h5ds-phone-preview .h5ds-phone-preview-info .h5ds-phone-preview-desc textarea.ant-input {
  resize: none;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.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: 0.75s;
          animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  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 {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}
@-webkit-keyframes pulse2 {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.5, 1.5, 1.5);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse2 {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.5, 1.5, 1.5);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse2 {
  -webkit-animation-name: pulse2;
          animation-name: pulse2;
}
@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    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% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    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 {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
          animation-name: jello;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 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.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    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.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    opacity: 1;
    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.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    opacity: 1;
    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.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
          animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
          animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
          animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 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;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
          animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    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;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
          animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
          animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
          animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
          animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    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 {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    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 {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    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 {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    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 {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    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 {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
          animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
          animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
          animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
          animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
          animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    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;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    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;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
          animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
          animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
          animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
          animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
          animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
          animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
          animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
          animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
          animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    opacity: 1;
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    opacity: 1;
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    opacity: 1;
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 1;
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
          animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
          animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
          animation-name: slideOutUp;
}
/* 扩展动画 */
/* 添加自转 */
@-webkit-keyframes rollOneCount {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rollOneCount {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rollOneCount {
  -webkit-animation-name: rollOneCount;
  animation-name: rollOneCount;
}
/* 循环自转 */
@-webkit-keyframes rollInfinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rollInfinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rollInfinite {
  -webkit-animation-name: rollInfinite;
  animation-name: rollInfinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
/* 循环自转-逆向 */
@-webkit-keyframes rollInfinite2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rollInfinite2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.rollInfinite2 {
  -webkit-animation-name: rollInfinite2;
  animation-name: rollInfinite2;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
/* 放大消失 */
@-webkit-keyframes toBigFade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes toBigFade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.toBigFade {
  -webkit-animation-name: toBigFade;
  animation-name: toBigFade;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
/* 放大消失 */
@-webkit-keyframes fastShow {
  0% {
    opacity: 0;
  }
  0.0001% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fastShow {
  0% {
    opacity: 0;
  }
  0.0001% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fastShow {
  -webkit-animation-name: fastShow;
  animation-name: fastShow;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
/* 缩小进入 */
@-webkit-keyframes smallIn {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes smallIn {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.smallIn {
  -webkit-animation-name: smallIn;
  animation-name: smallIn;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
/* animation sets */
/* move from / to  */
.pt-page-moveToLeft {
  -webkit-animation: moveToLeft 0.6s ease both;
  animation: moveToLeft 0.6s ease both;
}
.pt-page-moveFromLeft {
  -webkit-animation: moveFromLeft 0.6s ease both;
  animation: moveFromLeft 0.6s ease both;
}
.pt-page-moveToRight {
  -webkit-animation: moveToRight 0.6s ease both;
  animation: moveToRight 0.6s ease both;
}
.pt-page-moveFromRight {
  -webkit-animation: moveFromRight 0.6s ease both;
  animation: moveFromRight 0.6s ease both;
}
.pt-page-moveToTop {
  -webkit-animation: moveToTop 0.6s ease both;
  animation: moveToTop 0.6s ease both;
}
.pt-page-moveFromTop {
  -webkit-animation: moveFromTop 0.6s ease both;
  animation: moveFromTop 0.6s ease both;
}
.pt-page-moveToBottom {
  -webkit-animation: moveToBottom 0.6s ease both;
  animation: moveToBottom 0.6s ease both;
}
.pt-page-moveFromBottom {
  -webkit-animation: moveFromBottom 0.6s ease both;
  animation: moveFromBottom 0.6s ease both;
}
/* fade */
.pt-page-fade {
  -webkit-animation: fade 0.7s ease both;
  animation: fade 0.7s ease both;
}
/* move from / to and fade */
.pt-page-moveToLeftFade {
  -webkit-animation: moveToLeftFade 0.7s ease both;
  animation: moveToLeftFade 0.7s ease both;
}
.pt-page-moveFromLeftFade {
  -webkit-animation: moveFromLeftFade 0.7s ease both;
  animation: moveFromLeftFade 0.7s ease both;
}
.pt-page-moveToRightFade {
  -webkit-animation: moveToRightFade 0.7s ease both;
  animation: moveToRightFade 0.7s ease both;
}
.pt-page-moveFromRightFade {
  -webkit-animation: moveFromRightFade 0.7s ease both;
  animation: moveFromRightFade 0.7s ease both;
}
.pt-page-moveToTopFade {
  -webkit-animation: moveToTopFade 0.7s ease both;
  animation: moveToTopFade 0.7s ease both;
}
.pt-page-moveFromTopFade {
  -webkit-animation: moveFromTopFade 0.7s ease both;
  animation: moveFromTopFade 0.7s ease both;
}
.pt-page-moveToBottomFade {
  -webkit-animation: moveToBottomFade 0.7s ease both;
  animation: moveToBottomFade 0.7s ease both;
}
.pt-page-moveFromBottomFade {
  -webkit-animation: moveFromBottomFade 0.7s ease both;
  animation: moveFromBottomFade 0.7s ease both;
}
/* move to with different easing */
.pt-page-moveToLeftEasing {
  -webkit-animation: moveToLeft 0.7s ease-in-out both;
  animation: moveToLeft 0.7s ease-in-out both;
}
.pt-page-moveToRightEasing {
  -webkit-animation: moveToRight 0.7s ease-in-out both;
  animation: moveToRight 0.7s ease-in-out both;
}
.pt-page-moveToTopEasing {
  -webkit-animation: moveToTop 0.7s ease-in-out both;
  animation: moveToTop 0.7s ease-in-out both;
}
.pt-page-moveToBottomEasing {
  -webkit-animation: moveToBottom 0.7s ease-in-out both;
  animation: moveToBottom 0.7s ease-in-out both;
}
/********************************* keyframes **************************************/
/* move from / to  */
@-webkit-keyframes moveToLeft {
  to {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes moveToLeft {
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveFromLeft {
  from {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes moveFromLeft {
  from {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveToRight {
  to {
    -webkit-transform: translateX(100%);
  }
}
@keyframes moveToRight {
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes moveFromRight {
  from {
    -webkit-transform: translateX(100%);
  }
}
@keyframes moveFromRight {
  from {
    transform: translateX(100%);
  }
}
@-webkit-keyframes moveToTop {
  to {
    -webkit-transform: translateY(-100%);
  }
}
@keyframes moveToTop {
  to {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveFromTop {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@keyframes moveFromTop {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveToBottom {
  to {
    -webkit-transform: translateY(100%);
  }
}
@keyframes moveToBottom {
  to {
    transform: translateY(100%);
  }
}
@-webkit-keyframes moveFromBottom {
  from {
    -webkit-transform: translateY(100%);
  }
}
@keyframes moveFromBottom {
  from {
    transform: translateY(100%);
  }
}
/* fade */
@-webkit-keyframes fade {
  to {
    opacity: 0.3;
  }
}
@keyframes fade {
  to {
    opacity: 0.3;
  }
}
/* move from / to and fade */
@-webkit-keyframes moveToLeftFade {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(-100%);
  }
}
@keyframes moveToLeftFade {
  to {
    opacity: 0.3;
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveFromLeftFade {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(-100%);
  }
}
@keyframes moveFromLeftFade {
  from {
    opacity: 0.3;
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveToRightFade {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(100%);
  }
}
@keyframes moveToRightFade {
  to {
    opacity: 0.3;
    transform: translateX(100%);
  }
}
@-webkit-keyframes moveFromRightFade {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(100%);
  }
}
@keyframes moveFromRightFade {
  from {
    opacity: 0.3;
    transform: translateX(100%);
  }
}
@-webkit-keyframes moveToTopFade {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(-100%);
  }
}
@keyframes moveToTopFade {
  to {
    opacity: 0.3;
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveFromTopFade {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(-100%);
  }
}
@keyframes moveFromTopFade {
  from {
    opacity: 0.3;
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveToBottomFade {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(100%);
  }
}
@keyframes moveToBottomFade {
  to {
    opacity: 0.3;
    transform: translateY(100%);
  }
}
@-webkit-keyframes moveFromBottomFade {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(100%);
  }
}
@keyframes moveFromBottomFade {
  from {
    opacity: 0.3;
    transform: translateY(100%);
  }
}
/* scale and fade */
.pt-page-scaleDown {
  -webkit-animation: scaleDown 0.7s ease both;
  animation: scaleDown 0.7s ease both;
}
.pt-page-scaleUp {
  -webkit-animation: scaleUp 0.7s ease both;
  animation: scaleUp 0.7s ease both;
}
.pt-page-scaleUpDown {
  -webkit-animation: scaleUpDown 0.5s ease both;
  animation: scaleUpDown 0.5s ease both;
}
.pt-page-scaleDownUp {
  -webkit-animation: scaleDownUp 0.5s ease both;
  animation: scaleDownUp 0.5s ease both;
}
.pt-page-scaleDownCenter {
  -webkit-animation: scaleDownCenter 0.4s ease-in both;
  animation: scaleDownCenter 0.4s ease-in both;
}
.pt-page-scaleUpCenter {
  -webkit-animation: scaleUpCenter 0.4s ease-out both;
  animation: scaleUpCenter 0.4s ease-out both;
}
/********************************* keyframes **************************************/
/* scale and fade */
@-webkit-keyframes scaleDown {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@keyframes scaleDown {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes scaleUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes scaleUpDown {
  from {
    opacity: 0;
    -webkit-transform: scale(1.2);
  }
}
@keyframes scaleUpDown {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes scaleDownUp {
  to {
    opacity: 0;
    -webkit-transform: scale(1.2);
  }
}
@keyframes scaleDownUp {
  to {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes scaleDownCenter {
  to {
    opacity: 0;
    -webkit-transform: scale(0.7);
  }
}
@keyframes scaleDownCenter {
  to {
    opacity: 0;
    transform: scale(0.7);
  }
}
@-webkit-keyframes scaleUpCenter {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
  }
}
@keyframes scaleUpCenter {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
}
/* rotate sides first and scale */
.pt-page-rotateRightSideFirst {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateRightSideFirst 0.8s both ease-in;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateRightSideFirst 0.8s both ease-in;
  transform-origin: 0% 50%;
  animation: rotateRightSideFirst 0.8s both ease-in;
}
.pt-page-rotateLeftSideFirst {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateLeftSideFirst 0.8s both ease-in;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateLeftSideFirst 0.8s both ease-in;
  transform-origin: 100% 50%;
  animation: rotateLeftSideFirst 0.8s both ease-in;
}
.pt-page-rotateTopSideFirst {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateTopSideFirst 0.8s both ease-in;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateTopSideFirst 0.8s both ease-in;
  transform-origin: 50% 100%;
  animation: rotateTopSideFirst 0.8s both ease-in;
}
.pt-page-rotateBottomSideFirst {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateBottomSideFirst 0.8s both ease-in;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateBottomSideFirst 0.8s both ease-in;
  transform-origin: 50% 0%;
  animation: rotateBottomSideFirst 0.8s both ease-in;
}
/* flip */
.pt-page-flipOutRight {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipOutRight 0.5s both ease-in;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipOutRight 0.5s both ease-in;
  transform-origin: 50% 50%;
  animation: flipOutRight 0.5s both ease-in;
}
.pt-page-flipInLeft {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipInLeft 0.5s both ease-out;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipInLeft 0.5s both ease-out;
  transform-origin: 50% 50%;
  animation: flipInLeft 0.5s both ease-out;
}
.pt-page-flipOutLeft {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipOutLeft 0.5s both ease-in;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipOutLeft 0.5s both ease-in;
  transform-origin: 50% 50%;
  animation: flipOutLeft 0.5s both ease-in;
}
.pt-page-flipInRight {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipInRight 0.5s both ease-out;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipInRight 0.5s both ease-out;
  transform-origin: 50% 50%;
  animation: flipInRight 0.5s both ease-out;
}
.pt-page-flipOutTop {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipOutTop 0.5s both ease-in;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipOutTop 0.5s both ease-in;
  transform-origin: 50% 50%;
  animation: flipOutTop 0.5s both ease-in;
}
.pt-page-flipInBottom {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipInBottom 0.5s both ease-out;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipInBottom 0.5s both ease-out;
  transform-origin: 50% 50%;
  animation: flipInBottom 0.5s both ease-out;
}
.pt-page-flipOutBottom {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipOutBottom 0.5s both ease-in;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipOutBottom 0.5s both ease-in;
  transform-origin: 50% 50%;
  animation: flipOutBottom 0.5s both ease-in;
}
.pt-page-flipInTop {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: flipInTop 0.5s both ease-out;
  -moz-transform-origin: 50% 50%;
  -moz-animation: flipInTop 0.5s both ease-out;
  transform-origin: 50% 50%;
  animation: flipInTop 0.5s both ease-out;
}
/* rotate fall */
.pt-page-rotateFall {
  -webkit-transform-origin: 0% 0%;
  -webkit-animation: rotateFall 1s both ease-in;
  -moz-transform-origin: 0% 0%;
  -moz-animation: rotateFall 1s both ease-in;
  transform-origin: 0% 0%;
  animation: rotateFall 1s both ease-in;
}
/* rotate newspaper */
.pt-page-rotateOutNewspaper {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: rotateOutNewspaper 0.5s both ease-in;
  -moz-transform-origin: 50% 50%;
  -moz-animation: rotateOutNewspaper 0.5s both ease-in;
  transform-origin: 50% 50%;
  animation: rotateOutNewspaper 0.5s both ease-in;
}
.pt-page-rotateInNewspaper {
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: rotateInNewspaper 0.5s both ease-out;
  -moz-transform-origin: 50% 50%;
  -moz-animation: rotateInNewspaper 0.5s both ease-out;
  transform-origin: 50% 50%;
  animation: rotateInNewspaper 0.5s both ease-out;
}
/* push */
.pt-page-rotatePushLeft {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotatePushLeft 0.8s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotatePushLeft 0.8s both ease;
  transform-origin: 0% 50%;
  animation: rotatePushLeft 0.8s both ease;
}
.pt-page-rotatePushRight {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotatePushRight 0.8s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotatePushRight 0.8s both ease;
  transform-origin: 100% 50%;
  animation: rotatePushRight 0.8s both ease;
}
.pt-page-rotatePushTop {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotatePushTop 0.8s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotatePushTop 0.8s both ease;
  transform-origin: 50% 0%;
  animation: rotatePushTop 0.8s both ease;
}
.pt-page-rotatePushBottom {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotatePushBottom 0.8s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotatePushBottom 0.8s both ease;
  transform-origin: 50% 100%;
  animation: rotatePushBottom 0.8s both ease;
}
/* pull */
.pt-page-rotatePullRight {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotatePullRight 0.5s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotatePullRight 0.5s both ease;
  transform-origin: 100% 50%;
  animation: rotatePullRight 0.5s both ease;
}
.pt-page-rotatePullLeft {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotatePullLeft 0.5s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotatePullLeft 0.5s both ease;
  transform-origin: 0% 50%;
  animation: rotatePullLeft 0.5s both ease;
}
.pt-page-rotatePullTop {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotatePullTop 0.5s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotatePullTop 0.5s both ease;
  transform-origin: 50% 0%;
  animation: rotatePullTop 0.5s both ease;
}
.pt-page-rotatePullBottom {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotatePullBottom 0.5s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotatePullBottom 0.5s both ease;
  transform-origin: 50% 100%;
  animation: rotatePullBottom 0.5s both ease;
}
/* fold */
.pt-page-rotateFoldRight {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateFoldRight 0.7s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateFoldRight 0.7s both ease;
  transform-origin: 0% 50%;
  animation: rotateFoldRight 0.7s both ease;
}
.pt-page-rotateFoldLeft {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateFoldLeft 0.7s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateFoldLeft 0.7s both ease;
  transform-origin: 100% 50%;
  animation: rotateFoldLeft 0.7s both ease;
}
.pt-page-rotateFoldTop {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateFoldTop 0.7s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateFoldTop 0.7s both ease;
  transform-origin: 50% 100%;
  animation: rotateFoldTop 0.7s both ease;
}
.pt-page-rotateFoldBottom {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateFoldBottom 0.7s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateFoldBottom 0.7s both ease;
  transform-origin: 50% 0%;
  animation: rotateFoldBottom 0.7s both ease;
}
/* unfold */
.pt-page-rotateUnfoldLeft {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateUnfoldLeft 0.7s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateUnfoldLeft 0.7s both ease;
  transform-origin: 100% 50%;
  animation: rotateUnfoldLeft 0.7s both ease;
}
.pt-page-rotateUnfoldRight {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateUnfoldRight 0.7s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateUnfoldRight 0.7s both ease;
  transform-origin: 0% 50%;
  animation: rotateUnfoldRight 0.7s both ease;
}
.pt-page-rotateUnfoldTop {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateUnfoldTop 0.7s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateUnfoldTop 0.7s both ease;
  transform-origin: 50% 100%;
  animation: rotateUnfoldTop 0.7s both ease;
}
.pt-page-rotateUnfoldBottom {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateUnfoldBottom 0.7s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateUnfoldBottom 0.7s both ease;
  transform-origin: 50% 0%;
  animation: rotateUnfoldBottom 0.7s both ease;
}
/* room walls */
.pt-page-rotateRoomLeftOut {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateRoomLeftOut 0.8s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateRoomLeftOut 0.8s both ease;
  transform-origin: 100% 50%;
  animation: rotateRoomLeftOut 0.8s both ease;
}
.pt-page-rotateRoomLeftIn {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateRoomLeftIn 0.8s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateRoomLeftIn 0.8s both ease;
  transform-origin: 0% 50%;
  animation: rotateRoomLeftIn 0.8s both ease;
}
.pt-page-rotateRoomRightOut {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateRoomRightOut 0.8s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateRoomRightOut 0.8s both ease;
  transform-origin: 0% 50%;
  animation: rotateRoomRightOut 0.8s both ease;
}
.pt-page-rotateRoomRightIn {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateRoomRightIn 0.8s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateRoomRightIn 0.8s both ease;
  transform-origin: 100% 50%;
  animation: rotateRoomRightIn 0.8s both ease;
}
.pt-page-rotateRoomTopOut {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateRoomTopOut 0.8s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateRoomTopOut 0.8s both ease;
  transform-origin: 50% 100%;
  animation: rotateRoomTopOut 0.8s both ease;
}
.pt-page-rotateRoomTopIn {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateRoomTopIn 0.8s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateRoomTopIn 0.8s both ease;
  transform-origin: 50% 0%;
  animation: rotateRoomTopIn 0.8s both ease;
}
.pt-page-rotateRoomBottomOut {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateRoomBottomOut 0.8s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateRoomBottomOut 0.8s both ease;
  transform-origin: 50% 0%;
  animation: rotateRoomBottomOut 0.8s both ease;
}
.pt-page-rotateRoomBottomIn {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateRoomBottomIn 0.8s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateRoomBottomIn 0.8s both ease;
  transform-origin: 50% 100%;
  animation: rotateRoomBottomIn 0.8s both ease;
}
/* cube */
.pt-page-rotateCubeLeftOut {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCubeLeftOut 0.6s both ease-in;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateCubeLeftOut 0.6s both ease-in;
  transform-origin: 100% 50%;
  animation: rotateCubeLeftOut 0.6s both ease-in;
}
.pt-page-rotateCubeLeftIn {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCubeLeftIn 0.6s both ease-in;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateCubeLeftIn 0.6s both ease-in;
  transform-origin: 0% 50%;
  animation: rotateCubeLeftIn 0.6s both ease-in;
}
.pt-page-rotateCubeRightOut {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCubeRightOut 0.6s both ease-in;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateCubeRightOut 0.6s both ease-in;
  transform-origin: 0% 50%;
  animation: rotateCubeRightOut 0.6s both ease-in;
}
.pt-page-rotateCubeRightIn {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCubeRightIn 0.6s both ease-in;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateCubeRightIn 0.6s both ease-in;
  transform-origin: 100% 50%;
  animation: rotateCubeRightIn 0.6s both ease-in;
}
.pt-page-rotateCubeTopOut {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCubeTopOut 0.6s both ease-in;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateCubeTopOut 0.6s both ease-in;
  transform-origin: 50% 100%;
  animation: rotateCubeTopOut 0.6s both ease-in;
}
.pt-page-rotateCubeTopIn {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCubeTopIn 0.6s both ease-in;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateCubeTopIn 0.6s both ease-in;
  transform-origin: 50% 0%;
  animation: rotateCubeTopIn 0.6s both ease-in;
}
.pt-page-rotateCubeBottomOut {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCubeBottomOut 0.6s both ease-in;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateCubeBottomOut 0.6s both ease-in;
  transform-origin: 50% 0%;
  animation: rotateCubeBottomOut 0.6s both ease-in;
}
.pt-page-rotateCubeBottomIn {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCubeBottomIn 0.6s both ease-in;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateCubeBottomIn 0.6s both ease-in;
  transform-origin: 50% 100%;
  animation: rotateCubeBottomIn 0.6s both ease-in;
}
/* carousel */
.pt-page-rotateCarouselLeftOut {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCarouselLeftOut 0.8s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateCarouselLeftOut 0.8s both ease;
  transform-origin: 100% 50%;
  animation: rotateCarouselLeftOut 0.8s both ease;
}
.pt-page-rotateCarouselLeftIn {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCarouselLeftIn 0.8s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateCarouselLeftIn 0.8s both ease;
  transform-origin: 0% 50%;
  animation: rotateCarouselLeftIn 0.8s both ease;
}
.pt-page-rotateCarouselRightOut {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCarouselRightOut 0.8s both ease;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateCarouselRightOut 0.8s both ease;
  transform-origin: 0% 50%;
  animation: rotateCarouselRightOut 0.8s both ease;
}
.pt-page-rotateCarouselRightIn {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCarouselRightIn 0.8s both ease;
  -moz-transform-origin: 100% 50%;
  -moz-animation: rotateCarouselRightIn 0.8s both ease;
  transform-origin: 100% 50%;
  animation: rotateCarouselRightIn 0.8s both ease;
}
.pt-page-rotateCarouselTopOut {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCarouselTopOut 0.8s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateCarouselTopOut 0.8s both ease;
  transform-origin: 50% 100%;
  animation: rotateCarouselTopOut 0.8s both ease;
}
.pt-page-rotateCarouselTopIn {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCarouselTopIn 0.8s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateCarouselTopIn 0.8s both ease;
  transform-origin: 50% 0%;
  animation: rotateCarouselTopIn 0.8s both ease;
}
.pt-page-rotateCarouselBottomOut {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCarouselBottomOut 0.8s both ease;
  -moz-transform-origin: 50% 0%;
  -moz-animation: rotateCarouselBottomOut 0.8s both ease;
  transform-origin: 50% 0%;
  animation: rotateCarouselBottomOut 0.8s both ease;
}
.pt-page-rotateCarouselBottomIn {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCarouselBottomIn 0.8s both ease;
  -moz-transform-origin: 50% 100%;
  -moz-animation: rotateCarouselBottomIn 0.8s both ease;
  transform-origin: 50% 100%;
  animation: rotateCarouselBottomIn 0.8s both ease;
}
/* sides */
.pt-page-rotateSidesOut {
  -webkit-transform-origin: -50% 50%;
  -webkit-animation: rotateSidesOut 0.5s both ease-in;
  -moz-transform-origin: -50% 50%;
  -moz-animation: rotateSidesOut 0.5s both ease-in;
  transform-origin: -50% 50%;
  animation: rotateSidesOut 0.5s both ease-in;
}
.pt-page-rotateSidesIn {
  -webkit-transform-origin: 150% 50%;
  -webkit-animation: rotateSidesIn 0.5s both ease-out;
  -moz-transform-origin: 150% 50%;
  -moz-animation: rotateSidesIn 0.5s both ease-out;
  transform-origin: 150% 50%;
  animation: rotateSidesIn 0.5s both ease-out;
}
/* slide */
.pt-page-rotateSlideOut {
  -webkit-animation: rotateSlideOut 1s both ease;
  animation: rotateSlideOut 1s both ease;
}
.pt-page-rotateSlideIn {
  -webkit-animation: rotateSlideIn 1s both ease;
  animation: rotateSlideIn 1s both ease;
}
/********************************* keyframes **************************************/
/* rotate sides first and scale */
@-webkit-keyframes rotateRightSideFirst {
  40% {
    -webkit-transform: rotateY(15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@keyframes rotateRightSideFirst {
  40% {
    transform: rotateY(15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@-webkit-keyframes rotateLeftSideFirst {
  40% {
    -webkit-transform: rotateY(-15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@keyframes rotateLeftSideFirst {
  40% {
    transform: rotateY(-15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@-webkit-keyframes rotateTopSideFirst {
  40% {
    -webkit-transform: rotateX(15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@keyframes rotateTopSideFirst {
  40% {
    transform: rotateX(15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@-webkit-keyframes rotateBottomSideFirst {
  40% {
    -webkit-transform: rotateX(-15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
@keyframes rotateBottomSideFirst {
  40% {
    transform: rotateX(-15deg);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    transform: scale(0.8) translateZ(-200px);
    opacity: 0;
  }
}
/* flip */
@-webkit-keyframes flipOutRight {
  to {
    -webkit-transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2;
  }
}
@keyframes flipOutRight {
  to {
    transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipInLeft {
  from {
    -webkit-transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2;
  }
}
@keyframes flipInLeft {
  from {
    transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipOutLeft {
  to {
    -webkit-transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2;
  }
}
@keyframes flipOutLeft {
  to {
    transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipInRight {
  from {
    -webkit-transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2;
  }
}
@keyframes flipInRight {
  from {
    transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipOutTop {
  to {
    -webkit-transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2;
  }
}
@keyframes flipOutTop {
  to {
    transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipInBottom {
  from {
    -webkit-transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2;
  }
}
@keyframes flipInBottom {
  from {
    transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipOutBottom {
  to {
    -webkit-transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2;
  }
}
@keyframes flipOutBottom {
  to {
    transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes flipInTop {
  from {
    -webkit-transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2;
  }
}
@keyframes flipInTop {
  from {
    transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2;
  }
}
/* fall */
@-webkit-keyframes rotateFall {
  0% {
    -webkit-transform: rotateZ(0deg);
  }
  20% {
    -webkit-transform: rotateZ(10deg);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: rotateZ(17deg);
  }
  60% {
    -webkit-transform: rotateZ(16deg);
  }
  100% {
    -webkit-transform: translateY(100%) rotateZ(17deg);
  }
}
@keyframes rotateFall {
  0% {
    transform: rotateZ(0deg);
  }
  20% {
    transform: rotateZ(10deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    transform: rotateZ(17deg);
  }
  60% {
    transform: rotateZ(16deg);
  }
  100% {
    transform: translateY(100%) rotateZ(17deg);
  }
}
/* newspaper */
@-webkit-keyframes rotateOutNewspaper {
  to {
    -webkit-transform: translateZ(-3000px) rotateZ(360deg);
    opacity: 0;
  }
}
@keyframes rotateOutNewspaper {
  to {
    transform: translateZ(-3000px) rotateZ(360deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateInNewspaper {
  from {
    -webkit-transform: translateZ(-3000px) rotateZ(-360deg);
    opacity: 0;
  }
}
@keyframes rotateInNewspaper {
  from {
    transform: translateZ(-3000px) rotateZ(-360deg);
    opacity: 0;
  }
}
/* push */
@-webkit-keyframes rotatePushLeft {
  to {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
  }
}
@keyframes rotatePushLeft {
  to {
    opacity: 0;
    transform: rotateY(90deg);
  }
}
@-webkit-keyframes rotatePushRight {
  to {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
  }
}
@keyframes rotatePushRight {
  to {
    opacity: 0;
    transform: rotateY(-90deg);
  }
}
@-webkit-keyframes rotatePushTop {
  to {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
  }
}
@keyframes rotatePushTop {
  to {
    opacity: 0;
    transform: rotateX(-90deg);
  }
}
@-webkit-keyframes rotatePushBottom {
  to {
    opacity: 0;
    -webkit-transform: rotateX(90deg);
  }
}
@keyframes rotatePushBottom {
  to {
    opacity: 0;
    transform: rotateX(90deg);
  }
}
/* pull */
@-webkit-keyframes rotatePullRight {
  from {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
  }
}
@keyframes rotatePullRight {
  from {
    opacity: 0;
    transform: rotateY(-90deg);
  }
}
@-webkit-keyframes rotatePullLeft {
  from {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
  }
}
@keyframes rotatePullLeft {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }
}
@-webkit-keyframes rotatePullTop {
  from {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
  }
}
@keyframes rotatePullTop {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
  }
}
@-webkit-keyframes rotatePullBottom {
  from {
    opacity: 0;
    -webkit-transform: rotateX(90deg);
  }
}
@keyframes rotatePullBottom {
  from {
    opacity: 0;
    transform: rotateX(90deg);
  }
}
/* fold */
@-webkit-keyframes rotateFoldRight {
  to {
    opacity: 0;
    -webkit-transform: translateX(100%) rotateY(90deg);
  }
}
@keyframes rotateFoldRight {
  to {
    opacity: 0;
    transform: translateX(100%) rotateY(90deg);
  }
}
@-webkit-keyframes rotateFoldLeft {
  to {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
  }
}
@keyframes rotateFoldLeft {
  to {
    opacity: 0;
    transform: translateX(-100%) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateFoldTop {
  to {
    opacity: 0;
    -webkit-transform: translateY(-100%) rotateX(90deg);
  }
}
@keyframes rotateFoldTop {
  to {
    opacity: 0;
    transform: translateY(-100%) rotateX(90deg);
  }
}
@-webkit-keyframes rotateFoldBottom {
  to {
    opacity: 0;
    -webkit-transform: translateY(100%) rotateX(-90deg);
  }
}
@keyframes rotateFoldBottom {
  to {
    opacity: 0;
    transform: translateY(100%) rotateX(-90deg);
  }
}
/* unfold */
@-webkit-keyframes rotateUnfoldLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
  }
}
@keyframes rotateUnfoldLeft {
  from {
    opacity: 0;
    transform: translateX(-100%) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateUnfoldRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%) rotateY(90deg);
  }
}
@keyframes rotateUnfoldRight {
  from {
    opacity: 0;
    transform: translateX(100%) rotateY(90deg);
  }
}
@-webkit-keyframes rotateUnfoldTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%) rotateX(90deg);
  }
}
@keyframes rotateUnfoldTop {
  from {
    opacity: 0;
    transform: translateY(-100%) rotateX(90deg);
  }
}
@-webkit-keyframes rotateUnfoldBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%) rotateX(-90deg);
  }
}
@keyframes rotateUnfoldBottom {
  from {
    opacity: 0;
    transform: translateY(100%) rotateX(-90deg);
  }
}
/* room walls */
@-webkit-keyframes rotateRoomLeftOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(-100%) rotateY(90deg);
  }
}
@keyframes rotateRoomLeftOut {
  to {
    opacity: 0.3;
    transform: translateX(-100%) rotateY(90deg);
  }
}
@-webkit-keyframes rotateRoomLeftIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(100%) rotateY(-90deg);
  }
}
@keyframes rotateRoomLeftIn {
  from {
    opacity: 0.3;
    transform: translateX(100%) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateRoomRightOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(100%) rotateY(-90deg);
  }
}
@keyframes rotateRoomRightOut {
  to {
    opacity: 0.3;
    transform: translateX(100%) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateRoomRightIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(-100%) rotateY(90deg);
  }
}
@keyframes rotateRoomRightIn {
  from {
    opacity: 0.3;
    transform: translateX(-100%) rotateY(90deg);
  }
}
@-webkit-keyframes rotateRoomTopOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(-100%) rotateX(-90deg);
  }
}
@keyframes rotateRoomTopOut {
  to {
    opacity: 0.3;
    transform: translateY(-100%) rotateX(-90deg);
  }
}
@-webkit-keyframes rotateRoomTopIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(100%) rotateX(90deg);
  }
}
@keyframes rotateRoomTopIn {
  from {
    opacity: 0.3;
    transform: translateY(100%) rotateX(90deg);
  }
}
@-webkit-keyframes rotateRoomBottomOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(100%) rotateX(90deg);
  }
}
@keyframes rotateRoomBottomOut {
  to {
    opacity: 0.3;
    transform: translateY(100%) rotateX(90deg);
  }
}
@-webkit-keyframes rotateRoomBottomIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(-100%) rotateX(-90deg);
  }
}
@keyframes rotateRoomBottomIn {
  from {
    opacity: 0.3;
    transform: translateY(-100%) rotateX(-90deg);
  }
}
/* cube */
@-webkit-keyframes rotateCubeLeftOut {
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
  }
}
@keyframes rotateCubeLeftOut {
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);
  }
  100% {
    opacity: 0.3;
    transform: translateX(-100%) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateCubeLeftIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translateX(100%) rotateY(90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(50%) translateZ(-200px) rotateY(45deg);
  }
}
@keyframes rotateCubeLeftIn {
  0% {
    opacity: 0.3;
    transform: translateX(100%) rotateY(90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateX(50%) translateZ(-200px) rotateY(45deg);
  }
}
@-webkit-keyframes rotateCubeRightOut {
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(50%) translateZ(-200px) rotateY(45deg);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateX(100%) rotateY(90deg);
  }
}
@keyframes rotateCubeRightOut {
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateX(50%) translateZ(-200px) rotateY(45deg);
  }
  100% {
    opacity: 0.3;
    transform: translateX(100%) rotateY(90deg);
  }
}
@-webkit-keyframes rotateCubeRightIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);
  }
}
@keyframes rotateCubeRightIn {
  0% {
    opacity: 0.3;
    transform: translateX(-100%) rotateY(-90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);
  }
}
@-webkit-keyframes rotateCubeTopOut {
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateY(-100%) rotateX(90deg);
  }
}
@keyframes rotateCubeTopOut {
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
  }
  100% {
    opacity: 0.3;
    transform: translateY(-100%) rotateX(90deg);
  }
}
@-webkit-keyframes rotateCubeTopIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translateY(100%) rotateX(-90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
  }
}
@keyframes rotateCubeTopIn {
  0% {
    opacity: 0.3;
    transform: translateY(100%) rotateX(-90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
  }
}
@-webkit-keyframes rotateCubeBottomOut {
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateY(100%) rotateX(-90deg);
  }
}
@keyframes rotateCubeBottomOut {
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
  }
  100% {
    opacity: 0.3;
    transform: translateY(100%) rotateX(-90deg);
  }
}
@-webkit-keyframes rotateCubeBottomIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translateY(-100%) rotateX(90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
  }
}
@keyframes rotateCubeBottomIn {
  0% {
    opacity: 0.3;
    transform: translateY(-100%) rotateX(90deg);
  }
  50% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
  }
}
/* carousel */
@-webkit-keyframes rotateCarouselLeftOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(-150%) scale(0.4) rotateY(-65deg);
  }
}
@keyframes rotateCarouselLeftOut {
  to {
    opacity: 0.3;
    transform: translateX(-150%) scale(0.4) rotateY(-65deg);
  }
}
@-webkit-keyframes rotateCarouselLeftIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(200%) scale(0.4) rotateY(65deg);
  }
}
@keyframes rotateCarouselLeftIn {
  from {
    opacity: 0.3;
    transform: translateX(200%) scale(0.4) rotateY(65deg);
  }
}
@-webkit-keyframes rotateCarouselRightOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateX(200%) scale(0.4) rotateY(65deg);
  }
}
@keyframes rotateCarouselRightOut {
  to {
    opacity: 0.3;
    transform: translateX(200%) scale(0.4) rotateY(65deg);
  }
}
@-webkit-keyframes rotateCarouselRightIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateX(-200%) scale(0.4) rotateY(-65deg);
  }
}
@keyframes rotateCarouselRightIn {
  from {
    opacity: 0.3;
    transform: translateX(-200%) scale(0.4) rotateY(-65deg);
  }
}
@-webkit-keyframes rotateCarouselTopOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(-200%) scale(0.4) rotateX(65deg);
  }
}
@keyframes rotateCarouselTopOut {
  to {
    opacity: 0.3;
    transform: translateY(-200%) scale(0.4) rotateX(65deg);
  }
}
@-webkit-keyframes rotateCarouselTopIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(200%) scale(0.4) rotateX(-65deg);
  }
}
@keyframes rotateCarouselTopIn {
  from {
    opacity: 0.3;
    transform: translateY(200%) scale(0.4) rotateX(-65deg);
  }
}
@-webkit-keyframes rotateCarouselBottomOut {
  to {
    opacity: 0.3;
    -webkit-transform: translateY(200%) scale(0.4) rotateX(-65deg);
  }
}
@keyframes rotateCarouselBottomOut {
  to {
    opacity: 0.3;
    transform: translateY(200%) scale(0.4) rotateX(-65deg);
  }
}
@-webkit-keyframes rotateCarouselBottomIn {
  from {
    opacity: 0.3;
    -webkit-transform: translateY(-200%) scale(0.4) rotateX(65deg);
  }
}
@keyframes rotateCarouselBottomIn {
  from {
    opacity: 0.3;
    transform: translateY(-200%) scale(0.4) rotateX(65deg);
  }
}
/* sides */
@-webkit-keyframes rotateSidesOut {
  to {
    opacity: 0;
    -webkit-transform: translateZ(-500px) rotateY(90deg);
  }
}
@keyframes rotateSidesOut {
  to {
    opacity: 0;
    transform: translateZ(-500px) rotateY(90deg);
  }
}
@-webkit-keyframes rotateSidesIn {
  from {
    opacity: 0;
    -webkit-transform: translateZ(-500px) rotateY(-90deg);
  }
}
@keyframes rotateSidesIn {
  from {
    opacity: 0;
    transform: translateZ(-500px) rotateY(-90deg);
  }
}
/* slide */
@-webkit-keyframes rotateSlideOut {
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes rotateSlideOut {
  25% {
    opacity: 0.5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes rotateSlideIn {
  0%,
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@keyframes rotateSlideIn {
  0%,
  25% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: 0.5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
/* animation delay classes */
.pt-page-delay100 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.pt-page-delay180 {
  -webkit-animation-delay: 0.18s;
  animation-delay: 0.18s;
}
.pt-page-delay200 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.pt-page-delay300 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.pt-page-delay400 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.pt-page-delay500 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.pt-page-delay700 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.pt-page-delay1000 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
/* 扩展 */
/* 3D2 cube */
.pt-page-rotateCubeLeftOut2 {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCubeLeftOut2 0.5s both;
  transform-origin: 100% 50%;
  animation: rotateCubeLeftOut2 0.5s both;
}
.pt-page-rotateCubeLeftIn2 {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCubeLeftIn2 0.5s both;
  transform-origin: 0% 50%;
  animation: rotateCubeLeftIn2 0.5s both;
}
.pt-page-rotateCubeRightOut2 {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateCubeRightOut2 0.5s both;
  transform-origin: 0% 50%;
  animation: rotateCubeRightOut2 0.5s both;
}
.pt-page-rotateCubeRightIn2 {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation: rotateCubeRightIn2 0.5s both;
  transform-origin: 100% 50%;
  animation: rotateCubeRightIn2 0.5s both;
}
/* 3D2 cube */
@-webkit-keyframes rotateCubeLeftOut2 {
  0% {
    transform: translateX(0) translateZ(-50px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%) translateZ(0px) rotateY(-90deg);
  }
}
@-webkit-keyframes rotateCubeLeftIn2 {
  0% {
    transform: translateX(100%) translateZ(-50px) rotateY(90deg);
  }
  100% {
    transform: translateX(0) translateZ(0px) rotateY(0deg);
  }
}
@-webkit-keyframes rotateCubeRightOut2 {
  0% {
    transform: translateX(0) translateZ(-50px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) translateZ(0px) rotateY(90deg);
  }
}
@-webkit-keyframes rotateCubeRightIn2 {
  0% {
    transform: translateX(-100%) translateZ(-50px) rotateY(-90deg);
  }
  100% {
    transform: translateX(0) translateZ(0px) rotateY(0deg);
  }
}
/* 3D3 cube */
.pt-page-rotateCubeTopOut3 {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCubeTopOut3 0.5s both;
  transform-origin: 50% 100%;
  animation: rotateCubeTopOut3 0.5s both;
}
.pt-page-rotateCubeTopIn3 {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCubeTopIn3 0.5s both;
  transform-origin: 50% 0%;
  animation: rotateCubeTopIn3 0.5s both;
}
.pt-page-rotateCubeDownOut3 {
  -webkit-transform-origin: 50% 0%;
  -webkit-animation: rotateCubeDownOut3 0.5s both;
  transform-origin: 50% 0%;
  animation: rotateCubeDownOut3 0.5s both;
}
.pt-page-rotateCubeDownIn3 {
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: rotateCubeDownIn3 0.5s both;
  transform-origin: 50% 100%;
  animation: rotateCubeDownIn3 0.5s both;
}
/* 3D3 cube */
@-webkit-keyframes rotateCubeTopOut3 {
  0% {
    transform: translateY(0) translateZ(-50px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%) translateZ(0px) rotateX(90deg);
  }
}
@-webkit-keyframes rotateCubeTopIn3 {
  0% {
    transform: translateY(100%) translateZ(-50px) rotateX(-90deg);
  }
  100% {
    transform: translateY(0) translateZ(0px) rotateX(0deg);
  }
}
@-webkit-keyframes rotateCubeDownOut3 {
  0% {
    transform: translateY(0) translateZ(-50px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100%) translateZ(0px) rotateX(-90deg);
  }
}
@-webkit-keyframes rotateCubeDownIn3 {
  0% {
    transform: translateY(-100%) translateZ(-50px) rotateX(90deg);
  }
  100% {
    transform: translateY(0) translateZ(0px) rotateX(0deg);
  }
}
.h5ds-theme-simple {
  /*滚动条*/
}
.h5ds-theme-simple #App .ant-input,
.h5ds-theme-simple #App .ant-input-number-input,
.h5ds-theme-simple #App .ant-input-number {
  background: #e7e7e7;
  color: #333;
  border-radius: 0;
}
.h5ds-theme-simple #App .ant-input-number-handler-wrap {
  border-radius: 0;
  background: #e7e7e7;
  border-color: #999;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-addbtn {
  background: #fff;
  border-color: #999;
  color: #999;
}
.h5ds-theme-simple #App .ant-radio-button-wrapper {
  background: #fff;
  color: #999;
}
.h5ds-theme-simple #App .ant-radio-button-wrapper-checked {
  background: #40a9ff;
  color: #fff;
}
.h5ds-theme-simple #App .ant-select-selection {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple #App .ant-select-selection .ant-select-arrow {
  color: #666;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-item {
  background: #e7e7e7;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-item .h5ds-layout-setitem-name {
  color: #999;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-item.h5ds-basic-animateset-active {
  background: #40a9ff;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-item.h5ds-basic-animateset-active .h5ds-layout-setitem-name {
  color: #fff;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-item .h5ds-layout-setitem-content {
  color: #000;
}
.h5ds-theme-simple #App .h5ds-basic-animateset-btndel,
.h5ds-theme-simple #App .h5ds-basic-animateset-btnset {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-layout-setitem-name {
  color: #666;
}
.h5ds-theme-simple .h5ds-modal-source {
  background: #fff;
}
.h5ds-theme-simple .h5ds-modal.h5ds-modal-hastitle .h5ds-modal-title .h5ds-modal-title-icon {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-source .h5ds-source-content .h5ds-source-item {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar-track {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 100px;
}
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar-thumb:window-inactive {
  background: #999;
}
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar-button:vertical:decrement,
.h5ds-theme-simple .h5dsSlider::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #999;
}
.h5ds-theme-simple div::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-theme-simple div::-webkit-scrollbar-track {
  background: #e7e7e7;
}
.h5ds-theme-simple div::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 100px;
}
.h5ds-theme-simple div::-webkit-scrollbar-thumb:window-inactive {
  background: #999;
}
.h5ds-theme-simple div::-webkit-scrollbar-button:vertical:decrement,
.h5ds-theme-simple div::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #999;
}
.h5ds-theme-simple .h5ds-layout-frame {
  background: #fff;
}
.h5ds-theme-simple .h5ds-header {
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
.h5ds-theme-simple .h5ds-header .h5ds-publish-box .h5ds-ico {
  color: #666;
}
.h5ds-theme-simple .h5ds-header .h5ds-publish-box a {
  color: #666;
}
.h5ds-theme-simple .h5ds-header .h5ds-h5set .h5ds-btn-yellow {
  color: #fff;
}
.h5ds-theme-simple .h5ds-header .h5ds-h5type {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-header .h5ds-h5type a {
  color: #666;
}
.h5ds-theme-simple .h5ds-header .h5ds-h5type a.active {
  color: #fff;
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-header .h5ds-logo a {
  color: #000;
}
.h5ds-theme-simple .h5ds-header .h5ds-logo span {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-layermenu a {
  color: #666;
}
.h5ds-theme-simple .h5ds-pagelist {
  background: #e7e7e7;
  box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.2);
}
.h5ds-theme-simple .h5ds-pagelist .h5ds-pagelist-pages .h5ds-pagelist-page-item {
  background: #fff;
}
.h5ds-theme-simple .h5ds-pagelist .h5ds-pagelist-pages .h5ds-pagelist-page-info a {
  background: #40a9ff;
  color: #fff;
}
.h5ds-theme-simple .h5ds-pagelist .h5ds-pagelist-pages .h5ds-pagelist-active:after {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-pagelist .h5ds-pagelist-btn li {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5ds-pagelist .h5ds-pagelist-btn li.h5ds-active {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-center {
  background: #fff;
}
.h5ds-theme-simple .h5ds-center .h5ds-ruler-line canvas {
  background: #f8f8f8;
}
.h5ds-theme-simple .h5ds-center .h5ds-canvas-border {
  border: 10000px solid rgba(217, 217, 217, 0.4);
}
.h5ds-theme-simple .h5ds-timeline-box {
  background: #fff;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider::-webkit-scrollbar-track {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider::-webkit-scrollbar-thumb {
  background: #999;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider::-webkit-scrollbar-thumb:window-inactive {
  background: #999;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider::-webkit-scrollbar-button:vertical:decrement,
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-slider::-webkit-scrollbar-button:vertical:increment {
  background: #999;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline {
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-header .h5ds-timeline-bar {
  border-color: #666;
  background: rgba(255, 255, 255, 0.3);
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-header .h5ds-timeline-bar::before {
  background: #666;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-footer .h5ds-timeline-right {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-scale li span {
  color: #999;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-scale li::before {
  background: #999;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-scale li .h5ds-timeline-dot {
  background: #000;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-ico {
  color: #333;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-btn {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline-left {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left li {
  background: #fff;
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left .h5ds-timeline-active {
  background: #40a9ff;
  border-color: #fff;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-footer .h5ds-timeline-left {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-item1 {
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-timeline-box .h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right li {
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-canvas {
  background: #fff;
}
.h5ds-theme-simple .h5ds-layerlist {
  background: #fff;
}
.h5ds-theme-simple .h5ds-layerlist h1 span {
  color: #333;
}
.h5ds-theme-simple .h5ds-layerlist .h5ds-ico {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-layerlist ul {
  border-top: 1px solid #999;
}
.h5ds-theme-simple .h5ds-layerlist ul .h5ds-layerlist-active {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-layerlist ul .h5ds-layerlist-active span {
  color: #fff;
}
.h5ds-theme-simple .h5ds-layerlist ul .h5ds-layerlist-active .h5ds-layerlist-locklayer .h5ds-ico {
  color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-layerlist ul li {
  background: #fff;
  color: #333;
  border-color: #999;
}
.h5ds-theme-simple .h5ds-layerlist ul li span.name {
  border-color: #999;
}
.h5ds-theme-simple .h5ds-util-cropimage-btns,
.h5ds-theme-simple .h5ds-util-cropimage {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-util-cropimage-btns a,
.h5ds-theme-simple .h5ds-util-cropimage a {
  color: #333;
}
.h5ds-theme-simple .h5ds-shortcut {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.h5ds-theme-simple .h5ds-shortcut a,
.h5ds-theme-simple .h5ds-shortcut span {
  color: #666;
}
.h5ds-theme-simple .h5ds-shortcut a:hover,
.h5ds-theme-simple .h5ds-shortcut span:hover {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-shortcut .h5ds-ico-caidan {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-shortcut h5 {
  background: #fff;
  color: #666;
}
.h5ds-theme-simple .h5ds-shortcut h5 a {
  color: #40a9ff;
}
.h5ds-theme-simple .h5ds-editarea {
  background: #fff;
}
.h5ds-theme-simple .h5ds-editarea input {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-basic-tabs .ant-tabs-bar {
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-animatelist {
  background: #fff;
}
.h5ds-theme-simple .h5ds-animatelist ul.h5ds-basic-animatelist-ul li {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5ds-animatelist .ant-tabs-tab {
  color: #666;
}
.h5ds-theme-simple .h5ds-basic-animatelist-close {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-layerset-tabsbox > .ant-tabs > .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab {
  color: #666;
}
.h5ds-theme-simple .h5ds-layerset-tabsbox > .ant-tabs > .ant-tabs-bar {
  border-color: #e7e7e7;
}
.h5ds-theme-simple .h5ds-eventlist li.h5ds-event-item {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5ds-event-list li.h5ds-event {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5ds-event-set .h5ds-close-event {
  background: #40a9ff;
}
.h5ds-theme-simple .h5ds-event-set .h5ds-clear-event {
  background: #e7e7e7;
  color: #666;
}
.h5ds-theme-simple .h5ds-event-set {
  background: #fff;
}
.h5ds-theme-simple .h5ds-event-set textarea,
.h5ds-theme-simple .h5ds-event-set input {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-event-set .h5ds-eventbox-content,
.h5ds-theme-simple .h5ds-event-set .h5ds-event-title {
  color: #999;
}
.h5ds-theme-simple .h5ds-util-cropimage-nullimg {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-ex-h5ds_text-btn {
  background: #e7e7e7;
}
.h5ds-theme-simple .h5ds-ex-h5ds_text-btn.h5ds-active {
  background: #999;
  color: #fff;
}
body {
  margin: 0;
  padding: 0;
}
body.h5ds-edit {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}
a,
img {
  -webkit-touch-callout: none;
}
a,
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: 0;
}
body * {
  margin: 0;
  padding: 0;
  outline: 0;
}
/**
*	h5ds平台5.0版本
*	z-index 10为单位递增

css命名规范 v1.0
h5ds-theme-* theme主题
h5ds-basic-* basic基本样式
h5ds-global-* global全局
h5ds-color-* color颜色
h5ds-js-* js钩子
h5ds-layout-* layout布局
h5ds-state-* state状态
h5ds-util-* util工具
h5ds-ico-* 图标

// 插件
h5ds-plus-*

less变量
h5dsvar-* less变量名称
*/
body {
  -webkit-text-size-adjust: none;
}
body dl,
body dt,
body dd,
body ul,
body ol,
body li,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body pre,
body form,
body fieldset,
body input,
body textarea,
body p,
body blockquote,
body th,
body td {
  padding: 0;
  margin: 0;
  color: inherit;
}
body a {
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
}
body table {
  border-spacing: 0;
}
body fieldset,
body img {
  border: 0;
}
body address,
body caption,
body cite,
body code,
body dfn,
body em,
body strong,
body th,
body var {
  font-weight: normal;
  font-style: normal;
}
body strong {
  font-weight: bold;
}
body ol,
body ul,
body li {
  list-style: none;
}
body caption,
body th {
  text-align: left;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}
body q:before,
body q:after {
  content: '';
}
body abbr,
body acronym {
  border: 0;
}
body textarea,
body input {
  outline: none;
}
body button {
  border: none;
  outline: none;
}
body hr {
  border-color: #0e1113;
  border-width: 1px;
  border-top: none;
}
.h5ds-edit .ant-tabs-nav .ant-tabs-tab-active,
.h5ds-modal .ant-tabs-nav .ant-tabs-tab-active,
.h5ds-layout-frame .ant-tabs-nav .ant-tabs-tab-active,
.h5ds-edit .ant-tabs-nav .ant-tabs-tab:hover,
.h5ds-modal .ant-tabs-nav .ant-tabs-tab:hover,
.h5ds-layout-frame .ant-tabs-nav .ant-tabs-tab:hover {
  color: #ff5402;
}
.h5ds-edit .ant-radio-button-wrapper-checked,
.h5ds-modal .ant-radio-button-wrapper-checked,
.h5ds-layout-frame .ant-radio-button-wrapper-checked {
  color: #ff5402;
  border-color: #ff5402;
  box-shadow: -1px 0 0 0 #ff5402;
}
.h5ds-edit .ant-radio-button-wrapper-checked::before,
.h5ds-modal .ant-radio-button-wrapper-checked::before,
.h5ds-layout-frame .ant-radio-button-wrapper-checked::before {
  background-color: #ff5402 !important;
}
.h5ds-edit .ant-radio-button-wrapper-checked:first-child,
.h5ds-modal .ant-radio-button-wrapper-checked:first-child,
.h5ds-layout-frame .ant-radio-button-wrapper-checked:first-child {
  border-color: #ff5402;
}
.h5ds-edit .ant-radio-button-wrapper-checked:hover,
.h5ds-modal .ant-radio-button-wrapper-checked:hover,
.h5ds-layout-frame .ant-radio-button-wrapper-checked:hover {
  box-shadow: -1px 0 0 0 #ff5402;
}
.h5ds-edit .ant-btn,
.h5ds-modal .ant-btn,
.h5ds-layout-frame .ant-btn {
  border-radius: 0;
}
.h5ds-edit .ant-btn:hover,
.h5ds-modal .ant-btn:hover,
.h5ds-layout-frame .ant-btn:hover,
.h5ds-edit .ant-btn:active,
.h5ds-modal .ant-btn:active,
.h5ds-layout-frame .ant-btn:active,
.h5ds-edit .ant-btn:focus,
.h5ds-modal .ant-btn:focus,
.h5ds-layout-frame .ant-btn:focus {
  color: #fff;
  background-color: #ff5402;
  border-color: #ff5402;
}
.h5ds-edit .ant-tabs-ink-bar,
.h5ds-modal .ant-tabs-ink-bar,
.h5ds-layout-frame .ant-tabs-ink-bar {
  background-color: #ff5402;
}
.h5ds-edit .ant-switch-checked,
.h5ds-modal .ant-switch-checked,
.h5ds-layout-frame .ant-switch-checked {
  background: #ff5402;
}
.h5ds-edit .ant-btn-primary,
.h5ds-modal .ant-btn-primary,
.h5ds-layout-frame .ant-btn-primary {
  background-color: #ff5402;
  border-color: #ff5402;
}
.h5ds-edit .ant-divider,
.h5ds-modal .ant-divider,
.h5ds-layout-frame .ant-divider {
  background: #535f6b;
}
.h5ds-edit .ant-popover-inner-content,
.h5ds-modal .ant-popover-inner-content,
.h5ds-layout-frame .ant-popover-inner-content {
  color: #a5b6c8;
}
.h5ds-edit .ant-popover-title,
.h5ds-modal .ant-popover-title,
.h5ds-layout-frame .ant-popover-title {
  color: #a5b6c8;
  border-bottom-color: #252a2e;
}
.h5ds-edit .ant-popover-inner,
.h5ds-modal .ant-popover-inner,
.h5ds-layout-frame .ant-popover-inner {
  background: #30373f;
}
.h5ds-edit .ant-popover-message-title,
.h5ds-modal .ant-popover-message-title,
.h5ds-layout-frame .ant-popover-message-title {
  color: #a5b6c8;
}
.h5ds-edit .ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow,
.h5ds-edit .ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow,
.h5ds-modal .ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow,
.h5ds-layout-frame .ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow {
  border-top-color: #30373f;
  border-left-color: #30373f;
  border-right-color: #30373f;
  border-bottom-color: #30373f;
}
.h5ds-edit .mt-select-min .ant-select-selection,
.h5ds-modal .mt-select-min .ant-select-selection,
.h5ds-layout-frame .mt-select-min .ant-select-selection {
  color: #a5b6c8;
  background: #252a2e;
  border: 1px solid #30373f;
}
.h5ds-edit .mt-select-min .ant-select-arrow,
.h5ds-modal .mt-select-min .ant-select-arrow,
.h5ds-layout-frame .mt-select-min .ant-select-arrow {
  color: #a5b6c8;
}
.h5ds-edit .ant-btn-default,
.h5ds-modal .ant-btn-default,
.h5ds-layout-frame .ant-btn-default {
  background-color: #535f6b;
  color: #fff;
}
.h5ds-edit .ant-slider,
.h5ds-modal .ant-slider,
.h5ds-layout-frame .ant-slider {
  width: 160px;
  display: inline-block;
  margin: 0 5px;
  height: 10px;
  box-sizing: border-box;
}
.h5ds-edit .ant-slider-rail,
.h5ds-modal .ant-slider-rail,
.h5ds-layout-frame .ant-slider-rail {
  height: 3px;
  background: #252a2e;
}
.h5ds-edit .ant-slider-track,
.h5ds-modal .ant-slider-track,
.h5ds-layout-frame .ant-slider-track {
  height: 3px;
  background: #ff5402;
}
.h5ds-edit .ant-slider-step,
.h5ds-modal .ant-slider-step,
.h5ds-layout-frame .ant-slider-step {
  height: 3px;
}
.h5ds-edit .ant-slider-handle,
.h5ds-modal .ant-slider-handle,
.h5ds-layout-frame .ant-slider-handle {
  width: 9px;
  height: 9px;
  margin-top: -3px;
  border-radius: 100px;
  background: #ff5402;
  border: none;
}
.h5ds-edit .ant-slider-handle:hover,
.h5ds-modal .ant-slider-handle:hover,
.h5ds-layout-frame .ant-slider-handle:hover {
  transform: scale(1.2);
}
.h5ds-edit .ant-slider:hover .ant-slider-track,
.h5ds-modal .ant-slider:hover .ant-slider-track,
.h5ds-layout-frame .ant-slider:hover .ant-slider-track {
  background-color: #ff5402;
}
.h5ds-edit .ant-slider:hover .ant-slider-rail,
.h5ds-modal .ant-slider:hover .ant-slider-rail,
.h5ds-layout-frame .ant-slider:hover .ant-slider-rail {
  background-color: #181b1e;
}
.h5ds-edit .ant-switch:before,
.h5ds-modal .ant-switch:before,
.h5ds-layout-frame .ant-switch:before,
.h5ds-edit .ant-switch:after,
.h5ds-modal .ant-switch:after,
.h5ds-layout-frame .ant-switch:after {
  background: #535f6b;
}
.h5ds-edit .ant-switch-checked:before,
.h5ds-modal .ant-switch-checked:before,
.h5ds-layout-frame .ant-switch-checked:before,
.h5ds-edit .ant-switch-checked:after,
.h5ds-modal .ant-switch-checked:after,
.h5ds-layout-frame .ant-switch-checked:after {
  background: #fff;
}
.h5ds-edit .ant-radio-inner::before,
.h5ds-modal .ant-radio-inner::before,
.h5ds-layout-frame .ant-radio-inner::before,
.h5ds-edit .ant-radio-inner::after,
.h5ds-modal .ant-radio-inner::after,
.h5ds-layout-frame .ant-radio-inner::after {
  border-radius: 50%;
}
.h5ds-edit .ant-tabs-bar,
.h5ds-modal .ant-tabs-bar,
.h5ds-layout-frame .ant-tabs-bar {
  border-bottom: 1px solid #30373f;
  color: #a5b6c8;
}
.h5ds-edit .ant-pagination .ant-pagination-item-link,
.h5ds-modal .ant-pagination .ant-pagination-item-link,
.h5ds-layout-frame .ant-pagination .ant-pagination-item-link,
.h5ds-edit .ant-pagination .ant-pagination-item,
.h5ds-modal .ant-pagination .ant-pagination-item,
.h5ds-layout-frame .ant-pagination .ant-pagination-item {
  background: #535f6b;
  border-color: #30373f;
  color: #a5b6c8;
}
.h5ds-edit .ant-pagination a,
.h5ds-modal .ant-pagination a,
.h5ds-layout-frame .ant-pagination a {
  color: #a5b6c8;
}
.h5ds-edit .ant-pagination .ant-pagination-item-active,
.h5ds-modal .ant-pagination .ant-pagination-item-active,
.h5ds-layout-frame .ant-pagination .ant-pagination-item-active {
  background: #ff5402;
}
.h5ds-edit .ant-pagination .ant-pagination-item-active a,
.h5ds-modal .ant-pagination .ant-pagination-item-active a,
.h5ds-layout-frame .ant-pagination .ant-pagination-item-active a {
  color: #fff;
}
.h5ds-edit .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link:after,
.h5ds-modal .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link:after,
.h5ds-layout-frame .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link:after,
.h5ds-edit .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link:after,
.h5ds-modal .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link:after,
.h5ds-layout-frame .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link:after,
.h5ds-edit .ant-pagination-jump-prev:after,
.h5ds-modal .ant-pagination-jump-prev:after,
.h5ds-layout-frame .ant-pagination-jump-prev:after,
.h5ds-edit .ant-pagination-jump-next:after,
.h5ds-modal .ant-pagination-jump-next:after,
.h5ds-layout-frame .ant-pagination-jump-next:after,
.h5ds-edit .ant-pagination-item a,
.h5ds-modal .ant-pagination-item a,
.h5ds-layout-frame .ant-pagination-item a {
  color: #999;
}
.h5ds-edit .ant-pagination-item-active,
.h5ds-modal .ant-pagination-item-active,
.h5ds-layout-frame .ant-pagination-item-active {
  background: #ff5402;
}
.h5ds-edit .ant-pagination-item-active a,
.h5ds-modal .ant-pagination-item-active a,
.h5ds-layout-frame .ant-pagination-item-active a {
  color: #fff;
}
.h5ds-edit .ant-radio-button-wrapper:last-child,
.h5ds-modal .ant-radio-button-wrapper:last-child,
.h5ds-layout-frame .ant-radio-button-wrapper:last-child,
.h5ds-edit .ant-radio-button-wrapper:first-child,
.h5ds-modal .ant-radio-button-wrapper:first-child,
.h5ds-layout-frame .ant-radio-button-wrapper:first-child {
  border-radius: 0;
}
.h5ds-edit .ant-radio-button-wrapper:not(:first-child)::before,
.h5ds-modal .ant-radio-button-wrapper:not(:first-child)::before,
.h5ds-layout-frame .ant-radio-button-wrapper:not(:first-child)::before {
  background: #252a2e;
}
.h5ds-edit .ant-radio-button-wrapper,
.h5ds-modal .ant-radio-button-wrapper,
.h5ds-layout-frame .ant-radio-button-wrapper {
  border-color: #ff5402;
  background: #252a2e;
  color: #a5b6c8;
}
.h5ds-edit .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled),
.h5ds-modal .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled),
.h5ds-layout-frame .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  background: #ff5402;
  color: #fff;
  border-color: #ff5402;
}
.h5ds-edit .ant-radio-button-wrapper-checked,
.h5ds-modal .ant-radio-button-wrapper-checked,
.h5ds-layout-frame .ant-radio-button-wrapper-checked {
  background: #ff5402;
  color: #fff;
}
.h5ds-edit .ant-input,
.h5ds-modal .ant-input,
.h5ds-layout-frame .ant-input {
  background: #252a2e;
  color: #a5b6c8;
  border: none;
}
.h5ds-edit .ant-input::-webkit-input-placeholder,
.h5ds-modal .ant-input::-webkit-input-placeholder,
.h5ds-layout-frame .ant-input::-webkit-input-placeholder {
  color: #535f6b;
  text-indent: 5px;
}
.h5ds-edit .ant-select-selection,
.h5ds-modal .ant-select-selection,
.h5ds-layout-frame .ant-select-selection {
  background: #252a2e;
  color: #a5b6c8;
  border: none;
}
.h5ds-edit .ant-select-arrow,
.h5ds-modal .ant-select-arrow,
.h5ds-layout-frame .ant-select-arrow {
  color: #a5b6c8;
}
.h5ds-edit .ant-input-number,
.h5ds-modal .ant-input-number,
.h5ds-layout-frame .ant-input-number {
  background: #252a2e;
  border: none;
  width: 70px !important;
  border-radius: 2px;
  color: #a5b6c8;
}
.h5ds-edit .ant-input-number-handler-wrap,
.h5ds-modal .ant-input-number-handler-wrap,
.h5ds-layout-frame .ant-input-number-handler-wrap {
  background: #535f6b;
  border-color: #0e1113 !important;
}
.h5ds-edit .ant-input-number-handler-down,
.h5ds-modal .ant-input-number-handler-down,
.h5ds-layout-frame .ant-input-number-handler-down {
  border-color: #0e1113 !important;
}
.h5ds-edit .ant-modal-content,
.h5ds-modal .ant-modal-content,
.h5ds-layout-frame .ant-modal-content {
  border-radius: 0;
}
.h5ds-edit .ant-modal-close-x,
.h5ds-modal .ant-modal-close-x,
.h5ds-layout-frame .ant-modal-close-x {
  font-size: 24px;
}
.h5ds-edit .ant-modal-body,
.h5ds-modal .ant-modal-body,
.h5ds-layout-frame .ant-modal-body {
  padding: 0;
}
.h5ds-win-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4001;
  background: rgba(0, 0, 0, 0.4);
}
.h5ds-win-loading .h5ds-win-loading-inner {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 18px;
  color: #fff;
}
/*清除浮动*/
.h5ds-global-clear {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  width: 100%;
}
.h5ds-global-clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.h5ds-global-textjustify {
  float: left;
  text-align: justify;
  text-justify: inter-word;
  text-justify: inter-ideograph;
  width: 100%;
  min-height: 12px;
}
.h5ds-global-textjustify::before {
  content: '';
  display: inline-block;
  width: 100%;
}
.h5ds-global-textjustify::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.h5ds-global-show {
  display: block !important;
}
.h5ds-global-hide {
  display: none !important;
}
.h5ds-layout-frame {
  width: 100%;
  height: 100%;
  background: #0e1113;
  overflow: hidden;
  position: absolute;
  z-index: 1000;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  font-family: '微软雅黑';
  /*滚动条*/
  /*滚动条*/
}
.h5ds-layout-frame ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-layout-frame ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-layout-frame ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-layout-frame ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-layout-frame ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-layout-frame ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-layout-finner {
  width: 100%;
  height: 100%;
}
.h5ds-basic-btn-min {
  font-size: 14px;
  color: #fff;
  margin: 0 5px;
}
.h5ds-basic-btn-min .h5ds-ico {
  color: #ff5402;
  font-size: 20px;
  vertical-align: middle;
}
.h5ds-tabs {
  height: 100%;
}
.h5ds-tabs .ant-tabs-nav .ant-tabs-tab {
  padding: 12px 16px 12px 16px;
  color: #a5b6c8;
}
.h5ds-tabs .ant-tabs-bar {
  border-bottom: 4px solid #252a2e;
}
.h5ds-basic-tabs {
  height: 100%;
}
.h5ds-basic-tabs .ant-tabs-bar {
  border-bottom: 4px solid #252a2e;
}
.h5ds-basic-tabs .ant-tabs-nav .ant-tabs-tab {
  padding: 12px 16px 12px 16px;
  color: #a5b6c8;
}
.h5ds-basic-tabs .ant-tabs-content {
  position: absolute;
  top: 50px;
  bottom: 0;
  width: 100%;
}
.h5ds-basic-tabs .ant-tabs-tabpane {
  height: 100%;
  overflow: auto;
  padding: 10px;
  position: relative;
  width: 100%;
}
/* 帮助信息 */
.h5ds-helps {
  position: absolute;
  border: 3000px solid rgba(0, 0, 0, 0.7);
  z-index: 9999;
  transform: translate(-3000px, -3000px);
  transition: 0.3s;
  box-sizing: content-box;
}
.h5ds-helps:after {
  content: '';
  display: inline-block;
  height: 100%;
  width: 100%;
  border: 2px solid #ff5402;
  box-sizing: border-box;
}
.h5ds-helps .h5ds-helps-content {
  padding: 20px;
  padding-top: 30px;
  width: 300px;
  min-height: 160px;
  position: absolute;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.h5ds-helps .h5ds-helps-content .h5ds-helps-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.h5ds-helps .h5ds-helps-content:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  border: 10px solid transparent;
}
.h5ds-helps .h5ds-helps-content .h5ds-helps-prev,
.h5ds-helps .h5ds-helps-content .h5ds-helps-end,
.h5ds-helps .h5ds-helps-content .h5ds-helps-next {
  display: inline-block;
  padding: 4px 16px;
  background: #ff5402;
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-left: 10px;
}
.h5ds-helps .h5ds-helps-content .h5ds-helps-prev {
  background: #a5b6c8;
  color: #252a2e;
}
.h5ds-helps .h5ds-helps-info {
  height: 140px;
  overflow: auto;
  margin-bottom: 10px;
}
.h5ds-helps .h5ds-helps-btns {
  text-align: right;
}
.h5ds-helps .h5ds-helps-bottom {
  left: 50%;
  top: 100%;
  margin-top: 10px;
  transform: translateX(-50%);
}
.h5ds-helps .h5ds-helps-bottom:before {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 10px solid #fff;
}
.h5ds-helps .h5ds-helps-right {
  left: 100%;
  top: 50%;
  margin-left: 10px;
  transform: translateY(-50%);
}
.h5ds-helps .h5ds-helps-right:before {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 10px solid #fff;
}
.h5ds-helps .h5ds-helps-left {
  right: 100%;
  top: 50%;
  margin-right: 10px;
  transform: translateY(-50%);
}
.h5ds-helps .h5ds-helps-left:before {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 10px solid #fff;
}
/* loading */
.h5ds-loading {
  color: #a5b6c8;
  font-size: 12px;
}
.h5ds-loading-window {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.3);
}
.h5ds-loading-center {
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.h5ds-loading-center:before {
  content: '';
  display: inline-block;
  width: 31px;
  height: 31px;
  background: url(http://cdn.h5ds.cn/lib/images/loading.gif) no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}
/* 黄色按钮 */
.h5ds-btn-yellow {
  padding: 3px 10px 5px 10px;
  display: inline-block;
  color: #fff;
  background: #ff5402;
  border-radius: 2px;
  font-size: 16px;
}
.h5ds-btn-yellow:hover {
  color: #fff;
  background: #f04e00;
}
/* 图标 */
#h5dsBeforeIcon {
  font-family: "h5ds" !important;
  display: inline-block;
  width: 12px;
  height: 12px;
  color: #a5b6c8;
  font-size: 14px;
  position: absolute;
  right: 8px;
  top: 50%;
  line-height: 12px;
  text-align: center;
  margin-top: -6px;
}
/* 可拖动框 */
.h5ds-drag {
  position: absolute;
  z-index: 1000;
}
/* 拖动排序 */
.h5ds-uniqlist {
  position: relative;
}
.h5ds-uniqlist .h5ds-active {
  background: #ff5402;
  border: 1px solid #ff5402;
}
.h5ds-uniqlist li {
  position: relative;
  background: #252a2e;
  margin-bottom: 10px;
}
.h5ds-uniqlist li a {
  display: inline-block;
  cursor: move;
  color: #fff;
}
.h5ds-uniqlist .h5ds-uniq-start {
  z-index: 1000;
  opacity: 0.3;
}
.h5ds-uniqlist .h5ds-uniq-clone {
  z-index: 1000;
}
/* 控制杆 */
.h5ds-control {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  cursor: move;
  margin: -1px 0 0 -1px;
  top: 0;
  left: 0;
  box-sizing: content-box;
  box-sizing: initial;
  transform: translate3d(0, 0, 0);
}
.h5ds-control::after,
.h5ds-control::before {
  display: inline-block;
  content: '';
  position: absolute;
  pointer-events: none;
  top: 1px;
  left: 1px;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  transform: translate3d(0, 0, 0);
}
.h5ds-control::after {
  z-index: 1;
  border: 1px dashed #000;
}
.h5ds-control span {
  display: inline-block;
  position: absolute;
  z-index: 100;
  background: #fff;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  cursor: pointer;
}
.h5ds-control .h5ds-control-center {
  top: 50%;
  left: 50%;
  border: none;
  width: 0px;
  height: 0px;
}
.h5ds-control .h5ds-control-top {
  top: -4px;
  left: 50%;
  margin-left: -4px;
  cursor: n-resize;
}
.h5ds-control .h5ds-control-bottom {
  bottom: -4px;
  left: 50%;
  margin-left: -4px;
  cursor: n-resize;
}
.h5ds-control .h5ds-control-left {
  top: 50%;
  left: -4px;
  margin-top: -4px;
  cursor: e-resize;
}
.h5ds-control .h5ds-control-right {
  top: 50%;
  right: -4px;
  margin-top: -4px;
  cursor: e-resize;
}
.h5ds-control .h5ds-control-topleft {
  top: -4px;
  left: -4px;
  cursor: se-resize;
}
.h5ds-control .h5ds-control-topright {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}
.h5ds-control .h5ds-control-bottomleft {
  bottom: -4px;
  left: -4px;
  cursor: ne-resize;
}
.h5ds-control .h5ds-control-bottomright {
  bottom: -4px;
  right: -4px;
  cursor: nw-resize;
}
.h5ds-control .h5ds-control-rotate {
  border-radius: 100px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translate3d(0, 0, 0);
  width: 12px;
  height: 12px;
  border: 2px solid #000;
  background: url('http://cdn.h5ds.cn/lib/images/rotate.png') no-repeat #000;
  background-size: cover;
  cursor: -webkit-grabbing;
}
/* 裁剪 */
.h5ds-crop-control {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  cursor: move;
  margin: -1px 0 0 -1px;
  top: 0;
  left: 0;
  box-sizing: content-box;
  box-sizing: initial;
  transform: translate3d(0, 0, 0);
}
.h5ds-crop-control::after,
.h5ds-crop-control::before {
  display: inline-block;
  content: '';
  position: absolute;
  pointer-events: none;
  top: 1px;
  left: 1px;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  transform: translate3d(0, 0, 0);
}
.h5ds-crop-control::after {
  z-index: 1;
  border: 1px dashed #000;
}
.h5ds-crop-control span {
  display: inline-block;
  position: absolute;
  z-index: 100;
  background: #fff;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  cursor: pointer;
}
.h5ds-crop-control .h5ds-control-center {
  top: 50%;
  left: 50%;
  border: none;
  width: 0px;
  height: 0px;
}
.h5ds-crop-control .h5ds-control-top {
  top: -4px;
  left: 50%;
  margin-left: -4px;
  cursor: n-resize;
}
.h5ds-crop-control .h5ds-control-bottom {
  bottom: -4px;
  left: 50%;
  margin-left: -4px;
  cursor: n-resize;
}
.h5ds-crop-control .h5ds-control-left {
  top: 50%;
  left: -4px;
  margin-top: -4px;
  cursor: e-resize;
}
.h5ds-crop-control .h5ds-control-right {
  top: 50%;
  right: -4px;
  margin-top: -4px;
  cursor: e-resize;
}
.h5ds-crop-control .h5ds-control-topleft {
  top: -4px;
  left: -4px;
  cursor: se-resize;
}
.h5ds-crop-control .h5ds-control-topright {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}
.h5ds-crop-control .h5ds-control-bottomleft {
  bottom: -4px;
  left: -4px;
  cursor: ne-resize;
}
.h5ds-crop-control .h5ds-control-bottomright {
  bottom: -4px;
  right: -4px;
  cursor: nw-resize;
}
.h5ds-crop-control .h5ds-control-rotate {
  border-radius: 100px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translate3d(0, 0, 0);
  width: 12px;
  height: 12px;
  border: 2px solid #000;
  background: url('http://cdn.h5ds.cn/lib/images/rotate.png') no-repeat #000;
  background-size: cover;
  cursor: -webkit-grabbing;
}
.h5ds-crop-controlbox {
  box-sizing: content-box;
  /* 图片剪切使用 */
  display: none;
  width: 100px;
  height: 60px;
  position: absolute;
  margin: 1px 0 0 1px;
  top: -400px;
  left: -400px;
  border: 500px solid rgba(0, 0, 0, 0.5);
}
.h5ds-crop {
  width: 323px;
  height: 248px;
  font-size: 12px;
  position: relative;
  margin-bottom: 30px;
}
.h5ds-crop .h5ds-crop-bg {
  background: #0e1113;
  text-align: center;
  height: 218px;
  width: 100%;
}
.h5ds-crop .h5ds-crop-fun {
  background: #252a2e;
}
.h5ds-crop .h5ds-crop-fun a {
  display: inline-block;
  width: 20%;
  text-align: center;
}
.h5ds-crop .h5ds-crop-fun a:hover {
  background: #0e1113;
}
.h5ds-crop .h5ds-crop-box {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.h5ds-crop .h5ds-crop-box img {
  max-height: 100%;
  max-width: 100%;
  display: inline-block;
  position: relative;
}
.h5ds-crop .h5ds-crop-box .h5ds-crop-controlbox {
  z-index: 100;
}
.h5ds-crop .h5ds-crop-fun {
  height: 30px;
  line-height: 30px;
}
.h5ds-crop .h5ds-crop-btns {
  height: 30px;
  line-height: 30px;
}
.h5ds-crop .h5ds-crop-btns a {
  display: inline-block;
  text-align: center;
  width: 25%;
  font-size: 14px;
  color: #a5b6c8;
}
.h5ds-crop .h5ds-crop-btns a:hover {
  background: #252a2e;
}
/* 上传按钮 */
.h5ds-upload-btn {
  position: relative;
}
.h5ds-contextmenu {
  position: absolute;
  z-index: 3000;
  background: #252a2e;
  color: #a5b6c8;
  padding: 10px;
  font-size: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.h5ds-contextmenu .h5ds-ico {
  font-size: 14px;
}
.h5ds-contextmenu li {
  width: 100px;
  padding: 4px;
  cursor: pointer;
}
.h5ds-contextmenu li:hover {
  background: #ff5402;
  color: #fff;
}
.layer-h5ds_text {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}
.layer-h5ds_text .element {
  overflow: visible!important;
  overflow: initial!important;
}
.layer-h5ds_text .layer-h5ds_text-inner {
  height: 100%;
  width: 100%;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}
.layer-h5ds_text .layer-h5ds_text-inner .layer-h5ds_text-box {
  transform-origin: 0 0;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}
.layer-h5ds_text .layer-h5ds_text-inner .layer-h5ds_text-auto {
  display: block;
  word-break: break-all;
}
.layer-h5ds_text .layer-h5ds_text-inner .layer-h5ds_text-auto div {
  background-clip: inherit;
  -webkit-background-clip: inherit;
  background: inherit;
}
.layer-h5ds_text .layer-h5ds_text-inner .layer-h5ds_text-auto span {
  display: inline-block;
  position: relative;
  color: inherit;
  background-clip: inherit;
  -webkit-background-clip: inherit;
  background-image: inherit;
  -webkit-text-fill-color: inherit;
  background: inherit;
  text-decoration: inherit;
  transform: translate3d(0, 0, 0);
}
.layer-h5ds_sound {
  /* MP3 图标 */
}
.layer-h5ds_sound audio {
  display: none;
}
@-webkit-keyframes mp3play {
  from {
    height: 2px;
  }
  to {
    height: 12px;
  }
}
@keyframes mp3play {
  from {
    height: 2px;
  }
  to {
    height: 12px;
  }
}
.layer-h5ds_sound .h5ds_sound-iconing i {
  -webkit-animation-name: mp3play;
          animation-name: mp3play;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.layer-h5ds_sound .h5ds_sound-iconing i:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.layer-h5ds_sound .h5ds_sound-iconing i:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.layer-h5ds_sound .h5ds_sound-iconing i:nth-child(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.layer-h5ds_sound .h5ds_sound-iconing i:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.layer-h5ds_sound .h5ds_sound-icon {
  display: inline-block;
  vertical-align: middle;
  transform-origin: 0 0;
  padding: 2px 5px;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 99999;
  cursor: pointer;
}
.layer-h5ds_sound .h5ds_sound-icon i {
  display: inline-block;
  width: 1px;
  background: #fff;
  margin-left: 3px;
}
.layer-h5ds_sound .h5ds_sound-icon i:nth-child(1) {
  height: 3px;
}
.layer-h5ds_sound .h5ds_sound-icon i:nth-child(2) {
  height: 6px;
}
.layer-h5ds_sound .h5ds_sound-icon i:nth-child(3) {
  height: 9px;
}
.layer-h5ds_sound .h5ds_sound-icon i:nth-child(4) {
  height: 12px;
}
.layer-h5ds_shape-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.layer-h5ds_shape-inner .layer-h5ds_shape-dom,
.layer-h5ds_shape-inner .layer-h5ds_shape-dom {
  float: left;
  height: 100%;
  width: 100%;
}
.layer-h5ds_shape-inner .layer-h5ds_shape-dom svg,
.layer-h5ds_shape-inner .layer-h5ds_shape-dom svg,
.layer-h5ds_shape-inner .layer-h5ds_shape-dom polygon,
.layer-h5ds_shape-inner .layer-h5ds_shape-dom polygon {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  transform: translate3d(0, 0, 0);
}
.layer-h5ds_shape .element {
  overflow: hidden;
}
.layer-h5ds_img .element {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.layer-h5ds_img img {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
}
.layer-h5ds_img .layer-h5ds_img-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-origin: 0 0;
}
.layer-h5ds_img .layer-h5ds_img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.layer-h5ds_combin {
  transform-origin: 0 0;
}
.h5ds-swiper-layers .layer-h5ds_combin .element {
  overflow: visible;
  overflow: initial;
}
.h5ds-preview {
  width: 320px;
  height: 514px;
  position: relative;
  background: #000;
  overflow: hidden;
  transform-origin: 0 0;
}
.h5ds-preview > .swiper-container {
  background: #fff;
}
.h5ds-preview .swiper-container-vertical > .swiper-scrollbar-hideScroll {
  display: none !important;
}
.h5ds-preview-ppt {
  overflow: visible;
  overflow: initial;
}
.h5ds-preview-ppt .h5ds-ppt-btn {
  position: absolute;
  z-index: 3000;
  bottom: 20px;
  right: 20px;
}
.h5ds-preview-ppt .h5ds-ppt-btn a {
  display: inline-block;
  font-size: 40px;
  width: 50px;
  height: 50px;
  box-sizing: content-box;
}
.h5ds-preview-ppt .h5ds-ppt-btn .h5ds-ppt-next {
  background: url(https://cdn.h5ds.com/static/images/pptnext.png) no-repeat;
  margin-left: 10px;
}
.h5ds-preview-ppt .h5ds-ppt-btn .h5ds-ppt-prev {
  background: url(https://cdn.h5ds.com/static/images/pptprev.png) no-repeat;
}
.h5ds-preview-pc .swiper-container {
  overflow: visible;
  overflow: initial;
}
.h5ds-swiper-ban-animate .element {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
  transform: translate3d(0, 0, 0);
}
.h5ds-swiper-ban-animate .layer-h5ds_text .animated {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
  opacity: 1 !important;
}
.h5ds-swiper-page {
  overflow: hidden;
}
.h5ds-fixeds .h5ds-swiper-page {
  overflow: visible;
  overflow: initial;
}
.h5ds-swiper-page-lange {
  overflow: hidden;
}
.h5ds-swiper-layers-box {
  width: 100%;
  height: 100%;
}
.h5ds-swiper-layers {
  position: relative;
  transform-origin: 0 0;
  transform: translate3d(0, 0, 0);
  transform-origin: center;
}
.h5ds-swiper-layers .layer {
  position: absolute;
  box-sizing: border-box;
}
.h5ds-swiper-layers .layer-temporary-lock {
  pointer-events: none;
}
.h5ds-swiper-layers .element {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  will-change: transform, opacity;
}
.h5ds-canvas-preview,
.h5ds-preview {
  perspective: 1000px;
  transform-style: preserve-3d;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.h5ds-canvas-preview .swiper-container,
.h5ds-preview .swiper-container {
  overflow: hidden;
}
.h5ds-canvas-preview .swiper-container .swiper-wrapper .swiper-slide-active,
.h5ds-preview .swiper-container .swiper-wrapper .swiper-slide-active {
  z-index: 100;
}
.h5ds-canvas-preview .swiper-container .swiper-pagination,
.h5ds-preview .swiper-container .swiper-pagination {
  top: auto;
  bottom: 0;
  height: 3px;
}
.h5ds-canvas-preview .swiper-container .swiper-pagination .swiper-pagination-progressbar-fill,
.h5ds-preview .swiper-container .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #ff5402;
}
.h5ds-canvas-preview img,
.h5ds-preview img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.h5ds-canvas-preview .h5ds-pages-box,
.h5ds-preview .h5ds-pages-box {
  width: 100%;
  height: 100%;
}
.h5ds-canvas-preview .h5ds-swiper-pageinner,
.h5ds-preview .h5ds-swiper-pageinner {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  margin: 0 auto;
}
.h5ds-canvas-preview.h5ds-preview-phone .h5ds-swiper-pageinner,
.h5ds-preview.h5ds-preview-phone .h5ds-swiper-pageinner {
  margin: 0;
}
.h5ds-canvas-preview .h5ds-swiper-swipe-btn,
.h5ds-preview .h5ds-swiper-swipe-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 10000;
}
.h5ds-canvas-preview .h5ds-swiper-swipe-btn span,
.h5ds-preview .h5ds-swiper-swipe-btn span {
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  padding: 4px 10px;
}
.h5ds-canvas-preview .h5ds-swiper-swipe-btn span:first-child,
.h5ds-preview .h5ds-swiper-swipe-btn span:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.h5ds-canvas-preview .h5ds-swiper-page-scroll,
.h5ds-preview .h5ds-swiper-page-scroll {
  overflow: hidden;
}
.h5ds-canvas-preview .h5ds-popups,
.h5ds-preview .h5ds-popups {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 3000;
}
.h5ds-canvas-preview .h5ds-popups .h5ds-swiper-page,
.h5ds-preview .h5ds-popups .h5ds-swiper-page {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.h5ds-canvas-preview .h5ds-pages,
.h5ds-preview .h5ds-pages {
  position: relative;
  z-index: 2000;
}
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsUp,
.h5ds-preview .h5ds-fixeds #h5dsFixedsUp {
  width: 100%;
  height: 0;
}
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsUp .h5ds-swiper-layers,
.h5ds-preview .h5ds-fixeds #h5dsFixedsUp .h5ds-swiper-layers {
  height: 0 !important;
}
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsDown,
.h5ds-preview .h5ds-fixeds #h5dsFixedsDown {
  height: 100%;
  width: 100%;
}
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsUp,
.h5ds-preview .h5ds-fixeds #h5dsFixedsUp,
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsDown,
.h5ds-preview .h5ds-fixeds #h5dsFixedsDown {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsUp .h5ds-swiper-page,
.h5ds-preview .h5ds-fixeds #h5dsFixedsUp .h5ds-swiper-page,
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsDown .h5ds-swiper-page,
.h5ds-preview .h5ds-fixeds #h5dsFixedsDown .h5ds-swiper-page {
  width: 100%;
  height: 100%;
}
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsUp .h5ds-swiper-page .h5ds-swiper-pageinner,
.h5ds-preview .h5ds-fixeds #h5dsFixedsUp .h5ds-swiper-page .h5ds-swiper-pageinner,
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsDown .h5ds-swiper-page .h5ds-swiper-pageinner,
.h5ds-preview .h5ds-fixeds #h5dsFixedsDown .h5ds-swiper-page .h5ds-swiper-pageinner {
  overflow: visible;
  width: 100%;
  height: 100%;
}
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsUp .h5ds-swiper-page .h5ds-swiper-pageinner .h5ds-swiper-layers,
.h5ds-preview .h5ds-fixeds #h5dsFixedsUp .h5ds-swiper-page .h5ds-swiper-pageinner .h5ds-swiper-layers,
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsDown .h5ds-swiper-page .h5ds-swiper-pageinner .h5ds-swiper-layers,
.h5ds-preview .h5ds-fixeds #h5dsFixedsDown .h5ds-swiper-page .h5ds-swiper-pageinner .h5ds-swiper-layers {
  width: 100%;
  height: 100%;
}
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsUp,
.h5ds-preview .h5ds-fixeds #h5dsFixedsUp {
  z-index: 2100;
}
.h5ds-canvas-preview .h5ds-fixeds #h5dsFixedsDown,
.h5ds-preview .h5ds-fixeds #h5dsFixedsDown {
  width: 100%;
}
.h5ds-canvas-preview .h5ds-fixeds .h5ds-swiper-page,
.h5ds-preview .h5ds-fixeds .h5ds-swiper-page {
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-layerlist {
  width: 190px;
  padding-top: 5px;
  background: #0e1113;
  position: absolute;
  top: 100px;
  left: 190px;
  z-index: 1010;
  color: #a5b6c8;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.h5ds-layerlist a {
  color: #a5b6c8;
}
.h5ds-layerlist .h5ds-ico {
  color: #ff5402;
  font-size: 18px;
}
.h5ds-layerlist h1 {
  font-size: 14px;
  padding: 5px;
  vertical-align: middle;
  cursor: move;
}
.h5ds-layerlist h1 i,
.h5ds-layerlist h1 a,
.h5ds-layerlist h1 span {
  float: left;
}
.h5ds-layerlist h1 a {
  float: right;
}
.h5ds-layerlist h1 span {
  margin-left: 5px;
  color: #a5b6c8;
}
.h5ds-layerlist ul {
  font-size: 12px;
  background: #252a2e;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}
.h5ds-layerlist ul li {
  margin: 0;
  height: 24px;
  line-height: 24px;
  border-bottom: 1px solid #0e1113;
  cursor: pointer;
  overflow: hidden;
}
.h5ds-layerlist ul li a {
  vertical-align: middle;
  cursor: pointer;
  height: 100%;
  width: 23px;
  text-align: center;
  float: left;
}
.h5ds-layerlist ul li span.name {
  vertical-align: middle;
  height: 100%;
  border-left: 1px solid #0e1113;
  border-right: 1px solid #0e1113;
  float: left;
  width: 90px;
  text-indent: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.h5ds-layerlist ul li span.name input {
  float: left;
  width: 100%;
  height: 100%;
  color: #333;
}
.h5ds-layerlist ul .h5ds-layerlist-null {
  display: block;
  line-height: 40px;
  height: 40px;
  text-indent: 10px;
}
.h5ds-layerlist ul .h5ds-layerlist-hidelayer-active .h5ds-ico {
  color: #0e1113;
}
.h5ds-layerlist ul .h5ds-layerlist-locklayer .h5ds-ico {
  font-size: 14px;
  color: #0e1113;
}
.h5ds-layerlist ul .h5ds-layerlist-locklayer-active .h5ds-ico {
  color: #ff5402;
}
.h5ds-layerlist ul .h5ds-layerlist-active {
  background: #ff5402;
  color: #fff;
}
.h5ds-layerlist ul .h5ds-layerlist-active .h5ds-ico {
  color: #fff;
}
.h5ds-layerlist ul .h5ds-layerlist-active .h5ds-layerlist-locklayer .h5ds-ico {
  color: #0e1113;
}
.h5ds-layerlist ul .h5ds-layerlist-active .h5ds-layerlist-locklayer-active .h5ds-ico {
  color: #fff;
}
.h5ds-layerlist ul .h5ds-layerlist-active .h5ds-layerlist-hidelayer-active .h5ds-ico {
  color: #0e1113;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-pagelist {
  position: absolute;
  width: 140px;
  top: 60px;
  left: 0;
  bottom: 0;
  background: #30373f;
  z-index: 1002;
}
.h5ds-pagelist .h5ds-page-name {
  word-break: break-all;
  padding: 5px;
}
.h5ds-pagelist .h5ds-page-name span {
  display: inline-block;
  border-radius: 100px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: #535f6b;
  color: #fff;
  font-size: 12px;
  margin-right: 5px;
}
.h5ds-pagelist .h5ds-pagelist-btn {
  position: absolute;
  top: 0;
  width: 100%;
  height: 30px;
  font-size: 12px;
  text-align: center;
  line-height: 29px;
  border-top: 1px solid #000;
  color: #a5b6c8;
}
.h5ds-pagelist .h5ds-pagelist-btn li {
  display: inline-block;
  height: 30px;
  width: 33.333%;
  background: #0e1113;
}
.h5ds-pagelist .h5ds-pagelist-btn li.h5ds-active {
  background: #ff5402;
  color: #fff;
}
.h5ds-pagelist .h5ds-pagelist-pages {
  position: absolute;
  top: 31px;
  bottom: 0;
  width: 100%;
  left: 0;
  overflow: hidden;
  overflow-y: scroll;
  padding-bottom: 20px;
}
.h5ds-pagelist-pages li {
  width: 100px;
  height: 160px;
  margin-left: 10px;
  margin-top: 10px;
  position: relative;
  cursor: pointer;
  color: #30373f;
  font-size: 14px;
  background: #fff;
  box-sizing: content-box;
}
.h5ds-pagelist-pages .h5ds-pagelist-page-item {
  background: #fff;
}
.h5ds-pagelist-pages .h5ds-pagelist-edit-page .h5ds-ico {
  font-size: 14px;
}
.h5ds-pagelist-pages .h5ds-pagelist-active:after {
  display: inline-block;
  content: '\e618';
  font-family: "h5ds-ico" !important;
  font-size: 20px;
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -12px;
  color: #ff5402;
}
.h5ds-pagelist-pages .h5ds-pagelist-active:before {
  display: inline-block;
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.3);
}
.h5ds-pagelist-pages .h5ds-pagelist-page-content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.h5ds-pagelist-pages .h5ds-pagelist-page-content .h5ds-page-min {
  pointer-events: none;
  transform: scale(0.312);
}
.h5ds-pagelist-pages .h5ds-pagelist-page-info {
  position: absolute;
  right: -22px;
  top: 0;
  height: 100%;
  width: 22px;
}
.h5ds-pagelist-pages .h5ds-pagelist-page-info a {
  width: 100%;
  height: 22px;
  font-size: 12px;
  color: #fff;
  float: left;
  text-align: center;
  cursor: pointer;
  line-height: 22px;
}
.h5ds-pagelist-pages .h5ds-pagelist-page-info a.h5ds-pagelist-add {
  background: #252a2e;
}
.h5ds-pagelist-pages .h5ds-pagelist-page-info a.h5ds-pagelist-important {
  background: #ff5402;
}
.h5ds-pagelist-fixeds-info {
  position: absolute;
  z-index: 9999;
  bottom: 0;
  background: #535f6b;
  width: 100%;
  height: 22px;
  text-indent: 5px;
  line-height: 1.5em;
  color: #fff;
}
.h5ds-pagelist-page-info .h5ds-pagelist-item {
  margin: 20px 20px 20px 20px;
}
.h5ds-pagelist-page-info label {
  display: inline-block;
  width: 80px;
  vertical-align: top;
  text-align: right;
}
.h5ds-pagelist-page-info input {
  width: 300px;
  border-radius: 0;
}
.h5ds-pagelist-page-info textarea {
  width: 300px;
  border-radius: 0;
}
.h5ds-pagelist-loading {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #535f6b;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-ban-animate {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
}
.h5ds-ban-animate .element {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
}
.h5ds-ban-animate .layer-h5ds_text .animated {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
  opacity: 1!important;
}
.h5ds-shortcut {
  position: absolute;
  right: 600px;
  top: 100px;
  width: 100px;
  z-index: 1010;
  text-align: left;
  background: #0e1113;
  font-size: 12px;
}
.h5ds-shortcut h5 {
  font-size: 14px;
  color: #a5b6c8;
  text-align: center;
  line-height: 32px;
  background: #0e1113;
  cursor: move;
}
.h5ds-shortcut ul {
  padding: 0 10px;
}
.h5ds-shortcut li {
  padding: 5px 0;
  cursor: pointer;
}
.h5ds-shortcut li:hover a {
  color: #ff5402;
}
.h5ds-shortcut a {
  color: #fff;
  display: inline-block;
  margin-right: 5px;
}
.h5ds-shortcut span {
  color: #a5b6c8;
}
.h5ds-shortcut .h5ds-ico-caidan {
  color: #ff5402;
}
.h5ds-shortcut .h5ds-ico {
  font-size: 14px;
}
.h5ds-shortcut-bottom-btns {
  border-top: 1px solid #0e1113;
  margin-top: 4px;
}
.h5ds-shortcut-bottom-btns .h5ds-shortcut-add {
  color: #ff5402;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-gridset .h5ds-gridset-item {
  margin-bottom: 10px;
}
.h5ds-gridset .ant-radio-button-wrapper-checked {
  background: #ff5402;
  color: #fff;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-template {
  position: absolute;
  width: 330px;
  background: #30373f;
  top: 60px;
  left: 140px;
  bottom: 0;
  z-index: 200;
  transform: translateX(-330px);
  /* 折叠按钮 */
}
.h5ds-template .h5ds-temps-flodbtn {
  position: absolute;
  top: 50%;
  margin-top: -54px;
  right: -48px;
  width: 24px;
  height: 108px;
  line-height: 108px;
  text-align: center;
  color: #fff;
  background: #ff5402;
  opacity: 1;
  transition: none;
}
.h5ds-template .h5ds-temps-flodbtn:hover {
  background: #f04e00;
}
.h5ds-template.h5ds-temps-showpanel {
  transform: translateX(0);
  z-index: 1001;
}
.h5ds-template.h5ds-temps-showpanel .h5ds-temps-flodbtn {
  right: -24px;
}
.h5ds-template .h5ds-tab-header li {
  width: 50%;
  padding: 0;
  text-align: center;
  font-size: 16px;
}
.h5ds-template .h5ds-tab-body {
  position: absolute;
  top: 30px;
  bottom: 0;
  width: 100%;
}
.h5ds-template .h5ds-tab-box {
  padding: 10px;
}
.h5ds-page-min {
  height: 514px;
  width: 320px;
  transform-origin: 0 0;
  transform: scale(0.28);
  z-index: 0;
  position: relative;
  background: #fff;
}
.h5ds-page-min .h5ds-swiper-layers,
.h5ds-page-min .h5ds-swiper-page {
  pointer-events: none;
  display: block;
}
.h5ds-page-min .h5ds-swiper-layers .element,
.h5ds-page-min .h5ds-swiper-page .element {
  -webkit-animation: none !important;
          animation: none !important;
  opacity: 1 !important;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-timeline-btn {
  position: absolute;
  height: 15px;
  text-align: center;
  top: -17px;
  left: 0;
  color: #a5b6c8;
  width: 100%;
  z-index: 9999;
  background: #30373f;
  cursor: move;
}
.h5ds-timeline-box {
  height: 14px;
  position: absolute;
  z-index: 999;
  overflow: hidden;
  left: 140px;
  right: 350px;
  bottom: 0;
  background: #252a2e;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.h5ds-timeline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: content-box;
  border-top: 13px solid #30373f;
  border-left: 5px solid #30373f;
  border-right: 5px solid #30373f;
}
.h5ds-timeline span {
  display: inline-block;
}
.h5ds-timeline * {
  box-sizing: border-box;
}
.h5ds-timeline .ant-input-number-handler-wrap span {
  display: block;
}
.h5ds-timeline .h5ds-timeline-item1 {
  width: 140px;
  border-right: 1px solid #30373f;
}
.h5ds-timeline .h5ds-timeline-item2 {
  width: 60px;
}
.h5ds-timeline .h5ds-timeline-left {
  width: 200px;
  background: #1d2225;
  height: 100%;
  font-size: 12px;
}
.h5ds-timeline .h5ds-timeline-right {
  height: 100%;
  top: 0;
  position: absolute;
  left: 200px;
  right: 0;
}
.h5ds-timeline .h5ds-timeline-header {
  height: 30px;
  position: relative;
}
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-item1,
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-item2 {
  float: left;
  height: 30px;
  line-height: 30px;
}
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-left {
  position: relative;
  z-index: 200;
}
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-left .h5ds-timeline-item1,
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-left .h5ds-timeline-item2 {
  vertical-align: top;
  border-bottom: 1px solid #30373f;
  text-align: center;
}
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-left a {
  color: #535f6b;
  margin: 0 2px;
}
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-left .h5ds-timeline-play {
  height: 100%;
  display: inline-block;
  margin-left: 20px;
}
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-left .h5ds-timeline-play a {
  color: #ff5402;
}
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-right {
  border-bottom: 1px solid #30373f;
}
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-bar {
  position: absolute;
  height: 100%;
  width: 10px;
  margin-left: -4px;
  height: 30px;
  background: rgba(172, 4, 4, 0.3);
  border: 2px solid #ac0404;
  cursor: move;
  z-index: 100;
  transition-timing-function: linear !important;
}
.h5ds-timeline .h5ds-timeline-header .h5ds-timeline-bar::before {
  pointer-events: none;
  left: 2px;
  content: '';
  display: block;
  width: 2px;
  position: absolute;
  height: 1000px;
  top: 26px;
  background: #ac0404;
}
.h5ds-timeline .h5ds-timeline-scale {
  height: 100%;
  overflow: hidden;
  position: relative;
  left: 0;
}
.h5ds-timeline .h5ds-timeline-scale li {
  display: inline-block;
  width: 100px;
  font-size: 12px;
  height: 100%;
  position: relative;
  color: #535f6b;
}
.h5ds-timeline .h5ds-timeline-scale li .h5ds-timeline-dot {
  display: inline-block;
  height: 5px;
  width: 1px;
  background: #fff;
  margin-left: 9px;
  position: relative;
  top: 14px;
  opacity: 0.2;
}
.h5ds-timeline .h5ds-timeline-scale li::before {
  position: absolute;
  bottom: 0;
  left: -1px;
  content: '';
  display: inline-block;
  height: 14px;
  background: #535f6b;
  width: 1px;
}
.h5ds-timeline .h5ds-timeline-scale li span {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.h5ds-timeline .h5ds-timeline-body {
  position: absolute;
  width: 100%;
  bottom: 20px;
  top: 30px;
  left: 0;
  overflow: hidden;
  overflow-y: scroll;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left {
  width: 200px;
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left .h5ds-timeline-active {
  background: #0e1113;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left .h5ds-timeline-item1 {
  text-indent: 10px;
  height: 22px;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left .h5ds-timeline-item2 {
  text-align: center;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left .h5ds-timeline-item2 a {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #535f6b;
  margin: 0 8px;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left .h5ds-timeline-item2 .h5ds-timeline-active {
  background: #ff5402;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-left li {
  height: 22px;
  background: #1d2225;
  color: #535f6b;
  position: relative;
  border-bottom: 1px solid #30373f;
  cursor: pointer;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right {
  position: absolute;
  left: 200px;
  top: 0;
  right: 0;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right .h5ds-timeline-timenode {
  display: inline-block;
  background: #815fa7;
  color: #ca9aff;
  position: absolute;
  height: 16px;
  margin: 3px 0;
  overflow: hidden;
  font-size: 12px;
  text-indent: 10px;
  cursor: move;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right .h5ds-timeline-timenode .h5ds-timeline-timenode-right,
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right .h5ds-timeline-timenode .h5ds-timeline-timenode-left {
  cursor: col-resize;
  position: absolute;
  height: 100%;
  width: 4px;
  top: 0;
  z-index: 100;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right .h5ds-timeline-timenode .h5ds-timeline-timenode-right {
  right: 0;
  background: #00feff;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right .h5ds-timeline-timenode .h5ds-timeline-timenode-left {
  left: 0;
  background: #ff5402;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right .h5ds-timeline-soundnode {
  background: url(http://h5ds-cdn.oss-cn-beijing.aliyuncs.com/static/images/sound.png) #59b37d;
  background-size: auto 100%;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right .h5ds-timeline-layers-right {
  position: relative;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right .h5ds-timeline-active {
  background: rgba(0, 0, 0, 0.3);
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right li {
  border-bottom: 1px solid #30373f;
  height: 22px;
  position: relative;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right i {
  display: inline-block;
  width: 10px;
  height: 20px;
  border-right: 1px solid #30373f;
  cursor: pointer;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right i.h5ds-timeline-selected {
  background: #ff5402;
}
.h5ds-timeline .h5ds-timeline-body .h5ds-timeline-right i:hover:not(.h5ds-timeline-selected) {
  background: #0e1113;
}
.h5ds-timeline .h5ds-timeline-layers li {
  height: 22px;
  position: relative;
}
.h5ds-timeline .h5ds-timeline-layers .h5ds-timeline-item1 {
  color: #535f6b;
  padding-left: 5px;
  font-size: 12px;
  text-align: left;
  height: 22px;
  overflow: hidden;
}
.h5ds-timeline .h5ds-timeline-layers .h5ds-timeline-right {
  height: 22px;
}
.h5ds-timeline .h5ds-timeline-layers .h5ds-timeline-view,
.h5ds-timeline .h5ds-timeline-layers .h5ds-timeline-lock {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #535f6b;
  position: relative;
  top: -2px;
  margin: 0 6px;
}
.h5ds-timeline .h5ds-timeline-footer {
  height: 20px;
  line-height: 20px;
  color: #a5b6c8;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2000;
}
.h5ds-timeline .h5ds-timeline-footer .h5ds-timeline-left {
  background: #30373f;
}
.h5ds-timeline .h5ds-timeline-footer .h5ds-timeline-right {
  background: #30373f;
}
.h5ds-timeline .h5ds-timeline-slider {
  height: 16px;
  margin: 1px;
  background: #0e1113;
  position: relative;
  overflow: auto;
  overflow-y: hidden;
  cursor: move;
  /* Let's get this party started */
  /* Let's get this party started */
}
.h5ds-timeline .h5ds-timeline-slider .h5ds-timeline-slider-leng {
  height: 1px;
  top: -1px;
}
.h5ds-timeline .h5ds-timeline-slider::-webkit-scrollbar {
  width: 5px;
  height: 14px;
}
.h5ds-timeline .h5ds-timeline-slider::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-timeline .h5ds-timeline-slider::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 0;
}
.h5ds-timeline .h5ds-timeline-slider::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-timeline .h5ds-timeline-slider::-webkit-scrollbar-button:vertical:decrement,
.h5ds-timeline .h5ds-timeline-slider::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}

.h5ds-loading-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.h5ds-loading-box .h5ds-loading-percent {
  position: relative;
  font-size: 14px;
  color: #fff;
}
.h5ds-loading-box .h5ds-loading-info {
  font-size: 12px;
  color: #ccc;
  position: absolute;
  transform: scale(0.8) translateX(-50%);
  transform-origin: 0 0;
  left: 50%;
  padding: 10px;
  word-break: break-all;
  width: 100%;
}
.h5ds-edit {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.h5ds-scrollbar-modal {
  /*滚动条*/
}
.h5ds-scrollbar-modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar-modal::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
.h5ds-scrollbar {
  /*滚动条*/
}
.h5ds-scrollbar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.h5ds-scrollbar ::-webkit-scrollbar-track {
  background: #1d2225;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb {
  background: #535f6b;
  border-radius: 100px;
}
.h5ds-scrollbar ::-webkit-scrollbar-thumb:window-inactive {
  background: #535f6b;
}
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:decrement,
.h5ds-scrollbar ::-webkit-scrollbar-button:vertical:increment {
  height: 5px;
  width: 5px;
  background: #1d2225;
}
/* loading */
.h5ds-loading-window {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4001;
  background: rgba(0, 0, 0, 0.7);
}
.h5ds-loading-window .h5ds-loadbox {
  color: #a5b6c8;
  font-size: 16px;
  line-height: 40px;
}
.h5ds-loading-window .h5ds-loading-center {
  text-align: center;
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.h5ds-loading-window .h5ds-loading-center:before {
  content: '';
  display: inline-block;
  width: 31px;
  height: 31px;
  background: url(http://cdn.h5ds.com/lib/images/loading.gif) no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}

