@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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);
    -webkit-transform: translate3d(0, 0, 0);
    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);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  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);
    -webkit-transform: translate3d(0, 0, 0);
    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);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

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

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

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

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

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

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

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

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

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

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

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-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;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    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);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    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);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    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);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    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);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 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);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 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);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 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);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 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);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

@charset "UTF-8";
/*
 * 全局入口文件
 * @author 明浩
 * @date 2021-09-28 15:47:28
 */
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
/*
 * 基础样式
 * @author 明浩
 * @date 2021-09-28 15:48:23
 */
html, body {
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", DIN Alternate Bold, "Noto Color Emoji";
  min-width: 1240px;
  color: #444;
}
html ol, html ul, html dl, html dd, html dt, body ol, body ul, body dl, body dd, body dt {
  margin: 0;
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 576px) {
  html, body {
    min-width: auto;
  }
}
a {
  color: #9C5605;
}
a:hover {
  color: #0057bb;
}
a:active {
  color: #0057bb;
}

video {
  display: block;
}

/*
 * css帮助文件
 * @author 明浩
 * @date 2021-09-28 18:56:25
 */
/*
 * 边距
 */
.margin-top-lg {
  margin-top: 24px;
}

.margin-left-lg {
  margin-left: 24px;
}

.margin-right-lg {
  margin-right: 24px;
}

.margin-bottom-lg {
  margin-bottom: 24px;
}

.margin-top {
  margin-top: 20px;
}

.margin-left {
  margin-left: 20px;
}

.margin-right {
  margin-right: 20px;
}

.margin-bottom {
  margin-bottom: 20px;
}

/**
 * 字体颜色
 */
.color-secondary {
  color: #666;
}

/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
/**
 * swiper 全局样式
 * @author 明浩
 * @date 2021-09-29 13:30:06
 */
.swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  /**
   * 元素
   */
  /**
   * 页签
   */
  /**
   * 箭头
   */
}
.swiper .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  transform: scale(1);
  background-color: #fff;
  margin: 0px 8px !important;
  opacity: 0.4;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 0.8;
}
.swiper:hover .swiper-button-next, .swiper:hover .swiper-button-prev {
  display: block;
}
.swiper .swiper-button-next, .swiper .swiper-button-prev {
  color: #fff;
  opacity: 0.4;
  transition: 0.2s;
  display: none;
}
.swiper .swiper-button-next:after, .swiper .swiper-button-prev:after {
  font-size: 26px;
}
.swiper .swiper-button-next:hover, .swiper .swiper-button-prev:hover {
  opacity: 1;
}
.swiper .swiper-button-next.swiper-button-disabled, .swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}
.swiper .swiper-button-next {
  right: 60px;
}
.swiper .swiper-button-prev {
  left: 60px;
}

/**
 * 卡片面板类
 * @author 明浩
 * @date 2021-09-29 16:33:39
 */
/**
 * 时尚类面板
 */
.card-fashion {
  width: 100%;
  margin-top: 100px;
}
.card-fashion-inner {
  margin: auto;
  width: 1130px;
}
.card-fashion-header {
  height: 50px;
  line-height: 50px;
  margin-bottom: 50px;
}
.card-fashion-header-title {
  font-size: 30px;
  text-align: center;
}
.card-fashion-content {
  height: 480px;
}

/**
 * 时尚类面板
 * 左图 右文
 */
.card-fashion-banner {
  width: 100%;
}
.card-fashion-banner-image {
  width: 100%;
}
.card-fashion-banner-image img {
  width: 100%;
}
.card-fashion-banner-content {
  padding: 0 150px;
  display: flex;
  align-items: center;
  height: 100%;
}
.card-fashion-banner-content-wrapper {
  width: 100%;
}
.card-fashion-banner-content-header-title {
  font-size: 26px;
  color: #666;
}
.card-fashion-banner-content-main {
  width: 100%;
  margin-top: 26px;
}
.card-fashion-banner-content-footer {
  width: 100%;
  margin-top: 36px;
}

/**
 * 人物卡片
 */
.card-user {
  padding: 20px 40px 0;
  background: #FAFAFA;
  border-radius: 8px;
}
.card-user-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-user-header-title {
  font-weight: 500;
  line-height: 22px;
  height: 28px;
  font-size: 16px;
  align-items: center;
  display: inline-flex;
}
.card-user-header-title em {
  font-style: normal;
  color: #dd7b39;
  font-size: 20px;
  font-weight: 500;
  margin: 0 10px;
}
.card-user-header-more {
  height: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #888;
  line-height: 22px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.card-user-header-more .anticon {
  opacity: 0.9;
  margin-left: 5px;
}

/**
 * 项目详情卡片
 */
.card-detail {
  padding: 30px 60px 40px;
  background: #FAFAFA;
  border-radius: 8px;
}
.card-detail-title {
  font-size: 24px;
  font-weight: 500;
  color: #9c5605;
  line-height: 33px;
  text-align: center;
  position: relative;
  padding-bottom: 6px;
}
.card-detail-title:after {
  display: block;
  content: " ";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #9c5605;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
  font-size: 0;
}
.card-detail-content {
  margin-top: 40px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.card-detail-content-list {
  text-indent: 2em;
  margin-bottom: 24px;
}
.card-detail-content-list:last-child {
  margin-bottom: 0;
}
.card-detail-content-list img {
  width: 100%;
}

/**
 * 详情卡片 - 无背景
 */
.card-detail-theme-nobg {
  padding: 40px 0;
}
.card-detail-theme-nobg-title {
  height: 33px;
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  text-align: center;
}
.card-detail-theme-nobg-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-top: 40px;
}
.card-detail-theme-nobg-content p {
  text-indent: 2em;
  margin-bottom: 24px;
}
.card-detail-theme-nobg-content p:last-child {
  margin-bottom: 0;
}
.card-detail-theme-nobg-content-img {
  width: 700px;
  margin: 40px auto 0;
}
.card-detail-theme-nobg-content-img img {
  width: 700px;
  display: block;
}

/**
 * 招聘
 */
.card-recruit-header {
  padding-left: 20px;
  position: relative;
  height: 65px;
  border-bottom: 1px #ebebeb solid;
  display: flex;
  align-items: center;
}
.card-recruit-header:before {
  display: block;
  content: " ";
  position: absolute;
  width: 5px;
  height: 15px;
  background: #9C5605;
  left: 0;
  top: 50%;
  margin-top: -7.5px;
}
.card-recruit-header-title {
  height: 25px;
  font-size: 18px;
  font-weight: 400;
  color: #9C5605;
  line-height: 25px;
}
.card-recruit-content {
  padding: 24px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.card-recruit-content-item h5 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.card-recruit-content-item p {
  margin: 0;
  font-size: 14px;
}
.card-recruit-content-item + .card-recruit-content-item {
  margin-top: 20px;
}

.card-project-detail {
  padding-top: 40px;
}

@media screen and (max-width: 576px) {
  .card-user {
    padding: 20px;
  }

  .card-detail {
    padding: 20px;
  }
  .card-detail-title {
    font-size: 18px;
  }
  .card-detail-content {
    margin-top: 20px;
  }
  .card-detail-theme-nobg {
    padding: 20px;
  }
  .card-detail-theme-nobg-content {
    margin-top: 20px;
  }
  .card-detail-theme-nobg-content-img {
    margin-top: 0px;
    width: 100%;
  }
  .card-detail-theme-nobg-content-img img {
    width: 100%;
  }

  .card-project-detail {
    padding-top: 20px;
  }

  .card-recruit-content {
    padding: 20px 0px 0px;
  }
}
/**
 * 文本排版
 * @author 明浩
 * @date 2021-09-29 18:11:41
 */
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
/**
 * 数字类
 */
.typesetting-num em {
  font-size: 32px;
  font-style: normal;
  display: block;
  font-weight: bold;
}
.typesetting-num em span {
  font-size: 12px;
  color: #888;
  margin-left: 4px;
}
.typesetting-num > span {
  margin-top: 12px;
  color: #666;
}

/**
 * 文本排版类
 */
.typesetting-txt {
  width: 100%;
  text-align: left;
}
.typesetting-txt-title {
  font-size: 20px;
  margin-bottom: 40px;
}
.typesetting-txt-msg {
  color: #666;
}

/**
 * title标题
 */
.ui-container {
  padding: 120px 80px 95px;
}
.ui-container-title {
  width: 100%;
  height: 82px;
  display: flex;
  justify-content: center;
}
.ui-container-title img {
  height: 100%;
}

/**
 * 项目面板
 */
.project-info {
  padding: 40px;
  border-radius: 8px;
  background-color: #FAFAFA;
  display: flex;
}
.project-info-img {
  width: 590px;
  height: 370px;
  position: relative;
  border-radius: 8px;
  margin-right: 50px;
  background-color: #ccc;
}
.project-info-img img {
  width: 590px;
  height: 370px;
  display: block;
  border-radius: 8px;
}
.project-info-share {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  width: 140px;
  height: 48px;
  background: #ffffff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.project-info-share img {
  width: 32px;
  height: 32px;
}
.project-info-content {
  flex: 1;
}
.project-info-content-title {
  height: 33px;
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  margin-top: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.project-info-content-txt {
  max-height: 110px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 22px;
  margin-top: 20px;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.project-info-content-msg {
  margin-top: 20px;
}
.project-info-content-msg-li {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.project-info-content-msg-li span {
  height: 20px;
  font-weight: 500;
  line-height: 20px;
}
.project-info-content-msg-li em {
  height: 42px;
  font-size: 30px;
  font-family: DINAlternate-Bold, DINAlternate;
  font-weight: bold;
  color: #dd7b39;
  line-height: 42px;
  font-style: normal;
  margin-left: 10px;
}
.project-info-content-btns {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 22px;
  margin-top: 30px;
  text-align: right;
}
.project-info-content-btns .ant-btn {
  margin-left: 20px;
}

@media screen and (max-width: 576px) {
  .project-info {
    padding: 20px;
    display: inherit;
  }
  .project-info-content {
    padding-bottom: 0px;
  }
  .project-info-content-title {
    font-size: 18px;
  }
  .project-info-content-txt {
    font-size: 14px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .project-info-content-btns {
    margin-top: 20px;
  }
  .project-info-content-msg-li em {
    font-size: 18px;
  }
  .project-info-img {
    width: 100%;
    height: auto;
    position: relative;
  }
  .project-info-img img {
    width: 100%;
    height: 100%;
  }
  .project-info-share {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    width: 140px;
    height: 48px;
    background: #ffffff;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .project-info-share img {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 576px) and (max-width: 576px) {
  .ui-container {
    padding: 0;
  }
  .ui-container-title {
    overflow: hidden;
    height: 41px;
  }
}
/**
 * 全局列表组件样式
 * @author 明浩
 * @date 2021-09-29 16:33:39
 */
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.ui-list-title {
  color: #9C5605;
  font-size: 24px;
  line-height: 24px;
  height: 104px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ca9175;
}
.ui-list-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  background: #9C5605;
  height: 24px;
  margin-right: 10px;
  vertical-align: bottom;
}
.ui-list-body-li {
  height: 104px;
  display: flex;
  font-size: 16px;
  border-bottom: 1px solid #ca9175;
}
.ui-list-body-li span {
  display: flex;
  align-items: center;
  height: 100%;
}
.ui-list-body-li:hover {
  cursor: pointer;
  border-bottom: 1px solid #8b3308;
}
.ui-list-body-li:hover span {
  color: #9C5605;
}
.ui-list-body-li:hover span:first-child {
  position: relative;
}
.ui-list-body-li:hover span:first-child::before {
  width: 100%;
  position: absolute;
  content: " ";
  height: 4px;
  left: 0;
  bottom: 0;
  background-color: #9C5605;
}
.ui-list-body-date {
  color: #666;
  margin-right: 80px;
  flex: 0 0 165px;
}
.ui-list-body-message {
  color: #444;
}
.ui-list-button {
  display: flex;
  justify-content: end;
}
.ui-list-button-btn {
  width: 154px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #9C5605;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.ui-list-button-btn span {
  color: #9C5605;
  font-weight: 600;
}

.ant-list .ant-list-pagination {
  text-align: center;
  margin-top: 40px;
}

/**
 * 项目列表风格
 */
.ui-projectlist .ant-list-items .ant-list-item {
  padding: 0;
  border: none;
}
.ui-projectlist .ant-list-items .ant-list-item + .ant-list-item {
  margin-top: 20px;
}
.ui-projectlist-item {
  border-radius: 8px;
  border: 1px solid #dd7b39;
  display: flex;
}
.ui-projectlist-item + .ui-projectlist-item-item {
  margin-top: 20px;
}
.ui-projectlist-item-img {
  width: 520px;
  height: 320px;
  background-color: #b7b6a8;
  border-radius: 8px 0 0 8px;
}
.ui-projectlist-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px 0 0 8px;
}
.ui-projectlist-item-main {
  flex: 1;
  padding: 40px;
}
.ui-projectlist-item-main-title {
  font-size: 21px;
  font-weight: 500;
  line-height: 29px;
}
.ui-projectlist-item-main-remarks {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 22px;
  margin-top: 20px;
}
.ui-projectlist-item-main-box {
  margin-top: 20px;
}
.ui-projectlist-item-main-btns {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 22px;
  margin-top: 20px;
  text-align: right;
}
.ui-projectlist-item-main-btns .ant-btn {
  margin-left: 20px;
}

/**
 * 项目列表风格 - b
 */
.ui-projectlist-b .ant-list-item {
  padding: 0 !important;
  margin-bottom: 45px;
  border: none;
}
.ui-projectlist-b-item {
  border-radius: 8px;
  background-color: #fff;
}
.ui-projectlist-b-item:hover {
  box-shadow: 0px 10px 50px 0px rgba(7, 42, 68, 0.04);
}
.ui-projectlist-b-item-img {
  width: 100%;
  height: 290px;
  background-color: #b7b6a8;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
}
.ui-projectlist-b-item-img img {
  width: 100%;
  height: 290px;
  border-radius: 8px 8px 0 0;
}
.ui-projectlist-b-item-main {
  padding: 20px 25px;
}
.ui-projectlist-b-item-main-title {
  height: 28px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ui-projectlist-b-item-main-title a,
.ui-projectlist-b-item-main-title a:visited {
  color: #444;
}
.ui-projectlist-b-item-main-remarks {
  height: 44px;
  cursor: pointer;
  overflow: hidden;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ui-projectlist-b-item-btnsgroup {
  height: 92px;
  border-top: 1px #f0f0f0 solid;
  display: flex;
  cursor: pointer;
}
.ui-projectlist-b-item-btn {
  flex: 1;
  box-sizing: border-box;
  position: relative;
  height: 92px;
  text-align: center;
}
.ui-projectlist-b-item-btn em {
  display: block;
  font-style: normal;
  font-size: 24px;
  font-family: DINAlternate-Bold, DINAlternate;
  font-weight: bold;
  color: #dd7b39;
  line-height: 35px;
  margin-top: 13px;
}
.ui-projectlist-b-item-btn span {
  height: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 22px;
  margin-top: 7px;
}
.ui-projectlist-b-item-btn:after {
  display: block;
  content: " ";
  width: 1px;
  height: 92px;
  background-color: #f0f0f0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
.ui-projectlist-b-item-btn:last-child:after {
  display: none;
}

/**
 * 新闻列表风格
 */
.ui-newslist {
  position: relative;
}
.ui-newslist .ant-list-items .ant-list-item {
  padding: 0;
  border: none;
}
.ui-newslist .ant-list-items .ant-list-item + .ant-list-item {
  margin-top: 20px;
}
.ui-newslist-item {
  border-radius: 8px;
  background: #FAFAFA;
  display: flex;
  padding: 20px;
  padding-left: 124px;
  position: relative;
}
.ui-newslist-item + .ui-newslist-item-item {
  margin-top: 20px;
}
.ui-newslist-item-img {
  width: 400px;
  height: 240px;
  background-color: #b7b6a8;
  border-radius: 8px;
  margin-left: 30px;
  cursor: pointer;
}
.ui-newslist-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.ui-newslist-item-main {
  flex: 1;
}
.ui-newslist-item-main-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  margin-top: 10px;
  height: 33px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.ui-newslist-item-main-title a,
.ui-newslist-item-main-title a:visited {
  color: #444;
}
.ui-newslist-item-main-remarks {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  line-height: 20px;
  margin-top: 20px;
  height: 100px;
  overflow: hidden;
}
.ui-newslist-item-main-btns {
  margin: 25px 0 10px;
}
.ui-newslist-item-main-btns .ant-btn {
  margin-right: 20px;
  background-color: transparent;
  color: #9C5605;
  border-color: #9C5605;
}
.ui-newslist-item-main-btns .ant-btn:hover {
  background-color: transparent;
}
.ui-newslist-item-main-btns .ant-btn span {
  height: 20px;
  display: flex;
  align-items: center;
  line-height: 20px;
}
.ui-newslist-item-date {
  width: 64px;
  height: 64px;
  position: absolute;
  left: 30px;
  top: 30px;
  box-sizing: border-box;
  border: 1px #9C5605 solid;
}
.ui-newslist-item-date-title {
  width: 100%;
  height: 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
  background-color: #9C5605;
  text-align: center;
}
.ui-newslist-item-date-main {
  width: 100%;
  height: 42px;
  background-color: #fff;
  color: #9C5605;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 500;
}

/**
 * 搜索栏
 */
.ui-list-table-search {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ui-list-table-search .ant-form {
  margin-left: 28px;
}
.ui-list-table-search .ant-form-item {
  margin-right: 20px;
}
.ui-list-table-search .ant-form-item-label > label::after {
  content: "";
  margin: 0px;
  margin-right: 12px;
}
.ui-list-table .ant-table-pagination.ant-pagination {
  margin-top: 40px;
  justify-content: center;
  text-align: center;
}

/**
 * 头像列表
 */
.ui-portrait-list {
  width: 100%;
  margin-top: 30px;
  margin-left: -3px;
  margin-right: -3px;
  display: flex;
}
.ui-portrait-list::before {
  display: table;
  content: "";
}
.ui-portrait-list::after {
  display: table;
  clear: both;
  content: "";
}
.ui-portrait-list-item {
  flex: 1;
  margin: 0 2.5px 30px 2px;
}
.ui-portrait-list-item:last-child {
  margin-right: 0px;
}
.ui-portrait-list-item-img {
  width: 60px;
  height: 60px;
  border: 1px solid #dd7b39;
  margin: auto;
  border-radius: 100%;
}
.ui-portrait-list-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.ui-portrait-list-item-msg {
  margin-top: 10px;
  text-align: center;
}
.ui-portrait-list-item-msg span {
  height: 17px;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  line-height: 17px;
  display: block;
}
.ui-portrait-list-item-msg em {
  height: 20px;
  font-weight: 500;
  line-height: 20px;
  font-style: normal;
}

/**
 * 人物列表
 */
.ui-person-list {
  width: 100%;
  margin-top: 30px;
  font-size: 14px;
}
.ui-person-list::before {
  display: table;
  content: "";
}
.ui-person-list::after {
  display: table;
  clear: both;
  content: "";
}
.ui-person-list-item {
  display: flex;
}
.ui-person-list-item-img {
  height: 240px;
  flex: 0 0 240px;
  border-radius: 100%;
  background-color: #a89e92;
}
.ui-person-list-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: block;
}
.ui-person-list-item-main {
  margin-top: 50px;
  margin-left: 40px;
}
.ui-person-list-item-main-title {
  min-width: 150px;
  height: 33px;
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
}
.ui-person-list-item-main-title span {
  font-size: 14px;
  font-weight: normal;
  color: #333333;
}
.ui-person-list-item-main-dec {
  font-weight: 400;
  color: #666;
  line-height: 20px;
  margin-top: 30px;
  font-size: 14px;
}
.ui-person-list-item-main-dec p {
  text-indent: 0;
  margin-bottom: 10px;
}

/**
 * 链上公司列表  觉群项目项目动态
 * @author 小玉
 * @date 2021-11-02 14:40:32
 */
.other-list {
  background: #FAFAFA;
  border-radius: 8px;
  margin-top: 40px;
  padding-bottom: 40px;
  padding-top: 30px;
}
.other-list-title {
  height: 33px;
  font-size: 24px;
  font-weight: 500;
  color: #9C5605;
  line-height: 33px;
  text-align: center;
}
.other-list-border {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}
.other-list-border div {
  width: 49px;
  border: 1px solid #9C5605;
}
.other-list .ant-spin-container {
  padding: 33px 50px 0px 60px;
}
.other-list .ant-list-item {
  height: 100px;
  border-bottom: 1px solid #ca9175 !important;
}
.other-list .ant-list-item:hover {
  border-bottom: 1px solid #8b3308 !important;
}
.other-list .ant-list-item:first-child {
  border-top: 1px solid #ca9175 !important;
}
.other-list-body {
  width: 100%;
}
.other-list-body-li, .other-list-body-item {
  font-size: 16px;
  display: flex;
  width: 100%;
}
.other-list-body-li-date, .other-list-body-item-date {
  color: #666;
  margin-right: 80px;
  flex: 0 0 165px;
}
.other-list-body-li-msg, .other-list-body-item-msg {
  width: 50%;
  height: 24px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #333333;
}
.other-list-body-li-price, .other-list-body-item-price {
  color: #9C5605;
  margin: 0px 5px;
}
.other-list-body-li:hover {
  cursor: pointer;
}
.other-list-body-li:hover span {
  color: #9C5605;
}

.juequn-record {
  margin-top: 20px;
}
.juequn-record .ant-list-item:first-child {
  border-top: 1px solid #ebebeb !important;
}
.juequn-record .ant-list-item {
  border-bottom: 1px solid #ebebeb !important;
}

/**
 * 公共合作列表
 * @author 小玉
 * @date 2021-11-02 18:14:13
 */
.ui-volunteers {
  margin-top: 20px;
  padding: 30px 50px 40px 40px;
  border-radius: 8px;
  margin-bottom: 80px;
  background: #FAFAFA;
}
.ui-volunteers-title {
  height: 33px;
  font-size: 24px;
  font-weight: 500;
  color: #9C5605;
  line-height: 33px;
  text-align: center;
}
.ui-volunteers-border {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.ui-volunteers-border div {
  width: 49px;
  margin-top: 6px;
  border: 1px solid #9C5605;
}
.ui-volunteers-table .ant-list-item {
  border-bottom: none !important;
  padding: 0px !important;
  padding-bottom: 20px !important;
}
.ui-volunteers-table-item {
  display: flex;
}
.ui-volunteers-table-item-left {
  width: 240px;
  height: 240px;
  margin-right: 40px;
}
.ui-volunteers-table-item-left img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.ui-volunteers-table-item-right {
  flex: 1;
}
.ui-volunteers-table-item-right span {
  display: flex;
  line-height: 22px;
}
.ui-volunteers-table-item-right-name {
  height: 33px;
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  font-size: 16px;
  margin-top: 24px;
}
.ui-volunteers-table-item-right-date {
  height: 22px;
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
}
.ui-volunteers-table-item-right-date span {
  color: #9C5605;
}
.ui-volunteers-table-item-right-click {
  margin-top: 10px;
  font-weight: 500;
}
.ui-volunteers-table-item-right-text {
  font-weight: 400;
  color: #666;
  line-height: 20px;
  margin-top: 8px;
}

/**
 * 合作伙伴列表
 * @author 小玉
 * @date 2021-11-02 18:56:35
 */
.ui-common-list {
  display: flex;
  padding-top: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: space-between;
  margin-bottom: 80px;
}
.ui-common-list-no-data {
  margin: auto;
}
.ui-common-list-img {
  width: 184px;
  height: 120px;
  margin-bottom: 40px;
  border-radius: 8px;
  border: 1px solid #f2f2f2;
  margin-right: 40px;
}
.ui-common-list-img:nth-last-child(2), .ui-common-list-img:nth-last-child(1) {
  margin-bottom: 0px;
}
.ui-common-list-img img {
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

/**
 * 关于我们-支持我们
 * @author 小玉
 * @date 2021-11-03 13:58:26
 */
.ui-view-list {
  padding: 40px 55px 0px;
}
.ui-view-list .ant-list-item {
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  border-radius: 8px;
  padding: 0px !important;
}
.ui-view-list .ant-list-item:last-child {
  border-bottom: 1px solid #ebebeb !important;
  margin-bottom: 0;
}
.ui-view-list-item {
  display: flex;
}
.ui-view-list-item-left {
  width: 38%;
}
.ui-view-list-item-left img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.ui-view-list-item-right {
  width: 62%;
  margin: 30px 40px;
}
.ui-view-list-item-right-title {
  height: 33px;
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
}
.ui-view-list-item-right-msg {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 22px;
  margin-top: 20px;
}
.ui-view-list-item-right-num {
  display: flex;
  margin-top: 30px;
}
.ui-view-list-item-right-num div {
  display: flex;
  flex-direction: column;
}
.ui-view-list-item-right-num div span {
  margin-right: 80px;
}
.ui-view-list-item-right-num div span:first-child {
  color: #dd7b39;
  height: 35px;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}
.ui-view-list-item-right-num div span:last-child {
  height: 20px;
  color: #666;
  line-height: 20px;
}
.ui-view-list-item-right-btn {
  display: flex;
  margin-top: 36px;
  justify-content: flex-end;
}
.ui-view-list-item-right-btn div:first-child {
  background: #fff;
  color: #9C5605;
  border: 1px solid #9C5605;
  margin-right: 20px;
}

@media screen and (max-width: 576px) {
  .ui-list {
    padding-top: 0px;
  }
  .ui-list-title {
    height: 50px;
    font-size: 18px;
  }
  .ui-list-title::before {
    height: 18px;
  }
  .ui-list-body-li {
    height: 50px;
    line-height: 50px;
  }
  .ui-list-body-li span {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: inline-block;
  }
  .ui-list-body-li:hover {
    cursor: pointer;
  }
  .ui-list-body-li:hover span {
    color: #9C5605;
  }
  .ui-list-body-li:hover span:first-child {
    position: relative;
  }
  .ui-list-body-li:hover span:first-child::before {
    width: 100%;
    position: absolute;
    content: " ";
    height: 0px;
    left: 0;
    bottom: 0;
    background-color: #9C5605;
  }
  .ui-list-body-date {
    margin-right: 20px;
  }

  .ui-common-list {
    padding-top: 0px;
    margin-bottom: 20px;
  }

  .ui-newslist-item {
    padding-left: 0px;
  }
  .ui-newslist-item-main-remarks {
    width: 200px;
    height: 20px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-top: 0px;
  }
  .ui-newslist-item-main-title {
    margin-top: 0px;
    font-size: 18px;
    margin-right: 10px;
  }
  .ui-newslist-item-main-time {
    color: #888;
  }
  .ui-newslist-item-main-btns {
    margin-top: 10px;
  }
  .ui-newslist-item-main-btns .ant-btn-round.ant-btn-lg {
    height: 30px;
    padding: 0px 10px;
    font-size: 14px;
  }
  .ui-newslist-item-img {
    height: 100px;
    flex: 0 0 100px;
    margin-left: 0px;
  }
  .ui-newslist .ant-list-items .ant-list-item + .ant-list-item {
    margin-top: 0px;
  }

  .page-juequn-project-inner {
    padding: 0px 0px 0px !important;
  }
  .page-juequn-project-inner .ui-projectlist-b {
    margin-top: 20px;
    padding-bottom: 20px !important;
  }
  .page-juequn-project-inner .ui-projectlist-b-item-img {
    width: 100%;
    height: 140px;
  }
  .page-juequn-project-inner .ui-projectlist-b-item-img img {
    width: 100%;
    height: 140px;
  }
  .page-juequn-project-inner .ui-projectlist-b-item-btn {
    height: 85px;
  }
  .page-juequn-project-inner .ui-projectlist-b-item-btn em:first-child {
    font-size: 24px;
  }
  .page-juequn-project-inner .ui-projectlist-b-item-btn span {
    font-size: 14px;
  }
  .page-juequn-project-inner .ui-projectlist-b-item-btn::after {
    height: 85px;
  }
  .page-juequn-project-inner .ui-projectlist-b-item-main {
    padding: 20px 20px 0px;
  }
  .page-juequn-project-inner .ui-projectlist-b-item-main-title {
    font-size: 18px;
  }
  .page-juequn-project-inner .ui-projectlist-b-item-main-remarks {
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .page-juequn-project-inner .ui-projectlist-b-item-btnsgroup {
    height: 85px;
  }
  .page-juequn-project-inner .ant-list-pagination {
    margin-top: 20px;
  }

  .ui-list-table-btn {
    margin-top: 20px !important;
  }

  .other-list {
    margin-top: 0px;
    padding-bottom: 20px;
    padding-top: 0px;
  }
  .other-list-title {
    font-size: 16px;
  }
  .other-list-body-item {
    font-size: 14px;
  }
  .other-list-body-li {
    font-size: 14px;
  }
  .other-list-body-li-date {
    margin-right: 0px;
  }
  .other-list-body-li-txt {
    flex: 0 0 29px;
  }
  .other-list .ant-spin-container {
    padding: 20px;
  }
  .other-list .ant-list-pagination {
    margin-top: 0px;
  }
  .other-list .ant-list-item {
    height: 50px;
  }

  .ui-common-list {
    margin-top: 20px;
    padding-left: 20px;
  }
  .ui-common-list-img {
    margin-right: 10px;
    margin-bottom: 20px;
    width: 48%;
    height: 80px;
    box-sizing: border-box;
  }
  .ui-common-list-img:nth-child(2n) {
    margin-right: 0px;
  }

  .ui-volunteers {
    padding-top: 20px !important;
    margin-bottom: 0px;
  }
  .ui-volunteers-border {
    margin-bottom: 20px;
  }
  .ui-volunteers-table-item {
    display: inherit;
  }
  .ui-volunteers-table-item-left {
    width: 100%;
    margin-right: 0px;
  }
  .ui-volunteers-table-item-right {
    width: 100%;
  }
  .ui-volunteers-table-item-right-date {
    font-size: 14px;
  }
  .ui-volunteers-title {
    font-size: 18px;
  }
  .ui-volunteers .ui-volunteers-table-item-right-name {
    font-size: 18px;
  }

  .ui-portrait-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    height: 106px;
    overflow: hidden;
  }
  .ui-portrait-list-item {
    flex: 0 0 25%;
    margin-left: 0;
    margin-right: 0;
  }

  .ui-view-list {
    padding: 20px;
  }
  .ui-view-list-item {
    flex-direction: column;
    width: 100%;
  }
  .ui-view-list-item-left {
    width: 100%;
  }
  .ui-view-list-item-left img {
    width: 100%;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0px;
  }
  .ui-view-list-item-right {
    margin: 0px;
    padding: 20px;
    width: 100%;
  }
  .ui-view-list-item-right-title {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .ui-view-list-item-right-num {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
  }
  .ui-view-list-item-right div span {
    margin-right: 0px;
  }
  .ui-view-list-item-right div span:first-child {
    font-size: 24px;
  }
  .ui-view-list .ant-list-item:last-child {
    margin-bottom: 0px;
  }

  .ui-person-list-item-img {
    height: 140px;
    flex: 0 0 140px;
  }
  .ui-person-list-item-main {
    margin-top: 20px;
    margin-left: 20px;
  }
}
/**
 * 全局按钮
 * @author 明浩
 * @date 2021-10-21 10:40:05
 */
.ui-btn {
  height: 60px;
  border-radius: 30px;
  border: 1px solid #9C5605;
  padding: 0 44px;
  cursor: pointer;
  font-weight: 400;
  color: #9C5605;
  line-height: 60px;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
}

.ui-btn-bg {
  height: 60px;
  border-radius: 30px;
  border: 1px solid #9C5605;
  padding: 0px 44px;
  background: #9C5605;
  cursor: pointer;
  font-weight: 400;
  color: #FFF;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.ui-btn-md {
  padding: 9px 18px;
  background: #9C5605;
  border-radius: 20px;
  color: #FFF;
  font-size: 16px;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 22px;
  display: flex;
  align-items: center;
}

.ui-btn-about {
  height: 60px;
  border: 1px solid #FFF;
  font-weight: 400;
  padding: 19px 44px;
  border-radius: 30px;
  color: #FFF;
  font-size: 16px;
  cursor: pointer;
  line-height: 19px;
  display: flex;
  align-items: center;
}

.ui-btn-small {
  border-radius: 15px;
  border: 1px solid #979797;
  padding: 5px 16px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
.ui-btn-small:hover {
  color: #9C5605;
  border-color: #9C5605;
}

@media screen and (max-width: 576px) {
  .ui-btn {
    height: 40px !important;
    padding: 0 15px !important;
    font-size: 12px !important;
  }

  .ui-btn-bg {
    height: 40px !important;
    padding: 0px 15px !important;
    font-size: 12px !important;
    line-height: 40px !important;
  }

  .ui-btn-about {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    padding: 0px 15px;
  }
}
/**
 * 页面配置
 */
.ui-page {
  width: 100%;
}

/**
 * 通用固定宽度 1330px
 * 当大于1920px，则最大宽度为1330px
 * 当大于1620px，则最大宽度为1330px
 * 当大于578px，小于1620px，则最大宽度为1330px
 * 当小于578px，则最大宽度为100%
 */
.ui-page-inner {
  width: 1130px;
  margin: auto;
}

.ui-page-inner-lg {
  width: 1200px;
  margin: auto;
}

@media (max-width: 578px) {
  .ui-page-inner,
.ui-page-inner-lg {
    width: 100%;
  }
}
/**
 * 响应式最大宽度
 * 当大于1920px，则最大宽度为1920px
 * 当大于1620px，则最大宽度为1600px
 * 当大于578px，小于1620px，则最大宽度为1440px
 * 当小于578px，则最大宽度为100%
 */
.ui-page-wrapper {
  width: 1240px;
}

@media (max-width: 578px) {
  .ui-page-wrapper {
    width: auto;
  }
}
@media (min-width: 579px) and (max-width: 1619px) {
  .ui-page-wrapper {
    width: 100%;
  }
}
@media (min-width: 1620px) and (max-width: 1919px) {
  .ui-page-wrapper {
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .ui-page-wrapper {
    width: 1898px;
    margin: auto;
  }
}
/**
 * 页面banner
 * 多数二级页面顶部通用
 */
.page-banner {
  width: 100%;
  height: 440px;
  position: relative;
}
.page-banner img {
  width: 100%;
  height: 100%;
}
.page-banner-word {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translate(-50%);
  font-size: 48px;
  color: #fff;
}
.page-banner-sub {
  position: absolute;
  top: 290px;
  left: 50%;
  transform: translate(-50%);
  font-size: 18px;
  color: #fff;
}

/**
 * 通用标题样式
 * 水平居中
 */
.page-center-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 576px) {
  .page-banner {
    height: 100px;
  }
  .page-banner-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
  }
  .page-banner-sub {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
  }
  .page-banner .horizontal-carousel {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    bottom: -30px;
    background: #9c5605;
  }
  .page-banner .horizontal-carousel .horizontal-carousel-text {
    margin-top: 0px;
  }

  .ui-menu-lsgs {
    margin-top: 30px;
  }

  .ui-page-inner .page-padding,
.ui-page-wrapper .page-padding,
.ui-page-inner-lg .page-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-juequn-project-inner .page-center-title {
    padding: 0px;
  }
  .page-juequn-project-inner .ui-list-table-search {
    padding: 15px 0;
  }

  .page-chain-publicity .page-chain-publicity-inner .ui-list-table-search {
    padding: 15px 0;
  }
}
/**
 * 进度条
 * @author 明浩
 * @date 2021-10-26 14:47:18
 */
.ui-progress {
  width: 100%;
}
.ui-progress .ant-progress {
  margin: 2px auto;
}
.ui-progress .ant-progress .ant-progress-text {
  color: #9C5605;
}
.ui-progress-box {
  display: flex;
  justify-content: space-between;
}
.ui-progress-msg {
  display: inline-flex;
  align-items: center;
  color: #666;
  font-weight: 400;
  line-height: 20px;
}
.ui-progress-msg-icon {
  margin-right: 4px;
}
.ui-progress-msg em {
  font-size: 21px;
  color: #9C5605;
  font-style: normal;
  margin: 0 5px;
  margin-top: -3px;
}

/**
 * 时间线
 * @author 明浩
 * @date 2021-11-02 13:23:52
 */
.ui-dateline {
  width: 1130px;
  margin: 14px auto 20px;
  padding-left: 360px;
}
.ui-dateline .ant-timeline-item:first-child .ant-timeline-item-tail {
  top: 50%;
}
.ui-dateline .ant-timeline-item-last > .ant-timeline-item-tail {
  display: block;
}
.ui-dateline .ant-timeline-item-last > .ant-timeline-item-content {
  min-height: auto;
}
.ui-dateline .ant-timeline-item-content {
  top: 0;
  padding-left: 26px;
  margin: 0;
}
.ui-dateline .ant-timeline-item-tail {
  top: 0;
  height: 100%;
}
.ui-dateline .ant-timeline-item-head-primary {
  width: 10px;
  height: 10px;
  border: 2px #9C5605 solid;
  top: 50%;
  margin-top: -5px;
}
.ui-dateline .ant-timeline-item-head-primary + .ant-timeline-item-content {
  height: 33px;
  font-size: 24px;
  font-weight: 500;
  color: #9C5605;
  line-height: 33px;
}
.ui-dateline .ant-timeline-item-head-blue {
  width: 8px;
  height: 8px;
  margin-left: 1px;
  background: #ffffff;
  border: 2px solid #aeb4c2;
  top: 50%;
  margin-top: -4px;
}
.ui-dateline .ant-timeline-item {
  padding-bottom: 0;
}
.ui-dateline-item {
  height: 100%;
  display: flex;
  align-items: center;
  min-height: 250px;
  padding: 25px 0;
  position: relative;
}
.ui-dateline-item-img {
  top: 25px;
  left: -386px;
  width: 320px;
  height: 200px;
  border-radius: 8px;
  position: absolute;
  background-color: #f2f2f2;
}
.ui-dateline-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.ui-dateline-item-inner-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #aeb4c2;
  display: inline-block;
}
.ui-dateline-item-inner-p {
  font-weight: 400;
  color: #666;
  line-height: 20px;
  margin-top: 7px;
}

.ui-project-progress {
  margin-top: 40px;
  cursor: pointer;
}
.ui-project-progress .ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-label {
  position: absolute;
  top: -7.001px;
  /* width: calc(19%); */
  /* text-align: right; */
  width: calc(8%);
  left: 60px;
  text-align: left;
}
.ui-project-progress .ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-tail {
  left: 15%;
}
.ui-project-progress .ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-head-blue {
  left: 15%;
}
.ui-project-progress .ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-content {
  left: calc(15%);
  width: calc(80%);
}
.ui-project-progress-title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 16px;
}
.ui-project-progress-synopsis {
  font-weight: 400;
  color: #333333;
  font-size: 14px;
  margin-bottom: 8px;
}
.ui-project-progress-img {
  width: 320px;
  height: 200px;
  border-radius: 8px;
}

@media screen and (max-width: 576px) {
  .ui-dateline {
    padding: 0px 20px;
    width: 100%;
  }
  .ui-dateline-item {
    display: inherit;
  }
  .ui-dateline-item-img {
    position: initial;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }
  .ui-dateline-item-img img {
    width: 100%;
  }
}
/**
 * 链上公示表格
 * @author 小玉
 * @date 2021-11-02 15:07:17
 */
.ui-table {
  padding: 0 20px;
}
.ui-table .ant-table .ant-table-content .ant-table-tbody tr td:last-child {
  border-right: 1px solid #f0f0f0;
}
.ui-table .ant-table .ant-table-content .ant-table-tbody tr td:first-child {
  border-left: 1px solid #f0f0f0;
}
.ui-table-hash {
  cursor: pointer;
}
.ui-table-hash:hover {
  color: #9C5605;
}
.ui-table .ant-table .ant-table-thead {
  background: #9C5605;
}
.ui-table .ant-table .ant-table-thead tr {
  background: #9C5605;
}
.ui-table .ant-table .ant-table-thead tr th {
  background: #9C5605;
  padding: 14px 0px;
  text-align: center;
  color: #fff;
  border-right: 1px solid #ebebeb;
}
.ui-table .ant-table .ant-table-thead > tr:first-child th:first-child {
  border-top-left-radius: 0px !important;
}
.ui-table .ant-table .ant-table-thead > tr:last-child th:last-child {
  border-top-right-radius: 0px !important;
  border-right: none;
}
.ui-table .ant-table .ant-table-tbody tr td {
  text-align: left;
  padding: 14px 20px;
  border-right: 1px solid #EBEBEB;
}
.ui-table .ant-table .ant-table-tbody tr td:last-child {
  border-right: none;
}
.ui-table .ant-table .ant-table-tbody tr:nth-child(2n) {
  background: #fff2e9;
}

/**
 * 无风格布局弹窗
 */
.nolayout-modal .ant-modal-content {
  background: #FFFFFF;
  border-radius: 8px;
}
.nolayout-modal .ant-modal-content .ant-modal-body {
  padding: 0;
}

/**
 * 自定义表单风格
 */
.custom-form.no-radius .ant-input-affix-wrapper {
  border-radius: 2px;
}
.custom-form .ant-input-lg {
  padding: 9.5px 14px;
  line-height: 25px;
  font-size: 14px;
  border: 1px solid #EEEEEE;
}
.custom-form .ant-input-affix-wrapper-lg {
  padding: 9.5px 14px;
}
.custom-form .ant-input-affix-wrapper {
  border-radius: 23px;
  border: 1px solid #EEEEEE;
}
.custom-form .ant-input-affix-wrapper .ant-input-prefix {
  margin-right: 10px;
  font-size: 18px;
  margin-top: 1px;
}
.custom-form .ant-input-affix-wrapper-focused {
  box-shadow: none;
}
.custom-form .custom-form-suffix-btn {
  font-size: 14px;
  font-weight: 400;
  color: #9C5605;
  line-height: 18px;
  cursor: pointer;
}
.custom-form .custom-form-suffix-btn.custom-form-disable-btn {
  color: #ccc;
}
.custom-form .ant-form-item {
  margin-bottom: 10px;
}
.custom-form-btn {
  padding-top: 10px;
}
.custom-form-btn .ant-btn.ant-btn-lg {
  padding: 9.5px 20px;
  height: auto;
  width: 100%;
}
.custom-form-btn-msg {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  color: #888;
}
.custom-form-btn-msg-check img {
  margin-bottom: 2px;
}
.custom-form-btn-msg-check span {
  font-size: 12px;
  margin-left: 2px;
}
.custom-form-btn-msg-check-txt {
  color: #627EFF;
  cursor: pointer;
}
.custom-form-btn-msg-a {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 12px;
}
.custom-form-btn-msg-a div {
  color: #9C5605;
}
.custom-form-btn-msg-a em {
  font-style: normal;
}
.custom-form-btn.custom-form-btn-inline {
  text-align: center;
}
.custom-form-btn.custom-form-btn-inline .ant-btn {
  padding: 9.5px 20px;
  height: auto;
  width: auto;
  min-width: 95px;
}
.custom-form-btn.custom-form-btn-inline .ant-btn + .ant-btn {
  margin-left: 20px;
}
.custom-form .ant-form-vertical .ant-form-item-label, .custom-form .ant-col-24.ant-form-item-label, .custom-form .ant-col-xl-24.ant-form-item-label {
  padding: 0;
}
.custom-form-panel {
  margin-top: 20px;
}
.custom-form-panel-title {
  height: 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  position: relative;
}
.custom-form-panel-title:after {
  width: 4px;
  height: 20px;
  background: #9C5605;
  display: block;
  position: absolute;
  content: " ";
  left: -14px;
  top: 50%;
  margin-top: -10px;
}
.custom-form-panel-main {
  margin-top: 20px;
}
.custom-form .custom-form-box {
  padding: 16px;
  margin-bottom: 4px;
  background-color: #FAFAFA;
}
.custom-form .custom-form-box::before {
  display: table;
  content: "";
}
.custom-form .custom-form-box::after {
  display: table;
  clear: both;
  content: "";
}
.custom-form .custom-form-box-fileupload {
  float: left;
}
.custom-form .custom-form-box-fileupload + .custom-form-box-fileupload {
  margin-left: 40px;
}
.custom-form .custom-form-box-fileupload .ant-upload {
  margin: 0;
}
.custom-form .custom-form-box-fileupload-title {
  height: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 10px;
  text-align: center;
}

/**
 * 详情文本（新闻文本，觉群项目）
 * @author 小玉
 * @date 2021-11-03 11:35:10
 */
.ui-text-info-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  text-align: center;
}
.ui-text-info-time {
  text-align: center;
  height: 25px;
  font-weight: 400;
  color: #666;
  line-height: 25px;
  margin-top: 20px;
}
.ui-text-info-time span {
  margin-right: 10px;
}
.ui-text-info-img {
  width: 100%;
  height: 408px;
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.ui-text-info-img img {
  height: 100%;
  width: 774px;
}
.ui-text-info-content {
  font-weight: 400;
  margin-top: 40px;
}
.ui-text-info-content-pd {
  padding: 0px 60px;
  margin-top: 40px;
  margin-bottom: 80px;
}
.ui-text-info-content div {
  line-height: 21px;
}
.ui-text-info-content div img {
  max-width: 100%;
}

@media screen and (max-width: 576px) {
  .ui-text-info-title {
    font-size: 18px;
    margin-top: 20px;
  }
  .ui-text-info-img {
    margin-top: 20px;
    height: auto;
  }
  .ui-text-info-img img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  .ui-text-info-content-pd {
    padding: 0px;
    margin: 20px 0px;
  }
}
/**
 * 关于我们
 * @author 小玉
 * @date 2021-11-25 10:35:34
 */
.ui-no-empty {
  padding: 40px 0px 80px 0px;
}

/**
 * 页面过度效果
 * @author 明浩
 * @date 2021-12-20 17:36:40
 */
body #nprogress .bar {
  background-color: #9C5605;
}
body #nprogress .peg {
  box-shadow: 0 0 10px #9C5605, 0 0 5px #9C5605;
}
body #nprogress .spinner-icon {
  border-top-color: #9C5605;
  border-left-color: #9C5605;
}

/**
 * 富文本编辑器样式 新闻文章详情/项目详情 等等
 * @author 明浩
 * @date 2021-12-29 16:29:10
 */
/**
 * 模版B 样式
 */
.template-b-p {
  font-size: 16px;
  margin-bottom: 2em;
  line-height: 1.6;
}

/**
 * 图片样式
 */
.media-wrap:not(img) {
  margin-top: 3em;
  margin-bottom: 3em;
}
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.layout-small-header {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}
.layout-small-header-logo {
  width: 180px;
  height: 60px;
}
.layout-small-header-logo img {
  width: 100%;
  height: 60px;
  display: block;
}
.layout-small-header-btns {
  background-color: #9C5605;
  color: #fff;
  font-size: 16px;
  height: 60px;
  padding: 0 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
/* 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-upload {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  outline: 0;
}
.ant-upload p {
  margin: 0;
}
.ant-upload-btn {
  display: block;
  width: 100%;
  outline: none;
}
.ant-upload input[type='file'] {
  cursor: pointer;
}
.ant-upload.ant-upload-select {
  display: inline-block;
}
.ant-upload.ant-upload-disabled {
  cursor: not-allowed;
}
.ant-upload.ant-upload-select-picture-card {
  width: 104px;
  height: 104px;
  margin-right: 8px;
  margin-bottom: 8px;
  text-align: center;
  vertical-align: top;
  background-color: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.ant-upload.ant-upload-select-picture-card > .ant-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.ant-upload.ant-upload-select-picture-card:hover {
  border-color: #9C5605;
}
.ant-upload-disabled.ant-upload.ant-upload-select-picture-card:hover {
  border-color: #d9d9d9;
}
.ant-upload.ant-upload-drag {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.ant-upload.ant-upload-drag .ant-upload {
  padding: 16px 0;
}
.ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) {
  border-color: #753b00;
}
.ant-upload.ant-upload-drag.ant-upload-disabled {
  cursor: not-allowed;
}
.ant-upload.ant-upload-drag .ant-upload-btn {
  display: table;
  height: 100%;
}
.ant-upload.ant-upload-drag .ant-upload-drag-container {
  display: table-cell;
  vertical-align: middle;
}
.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
  border-color: #a86d20;
}
.ant-upload.ant-upload-drag p.ant-upload-drag-icon {
  margin-bottom: 20px;
}
.ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon {
  color: #a86d20;
  font-size: 48px;
}
.ant-upload.ant-upload-drag p.ant-upload-text {
  margin: 0 0 4px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
}
.ant-upload.ant-upload-drag p.ant-upload-hint {
  color: #888;
  font-size: 14px;
}
.ant-upload.ant-upload-drag .anticon-plus {
  color: rgba(0, 0, 0, 0.25);
  font-size: 30px;
  transition: all 0.3s;
}
.ant-upload.ant-upload-drag .anticon-plus:hover {
  color: #888;
}
.ant-upload.ant-upload-drag:hover .anticon-plus {
  color: #888;
}
.ant-upload-picture-card-wrapper {
  display: inline-block;
  width: 100%;
}
.ant-upload-picture-card-wrapper::before {
  display: table;
  content: '';
}
.ant-upload-picture-card-wrapper::after {
  display: table;
  clear: both;
  content: '';
}
.ant-upload-list {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 14px;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  line-height: 1.5715;
}
.ant-upload-list::before {
  display: table;
  content: '';
}
.ant-upload-list::after {
  display: table;
  clear: both;
  content: '';
}
.ant-upload-list-item {
  position: relative;
  height: 22.001px;
  margin-top: 8px;
  font-size: 14px;
}
.ant-upload-list-item-name {
  display: inline-block;
  width: 100%;
  padding-left: 22px;
  overflow: hidden;
  line-height: 1.5715;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-upload-list-item-card-actions {
  position: absolute;
  right: 0;
}
.ant-upload-list-item-card-actions-btn {
  opacity: 0;
}
.ant-upload-list-item-card-actions-btn.ant-btn-sm {
  height: 20px;
  line-height: 1;
}
.ant-upload-list-item-card-actions.picture {
  top: 22px;
  line-height: 0;
}
.ant-upload-list-item-card-actions-btn:focus,
.ant-upload-list-item-card-actions.picture .ant-upload-list-item-card-actions-btn {
  opacity: 1;
}
.ant-upload-list-item-card-actions .anticon {
  color: #888;
}
.ant-upload-list-item-info {
  height: 100%;
  padding: 0 4px;
  transition: background-color 0.3s;
}
.ant-upload-list-item-info > span {
  display: block;
  width: 100%;
  height: 100%;
}
.ant-upload-list-item-info .anticon-loading .anticon,
.ant-upload-list-item-info .ant-upload-text-icon .anticon {
  position: absolute;
  top: 5px;
  color: #888;
  font-size: 14px;
}
.ant-upload-list-item .anticon-close {
  position: absolute;
  top: 6px;
  right: 4px;
  color: #888;
  font-size: 10px;
  line-height: 0;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
}
.ant-upload-list-item .anticon-close:hover {
  color: #444;
}
.ant-upload-list-item:hover .ant-upload-list-item-info {
  background-color: #f5f5f5;
}
.ant-upload-list-item:hover .anticon-close {
  opacity: 1;
}
.ant-upload-list-item:hover .ant-upload-list-item-card-actions-btn {
  opacity: 1;
}
.ant-upload-list-item-error,
.ant-upload-list-item-error .ant-upload-text-icon > .anticon,
.ant-upload-list-item-error .ant-upload-list-item-name {
  color: #ff4d4f;
}
.ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon {
  color: #ff4d4f;
}
.ant-upload-list-item-error .ant-upload-list-item-card-actions-btn {
  opacity: 1;
}
.ant-upload-list-item-progress {
  position: absolute;
  bottom: -12px;
  width: 100%;
  padding-left: 26px;
  font-size: 14px;
  line-height: 0;
}
.ant-upload-list-picture .ant-upload-list-item,
.ant-upload-list-picture-card .ant-upload-list-item {
  position: relative;
  height: 66px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.ant-upload-list-picture .ant-upload-list-item:hover,
.ant-upload-list-picture-card .ant-upload-list-item:hover {
  background: transparent;
}
.ant-upload-list-picture .ant-upload-list-item-error,
.ant-upload-list-picture-card .ant-upload-list-item-error {
  border-color: #ff4d4f;
}
.ant-upload-list-picture .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item-info {
  padding: 0;
}
.ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info {
  background: transparent;
}
.ant-upload-list-picture .ant-upload-list-item-uploading,
.ant-upload-list-picture-card .ant-upload-list-item-uploading {
  border-style: dashed;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
  width: 48px;
  height: 48px;
  line-height: 54px;
  text-align: center;
  opacity: 0.8;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail .anticon,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail .anticon {
  font-size: 26px;
}
.ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#e6f7ff'],
.ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#e6f7ff'] {
  fill: #fff2f0;
}
.ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#1890ff'],
.ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#1890ff'] {
  fill: #ff4d4f;
}
.ant-upload-list-picture .ant-upload-list-item-icon,
.ant-upload-list-picture-card .ant-upload-list-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 26px;
  transform: translate(-50%, -50%);
}
.ant-upload-list-picture .ant-upload-list-item-icon .anticon,
.ant-upload-list-picture-card .ant-upload-list-item-icon .anticon {
  font-size: 26px;
}
.ant-upload-list-picture .ant-upload-list-item-image,
.ant-upload-list-picture-card .ant-upload-list-item-image {
  max-width: 100%;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail img,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
}
.ant-upload-list-picture .ant-upload-list-item-name,
.ant-upload-list-picture-card .ant-upload-list-item-name {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 0 0 8px;
  padding-right: 8px;
  padding-left: 48px;
  overflow: hidden;
  line-height: 44px;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
.ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
  line-height: 28px;
}
.ant-upload-list-picture .ant-upload-list-item-progress,
.ant-upload-list-picture-card .ant-upload-list-item-progress {
  bottom: 14px;
  width: calc(100% - 24px);
  margin-top: 0;
  padding-left: 56px;
}
.ant-upload-list-picture .anticon-close,
.ant-upload-list-picture-card .anticon-close {
  position: absolute;
  top: 8px;
  right: 8px;
  line-height: 1;
  opacity: 1;
}
.ant-upload-list-picture-card-container {
  display: inline-block;
  width: 104px;
  height: 104px;
  margin: 0 8px 8px 0;
  vertical-align: top;
}
.ant-upload-list-picture-card.ant-upload-list::after {
  display: none;
}
.ant-upload-list-picture-card .ant-upload-list-item {
  height: 100%;
  margin: 0;
}
.ant-upload-list-picture-card .ant-upload-list-item-info {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.ant-upload-list-picture-card .ant-upload-list-item-info::before {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s;
  content: ' ';
}
.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info::before {
  opacity: 1;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete {
  z-index: 10;
  width: 16px;
  margin: 0 4px;
  color: #f4f4f4;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye:hover,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download:hover,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover {
  color: #fff;
}
.ant-upload-list-picture-card .ant-upload-list-item-info:hover + .ant-upload-list-item-actions,
.ant-upload-list-picture-card .ant-upload-list-item-actions:hover {
  opacity: 1;
}
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ant-upload-list-picture-card .ant-upload-list-item-name {
  display: none;
  margin: 8px 0 0;
  padding: 0;
  line-height: 1.5715;
  text-align: center;
}
.ant-upload-list-picture-card .ant-upload-list-item-file + .ant-upload-list-item-name {
  position: absolute;
  bottom: 10px;
  display: block;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
  background-color: #fafafa;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info {
  height: auto;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info::before,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete {
  display: none;
}
.ant-upload-list-picture-card .ant-upload-list-item-progress {
  bottom: 32px;
  width: calc(86%);
  padding-left: 0;
}
.ant-upload-list-text-container,
.ant-upload-list-picture-container {
  transition: opacity 0.3s, height 0.3s;
}
.ant-upload-list-text-container::before,
.ant-upload-list-picture-container::before {
  display: table;
  width: 0;
  height: 0;
  content: '';
}
.ant-upload-list-text-container .ant-upload-span,
.ant-upload-list-picture-container .ant-upload-span {
  display: block;
  flex: auto;
}
.ant-upload-list-text .ant-upload-span,
.ant-upload-list-picture .ant-upload-span {
  display: flex;
  align-items: center;
}
.ant-upload-list-text .ant-upload-span > *,
.ant-upload-list-picture .ant-upload-span > * {
  flex: none;
}
.ant-upload-list-text .ant-upload-list-item-name,
.ant-upload-list-picture .ant-upload-list-item-name {
  flex: auto;
  padding: 0 8px;
}
.ant-upload-list-text .ant-upload-list-item-card-actions,
.ant-upload-list-picture .ant-upload-list-item-card-actions {
  position: static;
}
.ant-upload-list-text .ant-upload-text-icon .anticon {
  position: static;
}
.ant-upload-list .ant-upload-animate-inline-appear,
.ant-upload-list .ant-upload-animate-inline-enter,
.ant-upload-list .ant-upload-animate-inline-leave {
  animation-duration: 0.3s;
  animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-upload-list .ant-upload-animate-inline-appear,
.ant-upload-list .ant-upload-animate-inline-enter {
  animation-name: uploadAnimateInlineIn;
}
.ant-upload-list .ant-upload-animate-inline-leave {
  animation-name: uploadAnimateInlineOut;
}
@keyframes uploadAnimateInlineIn {
  from {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes uploadAnimateInlineOut {
  to {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
.ant-upload-rtl {
  direction: rtl;
}
.ant-upload-rtl.ant-upload.ant-upload-select-picture-card {
  margin-right: auto;
  margin-left: 8px;
}
.ant-upload-list-rtl {
  direction: rtl;
}
.ant-upload-list-rtl .ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-1 {
  padding-right: 22px;
  padding-left: 14px;
}
.ant-upload-list-rtl .ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-2 {
  padding-right: 22px;
  padding-left: 28px;
}
.ant-upload-list-rtl .ant-upload-list-item-name {
  padding-right: 22px;
  padding-left: 0;
}
.ant-upload-list-rtl .ant-upload-list-item-name-icon-count-1 {
  padding-left: 14px;
}
.ant-upload-list-rtl .ant-upload-list-item-card-actions {
  right: auto;
  left: 0;
}
.ant-upload-list-rtl .ant-upload-list-item-card-actions .anticon {
  padding-right: 0;
  padding-left: 5px;
}
.ant-upload-list-rtl .ant-upload-list-item-info {
  padding: 0 4px 0 12px;
}
.ant-upload-list-rtl .ant-upload-list-item .anticon-close {
  right: auto;
  left: 4px;
}
.ant-upload-list-rtl .ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon {
  padding-right: 0;
  padding-left: 5px;
}
.ant-upload-list-rtl .ant-upload-list-item-progress {
  padding-right: 26px;
  padding-left: 0;
}
.ant-upload-list-picture .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item-info {
  padding: 0;
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-thumbnail,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
  right: 8px;
  left: auto;
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-icon,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-icon {
  right: 50%;
  left: auto;
  transform: translate(50%, -50%);
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name {
  margin: 0 8px 0 0;
  padding-right: 48px;
  padding-left: 8px;
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name-icon-count-1,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-1 {
  padding-right: 48px;
  padding-left: 18px;
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name-icon-count-2,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-2 {
  padding-right: 48px;
  padding-left: 36px;
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-progress,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-progress {
  padding-right: 0;
  padding-left: 0;
}
.ant-upload-list-rtl.ant-upload-list-picture .anticon-close,
.ant-upload-list-rtl.ant-upload-list-picture-card .anticon-close {
  right: auto;
  left: 8px;
}
.ant-upload-list-rtl .ant-upload-list-picture-card-container {
  margin: 0 0 8px 8px;
}
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-actions {
  right: 50%;
  left: auto;
  transform: translate(50%, -50%);
}
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-file + .ant-upload-list-item-name {
  margin: 8px 0 0;
  padding: 0;
}

/* 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-progress {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-progress-line {
  position: relative;
  width: 100%;
  font-size: 14px;
}
.ant-progress-steps {
  display: inline-block;
}
.ant-progress-steps-outer {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.ant-progress-steps-item {
  flex-shrink: 0;
  min-width: 2px;
  margin-right: 2px;
  background: #f3f3f3;
  transition: all 0.3s;
}
.ant-progress-steps-item-active {
  background: #1890ff;
}
.ant-progress-small.ant-progress-line,
.ant-progress-small.ant-progress-line .ant-progress-text .anticon {
  font-size: 12px;
}
.ant-progress-outer {
  display: inline-block;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
}
.ant-progress-show-info .ant-progress-outer {
  margin-right: calc(-2em - 8px);
  padding-right: calc(2em + 8px);
}
.ant-progress-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  vertical-align: middle;
  background-color: #f5f5f5;
  border-radius: 100px;
}
.ant-progress-circle-trail {
  stroke: #f5f5f5;
}
.ant-progress-circle-path {
  animation: ant-progress-appear 0.3s;
}
.ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #1890ff;
}
.ant-progress-success-bg,
.ant-progress-bg {
  position: relative;
  background-color: #1890ff;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
}
.ant-progress-success-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #52c41a;
}
.ant-progress-text {
  display: inline-block;
  width: 2em;
  margin-left: 8px;
  color: #444;
  font-size: 1em;
  line-height: 1;
  white-space: nowrap;
  text-align: left;
  vertical-align: middle;
  word-break: normal;
}
.ant-progress-text .anticon {
  font-size: 14px;
}
.ant-progress-status-active .ant-progress-bg::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  content: '';
}
.ant-progress-status-exception .ant-progress-bg {
  background-color: #ff4d4f;
}
.ant-progress-status-exception .ant-progress-text {
  color: #ff4d4f;
}
.ant-progress-status-exception .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #ff4d4f;
}
.ant-progress-status-success .ant-progress-bg {
  background-color: #52c41a;
}
.ant-progress-status-success .ant-progress-text {
  color: #52c41a;
}
.ant-progress-status-success .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #52c41a;
}
.ant-progress-circle .ant-progress-inner {
  position: relative;
  line-height: 1;
  background-color: transparent;
}
.ant-progress-circle .ant-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 1em;
  line-height: 1;
  white-space: normal;
  text-align: center;
  transform: translate(-50%, -50%);
}
.ant-progress-circle .ant-progress-text .anticon {
  font-size: 1.16666667em;
}
.ant-progress-circle.ant-progress-status-exception .ant-progress-text {
  color: #ff4d4f;
}
.ant-progress-circle.ant-progress-status-success .ant-progress-text {
  color: #52c41a;
}
@keyframes ant-progress-active {
  0% {
    width: 0;
    opacity: 0.1;
  }
  20% {
    width: 0;
    opacity: 0.5;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
.ant-progress-rtl {
  direction: rtl;
}
.ant-progress-rtl.ant-progress-show-info .ant-progress-outer {
  margin-right: 0;
  margin-left: calc(-2em - 8px);
  padding-right: 0;
  padding-left: calc(2em + 8px);
}
.ant-progress-rtl .ant-progress-success-bg {
  right: 0;
  left: auto;
}
.ant-progress-rtl.ant-progress-line .ant-progress-text,
.ant-progress-rtl.ant-progress-steps .ant-progress-text {
  margin-right: 8px;
  margin-left: 0;
  text-align: right;
}

.viewImg {
  height: 104px;
  width: 104px;
  display: block;
  position: relative;
  border-radius: 2px;
}
.viewImg img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.viewImg-mask {
  position: absolute;
  background: rgba(101, 101, 101, 0.6);
  color: #ffffff;
  opacity: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  pointer-events: none;
}

.viewImg:hover .viewImg-mask {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.auth-business-register {
  background-color: #FAFAFA;
  padding-top: 40px;
  min-height: 100vh;
}
.auth-business-register .ui-page-inner-lg {
  background-color: #fff;
  padding: 46px 0;
}
.auth-business-register .custom-form {
  width: 900px;
  margin: auto;
}
.auth-business-register-title {
  height: 28px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 46px;
  text-align: center;
}
.auth-business-register .ant-picker-range {
  width: 100%;
}
.auth-business-register .ant-picker {
  padding: 0px;
  width: 41%;
  border: none;
}
.auth-business-register .ant-picker-input {
  padding: 9.5px 11px 9.5px;
  border: 1px solid #EEEEEE;
}
.auth-business-register-countryCode .ant-form-item-control-input-content {
  display: flex;
}
.auth-business-register-countryCode .ant-form-item-control-input-content .ant-input {
  height: 46px;
  border: 1px solid #EEEEEE;
}
.auth-business-register-countryCode .ant-form-item-control-input-content .ant-btn {
  height: 46px;
}

@media screen and (max-width: 576px) {
  .auth-business-register {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .auth-business-register .ui-page-inner-lg {
    padding: 20px 0;
  }
  .auth-business-register-title {
    margin-bottom: 20px;
  }
  .auth-business-register .custom-form {
    width: 100%;
  }
  .auth-business-register .custom-form .ant-picker {
    width: 36%;
  }
}

@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.horizontal-carousel {
  /* 一定要隐藏掉超出部分的内容 */
  width: 100%;
  position: absolute;
  bottom: 0;
  opacity: 0.6;
  font-size: 18px;
  background: #9C5605;
  line-height: 18px;
  height: 60px;
}
.horizontal-carousel-text {
  position: absolute;
  margin-top: 20px;
  color: #FFEBD4;
  overflow: hidden;
  background: #9C5605;
  width: 100%;
}
.horizontal-carousel-text ol {
  /* 这里不能设为inline，否则translate不起作用要用margin-left来做动画 */
  display: inline-block;
  /* 强制不换行，不设的话由于内容较多会换行到下方 */
  white-space: nowrap;
  animation: horizontal-move 50s linear infinite;
  /* 容器的宽度，似乎纯CSS的话只能写死 */
  transform: translate(100%);
}

@keyframes horizontal-move {
  0% {
    transform: translate(50%) 0.5s;
  }
  100% {
    /* 100%是自身的宽度 */
    transform: translate(calc(-100% - 10%));
  }
}
.horizontal-carousel ol li {
  display: inline-block;
  margin: 0 10px;
}

@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.page-chain-publicity {
  width: auto;
}
.page-chain-publicity-inner {
  padding-bottom: 60px;
}
.page-chain-publicity-inner-btn {
  margin-left: 20px;
}
.deductions-instruction-title {
  width: 100%;
  height: 112px;
  background: #FAFAFA;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 500;
  color: #333333;
  line-height: 112px;
  text-align: center;
}
.donation-site-text {
  line-height: 24px;
  white-space: pre-wrap;
}
.other-text-children {
  padding: 33px 60px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}

@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.page-cooperation-donor {
  width: auto;
}
.page-cooperation-donor-inner {
  padding: 0 0 80px;
}
.page-cooperation-donor-inner-item {
  width: 184px;
  height: 97px;
  margin: 40px 40px 0 0;
  border: 1px solid #F2F2F2;
  float: left;
  padding: 5px;
  box-sizing: border-box;
}
.page-cooperation-donor-inner-item img {
  height: 100%;
  display: block;
  margin: auto;
}
.page-cooperation-donor-inner::before {
  display: table;
  content: "";
}
.page-cooperation-donor-inner::after {
  display: table;
  clear: both;
  content: "";
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.volunteers-info {
  margin-top: 40px;
}
.volunteers-info-content {
  background: #FAFAFA;
  padding: 40px;
  display: flex;
  border-radius: 8px;
}
.volunteers-info-content-left {
  width: 42%;
}
.volunteers-info-content-left img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.volunteers-info-content-right {
  width: 58%;
  margin-left: 50px;
}
.volunteers-info-content-right-title {
  height: 33px;
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  margin: 20px 0px;
}
.volunteers-info-content-right-text {
  font-size: 16px;
  color: #666;
  line-height: 22px;
  margin-bottom: 24px;
}
.volunteers-info-content-right-num {
  display: flex;
}
.volunteers-info-content-right-num div:first-child {
  margin-right: 87px;
}
.volunteers-info-content-right-num div span {
  display: flex;
}
.volunteers-info-content-right-num div span:first-child {
  font-size: 36px;
  font-weight: bold;
  color: #9C5605;
  line-height: 42px;
}
.volunteers-info-content-right-num div span:last-child {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  line-height: 22px;
  margin-top: 4px;
}
.volunteers-info-content-right-btn {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 14px;
}

@media screen and (max-width: 576px) {
  .ui-page-inner .volunteers-info {
    margin-top: 0px;
  }
  .ui-page-inner .volunteers-info-content {
    display: inherit;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ui-page-inner .volunteers-info-content-left {
    width: 100%;
    height: auto;
  }
  .ui-page-inner .volunteers-info-content-right {
    margin-left: 0px;
    width: 100%;
  }
  .ui-page-inner .volunteers-info-content-right-title {
    font-size: 20px;
    margin: 10px 0px;
  }
  .ui-page-inner .volunteers-info-content-right-btn {
    margin-bottom: 0px;
    margin-top: 20px;
    display: flex;
    justify-content: end;
  }
  .ui-page-inner .volunteers-info-content-right-num div span:first-child {
    font-size: 24px;
    line-height: 24px;
  }
  .ui-page-inner .volunteers-info-content-right-num div span:last-child {
    font-size: 14px;
    font-weight: 400;
  }
}
@media screen and (max-width: 340px) {
  .ui-page-inner .volunteers-info-content-right-num div span:first-child {
    font-size: 30px;
  }
  .ui-page-inner .volunteers-info-content-right-num div span:last-child {
    font-size: 14px;
  }
}
@charset "UTF-8";
/**
 * 
 * @author 小玉
 * @date 2021-10-19 14:12:45
 */
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.donationpublic-priceInfo {
  padding-left: 40px;
}
.donationpublic-priceInfo-top {
  margin-top: 140px;
}
.donationpublic-priceInfo-top-price {
  font-size: 50px;
  font-weight: bold;
  color: #9C5605;
  height: 70px;
}
.donationpublic-priceInfo-top-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 50px;
}
.donationpublic-priceInfo-bottom {
  display: flex;
}
.donationpublic-priceInfo-bottom-module {
  flex: 1;
}
.donationpublic-priceInfo-bottom-module-price {
  font-size: 40px;
  font-weight: bold;
  color: #9C5605;
  height: 70px;
}
.donationpublic-priceInfo-bottom-module-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 60px;
}
.donationpublic-priceInfo-nav {
  width: 50%;
  height: 80px;
  background: #9C5605;
  position: absolute;
  display: flex;
  align-items: center;
  color: #fff;
  left: 0px;
  padding-left: 80px;
  flex-flow: inherit !important;
}
.donationpublic-priceInfo-nav-swiper {
  display: flex;
}
.donationpublic-priceInfo-nav-swiper-icon {
  display: flex;
  align-items: center;
}
.donationpublic-priceInfo-nav-col {
  font-size: 16px;
}
.donationpublic-priceInfo-nav-col i {
  font-style: inherit;
}
.donationpublic-priceInfo-nav-col:first-child {
  text-align: left;
  padding-left: 30px;
}
.donationpublic-priceInfo-nav-col:first-child span {
  margin-left: 80px;
  margin-right: 30px;
}
.donationpublic-priceInfo-margin {
  width: 100%;
  text-align: left;
}
.donationpublic-priceInfo-text {
  font-size: 18px;
  margin-top: 143px;
  color: #888;
  line-height: 25px;
}
.donationpublic-priceInfo-text div {
  margin-bottom: 20px;
}
.donationpublic-priceInfo-text div:last-child {
  color: #ccc;
  margin-bottom: 0px;
}
.donationpublic-priceInfo .description {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 22px;
  position: relative;
  top: -24px;
  left: 0;
}

@media screen and (max-width: 576px) {
  .donationpublic-priceInfo-top {
    margin-top: 0px;
  }
  .donationpublic-priceInfo-top-price {
    font-size: 26px;
    font-weight: bold;
    color: #9C5605;
    display: flex;
    justify-content: left;
    height: 50px;
  }
  .donationpublic-priceInfo-top-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0px;
    display: flex;
    justify-content: left;
  }
  .donationpublic-priceInfo-bottom-module-price {
    font-size: 20px;
    display: flex;
    justify-content: left;
    height: 50px;
  }
  .donationpublic-priceInfo-bottom-module-text {
    margin-bottom: 20px;
    display: flex;
    justify-content: left;
    font-size: 16px;
  }
  .donationpublic-priceInfo-nav {
    width: 100%;
    height: 40px;
    background: #9C5605;
    display: flex;
    align-items: center;
    font-size: 12px;
    padding-left: 0px;
    color: #fff;
  }
  .donationpublic-priceInfo-nav span:first-child {
    padding-left: 0px;
    margin-right: 8px;
    margin-left: 20px;
  }
  .donationpublic-priceInfo-nav .swiper .swiper-slide {
    justify-content: space-between;
  }
  .donationpublic-priceInfo-nav-col {
    text-align: center;
    font-size: 12px;
  }
  .donationpublic-priceInfo-nav-col:first-child {
    padding-left: 0px;
  }
  .donationpublic-priceInfo-nav-col i {
    font-style: inherit;
    display: inline-block;
  }
  .donationpublic-priceInfo-nav-col i:first-child {
    vertical-align: bottom;
    display: inline-block;
    width: 50px;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 0px;
  }
  .donationpublic-priceInfo-nav-col:last-child {
    margin-right: 20px;
  }
  .donationpublic-priceInfo-margin {
    padding-left: 20px;
  }
  .donationpublic-priceInfo-text {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .donationpublic-priceInfo-text div {
    padding-left: 0px;
    margin-bottom: 10px;
    line-height: 20px;
  }
}
.info-active, .info-enroll {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}
.info-layout {
  display: flex;
  justify-content: space-between;
}
.info-layout-btn {
  display: flex;
  align-items: flex-end;
}
.info-actKeyValue {
  margin-top: 18px;
}
.info-actKeyValue-key {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 22px;
  margin-bottom: 18px;
  display: inline-block;
}
.info-actKeyValue-value {
  font-size: 30px;
  font-weight: bold;
  color: #dd7b39;
  line-height: 38px;
  vertical-align: middle;
  margin-left: 10px;
  font-family: DINAlternate-Bold, DINAlternate;
}

@media screen and (max-width: 576px) {
  .info-actKeyValue-value {
    font-size: 18px;
  }
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.project-info-modal {
  width: 562px !important;
  border-radius: 8px;
}
.project-info-modal .ant-modal-body {
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.project-info-modal .ant-modal-body img {
  width: 168px;
  height: 168px;
  border: 1px solid #9C5605;
}
.project-info-modal-text {
  font-size: 16px;
  line-height: 22px;
  margin-top: 20px;
}
.info-active, .info-enroll {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}
.info-layout {
  display: flex;
  justify-content: space-between;
}
.info-layout-btn {
  display: flex;
  align-items: flex-end;
}
.info-actKeyValue {
  margin-top: 18px;
}
.info-actKeyValue-key {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 22px;
  margin-bottom: 18px;
  display: inline-block;
}
.info-actKeyValue-value {
  font-size: 30px;
  font-weight: bold;
  color: #dd7b39;
  line-height: 38px;
  vertical-align: middle;
}

@media screen and (max-width: 576px) {
  .info-actKeyValue-value {
    font-size: 18px;
  }
}
.info-active, .info-enroll {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}
.info-layout {
  display: flex;
  justify-content: space-between;
}
.info-layout-btn {
  display: flex;
  align-items: flex-end;
}
.info-actKeyValue {
  margin-top: 18px;
}
.info-actKeyValue-key {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 22px;
  margin-bottom: 18px;
  display: inline-block;
}
.info-actKeyValue-value {
  font-size: 30px;
  font-weight: bold;
  color: #dd7b39;
  line-height: 38px;
  vertical-align: middle;
}

@media screen and (max-width: 576px) {
  .info-actKeyValue-value {
    font-size: 18px;
  }
}



@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.private {
  background-color: #FAFAFA;
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: 100vh;
}
.private .ui-page-inner-lg {
  background-color: #fff;
  padding: 46px 0;
}
.private-title {
  height: 28px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 46px;
  text-align: center;
}
.private-content {
  padding-left: 20px;
  padding-right: 20px;
  line-height: 30px;
}
.private-content p {
  text-indent: 40px;
}
/* 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-list {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
}
.ant-list * {
  outline: none;
}
.ant-list-pagination {
  margin-top: 24px;
  text-align: right;
}
.ant-list-pagination .ant-pagination-options {
  text-align: left;
}
.ant-list-more {
  margin-top: 12px;
  text-align: center;
}
.ant-list-more button {
  padding-right: 32px;
  padding-left: 32px;
}
.ant-list-spin {
  min-height: 40px;
  text-align: center;
}
.ant-list-empty-text {
  padding: 16px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  text-align: center;
}
.ant-list-items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #444;
}
.ant-list-item-meta {
  display: flex;
  flex: 1;
  align-items: flex-start;
  max-width: 100%;
}
.ant-list-item-meta-avatar {
  margin-right: 16px;
}
.ant-list-item-meta-content {
  flex: 1 0;
  width: 0;
  color: #444;
}
.ant-list-item-meta-title {
  margin-bottom: 4px;
  color: #444;
  font-size: 14px;
  line-height: 1.5715;
}
.ant-list-item-meta-title > a {
  color: #444;
  transition: all 0.3s;
}
.ant-list-item-meta-title > a:hover {
  color: #9C5605;
}
.ant-list-item-meta-description {
  color: #888;
  font-size: 14px;
  line-height: 1.5715;
}
.ant-list-item-action {
  flex: 0 0 auto;
  margin-left: 48px;
  padding: 0;
  font-size: 0;
  list-style: none;
}
.ant-list-item-action > li {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  color: #888;
  font-size: 14px;
  line-height: 1.5715;
  text-align: center;
}
.ant-list-item-action > li:first-child {
  padding-left: 0;
}
.ant-list-item-action-split {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 14px;
  margin-top: -7px;
  background-color: #f0f0f0;
}
.ant-list-header {
  background: transparent;
}
.ant-list-footer {
  background: transparent;
}
.ant-list-header,
.ant-list-footer {
  padding-top: 12px;
  padding-bottom: 12px;
}
.ant-list-empty {
  padding: 16px 0;
  color: #888;
  font-size: 12px;
  text-align: center;
}
.ant-list-split .ant-list-item {
  border-bottom: 1px solid #f0f0f0;
}
.ant-list-split .ant-list-item:last-child {
  border-bottom: none;
}
.ant-list-split .ant-list-header {
  border-bottom: 1px solid #f0f0f0;
}
.ant-list-split.ant-list-empty .ant-list-footer {
  border-top: 1px solid #f0f0f0;
}
.ant-list-loading .ant-list-spin-nested-loading {
  min-height: 32px;
}
.ant-list-split.ant-list-something-after-last-item .ant-spin-container > .ant-list-items > .ant-list-item:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.ant-list-lg .ant-list-item {
  padding: 16px 24px;
}
.ant-list-sm .ant-list-item {
  padding: 8px 16px;
}
.ant-list-vertical .ant-list-item {
  align-items: initial;
}
.ant-list-vertical .ant-list-item-main {
  display: block;
  flex: 1;
}
.ant-list-vertical .ant-list-item-extra {
  margin-left: 40px;
}
.ant-list-vertical .ant-list-item-meta {
  margin-bottom: 16px;
}
.ant-list-vertical .ant-list-item-meta-title {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  line-height: 24px;
}
.ant-list-vertical .ant-list-item-action {
  margin-top: 16px;
  margin-left: auto;
}
.ant-list-vertical .ant-list-item-action > li {
  padding: 0 16px;
}
.ant-list-vertical .ant-list-item-action > li:first-child {
  padding-left: 0;
}
.ant-list-grid .ant-col > .ant-list-item {
  display: block;
  max-width: 100%;
  margin-bottom: 16px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ant-list-item-no-flex {
  display: block;
}
.ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action {
  float: right;
}
.ant-list-bordered {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.ant-list-bordered .ant-list-header {
  padding-right: 24px;
  padding-left: 24px;
}
.ant-list-bordered .ant-list-footer {
  padding-right: 24px;
  padding-left: 24px;
}
.ant-list-bordered .ant-list-item {
  padding-right: 24px;
  padding-left: 24px;
}
.ant-list-bordered .ant-list-pagination {
  margin: 16px 24px;
}
.ant-list-bordered.ant-list-sm .ant-list-item {
  padding: 8px 16px;
}
.ant-list-bordered.ant-list-sm .ant-list-header,
.ant-list-bordered.ant-list-sm .ant-list-footer {
  padding: 8px 16px;
}
.ant-list-bordered.ant-list-lg .ant-list-item {
  padding: 16px 24px;
}
.ant-list-bordered.ant-list-lg .ant-list-header,
.ant-list-bordered.ant-list-lg .ant-list-footer {
  padding: 16px 24px;
}
@media screen and (max-width: 768px) {
  .ant-list-item-action {
    margin-left: 24px;
  }
  .ant-list-vertical .ant-list-item-extra {
    margin-left: 24px;
  }
}
@media screen and (max-width: 576px) {
  .ant-list-item {
    flex-wrap: wrap;
  }
  .ant-list-item-action {
    margin-left: 12px;
  }
  .ant-list-vertical .ant-list-item {
    flex-wrap: wrap-reverse;
  }
  .ant-list-vertical .ant-list-item-main {
    min-width: 220px;
  }
  .ant-list-vertical .ant-list-item-extra {
    margin: auto auto 16px;
  }
}
.ant-list-rtl {
  direction: rtl;
  text-align: right;
}
.ant-list-rtl .ReactVirtualized__List .ant-list-item {
  direction: rtl;
}
.ant-list-rtl .ant-list-pagination {
  text-align: left;
}
.ant-list-rtl .ant-list-item-meta-avatar {
  margin-right: 0;
  margin-left: 16px;
}
.ant-list-rtl .ant-list-item-action {
  margin-right: 48px;
  margin-left: 0;
}
.ant-list.ant-list-rtl .ant-list-item-action > li:first-child {
  padding-right: 0;
  padding-left: 16px;
}
.ant-list-rtl .ant-list-item-action-split {
  right: auto;
  left: 0;
}
.ant-list-rtl.ant-list-vertical .ant-list-item-extra {
  margin-right: 40px;
  margin-left: 0;
}
.ant-list-rtl.ant-list-vertical .ant-list-item-action {
  margin-right: auto;
}
.ant-list-rtl .ant-list-vertical .ant-list-item-action > li:first-child {
  padding-right: 0;
  padding-left: 16px;
}
.ant-list-rtl .ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action {
  float: left;
}
@media screen and (max-width: 768px) {
  .ant-list-rtl .ant-list-item-action {
    margin-right: 24px;
    margin-left: 0;
  }
  .ant-list-rtl .ant-list-vertical .ant-list-item-extra {
    margin-right: 24px;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .ant-list-rtl .ant-list-item-action {
    margin-right: 22px;
    margin-left: 0;
  }
  .ant-list-rtl.ant-list-vertical .ant-list-item-extra {
    margin: auto auto 16px;
  }
}

@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.donation-public-list-button {
  text-align: right;
  margin-top: 28px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  justify-content: end;
}

@media screen and (max-width: 576px) {
  .donation-public-list {
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 20px;
  }
  .donation-public-list-button {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* 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-space {
  display: inline-flex;
}
.ant-space-vertical {
  flex-direction: column;
}
.ant-space-align-center {
  align-items: center;
}
.ant-space-align-start {
  align-items: flex-start;
}
.ant-space-align-end {
  align-items: flex-end;
}
.ant-space-align-baseline {
  align-items: baseline;
}
.ant-space-item:empty {
  display: none;
}
.ant-space-rtl {
  direction: rtl;
}

.ui-volunteers-table-item-right-name {
  font-size: 24px;
  background: url(/_next/static/nameBottom.d6f5ba7b.png) no-repeat;
  background-position: left 14px;
}
@charset "UTF-8";
/**
 * 
 * @author 小玉
 * @date 2021-10-19 13:28:16
 */
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.card-donation-pubilc {
  background-image: url("https://dfgroup-temple-test.oss-cn-shanghai.aliyuncs.com/web/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.card-donation-pubilc-content {
  display: flex;
  position: relative;
  padding-bottom: 110px;
  padding-top: 110px;
}
.card-donation-pubilc-content-priceInfo {
  min-width: 45%;
}
.card-donation-pubilc-content-list {
  width: 1051px;
  background: url("https://dfgroup-temple-test.oss-cn-shanghai.aliyuncs.com/web/list_bg.png") no-repeat;
  background-position: 100% 100%;
  padding: 80px 80px 78px 143px;
}

@media screen and (max-width: 576px) {
  .card-donation-pubilc-content {
    display: inherit;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .card-donation-pubilc-content-priceInfo {
    max-width: 576px;
  }
  .card-donation-pubilc-content-list {
    padding: 0px;
    max-width: 100%;
  }
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.news-center {
  background: url("https://dfgroup-temple-test.oss-cn-shanghai.aliyuncs.com/web/news_center_bg.jpg");
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  padding-top: 120px;
}
.news-center-container {
  padding: 0px 80px;
  margin-top: 114px;
  margin-bottom: 80px;
}
.news-center-container-swiper {
  height: 520px;
  border-radius: 8px;
}
.news-center-container-swiper-slide img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  cursor: pointer;
}
.news-center-container-swiper-slide img:hover {
  transform: scale(1.1);
  opacity: 1;
}
.news-center-container-list {
  padding-left: 50px;
  width: 100%;
}
.news-center-container-list-active {
  border-bottom: 1px solid #8b3308;
  cursor: pointer;
}
.news-center-container-list-active span {
  color: #9C5605;
}
.news-center-container-list-active span:first-child {
  position: relative;
}
.news-center-container-list-active span:first-child::before {
  width: 100%;
  position: absolute;
  content: " ";
  height: 4px;
  left: 0;
  bottom: 0;
  background-color: #9C5605;
}
.news-center-container-list li:first-child {
  border-top: 1px solid #ca9175;
}
.news-center-button {
  padding-bottom: 95px;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 576px) {
  .news-center {
    padding-top: 20px;
    height: auto;
  }
  .news-center-container {
    padding: 0px;
    margin: 20px 0px;
  }
  .news-center-container-swiper {
    height: 200px;
  }
  .news-center-container-swiper-slide img {
    width: 100%;
    height: 100%;
    transition: all 3s;
    cursor: pointer;
  }
  .news-center-container-swiper-slide img:hover {
    transform: scale(1.1);
    opacity: 1;
  }
  .news-center-container-list {
    padding: 0px 20px;
  }
  .news-center-container-list-active {
    border-bottom: 1px solid #ca9175;
  }
  .news-center-container-list-active span {
    color: #444;
  }
  .news-center-container-list-active span:first-child::before {
    width: 100%;
    position: absolute;
    content: " ";
    height: 0px;
    left: 0;
    bottom: 0;
  }
  .news-center-button {
    padding-bottom: 20px;
  }
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.partners {
  background: url("https://dfgroup-temple-test.oss-cn-shanghai.aliyuncs.com/web/partners_bg.jpg");
  width: 100%;
  background-size: cover;
  background-position: 50%;
}
.partners-list {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 113px;
  padding: 0px 112px;
}
.partners-list img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 576px) {
  .partners {
    padding: 40px 20px;
  }
  .partners-list {
    margin-top: 20px;
    width: 100%;
    padding: 0px;
  }
}
/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 16, 2020
 */

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@charset "UTF-8";
/*
 * 全局入口文件
 * @author 明浩
 * @date 2021-09-28 15:47:28
 */
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * 基础样式
 * @author 明浩
 * @date 2021-09-28 15:48:23
 */
/*
 * css帮助文件
 * @author 明浩
 * @date 2021-09-28 18:56:25
 */
/*
 * 边距
 */
.margin-top-lg {
  margin-top: 24px;
}

.margin-left-lg {
  margin-left: 24px;
}

.margin-right-lg {
  margin-right: 24px;
}

.margin-bottom-lg {
  margin-bottom: 24px;
}

/**
 * 字体颜色
 */
.color-secondary {
  color: #888;
}

/**
 * 全局按钮
 * @author 明浩
 * @date 2021-10-21 10:40:05
 */
.ui-btn {
  height: 60px;
  border-radius: 30px;
  border: 1px solid #9C5605;
  padding: 0 44px;
  font-weight: 400;
  color: #9C5605;
  display: flex;
  align-items: center;
}

.ui-btn-bg {
  padding: 19px 44px;
  background: #9C5605;
  border-radius: 30px;
  color: #FFF;
  font-size: 16px;
  cursor: pointer;
  line-height: 19px;
  display: flex;
  align-items: center;
}

/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
.template-layout {
  margin-top: 24px;
  overflow: auto;
}
/**
 * 招聘
 */
.card-recruit-header {
  padding-left: 20px;
  position: relative;
  height: 65px;
  border-bottom: 1px #ebebeb solid;
  display: flex;
  align-items: center;
}
.card-recruit-header:before {
  display: block;
  content: " ";
  position: absolute;
  width: 5px;
  height: 15px;
  background: #9C5605;
  left: 0;
  top: 50%;
  margin-top: -7.5px;
}
.card-recruit-header-title {
  height: 25px;
  font-size: 18px;
  font-weight: 400;
  color: #9C5605;
  line-height: 25px;
}
.card-recruit-content {
  padding: 24px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.card-recruit-content-item h5 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.card-recruit-content-item p {
  margin: 0;
  font-size: 14px;
}
.card-recruit-content-item + .card-recruit-content-item {
  margin-top: 40px;
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
.banner-template {
  width: 100%;
  height: 960px;
  background-color: #f1f1f1;
  position: relative;
}
.banner-template .swiper-slide {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-template .swiper-pagination {
  bottom: 185px;
}
.banner-template .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}
.banner-template .swiper-pagination .swiper-pagination-bullet-active {
  background: #9C5707;
}
.banner-template .swiper-button-prev:after, .banner-template .swiper-button-next:after {
  font-size: 0 !important;
}
.banner-template .swiper-button-prev, .banner-template .swiper-button-next {
  top: auto;
  left: 50%;
  bottom: 75px;
  width: 60px;
  height: 60px;
}
.banner-template .swiper-button-prev {
  margin-left: -275px;
}
.banner-template .swiper-button-next {
  margin-left: 215px;
}
.banner-template-btn {
  position: absolute;
  display: flex;
  left: 50%;
  bottom: 75px;
  transform: translate(-50%, 0);
  z-index: 1;
  font-size: 16px;
}
.banner-template-btn-left {
  margin-right: 30px;
}

@media screen and (max-width: 1440px) {
  .banner-template {
    height: 800px;
  }
}
@media screen and (max-width: 576px) {
  .banner-template {
    height: 220px;
    width: 100%;
  }
  .banner-template-btn {
    bottom: 24px;
  }
  .banner-template-btn-left {
    margin-right: 10px;
  }
  .banner-template .swiper-button-prev {
    margin-left: -148px;
    bottom: 5px;
  }
  .banner-template .swiper-button-prev img {
    height: 40px;
    width: 40px;
  }
  .banner-template .swiper-button-next {
    margin-left: 104px;
    bottom: 5px;
  }
  .banner-template .swiper-button-next img {
    height: 40px;
    width: 40px;
  }
  .banner-template .swiper-pagination {
    bottom: 80px;
  }
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
.group-template {
  height: 1080px;
  background: url("https://dfgroup-temple-test.oss-cn-shanghai.aliyuncs.com/web/group_template_bg.jpg") no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.group-template-img {
  display: flex;
  justify-content: center;
}
.group-template-img img {
  margin-top: 120px;
}
.group-template-content {
  height: 600px;
  width: 100%;
  padding: 0px 84px;
  margin-top: 74px;
}
.group-template-content .swiper-button-next {
  right: 15px;
}
.group-template-content .swiper-button-next-right-icon {
  display: none;
}
.group-template-content .swiper-button-next:hover .swiper-button-next-right {
  display: none;
}
.group-template-content .swiper-button-next:hover .swiper-button-next-right-icon {
  transition-duration: 15s;
  display: block;
}
.group-template-content .swiper-button-prev {
  left: 15px;
}
.group-template-content .swiper-button-prev-left-icon {
  display: none;
}
.group-template-content .swiper-button-prev:hover .swiper-button-prev-left {
  display: none;
}
.group-template-content .swiper-button-prev:hover .swiper-button-prev-left-icon {
  transition-duration: 15s;
  display: block;
}
.group-template-content .swiper-button-next:after {
  content: "";
}
.group-template-content .swiper-button-prev:after {
  content: "";
}
.group-template-content .swiper-container {
  height: 100%;
  padding: 0 40px;
}
.group-template-content .swiper-container .swiper-slide {
  cursor: pointer;
  padding: 40px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item {
  height: px;
  width: 450px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  background: #fff;
  cursor: pointer;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom {
  height: 100%;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-img {
  height: 291px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-title {
  line-height: 22px;
  margin: 20px 24px 14px 27px;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-title span {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  width: 100%;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-title p {
  height: 44px;
  font-size: 16px;
  color: #666;
  margin: 10px 0 14px;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-line {
  border-top: 1px solid #f0f0f0;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-footer {
  font-size: 14px;
  color: #8590a6;
  text-align: center;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-footer-row {
  margin: 0px 15px;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-footer-row .ant-col {
  border-right: 1px solid #f0f0f0;
  flex: 1;
  max-width: none;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-footer-row .ant-col:last-child {
  border-right: none;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-footer-row-number {
  font-size: 18px;
  color: #dd7b39;
  font-weight: bold;
  padding-top: 13px;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-footer-row-word {
  font-size: 16px;
  color: #666;
  padding-bottom: 13px;
}
.group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-footer-row-word div {
  height: 24px;
  overflow: hidden;
}
.group-template .group-template-footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media screen and (max-width: 576px) {
  .group-template {
    height: 520px;
  }
  .group-template-content {
    height: 380px;
    margin-top: 0px;
    padding: 0px;
  }
  .group-template-content .swiper-pagination-bullet-active {
    background: #9C5605;
  }
  .group-template-content .swiper-container .swiper-slide {
    width: 100% !important;
    padding: 20px 20px;
  }
  .group-template-content-item {
    height: 340px !important;
  }
  .group-template-content-item-footer-row-number {
    font-size: 16px !important;
  }
  .group-template-content-item-footer-row-word {
    font-size: 14px !important;
  }
  .group-template-content .swiper-container {
    padding: 0px;
  }
  .group-template-img img {
    margin-top: 20px;
  }
  .group-template-content {
    display: inherit;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .group-template-content-priceInfo {
    max-width: 576px;
  }
  .group-template-content-list {
    padding: 20px;
    max-width: 100%;
  }
  .group-template-content .swiper-pagination {
    bottom: -4px;
  }
  .group-template .group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom {
    height: 184px;
  }
  .group-template .group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom img {
    height: 100%;
  }
  .group-template .group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-title {
    margin: 10px 20px;
  }
  .group-template .group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-title span:first-child {
    font-size: 16px;
    height: 24px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .group-template .group-template-content .swiper-container .swiper-slide .group-template-content-item-bottom .group-template-content-item-title p {
    font-size: 14px;
    height: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
.good-day-template {
  width: 100%;
  height: 1080px;
  background: url("https://dfgroup-temple-test.oss-cn-shanghai.aliyuncs.com/web/good_day_template_bg.jpg") no-repeat;
  position: relative;
  background-position: 50%;
  background-size: cover;
  display: block;
}
.good-day-template-content {
  display: flex;
}
.good-day-template-top {
  display: flex;
  justify-content: center;
  padding-top: 120px;
}
.good-day-template-right {
  flex: 0 0 22%;
  padding-top: 330px;
  margin-left: 80px;
}
.good-day-template-right-top {
  display: flex;
  justify-content: space-between;
}
.good-day-template-right-top-word {
  font-size: 20px;
  color: #9C5605;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
.good-day-template-right-top-word::before {
  content: "";
  display: inline-block;
  width: 4px;
  background: #9C5605;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}
.good-day-template-right .good-day-template-swiper .swiper-wrapper .good-day-template-swiper-main-content-name {
  flex: 0 0 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.good-day-template-left {
  padding-top: 330px;
  flex: 0 0 22%;
  margin-right: 80px;
}
.good-day-template-left-btn {
  display: flex;
  justify-content: end;
}
.good-day-template-center {
  width: 56%;
  margin-top: 188px;
  margin: 0px 88px;
  margin-top: 100px;
}
.good-day-template-center-top {
  height: auto;
  margin: 0px 15px;
}
.good-day-template-center-top img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.good-day-template-center-icon {
  display: flex;
  justify-content: space-between;
}
.good-day-template-center-left, .good-day-template-center-right {
  height: 16px;
  width: 21px;
}
.good-day-template-center-left img, .good-day-template-center-right img {
  width: 100%;
  height: 100%;
}
.good-day-template-swiper {
  background: none;
  border: 1px solid #9c5605;
  width: 100%;
  height: 203px;
  border-radius: 8px;
  padding: 47px 0px;
}
.good-day-template-swiper-main {
  height: 109px;
  width: 203px;
}
.good-day-template-swiper-main-content {
  display: flex;
  font-size: 16px;
  height: 22px !important;
  justify-content: space-between;
}
.good-day-template .good-day-template-bootom {
  display: flex;
  justify-content: center;
  margin-top: 116px;
}

@media (min-width: 576px) and (max-width: 1660px) {
  .good-day-template {
    height: auto;
    background: url("https://dfgroup-temple-test.oss-cn-shanghai.aliyuncs.com/web/good_day_template_1440.jpg") no-repeat;
  }
  .good-day-template-right {
    padding-top: 166px;
  }
  .good-day-template-center {
    margin-top: 70px;
  }
  .good-day-template-left {
    padding-top: 202px;
    margin-right: 58px;
  }
  .good-day-template .good-day-template-bootom {
    margin-top: 80px;
    padding-bottom: 102px;
  }
}
@media screen and (max-width: 576px) {
  .good-day-template {
    height: auto;
  }
  .good-day-template-top {
    padding-top: 0px;
  }
  .good-day-template-top-img {
    height: 41px;
    line-height: 41px;
  }
  .good-day-template-top-img img {
    width: 100%;
    height: 100%;
  }
  .good-day-template-content {
    display: flex;
    flex-direction: column-reverse;
  }
  .good-day-template-right {
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 40px;
  }
  .good-day-template-right-top {
    margin-top: 15px;
  }
  .good-day-template-right-top-note {
    color: #888;
  }
  .good-day-template-right-top-word {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .good-day-template-center {
    margin: 0px;
  }
  .good-day-template-center-top {
    height: 100%;
  }
  .good-day-template-left {
    width: 100% !important;
    height: 100% !important;
    padding: 20px 20px !important;
  }
  .good-day-template-left-btn {
    margin-top: 0px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .good-day-template-left p {
    color: #B09571;
  }
  .good-day-template-center {
    height: 200px !important;
    width: 100%;
    padding: 0 20px;
  }
  .good-day-template-center img {
    height: 100%;
    width: 100%;
  }
  .good-day-template-bootom {
    margin-top: 20px !important;
    padding-bottom: 20px;
  }
  .good-day-template-top {
    overflow: hidden;
  }
  .good-day-template-top div {
    margin-top: 20px !important;
  }
}
.comment {
  display: flex;
  margin-top: 40px;
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin-right: 12px;
}
.comment-name {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 24px;
  margin-top: 4px;
}
.comment-content {
  margin-top: 8px;
  color: #666666;
  margin-bottom: 8px;
}
.comment .ant-col {
  padding-left: 0px;
}
.comment-photoList-img {
  width: 110%;
  border-radius: 8px;
  margin-top: 8px;
  background-color: #f2f2f2;
}
.comment-photoList-img img {
  height: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.ui-projectlist-b-item-icon {
  height: 28px;
  width: 68px;
  background: url(/_next/static/bg.0d3d1392.png) no-repeat;
  background-size: 100%;
  position: absolute;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.ui-active-time {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0px 20px;
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.page-juequn-project {
  width: auto;
  background-color: #fbfdfd;
}
.page-juequn-project-inner {
  padding: 0 0 40px;
}
.page-juequn-project-inner-dynamic-title {
  display: flex;
  padding: 40px 0px 0px;
  flex-wrap: wrap;
  justify-content: center;
}
.page-juequn-project-inner-dynamic-title-checked, .page-juequn-project-inner-dynamic-title-ischecked {
  height: 48px;
  background: #d4671e;
  margin-right: 100px;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 30px;
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
}
.page-juequn-project-inner-dynamic-title-checked:last-child, .page-juequn-project-inner-dynamic-title-ischecked:last-child {
  margin-right: 0px;
}
.page-juequn-project-inner-dynamic-title-ischecked .ant-btn-ghost {
  background: #f2f2f2;
  color: #666666;
  font-weight: 400;
}
.page-juequn-project-inner-dynamic-title .ant-btn-primary {
  background-color: #d4671e;
  border-color: transparent;
}
.page-juequn-project-inner-dynamic-title .ant-btn {
  border-color: transparent;
  padding: 4px 32px;
  font-weight: 400;
}
.page-juequn-project-inner-dynamic-title .ant-btn-round {
  height: 48px;
}
.page-juequn-project-inner-dynamic-title .ant- .page-juequn-project-inner-dynamic-title .ant-btn:focus {
  background-color: #d4671e;
}
.page-juequn-project-inner-dynamic-title .ant-btn:hover {
  background-color: #d4671e;
  color: #fff;
}
.page-juequn-project-inner-dynamic-title-ischecked {
  background: #f2f2f2;
  color: #666666;
  font-weight: 400;
}

@media screen and (max-width: 576px) {
  .page-juequn-project-inner-dynamic-title {
    padding: 20px 0px 0px;
    margin-left: 20px;
  }
  .page-juequn-project-inner-dynamic-title-checked, .page-juequn-project-inner-dynamic-title-ischecked {
    margin-right: 20px;
  }
}
/* 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-timeline {
  box-sizing: border-box;
  color: #444;
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  font-feature-settings: 'tnum';
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-timeline-item {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  font-size: 14px;
  list-style: none;
}
.ant-timeline-item-tail {
  position: absolute;
  top: 10px;
  left: 4px;
  height: calc(90%);
  border-left: 2px solid #f0f0f0;
}
.ant-timeline-item-pending .ant-timeline-item-head {
  font-size: 12px;
  background-color: transparent;
}
.ant-timeline-item-pending .ant-timeline-item-tail {
  display: none;
}
.ant-timeline-item-head {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 100px;
}
.ant-timeline-item-head-blue {
  color: #9C5605;
  border-color: #9C5605;
}
.ant-timeline-item-head-red {
  color: #ff4d4f;
  border-color: #ff4d4f;
}
.ant-timeline-item-head-green {
  color: #52c41a;
  border-color: #52c41a;
}
.ant-timeline-item-head-gray {
  color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-timeline-item-head-custom {
  position: absolute;
  top: 5.5px;
  left: 5px;
  width: auto;
  height: auto;
  margin-top: 0;
  padding: 3px 1px;
  line-height: 1;
  text-align: center;
  border: 0;
  border-radius: 0;
  transform: translate(-50%, -50%);
}
.ant-timeline-item-content {
  position: relative;
  top: -7.001px;
  margin: 0 0 0 26px;
  word-break: break-word;
}
.ant-timeline-item-last > .ant-timeline-item-tail {
  display: none;
}
.ant-timeline-item-last > .ant-timeline-item-content {
  min-height: 48px;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-tail,
.ant-timeline.ant-timeline-right .ant-timeline-item-tail,
.ant-timeline.ant-timeline-label .ant-timeline-item-tail,
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,
.ant-timeline.ant-timeline-right .ant-timeline-item-head,
.ant-timeline.ant-timeline-label .ant-timeline-item-head,
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,
.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,
.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom {
  left: 50%;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,
.ant-timeline.ant-timeline-right .ant-timeline-item-head,
.ant-timeline.ant-timeline-label .ant-timeline-item-head {
  margin-left: -4px;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,
.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,
.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom {
  margin-left: 1px;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content,
.ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content,
.ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-content {
  left: calc(46%);
  width: calc(36%);
  text-align: left;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content,
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content,
.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-content {
  width: calc(38%);
  margin: 0;
  text-align: right;
}
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail,
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head,
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom {
  left: calc(94%);
}
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content {
  width: calc(82%);
}
.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail {
  display: block;
  height: calc(86%);
  border-left: 2px dotted #f0f0f0;
}
.ant-timeline.ant-timeline-reverse .ant-timeline-item-last .ant-timeline-item-tail {
  display: none;
}
.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail {
  top: 15px;
  display: block;
  height: calc(85%);
  border-left: 2px dotted #f0f0f0;
}
.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-content {
  min-height: 48px;
}
.ant-timeline.ant-timeline-label .ant-timeline-item-label {
  position: absolute;
  top: -7.001px;
  width: calc(38%);
  text-align: right;
}
.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-label {
  left: calc(64%);
  width: calc(36%);
  text-align: left;
}
.ant-timeline-rtl {
  direction: rtl;
}
.ant-timeline-rtl .ant-timeline-item-tail {
  right: 4px;
  left: auto;
  border-right: 2px solid #f0f0f0;
  border-left: none;
}
.ant-timeline-rtl .ant-timeline-item-head-custom {
  right: 5px;
  left: auto;
  transform: translate(50%, -50%);
}
.ant-timeline-rtl .ant-timeline-item-content {
  margin: 0 18px 0 0;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-tail,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-tail,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-tail,
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom {
  right: 50%;
  left: auto;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head {
  margin-right: -4px;
  margin-left: 0;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom {
  margin-right: 1px;
  margin-left: 0;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-content {
  right: calc(46%);
  left: auto;
  text-align: right;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-content {
  text-align: left;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom {
  right: 0;
  left: auto;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content {
  width: 100%;
  margin-right: 18px;
  text-align: right;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail {
  border-right: 2px dotted #f0f0f0;
  border-left: none;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail {
  border-right: 2px dotted #f0f0f0;
  border-left: none;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-label {
  text-align: left;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-label {
  right: calc(64%);
  text-align: right;
}

@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
.page-aboutjoinus-main {
  background: #FAFAFA;
  margin-top: 20px;
  padding: 0 60px 40px;
}

.page-about-footer {
  height: 320px;
  width: 100%;
  background: url("https://dfgroup-temple-test.oss-cn-shanghai.aliyuncs.com/web/bg_zyzzm@2x.jpg");
  background-size: cover;
  background-position: 50%;
}
.page-about-footer-word {
  height: 100%;
  display: flex;
  justify-content: center;
}
.page-about-footer-word-first {
  font-size: 28px;
  color: #fff;
  margin: 63px auto 9px;
}
.page-about-footer-word-second {
  font-size: 18px;
  color: #fff;
  margin-bottom: 25px;
  opacity: 0.6;
}
.page-about-footer-word-img {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 576px) {
  .page-aboutjoinus-info {
    flex-direction: column-reverse;
  }
  .page-aboutjoinus-info-main {
    padding: 20px 20px;
    margin-left: 20px;
  }
  .page-aboutjoinus-info-img {
    width: 100%;
  }
  .page-aboutjoinus-main {
    padding: 0 20px 20px;
  }

  .page-about-footer {
    height: 180px;
  }
  .page-about-footer-word-first {
    font-size: 18px;
    margin: 20px auto 9px;
  }
  .page-about-footer-word-second {
    font-size: 12px;
    padding: 0px 20px;
    line-height: 25px;
    opacity: 60%;
    margin-bottom: 10px;
  }
}
@charset "UTF-8";
/**
 * 图片列表
 */
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
.ui-picture-list {
  width: 100%;
}
.ui-picture-list::before {
  display: table;
  content: "";
}
.ui-picture-list::after {
  display: table;
  clear: both;
  content: "";
}
.ui-picture-list-item {
  width: 295px;
}
.ui-picture-list-item-img {
  width: 100%;
  height: 243px;
  margin: auto;
  border-radius: 8px 8px 0 0;
  background-color: #f2f2f2;
}
.ui-picture-list-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}
.ui-picture-list-item-msg {
  height: 60px;
  background-color: #fff;
  font-weight: 400;
  line-height: 20px;
  padding: 5px 20px 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 576px) {
  .ui-picture-list {
    margin-top: 20px;
  }
  .ui-picture-list-item {
    width: 100%;
  }
  .ui-picture-list-item-img img {
    height: 100%;
  }
  .ui-picture-list-item-msg {
    padding: 5px 20px 5px;
    display: flex;
    align-items: center;
  }
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.page-about {
  margin: auto;
}
.page-about.page-about-bg-gray {
  background-color: #fafafa;
}
.page-about-inner {
  padding: 40px 0;
}
.page-about .card-detail-theme-nobg-content-img-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  font-size: 14px;
  color: #333;
}

/**
 * 支持我们
 */
.page-support-our {
  padding: 40px 55px 80px;
}
.page-support-our-wrapper {
  background: url(/_next/static/bg.1bc360b4.png) no-repeat;
  background-size: cover;
  height: 260px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-support-our-title {
  font-size: 24px;
  color: #9C5605;
  font-weight: 500;
  margin-top: 34px;
  margin-bottom: 36px;
  position: relative;
}
.page-support-our-title::before {
  content: " ";
  display: block;
  height: 1px;
  width: 50px;
  background-color: #9C5605;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}
.page-support-our-main {
  text-align: left;
}
.page-support-our-p {
  font-size: 17px;
  margin-bottom: 11px;
  font-weight: 500;
}
.page-support-our-p span {
  letter-spacing: 17px;
}

@media screen and (max-width: 576px) {
  .page-about-inner {
    padding: 0px;
  }

  .page-support-our {
    padding: 0 20px 20px;
  }
}
.card-detail-theme-nobg-content-imgorg {
  width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
.card-detail-theme-nobg-content-imgorg > p {
  font-size: 24px;
  font-weight: 500;
  color: #9c5605;
  line-height: 33px;
  margin-bottom: 0;
  text-indent: 0;
}
.card-detail-theme-nobg-content-imgorg > div {
  width: 49px;
  height: 2px;
  border-top: 1px solid #9c5605;
  margin: 6px 0 20px 0;
}
.ui-person-list-item-main-title {
  background: url(/_next/static/nameBottom.d6f5ba7b.png) no-repeat;
  background-position: left bottom;
}
@charset "UTF-8";
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.page-aboutjoinus-info {
  display: flex;
  justify-content: space-between;
}
.page-aboutjoinus-info-main {
  padding: 0 76px;
  display: flex;
  align-items: center;
}
.page-aboutjoinus-info-main-inner li + li {
  margin-top: 14px;
}
.page-aboutjoinus-info-main-inner li {
  height: 20px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
}
.page-aboutjoinus-info-main-inner li::before {
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #9c5605;
  position: absolute;
  left: -16px;
  border-radius: 100%;
  top: 50%;
  margin-top: -5px;
}
.page-aboutjoinus-info-img {
  width: 488px;
  height: 285px;
}
.page-aboutjoinus-info-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.page-aboutjoinus-main {
  background: #FAFAFA;
  margin-top: 20px;
  padding: 0 60px 40px;
}

.page-about-footer {
  height: 320px;
  width: 100%;
  background: url("https://dfgroup-temple-test.oss-cn-shanghai.aliyuncs.com/web/bg_zyzzm@2x.jpg");
  background-size: cover;
  background-position: 50%;
}
.page-about-footer-word {
  height: 100%;
  display: flex;
  justify-content: center;
}
.page-about-footer-word-first {
  font-size: 28px;
  color: #fff;
  margin: 63px auto 9px;
}
.page-about-footer-word-second {
  font-size: 18px;
  color: #fff;
  margin-bottom: 25px;
  opacity: 0.6;
}
.page-about-footer-word-img {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 576px) {
  .page-aboutjoinus-info {
    flex-direction: column-reverse;
  }
  .page-aboutjoinus-info-main {
    padding: 20px 20px;
    margin-left: 20px;
  }
  .page-aboutjoinus-info-img {
    width: 100%;
  }
  .page-aboutjoinus-main {
    padding: 0 20px 20px;
  }

  .page-about-footer {
    height: 180px;
  }
  .page-about-footer-word-first {
    font-size: 18px;
    margin: 20px auto 9px;
  }
  .page-about-footer-word-second {
    font-size: 12px;
    padding: 0px 20px;
    line-height: 25px;
    opacity: 60%;
    margin-bottom: 10px;
  }
}
.project-progress {
  margin-top: 40px;
}

@charset "UTF-8";
/**
 *  新闻信息板块公共的样式
 * @author 小玉
 * @date 2021-11-02 10:40:37
 */
/*
 * 全局变量 注意：继承antd变量css架构，由于antd是less，nextjs只支持scss，所以全局变量要与antd-variables.less保持同步更新
 */
/*
 * 清楚浮动
 */
/**
 * 字体溢出隐藏
 */
/*
 * antd 样式覆盖
 */
/*
 * 全局主色系
 * 默认蓝色，根绝UI效果图改变
 */
/*
 * 成功/错误/警告 三色系可以默认 绿，红，黄
 */
/*
 * 表格
 */
/*
 * 全局字体
 */
/*
 * 全局英文字体
 */
/*
 * 文本 默认颜色
 */
/*
 * 圆角
 */
/*
 * 全局颜色动效
 */
/*
 * UI - layout 风格变量
 */
/*
 * layout-header 菜单
 */
/*
 * layout-footer 网站底部
 */
/**
 * 页面过度颜色
 */
.page-news {
  width: auto;
}
.page-news .page-news-inner {
  padding: 40px;
}

@media screen and (max-width: 576px) {
  .page-news .page-news-inner {
    padding: 0px;
  }
  .page-news .page-news-inner .ant-list .ant-list-pagination {
    margin-top: 20px;
  }
}
